Use a mode-line spec rather than a static string in Semantic.
[emacs.git] / lisp / ChangeLog
blob86b73ddd2920a38e6d1dd67525077b6567841f90
1 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3         Use a mode-line spec rather than a static string in Semantic.
4         * cedet/semantic/util-modes.el:
5         (semantic-minor-modes-format): New var to replace...
6         (semantic-minor-modes-status): Remove.
7         (semantic-mode-line-update): Construct a mode-line spec rather than
8         a static string so that mouse buttons can be used on individual minor
9         modes and so that semantic-mode-line-update only needs to be called
10         when global settings are changed.
11         (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
12         Call semantic-mode-line-update.
13         (semantic-toggle-minor-mode-globally): Don't assume mode is on
14         minor-mode-alist, check semantic-minor-mode-alist as well.
15         (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
16         (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
17         (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
18         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
19         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
20         (define-semantic-idle-service, semantic-idle-summary-mode):
21         * cedet/semantic/decorate/mode.el (semantic-decoration-mode):
22         Don't call semantic-mode-line-update any more.
24 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
26         Use define-minor-mode in CEDET where applicable.
28         * cedet/srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
29         Use define-minor-mode.
31         * cedet/semantic/util-modes.el (semantic-add-minor-mode):
32         Remove unused arg `keymap' and code redundant with define-minor-mode.
33         (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
34         (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
35         (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
36         (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
37         (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
38         (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
39         Use define-minor-mode.
40         (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
41         (semantic-show-unmatched-syntax-mode-setup)
42         (semantic-show-parser-state-mode-setup)
43         (semantic-highlight-func-mode-setup): Inline into sole caller.
45         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
46         (semantic-mru-bookmark-mode): Use define-minor-mode.
47         (semantic-mru-bookmark-mode-setup): Inline into sole caller.
49         * cedet/semantic/idle.el (define-semantic-idle-service):
50         Use define-minor-mode and inline setup function into its sole caller.
51         (semantic-idle-scheduler-mode-setup)
52         (semantic-idle-summary-mode-setup): Inline into sole caller.
53         (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
54         Use define-minor-mode.
56         * cedet/semantic/decorate/mode.el (global-semantic-decoration-mode)
57         (semantic-decoration-mode): Use define-minor-mode.
58         (semantic-decoration-mode-setup): Inline into sole caller.
60         * cedet/ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
61         (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
62         (ede-dired-add-to-target): Use dolist.
64 2010-05-01  Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
65             Michael Albinus  <michael.albinus@gmx.de>
67         Implement compression for inline methods.
69         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
70         (tramp-copy-size-limit): Allow also nil.
71         (tramp-inline-compress-commands): New defconst.
72         (tramp-find-inline-compress, tramp-get-inline-compress)
73         (tramp-get-inline-coding): New defuns.
74         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
75         replace by `tramp-get-inline-coding'.
76         (tramp-handle-file-local-copy, tramp-handle-write-region)
77         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
79 2010-05-01  Chong Yidong  <cyd@stupidchicken.com>
81         * server.el (server-sentinel, server-start, server-force-delete):
83         * jka-compr.el (jka-compr-partial-uncompress)
84         (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
86         * epg.el (epg--make-temp-file, epg-decrypt-string)
87         (epg-encrypt-string, epg-verify-string, epg-sign-string):
89         * diff.el (diff-sentinel): Bind delete-by-moving-to-trash to nil
90         before deleting (Bug#6070).
92 2010-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
94         * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
95         Remove unused functions.
97         * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
98         Set find-tag-default-function as a variable rather than a property.
100         * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
101         * progmodes/etags.el (tags-completion-at-point-function):
102         Remove left over interactive spec.  Add autoloading stub.
103         (complete-tag): Use tags-completion-at-point-function.
105 2010-04-30  Chong Yidong  <cyd@stupidchicken.com>
107         * minibuffer.el (tags-completion-at-point-function): Fix return value.
109 2010-04-30  Eli Zaretskii  <eliz@gnu.org>
111         * composite.el (compose-region, reference-point-alist): Fix typos
112         in the doc strings.
114 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
116         * ido.el (ido-init-completion-maps): Remove C-v binding.
117         (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
119 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
121         * minibuffer.el (tags-completion-at-point-function): New function.
122         (completion-at-point-functions): Use it.
124         * cedet/semantic.el (semantic-completion-at-point-function): New function.
125         (semantic-mode): Use semantic-completion-at-point-function for
126         completion-at-point-functions instead.
128         * progmodes/etags.el (complete-tag): Revert last change.
130 2010-04-29  Alan Mackenzie  <acm@muc.de>
132         * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
133         off-by-one error (in end of macro position).
135 2010-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
137         * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
138         firefox is absent.  Don't autoload.
139         (browse-url-galeon-program): Don't autoload.
141 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
143         * bindings.el (complete-symbol): Move into minibuffer.el.
145         * minibuffer.el (complete-tag): Move from etags.el.  If tags
146         completion cannot be performed, return nil instead of signalling
147         an error.
148         (completion-at-point): Make it an alias for complete-symbol.
149         (complete-symbol): Move from bindings.el, and replace with the
150         body of completion-at-point.
152         * progmodes/etags.el (complete-tag): Move to minibuffer.el.
154         * cedet/semantic.el (semantic-mode): When enabled, add
155         semantic-ia-complete-symbol to completion-at-point-functions.
157         * cedet/semantic/ia.el (semantic-ia-complete-symbol): Return nil
158         if Semantic is not active.
160 2010-04-28  Michael Albinus  <michael.albinus@gmx.de>
162         * net/tramp.el (tramp-remote-selinux-p): New defun.
163         (tramp-handle-file-selinux-context)
164         (tramp-handle-set-file-selinux-context): Use it.
166 2010-04-28  Sam Steingold  <sds@gnu.org>
168         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
169         `safe-local-variable' if the value is a string or a symbol with
170         the property `bug-reference-url-format'.
172 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
174         * progmodes/bug-reference.el (bug-reference-url-format): Revert
175         2010-04-27 change due to security risk.
177 2010-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
179         Make it possible to locally disable a globally enabled mode.
180         * simple.el (fundamental-mode): Run fundamental-mode-hook.
181         * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
182         rather than kill-all-local-variables so it runs fundamental-mode-hook.
183         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
184         Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
185         that subsequent hooks get a chance to disable it.
187 2010-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
189         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
190         Avoid re-enabling a minor mode after the user turned the minor mode
191         off if MODE-enable-in-buffers is run twice (typically once from
192         fundamental-mode's after-change-major-mode-hook and a second time from
193         run-mode-hook's own after-change-major-mode-hook).
195         * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
197 2010-04-27  Sam Steingold  <sds@gnu.org>
199         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
200         `safe-local-variable' if the value is a string or a function, as
201         documented and implemented on 2010-04-02.
203 2010-04-27  Juanma Barranquero  <lekktu@gmail.com>
205         * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
206         when method is 'kill.
208 2010-04-27  Agustín Martín  <agustin.martin@hispalinux.es>
210         * ispell.el (ispell-init-process): Fix personal dictionary condition
211         in default directory check.
212         (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
213         Kill ispell process when killing its associated buffer.
215 2010-04-27  Jan Djärv  <jan.h.d@swipnet.se>
217         * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
218         but we aren't using it.
220 2010-04-25  Jan Djärv  <jan.h.d@swipnet.se>
222         * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
223         checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
225 2010-04-24  Glenn Morris  <rgm@gnu.org>
227         * emacs-lisp/authors.el (authors-obsolete-files-regexps):
228         Ignore VCS-ignore files, and deleted nextstep preferences files.
229         (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
230         (authors-ambiguous-files): New list.
231         (authors-valid-file-names): Add some deleted files.
232         (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
233         (authors-disambiguate-file-name): New function.  (Bug#5501)
234         (authors-canonical-file-name): Doc fix.
235         Don't warn about obsolete files.
236         (authors-canonical-file-name, authors-scan-el):
237         Use authors-disambiguate-file-name.
239         * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
240         Add autoload cookies.
241         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
242         (generated-autoload-file): Set file-local value to "htmlfontify.el".
243         * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
244         They have definitions / compiler macros in cl.el.
245         (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
246         Replace manual autoloads with generated ones.
247         (htmlfontify-unload-rgb-file): Remove autoload.
248         * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
250 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
252         * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
253         (byte-compile-setq-default): Optimize for the
254         single-var case and don't call byte-compile-form in this case to avoid
255         inf-loop with byte-compile-set-default.
257         * progmodes/compile.el (compilation-start): Abbreviate default directory.
259 2010-04-23  Michael Albinus  <michael.albinus@gmx.de>
261         Implement SELINUX backends.
263         * net/tramp.el (tramp-file-name-handler-alist):
264         Add `file-selinux-context' and `set-file-selinux-context'.
265         (tramp-handle-file-selinux-context)
266         (tramp-handle-set-file-selinux-context): New defuns.
267         (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
268         Handle PRESERVE-SELINUX-CONTEXT.
270         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
271         Add `file-selinux-context' and `set-file-selinux-context'.
272         (tramp-gvfs-handle-file-selinux-context)
273         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
274         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
276         * net/ange-ftp.el (ange-ftp-copy-file):
277         * net/tramp-fish.el (tramp-fish-handle-copy-file):
278         * net/tramp-imap.el (tramp-imap-handle-copy-file):
279         * net/tramp-smb.el (tramp-smb-handle-copy-file):
280         Add PRESERVE-SELINUX-CONTEXT.
282 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
284         Synchronize with Tramp repository.
286         * net/tramp.el (with-connection-property, tramp-completion-mode-p)
287         (tramp-action-process-alive, tramp-action-out-of-band)
288         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
289         (tramp-exists-file-name-handler): Fix docstring.
290         (with-progress-reporter): New defmacro.
291         (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
292         (tramp-maybe-open-connection): Use it.
294 2010-04-22  Noah Lavine  <noah549@gmail.com>  (tiny change)
296         Detect ssh 'ControlMaster' argument automatically in some cases.
298         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
299         (tramp-default-method): Use it.
301 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
303         * net/tramp.el (tramp-handle-copy-file): Add new optional
304         parameter `preserve-selinux-context'.
305         (tramp-file-name-for-operation): Add `set-file-selinux-context'.
307 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
309         * net/tramp.el (tramp-completion-handle-file-name-all-completions):
310         Ensure, that non remote files are still checked.  Oops.
312 2010-04-21  Michael Albinus  <michael.albinus@gmx.de>
314         Fix Bug#5840.
316         * icomplete.el (icomplete-completions): Use `non-essential'.
318         * net/tramp.el (tramp-connectable-p): New defun.
319         (tramp-handle-expand-file-name)
320         (tramp-completion-handle-file-name-all-completions)
321         (tramp-completion-handle-file-name-completion): Use it.
323 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
325         * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
327 2010-04-21  Jan Djärv  <jan.h.d@swipnet.se>
329         * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
331         * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
333         * loadup.el: Load dynamic-setting.el if feature dynamic-setting
334         is present.
336         * info.el (info-tool-bar-map): Add labels.
338         * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
340         * cus-edit.el (custom-commands): Add labels for tool bar.
341         (custom-buffer-create-internal, Custom-mode): Adjust for
342         labels in custom-commands.
344         * dynamic-setting.el: Renamed from font-setting.el.
346 2010-04-21  John Wiegley  <jwiegley@gmail.com>
348         * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
349         toggles the use of virtual buffers.
350         (ido-buffer-internal): Guard `ido-use-virtual-buffers' global
351         value.
352         (ido-toggle-virtual-buffers): New function.
354 2010-04-21  Juanma Barranquero  <lekktu@gmail.com>
356         Use `define-derived-mode'; fix window selection; doc fixes.
357         * play/tetris.el (tetris, tetris-update-speed-function)
358         (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
359         (tetris-move-left, tetris-move-right, tetris-rotate-prev)
360         (tetris-rotate-next, tetris-end-game, tetris-start-game)
361         (tetris-pause-game): Fix typos in docstrings.
362         (tetris-mode-map, tetris-null-map):
363         Move initialization into declaration.
364         (tetris-mode): Define with `define-derived-mode';
365         set show-trailing-whitespace to nil.
366         (tetris): Prefer window already displaying the "*Tetris*" buffer.
368 2010-04-21  Karel Klíč  <kklic@redhat.com>
370         * files.el (backup-buffer): Handle SELinux context, and return it
371         if a backup was made by renaming.
372         (backup-buffer-copy): Set SELinux context to the target file.
373         (basic-save-buffer): Set SELinux context of the newly written file.
374         (basic-save-buffer-1): Now it also returns any SELinux context.
375         (basic-save-buffer-2): Set SELinux context of the newly created file,
376         and return it.
377         * net/tramp.el (tramp-file-name-for-operation):
378         Add file-selinux-context.
380 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
382         * vc.el (vc-checkin, vc-modify-change-comment):
383         Adjust to new vc-start/finish-logentry.
384         (vc-find-conflicted-file): New command.
385         (vc-transfer-file): Adjust to new vc-checkin.
386         (vc-next-action): Improve scoping.
388         * vc-hg.el (vc-hg-log-edit-mode): Remove.
389         (vc-hg-checkin): Remove extra arg.  Use log-edit-extract-headers.
391         * vc-git.el (vc-git-log-edit-mode): Remove.
392         (vc-git-checkin): Remove extra arg.  Use log-edit-extract-headers.
393         (vc-git-commits-coding-system): Rename from git-commits-coding-system.
395         * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
396         (vc-start-logentry): Remove argument `extra'.
397         (vc-finish-logentry): Remove extra args.
399         * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
400         (vc-bzr-checkin): Remove extra arg.  Use log-edit-extract-headers.
401         (vc-bzr-conflicted-files): New function.
403         * log-edit.el (log-edit-extra-flags)
404         (log-edit-before-checkin-process): Remove.
405         (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
406         (log-edit-headers-alist): New var.
407         (log-edit-header-contents-regexp): New const.
408         (log-edit-match-to-eoh): New function.
409         (log-edit-font-lock-keywords): Use them.
410         (log-edit): Insert a "Summary:" header as default.
411         (log-edit-mode): Mark font-lock rules as case-insensitive.
412         (log-edit-done): Cleanup headers.
413         (log-view-process-buffer): Remove.
414         (log-edit-extract-headers): New function to replace it.
416 2010-04-20  Juanma Barranquero  <lekktu@gmail.com>
418         * subr.el (default-direction-reversed): Remove obsolescence info.
420 2010-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
422         * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
423         windows/frames.
425         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
426         I.e. include text after point in the completion region.
427         Also, return nil when we're not after/in a symbol.
429         * international/mule-cmds.el (view-hello-file): Don't fiddle with the
430         default enable-multibyte-characters.
432 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
434         * international/mule.el: Help the user choose a valid coding-system.
435         (read-buffer-file-coding-system): New function.
436         (set-buffer-file-coding-system): Use it.  Prompt the user if the
437         coding-system cannot encode all the chars.
439         * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
440         (vc-bzr-shelve-show, vc-bzr-shelve-apply)
441         (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
442         Don't use *vc-bzr-shelve*.
444 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
446         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables):
447         Don't destroy list before using it.
449 2010-04-19  Dan Nicolaescu  <dann@ics.uci.edu>
451         Fix the version number for added files.
452         * vc-hg.el (vc-hg-working-revision): Check if the file is
453         registered after hg parent fails (Bug#5961).
455 2010-04-19  Glenn Morris  <rgm@gnu.org>
457         * htmlfontify.el (htmlfontify-buffer)
458         (htmlfontify-copy-and-link-dir): Autoload entry points.
460 2010-04-19  Magnus Henoch  <magnus.henoch@gmail.com>
462         * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
463         name relative to the project root (Bug#5960).
465 2010-04-19  Glenn Morris  <rgm@gnu.org>
467         * vc-git.el (vc-git-print-log): Doc fix.
469 2010-04-19  Óscar Fuentes  <ofv@wanadoo.es>
471         * ido.el (ido-file-internal): Fix 2009-12-02 change.
473 2010-04-19  Christoph  <cschol2112@googlemail.com>  (tiny change)
475         * progmodes/grep.el (grep-compute-defaults): Fix handling of host
476         default settings (Bug#5928).
478 2010-04-19  Glenn Morris  <rgm@gnu.org>
480         * progmodes/fortran.el (fortran-match-and-skip-declaration):
481         New function.
482         (fortran-font-lock-keywords-3): Use it.  (Bug#1385)
484 2010-04-19  Kenichi Handa  <handa@m17n.org>
486         * language/indian.el (malayalam-composable-pattern): Fix previous
487         change (add U+0D4D "SIGN VIRAMA").
488         (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
489         (tamil-composable-pattern): Fix typo in the regexp.
490         (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
491         (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
492         (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
494 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
496         * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
497         paragraph-separate (Bug#5821).
499 2010-04-19  Juri Linkov  <juri@jurta.org>
501         Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
503         * info.el (Info-find-node-2): Comment out code that skips
504         breadcrumbs line.
505         (Info-mouse-follow-link): New command.
506         (Info-link-keymap): New keymap.
507         (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
508         Return a string with links instead of inserting breadcrumbs
509         to the Info buffer.
510         (Info-fontify-node): Comment out code that inserts breadcrumbs.
511         Instead of putting the `invisible' text property over the Info
512         header, make an overlay over the Info header with the `invisible'
513         property and `after-string' set to the string returned by
514         `Info-breadcrumbs'.
516 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
518         * help.el (help-window-setup-finish): Doc fix (Bug#5830).
519         Reported by monkey@sandpframing.com.
521 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
523         * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
524         (tmm-get-keymap): Add key-binding shortcuts now that they're not
525         available in the "keyseq cache" any more.
527         * custom.el (defcustom): Add edebug spec.
529 2010-04-18  Juri Linkov  <juri@jurta.org>
531         Test for special mode-class in view-buffer instead of view-file (bug#5513).
533         * view.el (view-file, view-buffer): Move test for special mode-class
534         from view-file to view-buffer.
536         * tar-mode.el (tar-extract): Turn if's into one cond
537         like in arc-mode.el.
539 2010-04-18  Juri Linkov  <juri@jurta.org>
541         Add 7z archive format support (bug#5475).
543         * arc-mode.el (archive-zip-extract): Try to find 7z executable.
544         (archive-7z-extract): New defcustom.
545         (archive-find-type): Add magic string for 7z.
546         (archive-extract-by-stdout): Add new optional arg `stderr-file'.
547         If `stderr-file' is non-nil, use `(t stderr-file)' for the
548         `buffer' arg of `call-process'.
549         (archive-zip-extract): Check `archive-zip-extract' for "7z" and
550         call the function `archive-7z-extract' with the variable
551         `archive-7z-extract' let-bound to `archive-zip-extract'.
552         (archive-7z-summarize, archive-7z-extract): New functions.
554         * international/mule.el (auto-coding-alist):
555         * files.el (auto-mode-alist): Add 7z file extension.
557 2010-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
559         * loadup.el: Setup hash-cons for pure data.
561         Fix duplicate entries in cedet's loaddefs.el files.
562         * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
563         Should make most file-local generated-autoload-file unnecessary.
564         (print-readably): Silence warnings.
565         (autoload-find-destination): Take load-name as an arg to make sure
566         it's the same as the one that will be in the file.
567         (autoload-generate-file-autoloads): Adjust to above changes.
568         Try to make the dataflow a bit simpler.
570         * cvs-status.el (cvs-refontify): Remove unused.
572 2010-04-18  Jay Belanger  <jay.p.belanger@gmail.com>
574         * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
576         * calc-bin.el (calc-radix): Have the "O" option turn on
577         twos-complement mode.
579 2010-04-17  Jay Belanger  <jay.p.belanger@gmail.com>
581         * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
582         Add `calc-option-prefix-help' to calc-help autoloads.
583         (calc-inverse): Add "Option" to message, as appropriate.
584         (calc-hyperbolic): Add "Option" to message, as appropriate.
585         (calc-option, calc-is-option): New functions.
587         * calc-help.el (calc-full-help):  Add `calc-option-help'.
588         (calc-option-prefix-help): New function.
590         * calc-misc.el (calc-help): Add "Option" entry.
592         * calc.el (calc-local-var-list): Add `calc-option-flag'.
593         (calc-option-flag): New variable.
594         (calc-do): Set `calc-option-flag to nil.
595         (calc-set-mode-line): Add "Opt " as appropriate.
597 2010-04-16  Juri Linkov  <juri@jurta.org>
599         Move scrolling commands from simple.el to window.el
600         because their primitives are implemented in window.c.
602         * simple.el (scroll-error-top-bottom)
603         (scroll-up-command, scroll-down-command, scroll-up-line)
604         (scroll-down-line, scroll-other-window-down)
605         (beginning-of-buffer-other-window, end-of-buffer-other-window):
606         * window.el (scroll-error-top-bottom)
607         (scroll-up-command, scroll-down-command, scroll-up-line)
608         (scroll-down-line, scroll-other-window-down)
609         (beginning-of-buffer-other-window, end-of-buffer-other-window):
610         Move from simple.el to window.el because their primitives are
611         implemented in window.c.
613 2010-04-16  Juri Linkov  <juri@jurta.org>
615         * isearch.el (isearch-lookup-scroll-key): Check both
616         `isearch-scroll' and `scroll-command' properties.
617         (scroll-up, scroll-down): Remove `isearch-scroll' property.
619         * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
621         * simple.el (scroll-up-command, scroll-down-command)
622         (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
624 2010-04-15  Juri Linkov  <juri@jurta.org>
626         * simple.el (scroll-up-command, scroll-down-command)
627         (scroll-up-line, scroll-down-line): Put `scroll-command'
628         property on the these symbols.  Remove them from
629         `scroll-preserve-screen-position-commands'.
631         * mwheel.el (mwheel-scroll): Put `scroll-command' and
632         `isearch-scroll' properties on the `mwheel-scroll' symbol.
633         Remove it from `scroll-preserve-screen-position-commands'.
635         * isearch.el (isearch-allow-scroll): Doc fix.
637 2010-04-15  Michael Albinus  <michael.albinus@gmx.de>
639         * net/tramp.el (tramp-error-with-buffer): Don't show the
640         connection buffer when we are in completion mode.
641         (tramp-file-name-handler): Catch the error for some operations
642         when we are in completion mode.  This gives the user the chance to
643         correct the file name in the minibuffer.
645 2010-04-15  Glenn Morris  <rgm@gnu.org>
647         * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
649 2010-04-15  Juanma Barranquero  <lekktu@gmail.com>
651         Simplify by using `define-derived-mode'.
652         * info.el (Info-mode):
653         * calendar/todo-mode.el (todo-mode):
654         * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
655         (gomoku-mode-map): Move initialization into declaration.
657 2010-04-14  Michael Albinus  <michael.albinus@gmx.de>
659         Fix Bug#5840.
660         * ido.el (ido-file-name-all-completions-1):
661         * minibuffer.el (minibuffer-completion-help):
662         * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
664 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
666         * simple.el (non-essential): New var.
668         Add a new field `location' to bookmarks for non-file bookmarks.
669         * bookmark.el (bookmark-location): Use the new field, if present.
670         (bookmark-insert-location): Undo last change, not needed any more.
671         * man.el (Man-bookmark-make-record):
672         * woman.el (woman-bookmark-make-record): Add `location' field.
674 2010-04-14  Juri Linkov  <juri@jurta.org>
676         * simple.el (scroll-error-top-bottom): New defcustom.
677         (scroll-up-command, scroll-down-command): Use it.  Doc fix.
679         * emulation/pc-select.el (pc-select-override-scroll-error):
680         Obsolete in favor of `scroll-error-top-bottom'.
682 2010-04-14  Juri Linkov  <juri@jurta.org>
684         * tutorial.el (tutorial--default-keys): Rebind `C-v' to
685         `scroll-up-command' and `M-v' to `scroll-down-command'.
687         * emulation/cua-rect.el (cua--init-rectangles):
688         * forms.el (forms--change-commands):
689         * image-mode.el (image-mode-map):
690         Remap scroll-down-command and scroll-up-command
691         in addition to scroll-down and scroll-up.
693 2010-04-14  Juri Linkov  <juri@jurta.org>
695         * mwheel.el (scroll-preserve-screen-position-commands):
696         Add mwheel-scroll to this list of commands.
698         * simple.el (scroll-preserve-screen-position-commands):
699         Add scroll-up-command, scroll-down-command, scroll-up-line,
700         scroll-down-line to this list of commands.
702 2010-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
704         * obsolete/complete.el: Move from lisp/complete.el.
706         * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
708         * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
709         to the minor mode function now turns the mode ON unconditionally.
711 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
713         * vc-dir.el (vc-dir-kill-line): New command.
714         (vc-dir-mode-map): Bind it to C-k.
716         * bookmark.el (bookmark-insert-location): Handle a nil filename.
718         * woman.el: Add bookmark declarations to silence the compiler.
719         (bookmark-prop-get): Use `man-args' rather than `filename' as a first
720         step to compatibility between man and woman bookmarks.
721         Adjust for Man-default-bookmark-title renaming.
722         (woman-bookmark-jump): Adjust accordingly.  Don't forget to autoload.
724         * man.el: Add bookmark declarations to silence the compiler.
725         (Man-name-local-regexp): Make it match NAME as well.
726         (Man-getpage-in-background): Return the buffer.
727         (Man-notify-when-ready): Use `case'.
728         (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
729         Don't hardcode "NAME".  Simplify.
730         (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
731         Rename from Man-bookmark-make-record.
732         (Man-bookmark-jump): Rename from man-bookmark-jump.  Simplify now that
733         we have the actual man-args.  Use Man-getpage-in-background rather
734         than `man' since the arg is already processed.  Let bookmark.el do the
735         window handling.  Only wait for the relevant process.
736         Don't forget to autoload.
738         * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
740 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
742         * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
743         New functions.
744         (woman-mode): Setup bookmark support.
746         * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
747         (man-bookmark-jump): New functions.
748         (Man-mode): Setup bookmark support.
750 2010-04-10  Jari Aalto  <jari.aalto@cante.net>
752         * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
753         recognize ssh-keygen prompt (Bug#2817).
755 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
757         * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
759 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
761         Synchronize with Tramp repository.
763         * net/tramp.el (tramp-completion-function-alist)
764         (tramp-file-name-regexp, tramp-chunksize)
765         (tramp-local-coding-commands, tramp-remote-coding-commands):
766         Fix docstring.
767         (tramp-remote-process-environment): Use `format' instead of `concat'.
768         (tramp-handle-directory-files-and-attributes)
769         (tramp-get-remote-path): Use `copy-tree'.
770         (tramp-handle-file-name-all-completions): Backward/ XEmacs
771         compatibility: Use `completion-ignore-case' if
772         `read-file-name-completion-ignore-case' does not exist.
773         (tramp-do-copy-or-rename-file-directly): Do not use
774         `tramp-handle-file-remote-p'.
775         (tramp-do-copy-or-rename-file-out-of-band):
776         Use `tramp-compat-delete-directory'.
777         (tramp-do-copy-or-rename-file-out-of-band)
778         (tramp-compute-multi-hops, tramp-maybe-open-connection):
779         Use `format-spec-make'.
780         (tramp-find-foreign-file-name-handler)
781         (tramp-advice-make-auto-save-file-name)
782         (tramp-set-auto-save-file-modes): Remove superfluous check for
783         `stringp'.  This is done inside `tramp-tramp-file-p'.
784         (tramp-debug-outline-regexp): New defconst.
785         (tramp-get-debug-buffer): Use it.
786         (tramp-check-for-regexp): Use (forward-line 1).
787         (tramp-set-auto-save-file-modes): Adapt version check.
789         * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
790         Wrap call of `featurep' for 2nd argument.
791         (tramp-compat-make-temp-file): Simplify fallback implementation.
792         (tramp-compat-copy-tree): Remove function.
793         (tramp-compat-delete-directory): Provide implementation for older
794         Emacsen.
796         * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
797         Do not use `tramp-fish-handle-file-attributes.
799         * net/trampver.el: Update release number.
801 2010-04-10  Glenn Morris  <rgm@gnu.org>
803         * progmodes/compile.el (compilation-save-buffers-predicate):
804         Add missing :version tag.
806 2010-04-09  Sam Steingold  <sds@gnu.org>
808         * progmodes/compile.el (compilation-save-buffers-predicate):
809         Remove the "autoload" cookie.
811         * progmodes/bug-reference.el (turn-on-bug-reference-mode)
812         (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
813         and `bug-reference-prog-mode' can be used in hooks directly.
815 2010-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
817         Add --author support to git commit.
818         * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
819         (vc-git-log-edit-mode): New minor mode.
820         (log-edit-mode, log-edit-extra-flags, log-edit-mode):
821         New declarations.
823 2010-04-09  Eric Raymond  <esr@snark.thyrsus.com>
825         * vc-hooks.el, vc-git.el: Improve documentation comments.
827 2010-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
829         Fix some of the problems in defsubst* (bug#5728).
830         * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
831         (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
833 2010-04-07  Sam Steingold  <sds@gnu.org>
835         * progmodes/compile.el (compilation-save-buffers-predicate):
836         New custom variable.
837         (compile, recompile): Pass it to `save-some-buffers'.
839 2010-04-07  Jan Djärv  <jan.h.d@swipnet.se>
841         * wid-edit.el (widget-choose): Move cursor to the second line of
842         the buffer (Bug#5695).
844 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
846         Add new VC methods: vc-log-incoming and vc-log-outgoing.
847         * vc.el (vc-print-log-setup-buttons): New function split out from
848         vc-print-log-internal.
849         (vc-log-internal-common): New function, a parametrized version of
850         vc-print-log-internal.
851         (vc-print-log-internal): Just call vc-log-internal-common with the
852         right arguments.
853         (vc-incoming-outgoing-internal):
854         (vc-log-incoming, vc-log-outgoing): New functions.
855         (vc-log-view-type): New permanent local variable.
857         * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
859         * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
860         of the dynamic bound vc-short-log.
861         (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
863         * vc-git.el (vc-git-log-outgoing): New function.
864         (vc-git-log-view-mode): Use vc-log-view-type instead
865         of the dynamic bound vc-short-log.
867         * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
868         of the dynamic bound vc-short-log.  Highlight the tag.
869         (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
870         (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
871         (vc-hg-incoming-mode): Remove.
872         (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
874 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
876         Fix default-directory for vc-root-diff.
877         * vc.el (vc-root-diff): Bind default-directory to the root
878         directory for the diff command.
880 2010-04-07  Michael McNamara  <mac@mail.brushroad.com>
882         * progmodes/verilog-mode.el (verilog-forward-sexp):
883         (verilog-calc-1): Support "disable fork" and "fork wait" multi
884         word keywords, suggested by Steve Pearlmutter.
885         (verilog-pretty-declarations): Support lineup of declarations in
886         port lists.
887         (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
888         fix bug for /* / comments
889         (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
890         Speed up and simplfy as this is never called with a bound.
891         (verilog-pretty-declarations): Enhance to line up declarations
892         inside a parameter list, suggested by Alan Morgan.
893         (verilog-pretty-expr): Tune assignment regular expression match
894         string for corner cases; also use markers instead of character
895         number as indent changes the later.
897 2010-04-07  Wilson Snyder  <wsnyder@wsnyder.org>
899         * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
900         as missing keyword.
901         (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
902         causing truncation of AUTOWIRE signals.  Reported by Bruce Tennant.
903         (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
904         AUTO_TEMPLATEs needing multiple array bits.  Suggested by Bruce
905         Tennant.
906         (verilog-keywords):
907         (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
908         1800-2009 keywords, including "global.".
910 2010-04-06  John Wiegley  <jwiegley@gmail.com>
912         * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
913         appearing in buffer list (if a live buffer name matched a recentf
914         file basename).  Should use uniquify to offer a real solution.
916 2010-04-06  John Wiegley  <jwiegley@gmail.com>
918         * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
919         comment to code, and add a :version tag.
920         (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
922 2010-04-06  Juanma Barranquero  <lekktu@gmail.com>
924         Enable recentf-mode if using virtual buffers.
925         * ido.el (recentf-list): Declare for byte-compiler.
926         (ido-virtual-buffers): Move up to silence byte-compiler.  Add docstring.
927         (ido-make-buffer-list): Simplify.
928         (ido-add-virtual-buffers-to-list): Simplify.  Enable recentf-mode.
930 2010-04-05  Juri Linkov  <juri@jurta.org>
932         Scrolling commands which scroll a line instead of full screen.
933         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
935         * simple.el (scroll-up-line, scroll-down-line): New commands.
936         Put property isearch-scroll=t on them.
938         * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
939         Remove commands.
941 2010-04-05  Juri Linkov  <juri@jurta.org>
943         Scrolling commands which do not signal errors at top/bottom.
944         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
946         * simple.el (scroll-up-command, scroll-down-command): New commands.
947         Put property isearch-scroll=t on them.
949         * bindings.el (global-map): Rebind [prior] from `scroll-down' to
950         `scroll-down-command' and [next] from `scroll-up' to
951         `scroll-up-command'.
953         * emulation/cua-base.el: Put property CUA=move on
954         `scroll-up-command' and `scroll-down-command'.
955         (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
956         and `scroll-down-command' to `cua-scroll-down'.
958 2010-04-05  Juanma Barranquero  <lekktu@gmail.com>
960         * help.el (describe-mode): Return nil.
962 2010-04-04  John Wiegley  <jwiegley@gmail.com>
964         * ido.el (ido-use-virtual-buffers): New variable to indicate
965         whether "virtual buffer" support is enabled for IDO.
966         (ido-virtual): Face used to indicate virtual buffers in the list.
967         (ido-buffer-internal): If a buffer is chosen, and no such buffer
968         exists, but a virtual buffer of that name does (which would be why
969         it was in the list), recreate the buffer by reopening the file.
970         (ido-make-buffer-list): If virtual buffers are being used, call
971         `ido-add-virtual-buffers-to-list' before the make list hook.
972         (ido-virtual-buffers): New variable which contains a copy of the
973         current contents of the `recentf-list', albeit pared down for the
974         sake of speed, and with proper faces applied.
975         (ido-add-virtual-buffers-to-list): Using the `recentf-list',
976         create a list of "virtual buffers" to present to the user in
977         addition to the currently open set.  Note that this logic could
978         get rather slow if that list is too large.  With the default
979         `recentf-max-saved-items' of 200, there is little speed penalty.
981 2010-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
983         * font-lock.el: Require CL when compiling.
984         (font-lock-turn-on-thing-lock): Use `case'.
986 2010-04-03  Eli Zaretskii  <eliz@gnu.org>
988         * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
989         Zaretskii.
991 2010-04-02  Juanma Barranquero  <lekktu@gmail.com>
993         * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
994         (semantic-create-imenu-directory-index): Fix typos in docstrings.
995         (semantic-imenu-goto-function): Reflow docstring.
997 2010-04-02  Juri Linkov  <juri@jurta.org>
999         * ehelp.el (electric-help-orig-major-mode):
1000         New buffer-local variable.
1001         (electric-help-mode): Set it to original major-mode.  Doc fix.
1002         (with-electric-help): Use `electric-help-orig-major-mode' instead
1003         of (default-value 'major-mode).  Doc fix.
1004         http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
1006 2010-04-02  Sam Steingold  <sds@gnu.org>
1008         * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
1009         `vc-hg-command' with a list of flags.
1011         * progmodes/bug-reference.el (bug-reference-bug-regexp):
1012         Also accept "patch" and "RFE".
1013         (bug-reference-fontify): `bug-reference-url-format' can also be a
1014         function to be able to handle the bug kind.
1015         (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
1017 2010-04-02  Jan Djärv  <jan.h.d@swipnet.se>
1019         * tmm.el (tmm-get-keymap): Check with symbolp before passing
1020         value to fboundp, it may not be a symbol.
1022 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
1024         * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
1026 2010-03-31  Juri Linkov  <juri@jurta.org>
1028         * simple.el (next-line, previous-line): Re-throw a signal
1029         with `signal' instead of using `ding'.
1030         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
1032 2010-03-31  Juri Linkov  <juri@jurta.org>
1034         * simple.el (keyboard-escape-quit): Raise deselecting the active
1035         region higher than exiting the minibuffer.
1036         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
1038 2010-03-31  Juri Linkov  <juri@jurta.org>
1040         * image.el (image-animated-p): Use `image-metadata' instead of
1041         `image-extension-data'.  Get GIF extenstion data from metadata
1042         property `extension-data'.
1044 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1046         * simple.el (append-to-buffer): Simplify.
1048 2010-03-31  Tomas Abrahamsson  <tab@lysator.liu.se>
1050         * textmodes/artist.el (artist-mode): Fix typo in docstring.
1051         Reported by Alex Schröder <kensanata@gmail.com>.  (Bug#5807)
1053 2010-03-31  Kenichi Handa  <handa@m17n.org>
1055         * language/sinhala.el (composition-function-table): Fix regexp for
1056         the new Unicode specification.
1058         * language/indian.el (devanagari-composable-pattern)
1059         (tamil-composable-pattern, kannada-composable-pattern)
1060         (malayalam-composable-pattern): Adjust for the new Unicode
1061         specification.
1062         (bengali-composable-pattern, gurmukhi-composable-pattern)
1063         (gujarati-composable-pattern, oriya-composable-pattern)
1064         (telugu-composable-pattern): New variables to cope with the new
1065         Unicode specification.  Use them in composition-function-table.
1067 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1069         Make tmm-menubar work for the Buffers menu again (bug#5726).
1070         * tmm.el (tmm-prompt): Also handle keymap entries in the form of
1071         vectors rather than cons cells, as used in menu-bar-update-buffers.
1073 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
1075         * progmodes/js.el (js-auto-indent-flag, js-mode-map)
1076         (js-insert-and-indent): Revert 2009-08-15 change, restoring
1077         electric punctuation for "{}();,:" (Bug#5586).
1079         * mail/sendmail.el (mail-default-directory): Doc fix.
1081 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
1083         * mail/sendmail.el (mail-default-directory): Doc fix.
1085 2010-03-31  Eli Zaretskii  <eliz@gnu.org>
1087         * subr.el (version-regexp-alist, version-to-list)
1088         (version-list-<, version-list-=, version-list-<=)
1089         (version-list-not-zero, version<, version<=, version=): Doc fix.
1090         (Bug#5744).
1092 2010-02-31  Dan Nicolaescu  <dann@ics.uci.edu>
1094         * vc.el (vc-root-diff): Doc fix.
1096 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
1098         * vc.el (vc-print-log, vc-print-root-log): Doc fix.
1100         * simple.el (append-to-buffer): Fix last change.
1102 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
1104         * simple.el (append-to-buffer): Ensure that point is preserved if
1105         BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
1106         (Bug#5749)
1108 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1110         * files.el (auto-mode-case-fold): Change default to t.
1112 2010-03-30  Juri Linkov  <juri@jurta.org>
1114         * dired-x.el (dired-omit-mode): Doc fix.
1116 2010-03-30  Juri Linkov  <juri@jurta.org>
1118         * replace.el (occur-accumulate-lines): Move occur-engine related
1119         functions `occur-accumulate-lines' and `occur-engine-add-prefix'
1120         to be located after `occur-engine'.
1122 2010-03-30  Juri Linkov  <juri@jurta.org>
1124         Make occur handle multi-line matches cleanly with context.
1125         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
1127         * replace.el (occur-accumulate-lines): Add optional arg `pt'.
1128         (occur-engine): Add local variables `ret', `prev-after-lines',
1129         `prev-lines'.  Use more arguments for `occur-context-lines'.
1130         Set first elem of its returned list to `data', and the second elem
1131         to `prev-after-lines'.  Don't print the separator line.
1132         In the end, print remaining context after-lines.
1133         (occur-context-lines): Add new arguments `begpt', `endpt',
1134         `lines', `prev-lines', `prev-after-lines'.  Rewrite to combine
1135         after-lines of the previous match with before-lines of the
1136         current match and not overlap them.  Return a list with two
1137         values: the output line and the list of context after-lines.
1139 2010-03-30  Juri Linkov  <juri@jurta.org>
1141         * replace.el (occur-accumulate-lines): Fix a bug where the first
1142         context line at the beginning of the buffer was missing.
1144 2010-03-30  Eli Zaretskii  <eliz@gnu.org>
1146         * files.el: Make bidi-display-reordering safe variable for boolean
1147         values.
1149 2010-03-29  Phil Hagelberg  <phil@evri.com>
1150             Chong Yidong  <cyd@stupidchicken.com>
1152         * subr.el: Extend progress reporters to perform "spinning".
1153         (progress-reporter-update, progress-reporter-do-update):
1154         Handle non-numeric value arguments.
1155         (progress-reporter--pulse-characters): New var.
1157 2010-03-28  Chong Yidong  <cyd@stupidchicken.com>
1159         * progmodes/compile.el (compilation-start): Fix regexp detection
1160         of initial cd command (Bug#5771).
1162 2010-03-28  Stefan Guath  <stefan@automata.se>  (tiny change)
1164         * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
1166 2010-03-27  Nick Roberts  <nickrob@snap.net.nz>
1168         Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
1169         * lisp/progmodes/gdb-mi.el: Restore.
1170         * lisp/progmodes/gdb-ui.el: Remove.
1171         * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
1173 2010-03-25  Glenn Morris  <rgm@gnu.org>
1175         * desktop.el (desktop-save-buffer-p): Don't mistakenly include
1176         all dired buffers, even tramp ones.  (Bug#5755)
1178 2010-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1180         Add "union tags" in mpc.el.
1181         * mpc.el: Remove backward compatibility code.
1182         (mpc-browser-tags): Change default.
1183         (mpc--find-memoize-union-tags): New var.
1184         (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
1185         (mpc-cmd-find): Handle the case where the playlist does not exist.
1186         Handle union-tags.
1187         (mpc-cmd-list): Use mpc-cmd-special-tag-p.  Handle union-tags.
1188         (mpc-cmd-add): Use mpc-cmd-flush.
1189         (mpc-tagbrowser-tag-name): New fun.
1190         (mpc-tagbrowser-buf): Use it.
1191         (mpc-songs-refresh): Use cond.  Move to point-min as a fallback.
1193 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1195         Misc cleanup.
1196         * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
1197         Use replace-regexp-in-string.
1198         (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
1199         (makefile-imake-mode-syntax-table): Move init into defvar.
1200         (makefile-mode): Use define-derived-mode.
1202         * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
1203         (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
1204         not be present any more.
1206 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1208         * faces.el (set-face-attribute): Fix typo in docstring.
1209         (face-valid-attribute-values): Reflow docstring.
1211         * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
1213 2010-03-24  Glenn Morris  <rgm@gnu.org>
1215         * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
1217 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
1219         * indent.el (indent-for-tab-command): Doc fix.
1221 2010-03-24  Alan Mackenzie  <acm@muc.de>
1223         * progmodes/cc-engine.el (c-remove-stale-state-cache):
1224         Fix off-by-one error.  Fixes bug #5747.
1226 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1228         * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
1229         (image-dired-read-comment): Doc fix.
1231         * json.el (json-object-type, json-array-type, json-key-type)
1232         (json-false, json-null, json-read-number):
1233         * minibuffer.el (completion-in-region-functions):
1234         * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
1235         (cal-tex-cursor-week):
1236         * emacs-lisp/trace.el (trace-function):
1237         * eshell/em-basic.el (eshell/printnl):
1238         * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
1239         (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
1240         * obsolete/levents.el (allocate-event, event-key, event-object)
1241         (event-point, event-process, event-timestamp, event-to-character)
1242         (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
1243         * textmodes/reftex-vars.el (reftex-index-macros-builtin)
1244         (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
1245         (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
1246         (reftex-highlight-selection): Fix typos in docstrings.
1248 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1250         * minibuffer.el (completion-in-region-functions): Fix docstring typos.
1252 2010-03-24  Glenn Morris  <rgm@gnu.org>
1254         * mail/rmail.el (rmail-highlight-face): Restore option deleted
1255         2008-02-13 without comment; mark it obsolete.
1256         (rmail-highlight-headers): Use rmail-highlight-face once more.
1258 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
1260         * woman.el (woman2-process-escapes): Only consume the newline if
1261         the filler character is on a line by itself (Bug#5729).
1263 2010-03-24  Kenichi Handa  <handa@m17n.org>
1265         * language/indian.el (devanagari-composable-pattern): Add more
1266         consonants.
1268 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
1270         * net/trampver.el: Update release number.
1272 2010-03-24  Glenn Morris  <rgm@gnu.org>
1274         * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
1276 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
1278         * net/tramp.el (tramp-find-executable):
1279         Use `tramp-get-connection-buffer'.  Make the regexp for checking
1280         output of "wc -l" more robust.
1281         (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
1282         (tramp-open-connection-setup-interactive-shell): Remove workaround
1283         for OpenSolaris bug, it is not needed anymore.
1285 2010-03-24  Eric M. Ludlam  <zappo@gnu.org>
1287         * cedet/semantic/imenu.el: New file, from the CEDET repository
1288         (Bug#5412).
1290 2010-03-24  Glenn Morris  <rgm@gnu.org>
1292         * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie.  (Bug#4427)
1294 2010-03-24  Wilson Snyder  <wsnyder@wsnyder.org>
1296         * files.el (auto-mode-alist): Accept more verilog file patterns.
1298 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1300         * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
1302 2010-03-24  Glenn Morris  <rgm@gnu.org>
1304         * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
1305         log-edit-before-checkin-process.
1307         * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
1309         * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
1311         * vc-dispatcher.el (vc-start-logentry): Doc fix.
1312         (log-view-process-buffer, log-edit-extra-flags): Declare.
1314         * log-edit.el (log-edit-before-checkin-process): Doc fix.
1316         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
1317         Consistently check ede-object is bound throughout.
1319         * cedet/ede/project-am.el (ede-shell-run-something): Declare.
1321 2010-03-23  Sam Steingold  <sds@gnu.org>
1323         Fix bug#5620: recalculate all markers on compilation buffer
1324         modifications, not on file modifications.
1325         * progmodes/compile.el (buffer-modtime): New buffer-local variable:
1326         the buffer modification time, for buffers not associated with files.
1327         (compilation-mode): Create it.
1328         (compilation-filter): Update it.
1329         (compilation-next-error-function): Use it instead of
1330         `visited-file-modtime' for timestamp.
1332 2010-03-23  Juri Linkov  <juri@jurta.org>
1334         Implement Occur multi-line matches.
1335         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
1337         * replace.el (occur): Doc fix.
1338         (occur-engine): Set `begpt' to the beginning of the first line.
1339         Set `endpt' to the end of the last match line.  At first, count
1340         line numbers between `origpt' and `begpt'.  Split out code from
1341         `out-line' variable to new let-bindings `match-prefix' and
1342         `match-str'.  In `out-line' add non-numeric prefix to all
1343         non-first lines of multi-line matches.  Finally, count lines
1344         between `begpt' and `endpt' and add to `lines'.
1346 2010-03-23  Juri Linkov  <juri@jurta.org>
1348         * replace.el (occur-accumulate-lines, occur-engine):
1349         Use `occur-engine-line' instead of duplicate code.
1350         (occur-engine-line): New function created from duplicate code
1351         in `occur-accumulate-lines' and `occur-engine'.
1353         * replace.el (occur-engine-line): Add optional arg `keep-props'.
1354         (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
1356 2010-03-23  Juri Linkov  <juri@jurta.org>
1358         * finder.el: Remove TODO tasks.
1360         * info.el (Info-finder-find-node): Add node "all"
1361         with all package info.  Handle a list of multiple keywords
1362         separated by comma.
1363         (info-finder): In interactive use with a prefix argument,
1364         use `completing-read-multiple' to read a list of keywords
1365         separated by comma.
1367 2010-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1369         Add a new completion style `substring'.
1370         * minibuffer.el (completion-basic--pattern): New function.
1371         (completion-basic-try-completion, completion-basic-all-completions):
1372         Use it.
1373         (completion-substring--all-completions)
1374         (completion-substring-try-completion)
1375         (completion-substring-all-completions): New functions.
1376         (completion-styles-alist): New style `substring'.
1378 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1380         Get rid of .elc files after removal of the corresponding .el.
1381         * Makefile.in (compile-clean): New target.
1382         (compile-main): Use it.
1384 2010-03-22  Jan Djärv  <jan.h.d@swipnet.se>
1386         * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
1387         don't do make there.  When compiling with separate object dir, there
1388         is no Makefile there.
1390 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1392         Get rid of the ELCFILES abomination, again.
1393         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
1394         (all, compile): Don't call compile-last.
1395         (compile-main): Build the "elcfiles" list dynamically.
1396         (compile-targets): New (internal) target.
1398 2010-03-21  Andreas Schwab  <schwab@linux-m68k.org>
1400         * Makefile.in (top_srcdir): Define.
1401         (abs_top_builddir): Define.
1402         (srcdir): Don't append `/..'.
1403         (EMACS): Use ${abs_top_builddir}.
1404         (all, compile, compile-always, compile-last): Don't set emacswd.
1405         (update-subdirs, update-authors): Use $(top_srcdir) instead of
1406         $(srcdir).
1407         (lisp): Use $(srcdir) instead of @srcdir@.
1409 2010-03-21  Juri Linkov  <juri@jurta.org>
1411         Fix message of multi-line occur regexps and multi-buffer header lines.
1412         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
1414         * replace.el (occur-1): Don't display regexp if it is longer
1415         than window-width.  Use `query-replace-descr' to display regexp.
1416         (occur-engine): Don't display regexp in the buffer header for
1417         multi-buffer occur.  Display a separate header line with total
1418         match count and regexp for multi-buffer occur.
1419         Use `query-replace-descr' to display regexp.
1421 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1423         * net/secrets.el: Fix parenthesis.
1424         (secrets-enabled): Fix parenthesis.
1426 2010-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1428         Use more relative file and directory names.
1429         * Makefile.in (EMACS): Arrange for it to work when we chdir.
1430         (setwins, setwins_almost, setwins_for_subdirs):
1431         Don't `cd'; output relative names.
1432         (all, compile, compile-always, compile-last): Set emacswd.
1433         (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
1434         Just cd to the lisp source dir so we can use relative file names.
1436         * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
1438 2010-03-20  Glenn Morris  <rgm@gnu.org>
1440         * textmodes/rst.el: Use faces for font-lock customization, and make the
1441         old -face variables obsolete.
1442         (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
1443         (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
1444         (rst-block-face, rst-external-face, rst-definition-face)
1445         (rst-directive-face, rst-comment-face, rst-emphasis1-face)
1446         (rst-emphasis2-face, rst-literal-face, rst-reference-face):
1447         Make obsolete.
1448         (rst-font-lock-keywords-function): Update for above changes.
1450 2010-03-20  Juri Linkov  <juri@jurta.org>
1452         * s-region.el:
1453         * obsolete/s-region.el: Move to obsolete.
1455 2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
1457         * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
1459 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
1461         * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
1463 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
1465         Add special markup processing for commit logs.
1466         * log-edit.el (log-edit-extra-flags): New variable.
1467         (log-edit): Add new argument MODE.  Use that mode when non-nil
1468         instead of the log-view-mode.
1469         (log-view-process-buffer): New function.
1471         * vc.el: Document that the checkin method takes optional
1472         arguments.  Document new backend specific method: log-view-mode.
1473         (vc-default-log-edit-mode): New function.
1474         (vc-checkin): Use a backend specific log-view-mode.
1475         Pass extra arguments to the checkin method.
1476         (vc-modify-change-comment): Pass a dummy extra argument.
1478         * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
1479         log-edit.
1480         (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
1481         (vc-finish-logentry): Process the log buffer before passing it
1482         down.  Pass log-edit-extra-flags.
1484         * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
1485         command.
1486         (log-edit-extra-flags, log-edit-before-checkin-process):
1487         New declarations.
1489         * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
1490         command.
1491         (log-edit-extra-flags, log-edit-before-checkin-process):
1492         New declarations.
1493         (vc-hg-log-edit-mode): New derived mode.
1495         * vc-arch.el (vc-arch-checkin):
1496         * vc-cvs.el (vc-cvs-checkin):
1497         * vc-git.el (vc-git-checkin):
1498         * vc-mtn.el (vc-mtn-checkin):
1499         * vc-rcs.el (vc-rcs-checkin):
1500         * vc-sccs.el (vc-sccs-checkin):
1501         * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
1503 2010-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1505         * outline.el (hide-sublevels): Don't hide trailing newline (and fix
1506         parent typo).
1508 2010-03-19  Glenn Morris  <rgm@gnu.org>
1510         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1512 2010-03-18  Glenn Morris  <rgm@gnu.org>
1514         * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
1516         * replace.el (query-replace-history): Give it a doc string.
1517         (map-query-replace-regexp): Use query-replace-from-history-variable
1518         and query-replace-to-history-variable.
1520         * mail/hashcash.el (declare-function): Remove duplicate definition.
1522         * mail/emacsbug.el (report-emacs-bug-pretest-address):
1523         Make it an obsolete alias for report-emacs-bug-address.
1524         (message-strip-special-text-properties): Declare.
1525         (report-emacs-bug): Remove test for a pretest bug address.
1526         Combine message-mode-specific code.
1528         * mail/supercite.el: Don't require sendmail.
1529         (mh-in-header-p): Declare rather than using with-no-warnings.
1530         (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
1531         mail-header-end.  Don't bind mysterious variable `kill-lines-magic'.
1533         * calendar/cal-french.el: Convert to utf-8.
1535         * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
1536         Emacs scripts.
1538 2010-03-16  Michael Albinus  <michael.albinus@gmx.de>
1540         * net/secrets.el (secrets-enabled): New variable.  Use it instead
1541         of a subfeature.
1543 2010-03-15  Michael Albinus  <michael.albinus@gmx.de>
1545         * net/secrets.el (top): Register the D-Bus signals only when the
1546         service "org.freedesktop.secrets" can be pinged.
1547         Provide subfeature `enabled'.
1549 2010-03-14  Juri Linkov  <juri@jurta.org>
1551         Add finder unknown keywords.
1553         * finder.el (finder-unknown-keywords): New function.
1555         * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
1556         to create a Finder node with unknown keywords.
1558 2010-03-14  Juri Linkov  <juri@jurta.org>
1560         * finder.el (finder-compile-keywords): Replace `princ' with
1561         `prin1' on a list of symbols interned from keyword strings.
1563         * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
1564         a comma, then split keywords using a comma and optional whitespace.
1565         Otherwise, split by whitespace.
1567         * complete.el:
1568         * face-remap.el:
1569         * log-view.el:
1570         * net/hmac-def.el:
1571         * net/hmac-md5.el:
1572         * net/netrc.el:
1573         * progmodes/mixal-mode.el: Fix keywords.
1575 2010-03-13  Michael Albinus  <michael.albinus@gmx.de>
1577         * Makefile.in (ELCFILES): Add net/secrets.elc.
1579         * net/secrets.el: New file.
1581 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
1583         * facemenu.el (list-colors-display, list-colors-print): New arg
1584         callback.  Use it to allow selecting colors.
1586         * wid-edit.el (widget-image-insert): Insert image prop even if the
1587         current display is non-graphic.
1588         (widget-field-value-set): New fun.
1589         (editable-field): Use it.
1590         (widget-field-value-get): Clean up unused var.
1591         (widget-color-value-create, widget-color--choose-action):
1592         New funs.  Allow using list-colors-display to choose color.
1594 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
1596         * cus-edit.el: Resort topmost custom groups.
1597         (custom-buffer-sort-alphabetically): Default to t.
1598         (customize-apropos): Use apropos-parse-pattern.
1599         (custom-search-field): New var.
1600         (custom-buffer-create-internal): Add custom-apropos search field.
1601         (custom-add-parent-links): Don't display parent doc.
1602         (custom-group-value-create): Don't sort top-level custom group.
1603         (custom-magic-value-create): Show visibility button before option name.
1605         (custom-variable-state): New fun, from custom-variable-state-set.
1606         (custom-variable-state-set): Use it.
1607         (custom-group-value-create): Hide options with standard values
1608         using the :hidden-states property.  Use progress reporter.
1610         (custom-show): Simplify.
1611         (custom-visibility): Disable images by default.
1612         (custom-variable): New property :hidden-states.
1613         (custom-variable-value-create): Enable images for
1614         custom-visibility widgets.  Use :hidden-states property to
1615         determine initial visibility.
1617         * wid-edit.el (widget-image-find): Give images center ascent.
1618         (visibility): Add :on-image and :off-image properties.
1619         (widget-visibility-value-create): Use them.
1621 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
1623         * cus-edit.el (processes): Remove from development group.
1624         (oop, hypermedia): Delete group.
1625         (comm): Promote to top-level group.
1627         * net/browse-url.el (browse-url):
1628         * net/xesam.el (xesam):
1629         * net/tramp.el (tramp):
1630         * net/goto-addr.el (goto-address):
1631         * net/ange-ftp.el (ange-ftp): Put in comm group.
1633         * view.el (view): Remove from editing group.
1635         * uniquify.el (uniquify): Put in files group.
1637         * net/browse-url.el (browse-url):
1638         * ps-print.el (postscript): Put in external group.
1640         * cus-edit.el (outlines):
1641         * textmodes/text-mode.el (text-mode-hook):
1642         * textmodes/table.el (table):
1643         * textmodes/picture.el (picture):
1644         * outline.el (outlines): Put in wp group.
1646         * nxml/nxml-mode.el (nxml): Remove from wp group.
1648         * net/tramp-imap.el (tramp-imap): Put in tramp group.
1650         * mail/metamail.el (metamail): Remove from hypermedia group.
1652         * cus-edit.el (abbrev):
1653         * whitespace.el (whitespace):
1654         * vcursor.el (vcursor):
1655         * reveal.el (reveal):
1656         * hl-line.el (hl-line): Put in convenience group.
1658         * epg-config.el (epg): Put in data group.
1660         * emulation/pc-select.el (pc-select): Put in emulations group.
1662         * calculator.el (calculator): Put in applications group.
1664 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
1666         Add .dir-locals.el support for file-less buffers.
1667         * files.el (hack-local-variables): Split out code to apply local
1668         variable settings ...
1669         (hack-local-variables-apply): ... here.  New function.
1670         (hack-dir-local-variables): Use the default directory for when the
1671         buffer does not have an associated file.
1672         (hack-dir-local-variables-non-file-buffer): New function.
1673         * diff-mode.el (diff-mode):
1674         * vc-annotate.el (vc-annotate-mode):
1675         * vc-dir.el (vc-dir-mode):
1676         * log-edit.el (log-edit-mode):
1677         * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
1679 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
1681         Add support for shelving snapshots and for showing shelves.
1682         * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
1683         (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
1684         New functions.
1685         (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
1686         (vc-bzr-extra-menu-map): Map them.
1688 2010-03-11  Glenn Morris  <rgm@gnu.org>
1690         * cus-edit.el (customize-changed-options-previous-release):
1691         Bump to 23.1.
1693         * image.el (image-animate-max-time): Fix :version tag.
1695 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
1697         * Branch for 23.2.
1699 2010-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1701         * vc-git.el (vc-git-revision-table): Include remote branches.
1703 2010-03-10  Kim F. Storm  <storm@cua.dk>
1705         Animated image API.
1706         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
1708         * image.el (image-animate-max-time): New defcustom.
1709         (image-animated-types): New defconst.
1710         (create-animated-image, image-animate-timer)
1711         (image-animate-start, image-animate-stop, image-animate-timeout)
1712         (image-animated-p): New functions.
1714         * image-mode.el (image-toggle-display-image):
1715         Replace `create-image' with `create-animated-image'.
1717 2010-03-09  Miles Bader  <miles@gnu.org>
1719         * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
1720         instead of "format:"; this ensures that the output is
1721         newline-terminated.
1723 2010-03-08  Chong Yidong  <cyd@stupidchicken.com>
1725         * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
1726         that all errors are caught, and that the return value is always a
1727         list (Bug#5692).
1729 2010-03-08  Kenichi Handa  <handa@m17n.org>
1731         * language/misc-lang.el (windows-1256): New coding system.
1732         (cp1256): New alias of windows-1256 (bug#5690).
1734 2010-03-07  Andreas Schwab  <schwab@linux-m68k.org>
1736         * mail/rfc822.el (rfc822-addresses): Move catch clause down around
1737         call to rfc822-bad-address.  (Bug#5692)
1739 2010-03-07  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
1741         * vc-git.el (vc-git-annotate-extract-revision-at-line):
1742         Use vc-git-root as default directory for revision path (Bug#5657).
1744 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
1746         * calculator.el (calculator): Don't bind split-window-keep-point
1747         (Bug#5674).
1749 2010-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1751         * vc-git.el: Re-flow to fit into 80 columns.
1752         (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
1753         Remove spurious `quote' element in each case alternative.
1754         (vc-git-show-log-entry): Use prog1.
1755         (vc-git-after-dir-status-stage): Remove unused var `remaining'.
1757 2010-03-06  Glenn Morris  <rgm@gnu.org>
1759         * cedet/semantic/grammar.el (semantic-grammar-header-template):
1760         Update template copyright to GPLv3+.
1762 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1764         * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
1766 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
1768         * macros.el (insert-kbd-macro): Look up keyboard macro using the
1769         definition, not the name (Bug#5481).
1771 2010-03-03  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
1773         * subr.el (momentary-string-display): Don't overwrite the MESSAGE
1774         argument with a local variable.  (Bug#5670)
1776 2010-03-02  Juri Linkov  <juri@jurta.org>
1778         * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
1780 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
1782         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
1783         error when FILENAME and NEWNAME are existing remote directories.
1785         * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
1786         parameter DIR-FLAG.
1788 2010-03-02  Glenn Morris  <rgm@gnu.org>
1790         * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
1791         of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
1793 2010-03-01  Kenichi Handa  <handa@m17n.org>
1795         * language/burmese.el (burmese-composable-pattern): Rename from
1796         myanmar-composable-pattern.
1798         * international/characters.el (script-list):
1799         * international/fontset.el (script-representative-chars):
1800         Change myanmar to burmese.
1801         (otf-script-alist): Likewise.
1802         (setup-default-fontset): Likewise.  Re-fix :otf spec.
1804 2010-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1806         * menu-bar.el (menu-bar-manuals-menu): Fix typo.
1808 2010-02-28  Jan Djärv  <jan.h.d@swipnet.se>
1810         * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
1812 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
1814         * net/tramp.el (tramp-handle-write-region): START can be a string.
1815         Take care in the checks.  Reported by Dan Davison
1816         <davison@stats.ox.ac.uk>.
1818 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
1820         * net/dbus.el (dbus-introspect, dbus-get-property)
1821         (dbus-set-property, dbus-get-all-properties):
1822         Use `dbus-call-method' when noninteractive.  (Bug#5645)
1824 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
1826         * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
1827         * emacs-lisp/elint.el (elint-add-required-env):
1828         * cedet/semantic/db-find.el
1829         (semanticdb-find-translate-path-brutish-default):
1830         * cedet/ede/make.el (ede-make-check-version):
1831         * calendar/icalendar.el (icalendar--add-diary-entry):
1832         * calc/calcalg2.el (math-tracing-integral):
1833         * files.el (recover-session-finish): Use with-current-buffer
1834         instead of save-excursion.
1836 2010-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1838         Fix in-buffer completion when after-change-functions modify the buffer.
1839         * minibuffer.el (completion--replace): New function.
1840         (completion--do-completion): Use it and use relative movement.
1842 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
1844         * international/fontset.el (setup-default-fontset): Fix :otf spec.
1846 2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
1848         * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
1849         Allow the characters _<> in the stack entry (Bug#5653).
1851 2010-02-26  Kenichi Handa  <handa@m17n.org>
1853         * language/burmese.el: Fix entries in composition-function-table.
1854         (myanmar-composable-pattern): New variable.
1856         * international/fontset.el (setup-default-fontset): Add an entry
1857         for myanmar.
1859         * international/characters.el (script-list): Add Myanmar
1860         Extended-A.
1862 2010-02-26  Glenn Morris  <rgm@gnu.org>
1864         * custom.el (custom-initialize-delay): Doc fix.
1866         * mail/sendmail.el (send-mail-function): Autoload the call
1867         to custom-initialize-delay, not otherwise preserved in loaddefs.el.
1869 2010-02-24  Chong Yidong  <cyd@stupidchicken.com>
1871         * files.el (hack-local-variables-filter): For eval forms, also
1872         check safe-local-variable-p (Bug#5636).
1874 2010-02-24  Eduard Wiebe  <usenet@pusto.de>
1876         * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
1877         and use c(ad)r of cddr (Bug#5640).
1879 2010-02-22  Michael Albinus  <michael.albinus@gmx.de>
1881         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
1882         setting the modes by `ignore-errors'.  It might fail, for example
1883         if the file is not owned by the user but the group.
1884         (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
1886 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
1888         * files.el (directory-listing-before-filename-regexp): Use
1889         stricter matching for iso-style dates, to avoid false matches with
1890         date-like filenames (Bug#5597).
1892         * htmlfontify.el (htmlfontify): Doc fix.
1894         * eshell/eshell.el (eshell): Doc fix.
1896         * startup.el (fancy-about-screen): In mode-line, apply
1897         mode-line-buffer-id face only to the buffer name (Bug#5613).
1899 2010-02-20  Kevin Ryde  <user42@zip.com.au>
1901         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1902         In `watcom' anchor regexp to start of line, to avoid slowness
1903         (Bug#5599).
1905 2010-02-20  Eli Zaretskii  <eliz@gnu.org>
1907         * subr.el (remove-yank-excluded-properties): Explain in a comment
1908         why `category' property is removed.
1910 2010-02-19  Chong Yidong  <cyd@stupidchicken.com>
1912         * isearch.el (isearch-update-post-hook, isearch-update): Revert
1913         2010-02-17 change.
1915 2010-02-19  Ulf Jasper  <ulf.jasper@web.de>
1917         * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
1918         (icalendar--convert-weekly-to-ical)
1919         (icalendar--convert-yearly-to-ical)
1920         (icalendar--convert-block-to-ical)
1921         (icalendar--convert-cyclic-to-ical)
1922         (icalendar--convert-anniversary-to-ical): Take care of time
1923         specifications where hour has 1-digit only (Bug#5549).
1925 2010-02-19  Nick Roberts  <nickrob@snap.net.nz>
1927         * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
1928         of disassemble output in GDB 7.1.
1930 2010-02-19  Glenn Morris  <rgm@gnu.org>
1932         * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
1933         property.  (Bug#5593)
1935 2010-02-18  Sam Steingold  <sds@gnu.org>
1937         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
1939 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1941         Use abbreviated file names in bookmarks (bug#5591).
1942         * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
1943         calls to expand-file-name.
1944         (bookmark-relocate): Use abbreviated file names in bookmarks.
1945         (bookmark-load): Use abbreviated file names in messages.
1947 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
1949         * net/tramp.el (tramp-handle-directory-files): When FULL, do not
1950         expand "." and "..".  Reported by Thierry Volpiatto
1951         <thierry.volpiatto@gmail.com>.
1953 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
1955         * net/tramp.el (tramp-handle-insert-file-contents): Set always the
1956         permissions of the temporary file to "0600".  In case the remote
1957         file has no read permissions for the owner, there might be
1958         problems otherwise.  Reported by Ole Laursen <olau@iola.dk>.
1960 22010-02-18  Glenn Morris  <rgm@gnu.org>
1962         * emacs-lisp/authors.el (authors-renamed-files-alist):
1963         Add entries for INSTALL.CVS.
1965 2010-02-17  Mark A. Hershberger  <mah@everybody.org>
1967         * vc-bzr.el: Fix typo in Known Bugs section.
1969         * isearch.el (isearch-update-post-hook): New hook.
1970         (isearch-update): Use the new hook.
1972 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
1974         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
1975         Fix errors in copying directories.
1976         (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
1977         (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
1978         (tramp-handle-delete-file)
1979         (tramp-handle-dired-recursive-delete-directory)
1980         (tramp-handle-write-region): Flush also the cache for the upper
1981         directory.
1983 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
1985         * simple.el (save-interprogram-paste-before-kill): Doc fix.
1987         * cus-edit.el (hardware): Doc fix.
1989         * man.el (man): Add to external custom group.
1991         * delim-col.el (columns): Move to wp custom group.
1993         * doc-view.el (doc-view): Add to data custom group.
1995         * cedet/data-debug.el (data-debug): Move to extensions group.
1997         * cedet/ede.el (ede):
1998         * cedet/srecode.el (srecode):
1999         * cedet/semantic.el (semantic): Put in tools and extensions group.
2001         * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
2003         * textmodes/flyspell.el (flyspell-word): Obey the offset specified
2004         by ispell-parse-output (Bug#5575).
2006 2010-02-16  Kenichi Handa  <handa@m17n.org>
2008         * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
2009         (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
2010         (skkdic-convert): Use `euc-japan' coding system for writing.
2012 2010-02-16  Glenn Morris  <rgm@gnu.org>
2014         * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
2015         tex-main-file before using it.  (Bug#5562)
2017 2010-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2019         * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
2020         warnings, since it is annoying for the user to see them each time he
2021         runs the code.
2023 2010-02-15  Michael Albinus  <michael.albinus@gmx.de>
2025         * net/tramp.el (tramp-process-actions, tramp-read-passwd):
2026         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
2027         instead of PROC for caching "first-password-request".  Otherwise,
2028         new processes would not profit from passwords already entered.
2030         * net/tramp-cache.el (tramp-dump-connection-properties):
2031         Don't save "first-password-request" property.
2033 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
2035         * outline.el (outline-head-from-level):
2036         * simple.el (with-wrapper-hook):
2037         * cedet/ede.el (ede-run-target, project-delete-target)
2038         (project-dist-files, ede-name, ede-documentation, ede-parent-project)
2039         (ede-adebug-project, ede-adebug-project-parent)
2040         (ede-adebug-project-root):
2041         * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
2042         (elint-defun, elint-buffer-env, elint-top-form-logged)
2043         (elint-unbound-variable):
2044         * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
2045         Fix typos in docstrings.
2047 2010-02-14  Michael Albinus  <michael.albinus@gmx.de>
2049         * files.el (insert-directory): When WILDCARD-REGEXP and
2050         FULL-DIRECTORY-P are nil, insert the file entry instead of the
2051         whole directory.  (Bug#5551)
2053         * net/ange-ftp.el (ange-ftp-insert-directory): Insert "  " for
2054         dired's alignment sanity.  (Bug#5516)
2056 2010-02-14  Juri Linkov  <juri@jurta.org>
2058         * man.el (Man-fontify-manpage, Man-cleanup-manpage):
2059         Remove remaining ^H with their preceding chars.  (Bug#5566)
2061 2010-02-13  Glenn Morris  <rgm@gnu.org>
2063         * simple.el (transpose-subr): Give it a doc-string.
2065         * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
2066         Doc fixes.
2068 2010-02-12  Juri Linkov  <juri@jurta.org>
2070         * arc-mode.el (archive-unique-fname): Make directories for nested
2071         archives.  (Bug#5540)
2073 2010-02-12  Juri Linkov  <juri@jurta.org>
2075         * ffap.el (dired-at-point): Fix docstring.  (Bug#5565)
2077 2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2079         * subr.el (copy-overlay): Handle deleted overlays.
2081         * man.el (Man-completion-table): Don't signal an error if we can't run
2082         manual-program (bug#4056).
2084 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
2086         * textmodes/artist.el (artist-mt): Fix typos in docstring.
2088 2010-02-10  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2090         * info.el (Info-bookmark-jump): Simplify.
2092         * bookmark.el (bookmark-handle-bookmark): Catch the right error.
2093         (bookmark-default-handler): Accept new bookmark field `buffer'.
2095 2010-02-10  Chong Yidong  <cyd@stupidchicken.com>
2097         * iswitchb.el (iswitchb-completions): Revert last change.
2099 2010-02-10  Michael Albinus  <michael.albinus@gmx.de>
2101         * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
2102         FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
2103         This prevents file names like "~/" being listed literally.
2105 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
2107         * term/xterm.el (xterm-maybe-set-dark-background-mode):
2108         Remove dead code.  (Bug#5546)
2110 2010-02-09  Chong Yidong  <cyd@stupidchicken.com>
2112         * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
2113         correctly (Bug#5548).
2115 2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
2117         * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
2118         (ada-adjust-case): Don't adjust case in hexadecimal number literals.
2120 2010-02-08  Kenichi Handa  <handa@m17n.org>
2122         * international/mule-util.el (with-coding-priority): Add autoload
2123         cookie for putting `lisp-indent-function'.
2125 2010-02-07  Glenn Morris  <rgm@gnu.org>
2127         * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
2128         Move F2003 named interfaces from keywords-2 to keywords-1, and
2129         use function-name-face rather than constant-face.
2130         Simplify "abstract interface" regexp.
2132 2010-02-07  Chong Yidong  <cyd@stupidchicken.com>
2134         * eshell/esh-util.el (eshell-file-attributes): New optional arg
2135         ID-FORMAT.  Pass it to `file-attributes'.
2137         * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
2139 2010-02-07  sj  <prime.wizard+emacs@gmail.com>  (tiny change)
2141         * faces.el (set-face-attribute): Allow calling
2142         internal-set-lisp-face-attribute with 'unspecified family and
2143         foundry argument (Bug#5536).
2145 2010-02-07  Glenn Morris  <rgm@gnu.org>
2147         * progmodes/f90.el (f90-font-lock-keywords-2)
2148         (f90-looking-at-type-like, f90-looking-at-program-block-end):
2149         Handle F2003 named interfaces.
2151 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
2153         * progmodes/cc-mode.el (c-common-init): Bind temporary variables
2154         beg and end before calling c-get-state-before-change-functions.
2156 2010-02-06  Dan Nicolaescu  <dann@ics.uci.edu>
2158         * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
2160 2010-02-05  Juri Linkov  <juri@jurta.org>
2162         * doc-view.el (doc-view-mode):
2163         * image-mode.el (image-mode): Put property mode-class=special.
2164         (Bug#4896)
2166 2010-02-05  Mark A. Hershberger  <mah@everybody.org>
2168         * vc-svn.el (vc-svn-revision-table): New function.
2170 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
2172         * net/ange-ftp.el (ange-ftp-insert-directory):
2173         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2174         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2175         Handle also directories.  (Bug#5478)
2177 2010-02-05  Glenn Morris  <rgm@gnu.org>
2179         * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
2181 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
2183         * startup.el (command-line-1): Convert options beginning with a
2184         single dash as well (Bug#5519).
2186 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2188         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
2189         * minibuffer.el (completion-initials-expand): Only check the presence
2190         of delims *within* the boundaries, since otherwise the / delim is
2191         always found for files.
2193         Fix up various corner case problems.
2194         * doc-view.el (doc-view-last-page-number): New function.
2195         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
2196         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
2197         (doc-view-kill-proc): Avoid inf-loop in freak cases.
2198         (doc-view-reconvert-doc): Use the new recursive delete-directory.
2199         (doc-view-convert-current-doc): Don't create the resolution.el file
2200         here any more.
2201         (doc-view-pdf/ps->png): Do it here instead.
2202         (doc-view-already-converted-p): Check that resolution.el is present.
2203         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
2204         windows that are not yet showing images.
2206 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
2208         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
2209         `dired-uncache' for every elemnt which is an absolute file name.
2211         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
2212         directory, handle its directory component.
2213         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
2214         function is called permanently and creates noise, otherwise.
2216         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2217         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2218         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
2220 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
2222         * macros.el (apply-macro-to-region-lines):
2223         Minor simplification.  (Bug#5485)
2225 2010-02-04  Glenn Morris  <rgm@gnu.org>
2227         * mail/rmail.el (rmail-show-message-1): Handle malformed
2228         quoted-printable text.  (Bug#5441)
2230         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
2232         * simple.el (visual-line-mode): Capitalize lighter.
2234 2010-02-03  John Wiegley  <jwiegley@gmail.com>
2236         * iswitchb.el (iswitchb-completions): Add bookmark files to the
2237         list of files considered for "virtual buffer" completions.
2239 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
2241         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
2242         also in case of (and (not full) (not wildcard)). This is needed,
2243         when dired is called with a list of files, which are not in
2244         `default-directory'.  (Bug#5478)
2246 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2248         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
2250 2010-02-02  Juri Linkov  <juri@jurta.org>
2252         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
2253         from unidiff to allow function-line after @@.
2255 2010-02-02  Juri Linkov  <juri@jurta.org>
2257         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
2258         '(RCS SCCS) with inverted condition.
2260 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
2262         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
2263         messages.
2265 2010-02-01  Juri Linkov  <juri@jurta.org>
2267         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
2268         compare with "pkunzip" and "pkzip" instead of only "pkzip".
2269         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
2270         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
2272 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2274         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
2275         (doc-view-revert-buffer): New command.
2276         (doc-view-mode-map): Use it.
2278 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
2280         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
2281         pending merge is detected.
2283 2010-01-31  Juri Linkov  <juri@jurta.org>
2285         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
2286         beginning of interactive spec like all other grep commands do.
2287         Put "all" in front of "gz".  (Bug#5260)
2289 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
2291         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
2293 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
2295         * dirtrack.el (dirtrack): Warn instead of signalling error if the
2296         regexp is incorrect (Bug#5476).
2298 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
2300         * net/tramp.el (tramp-handle-insert-directory): Handle also
2301         symlinks, when FILENAME is not in `default-directory'.
2303 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
2305         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
2306         FILE is not in `default-directory'.  (Bug#5478)
2308         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
2309         of SWITCHES.  Handle the case, FILENAME is not in
2310         `default-directory'.  (Bug#5478)
2311         (tramp-register-file-name-handlers): Add safe-magic property.
2313 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
2315         * arc-mode.el (archive-zip-extract): Quote the argument passed to
2316         unzip (Bug#5475).
2318 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
2320         * progmodes/flymake.el (flymake-allowed-file-name-masks)
2321         (flymake-master-make-header-init): Add other C++ filename masks.
2322         (flymake-find-possible-master-files)
2323         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
2325 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
2327         Fix some busybox annoyances.
2329         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
2330         not responding." string.
2331         (tramp-open-connection-setup-interactive-shell): Dump stty
2332         settings.  Enable "neveropen" arg for all `tramp-send-command'
2333         calls.  Handle "=" in variable values properly.
2334         (tramp-find-inline-encoding): Raise an error, when no encoding is
2335         found.
2336         (tramp-wait-for-output): Check, whether PROC buffer is available.
2337         Remove spurious " ^H" sequences, sent by busybox.
2338         (tramp-get-ls-command): Suppress coloring, if possible.
2340 2010-01-28  Glenn Morris  <rgm@gnu.org>
2342         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
2344         * log-edit.el (log-edit-strip-single-file-name): Add missing
2345         :safe, :group, and :version tags.
2347 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
2349         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
2350         buffers.  (Bug#5477)
2352 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
2354         * files.el (delete-directory): Handle moving to trash without
2355         first doing recursion (Bug#5436).
2357 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
2359         * vc-hooks.el (vc-path): Mark as obsolete.
2361 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
2363         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
2364         names too.
2366         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
2367         for the short log.
2368         (vc-bzr-log-view-mode): Adjust regexp for the above change.
2370 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
2372         * progmodes/python.el: Replace reference to obsolete c-subword-mode.
2374         * vc-bzr.el (vc-bzr-revision-table): New function.
2376 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
2378         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
2379         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
2381 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
2383         Remove support for adding --signoff on commit.
2384         Future support will use an incompatible generic mechanism.
2385         * vc-git.el (vc-git-add-signoff): Remove variable.
2386         (vc-git-toggle-signoff): Remove function.
2387         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
2389         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
2390         from xterm-set-background-mode.  Return t if the background mode
2391         was set.
2392         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
2393         earlier, call it again in case the background mode has changed.
2395 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
2397         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
2398         (Bug#3541).
2400 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
2402         * emacs-lisp/assoc.el (aelement): Doc fix.
2403         (aput, adelete, amake): Use lexical-let (Bug#5450).
2405 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
2407         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
2408         is the same as subprogram call, not declaration.  (Bug#5435).
2410 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
2412         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
2413         (tramp-smb-maybe-open-connection): Use it.
2415 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
2417         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
2419 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2421         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
2422         just because we see "encoding: 8bit".
2423         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
2425 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
2427         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
2429 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
2431         * jka-compr.el (jka-compr-load): If load-file is not in
2432         load-history, try its file-truename version.  (bug#5447)
2434 2010-01-21  Alan Mackenzie  <acm@muc.de>
2436         Fix a situation where deletion of a cpp construct throws an error.
2437         * progmodes/cc-engine.el (c-invalidate-state-cache): Before
2438         invoking c-with-all-but-one-cpps-commented-out, check that the
2439         special cpp construct is still in the buffer.
2440         (c-parse-state): Record the special cpp with markers, not numbers.
2442 2010-01-21  Kenichi Handa  <handa@m17n.org>
2444         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
2445         process last-command-event, as it is now decoded first (Bug#5380).
2447 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
2449         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
2451 2010-01-20  Glenn Morris  <rgm@gnu.org>
2453         * indent.el (tab-always-indent): Fix custom-type.
2455 2010-01-19  Alan Mackenzie  <acm@muc.de>
2457         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
2458         buffer throws "args out of range".
2459         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
2460         playing the role of delimiter.
2462 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
2464         * progmodes/ada-mode.el: Fix bug#5400.
2465         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
2466         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
2467         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
2468         Improve comments in "is" portion.  Handle null procedure declaration.
2469         (ada-move-to-end): Improve doc string.
2471 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
2473         * ido.el (ido-cur-list): Initialize to nil.
2474         Remove obsolete information from commentary.
2475         (ido-choice-list): Initialize to nil.
2476         (ido-get-bufname): Reject minibuffers.
2477         (ido-make-buffer-list): If "default" is a nonexistent
2478         buffer, ignore it, as per the function's comment.
2479         (ido-kill-buffer-internal): New function.
2480         (ido-kill-buffer-at-head): Use it.
2481         (ido-visit-buffer): Likewise.
2483 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
2485         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
2487 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
2489         * cedet/ede/locate.el (ede-locate-file-in-project)
2490         (ede-locate-file-in-project-impl): Fix typos in docstrings.
2491         (ede-enable-locate-on-project): Fix typos in error messages.
2493         * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
2494         (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
2495         (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
2496         (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
2497         (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
2498         Fix typos in menu help.
2500         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
2501         Fix typos in chart titles.
2503         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
2504         * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
2505         (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
2506         (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
2507         (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
2508         (semantic-parse-stream, semantic-parse-region)
2509         (semantic-parse-region-default, semantic--set-buffer-cache)
2510         (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
2511         (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
2512         (semantic-default-submodes):
2513         * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
2514         (semanticdb-create-ebrowse-database)
2515         (semanticdb-find-tags-for-completion-method)
2516         (semanticdb-find-tags-by-class-method)
2517         (semanticdb-deep-find-tags-by-name-method)
2518         (semanticdb-deep-find-tags-for-completion-method):
2519         * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
2520         (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
2521         (semanticdb-find-tags-for-completion-method)
2522         (semanticdb-find-tags-by-class-method)
2523         (semanticdb-deep-find-tags-for-completion-method):
2524         * cedet/semantic/db-find.el (semanticdb-find-translate-path)
2525         (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
2526         (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
2527         (semanticdb-find-tags-by-name-method)
2528         (semanticdb-find-tags-by-name-regexp-method)
2529         (semanticdb-find-tags-for-completion-method)
2530         (semanticdb-find-tags-by-class-method)
2531         (semanticdb-find-tags-external-children-of-type-method)
2532         (semanticdb-find-tags-subclasses-of-type-method)
2533         (semanticdb-deep-find-tags-by-name-method)
2534         (semanticdb-deep-find-tags-by-name-regexp-method)
2535         (semanticdb-deep-find-tags-for-completion-method):
2536         * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
2537         (semanticdb-enable-gnu-global-in-buffer)
2538         (semanticdb-find-tags-for-completion-method)
2539         (semanticdb-deep-find-tags-by-name-method)
2540         (semanticdb-deep-find-tags-for-completion-method):
2541         * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
2542         (javascript-mode, semanticdb-find-translate-path)
2543         (semanticdb-find-tags-for-completion-method)
2544         (semanticdb-find-tags-by-class-method)
2545         (semanticdb-deep-find-tags-by-name-method)
2546         (semanticdb-deep-find-tags-for-completion-method)
2547         (semanticdb-find-tags-external-children-of-type-method):
2548         * cedet/semantic/idle.el (semantic-idle-work-core-handler)
2549         (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
2550         (global-semantic-idle-scheduler-mode):
2551         * cedet/srecode/dictionary.el (srecode-field-value)
2552         (srecode-dictionary-add-section-dictionary):
2553         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
2554         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
2555         (describe-class, eieio-describe-generic, describe-generic):
2556         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
2557         (eieio-speedbar-expand):
2558         * emulation/viper-cmd.el (viper-exec-form-in-vi)
2559         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
2560         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
2561         (viper-del-backward-char-in-replace, viper-backward-indent)
2562         (viper-brac-function, viper-register-to-point, viper-submit-report):
2563         * net/tramp.el (tramp-remote-coding-commands):
2564         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
2565         Fix typos in docstrings.
2567 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
2569         * mail/sendmail.el (mail-yank-original): Set the mark if the
2570         specified function for yanking does not do it.
2572 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
2574         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
2576         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
2577         resyncing a directory.
2579 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
2581         * progmodes/ada-mode.el: Fix bug#1920.
2582         (ada-ident-re): Delete ., allow multibyte characters.
2583         (ada-goto-label-re): New; matches goto labels.
2584         (ada-block-label-re): New; matches block labels.
2585         (ada-label-re): New; matches both.
2586         (ada-named-block-re): Deleted; callers changed to use
2587         `ada-block-label-re' instead.
2588         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
2589         Use `ada-block-label-re'.
2590         (ada-indent-on-previous-lines): Improve handling of goto labels.
2591         (ada-get-indent-block-start): Special-case block label.
2592         (ada-get-indent-label): Split into `ada-indent-block-label' and
2593         `ada-indent-goto-label'.
2594         (ada-goto-stmt-start, ada-goto-next-non-ws):
2595         Optionally ignore goto labels.
2596         (ada-goto-next-word): Simplify.
2597         (ada-indent-newline-indent-conditional): Insert newline before
2598         trying to fix indentation; doc fix.
2600 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
2602         * calc/calc.el (calc-command-flags): Give it an initial value.
2604 2010-01-17  Glenn Morris  <rgm@gnu.org>
2606         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
2608 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
2610         * cedet/semantic.el (semantic-mode):
2611         * files.el (minibuffer-with-setup-hook):
2612         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
2613         (artist-key-draw-continously, artist-key-do-continously-continously)
2614         (artist-key-set-point-continously, artist-mouse-draw-continously):
2615         Fix typos in docstrings.
2617 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
2619         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
2620         return t (Bug#3898).
2622 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
2624         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
2625         can parse the output of the external commands (Bug#5279).
2627 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
2629         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
2631 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
2633         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
2635         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
2637         * startup.el (command-line): Remove unused --icon-type arg.
2638         Handle --display arg, passing it to command-line-1 (Bug#5392).
2640 2010-01-16  Mario Lang  <mlang@delysid.org>
2642         * cedet/ede/cpp-root.el (ede-cpp-root-project):
2643         * cedet/ede/files.el (ede-expand-filename):
2644         * cedet/ede/simple.el (ede-simple-project):
2645         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
2646         (semantic-complete-inline-tag-engine):
2647         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
2648         * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
2649         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
2650         * cedet/semantic/db.el (semanticdb-equivalent-mode):
2651         * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
2652         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
2653         * emacs-lisp/chart.el (chart-translate-namezone):
2654         * textmodes/artist.el (artist-compute-popup-menu-table):
2655         Remove duplicated words in doc-strings.
2657 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
2659         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
2660         to mairix-search to suppress threading (Bug#5342).
2662 2010-01-15  Kenichi Handa  <handa@m17n.org>
2664         * international/mule-cmds.el (canonicalize-coding-system-name):
2665         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
2667 2010-01-15  Glenn Morris  <rgm@gnu.org>
2669         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
2671         * wid-edit.el (widget-keymap): Doc fix.
2673         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
2674         former seems to be more widely accepted by various svn versions.
2676 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
2678         * find-cmd.el (find-constituents):
2679         * vc-arch.el (vc-arch-root):
2680         * window.el (window-body-height, pop-up-frames):
2681         * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
2682         (semantic-no-reparse-needed-change-hook):
2683         * cedet/srecode/insert.el (srecode-resolve-argument-list)
2684         (srecode-template-inserter-blank, srecode-template-inserter-variable)
2685         (srecode-template-inserter-ask, srecode-template-inserter-width)
2686         (srecode-template-inserter-section-start)
2687         (srecode-template-inserter-section-end, srecode-insert-method):
2688         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
2689         * progmodes/ada-stmt.el (ada-if):
2690         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
2691         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
2692         (ispell-encoding8-command, ispell-aspell-supports-utf8)
2693         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
2695         * progmodes/flymake.el (flymake-post-syntax-check):
2696         Fix typo in error message.
2698 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
2700         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
2701         which is always a string.  (Bug#5313)
2703 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
2705         * progmodes/ada-xref.el (ada-default-prj-properties):
2706         Simplify previous change.
2708 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2710         * progmodes/ada-xref.el (ada-default-prj-properties):
2711         Default ada_project_path to $ADA_PROJECT_PATH.
2713 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2715         * progmodes/ada-mode.el (ada-create-keymap):
2716         Override `narrow-to-defun' with `ada-narrow-to-defun'.
2718 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2720         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
2721         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
2722         (ada-get-current-indent, ada-imenu-generic-expression)
2723         (ada-which-function): Check for it.
2725 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2727         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
2728         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
2730 2010-01-14  Glenn Morris  <rgm@gnu.org>
2732         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
2734 2010-01-14  Kenichi Handa  <handa@m17n.org>
2736         * composite.el (auto-composition-mode): Make it a buffer local
2737         variable (permanent-local).
2738         (auto-composition-function): Set the default value to
2739         auto-compose-chars.
2740         (auto-composition-mode): Make it a simple function, not a minor mode.
2741         (global-auto-composition-mode): Likewise.
2742         (turn-on-auto-composition-if-enabled): Delete it.
2744 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
2746         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
2748 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
2750         * files.el (copy-directory): Compute target for recursive
2751         directories with identical names.  (Bug#5343)
2753 2010-01-12  Glenn Morris  <rgm@gnu.org>
2755         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
2756         it to bug-gnu-emacs rather than emacs-pretest-bug.
2758 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
2760         * cedet/data-debug.el (data-debug): Fix customization group reference.
2762 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
2764         * cedet/semantic/analyze.el (semantic-analyze-push-error)
2765         (semantic-analyze-context, semantic-analyze-context-assignment)
2766         (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
2767         * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
2768         (semantic-java-doc-keywords-map):
2769         * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
2770         (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
2771         (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
2772         (semantic-c-classname, semantic-format-tag-uml-prototype)
2773         (semantic-c-dereference-namespace, semantic-analyze-type-constants):
2774         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
2775         (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
2776         (semantic-get-local-variables, semantic-end-of-command)
2777         (semantic-beginning-of-command, semantic-ctxt-current-class-list)
2778         (lisp-mode):
2779         * cedet/semantic/bovine/make.el (makefile-mode):
2780         * cedet/semantic/wisent/python.el (wisent-python-string-re)
2781         (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
2782         (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
2783         (semantic-lex, semantic-get-local-variables, python-mode):
2784         * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
2785         * cedet/srecode/extract.el (srecode-extract-state-set)
2786         (srecode-extract-method): Fix typos in docstrings.
2788 2010-01-11  Sam Steingold  <sds@gnu.org>
2790         * imenu.el (imenu-default-create-index-function): Detect infinite
2791         loops caused by imenu-prev-index-position-function.
2793 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
2795         * htmlfontify.el (htmlfontify-load-rgb-file)
2796         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
2797         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
2798         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
2799         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
2800         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
2801         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
2802         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
2803         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
2804         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
2805         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
2806         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
2807         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
2808         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
2809         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
2810         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
2811         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
2812         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
2813         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
2814         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
2815         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
2816         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
2817         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
2818         backslash-quoting from parentheses, etc.
2820 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
2822         * progmodes/js.el: Autoload javascript-mode alias.
2824 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
2826         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
2827         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
2828         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
2829         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
2830         Fix typos in docstrings.
2831         (ffap-url-regexp): Doc fix.
2832         (ffap-at-mouse): Fix typo in message.
2834 2010-01-11  Glenn Morris  <rgm@gnu.org>
2836         * version.el (emacs-copyright): Set copyright year to 2010.
2838 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2840         * format.el (format-annotate-function): Only set
2841         write-region-post-annotation-function after running to-fn so as not to
2842         affect nested write-region calls (bug#5273).
2844 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
2846         * cedet/semantic.el (semantic-new-buffer-setup-functions):
2847         Add python parser.
2849         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
2850         wisent/python.el.
2852 2010-01-10  Richard Kim  <emacs18@gmail.com>
2854         * cedet/semantic/wisent/python-wy.el:
2855         * cedet/semantic/wisent/python.el: New files.
2857 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
2859         * man.el (Man-goto-section): Signal error if the section is not
2860         found (Bug#5317).
2862 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
2864         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
2865         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
2867 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
2869         * progmodes/compile.el: Don't treat compile-command as safe if
2870         compilation-read-command might be nil (Bug#4218).
2872 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
2874         * startup.el (command-line-1): Use orig-argi to check for ignored X and
2875         NS options.
2877 2010-01-08  Kenichi Handa  <handa@m17n.org>
2879         * international/fontset.el (build-default-fontset-data):
2880         Exclude characters in scripts kana, hangul, han, or cjk-misc.
2882 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
2884         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
2885         to `create-file-buffer' as it expects, not just a buffer name.
2886         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
2887         to help uniquify.  (Bug#3224)
2889 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
2891         * font-setting.el (font-setting-change-default-font): Use user-spec
2892         instead of name.
2894 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
2896         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
2898 2010-01-05  Tom Tromey  <tromey@redhat.com>
2900         * progmodes/python.el (python-font-lock-keywords):
2901         Handle qualified decorators (Bug#881).
2903 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2905         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
2906         in a lightweight checkout.
2908 2010-01-05  Kenichi Handa  <handa@m17n.org>
2910         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
2912 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2914         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
2916 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
2918         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
2919         checkouts.  (Bug#618)
2920         (vc-bzr-log-view-mode): Also highlight the author.
2921         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
2922         (vc-bzr-shelve-menu-map):
2923         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
2924         (vc-bzr-shelve-apply): Make prompt more explicit.
2926 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
2928         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
2929         They are valid characters in URL paths (rfc3986), and at least
2930         Firefox does not understand the encoded version (Bug#3166).
2932 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
2934         * progmodes/octave-mod.el (octave-end-keywords)
2935         (octave-block-begin-or-end-regexp, octave-block-match-alist):
2936         Add "end" keyword (Bug#3061).
2937         (octave-end-as-array-index-p): New function.
2938         (calculate-octave-indent): Use it.
2940 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2942         * bookmark.el: Consistently put the text property on the bookmark name.
2943         (bookmark-bmenu-marks-width): Bump back to 2, to include
2944         annotation marks.
2945         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
2946         property on the bookmark name, instead of not putting it at all.
2947         (bookmark-bmenu-list): Fix where we put the text property.
2949 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2951         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
2952         for showing buffer modified state (as added in the previous change).
2954 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2956         * bookmark.el: Show modified state of bookmark buffer more accurately.
2957         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
2958         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
2959         (with-buffer-modified-unmodified): New macro.
2960         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
2961         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
2962         Use new macro to preserve the buffer modified state.
2964 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2966         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
2967         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
2968         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
2969         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
2970         (bookmark-bmenu-rename, bookmark-bmenu-locate)
2971         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
2972         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
2974 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
2976         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
2977         Make the lines in the generated doc string shorter.  (Bug#4668)
2979 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
2981         * net/rcirc.el: Add follow-link binding (Bug#4738).
2983 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
2985         * Makefile.in (bzr-update): Rename from cvs-update.
2986         (cvs-update): New target for backward compatibility.
2988         * makefile.w32-in (bzr-update): Rename from cvs-update.
2989         (cvs-update): New target for backward compatibility.
2991 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2993         * bookmark.el: Remove gratuitous gratitude.
2995 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2997         * bookmark.el (bookmark-bmenu-any-marks): New function
2998         (bookmark-bmenu-save): Clear buffer modification if no marks.
3000 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
3002         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
3003         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
3004         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
3005         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
3007         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
3008         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
3009         To: emacs-devel {_AT_} gnu.org
3010         Subject: bookmark.el bug report
3011         Date: Mon, 28 Dec 2009 14:19:16 +0800
3012         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
3014 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
3016         * bookmark.el: Improvements suggested by Drew Adams:
3017         (bookmark-bmenu-ensure-position): New name for
3018         `bookmark-bmenu-check-position'.  Just ensure the position,
3019         don't return any meaningful value.
3020         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
3021         New constants.
3023 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
3025         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
3026         (bookmark-yank-point, bookmark-bmenu-check-position):
3027         Fix typos in docstrings.
3028         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
3029         (bookmark-name-from-full-record, bookmark-get-position)
3030         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
3031         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
3032         Remove useless quoting of parenthesis, etc. in docstrings.
3034         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
3035         (ediff-append-custom-diff): Fix typo in error message.
3036         (ediff-meta-mark-equal-files): Fix typos in messages.
3038         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
3040         * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
3041         Fix typo in docstring.
3043         * net/imap-hash.el (imap-hash-make): Doc fix.
3044         (imap-hash-test): Fix typo in error message; reflow docstring.
3045         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
3046         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
3047         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
3048         Fix typos in docstrings.
3049         (imap-hash-open-connection): Fix typo in error message.
3051         * play/gomoku.el (gomoku): Fix typos in docstring.
3053         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
3054         (gdb-jsonify-buffer): Fix typos in docstring.
3055         (gdb-goto-breakpoint): Fix typo in error message.
3056         ("Display Other Windows"): Fix typo in help message.
3057         (gdb-speedbar-expand-node): Fix typo in question.
3059         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
3060         (idlwave-html-system-help-location, idlwave-html-help-location)
3061         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
3062         (idlwave-help-browser-generic-args, idlwave-help-directory)
3063         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
3064         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
3065         (idlwave-online-help, idlwave-help-html-link)
3066         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
3067         Fix typos in docstrings.
3068         (idlwave-help-with-source, idlwave-help-find-routine-definition):
3069         Reflow docstrings.
3070         (idlwave-help-assistant-start): Fix typo in error message.
3072         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
3073         (octave-electric-space): Fix typos in docstrings.
3075 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
3077         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
3079 2010-01-01  Juri Linkov  <juri@jurta.org>
3081         * comint.el (comint-input-ring-size): Make it a defcustom and
3082         increase the default to 500 (Bug#5148).
3084 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
3086         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
3087         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
3088         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
3090 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
3092         Show working revision correctly for mercurial.
3093         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
3094         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
3096 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
3098         Declare some functions for the byte-compiler.
3099         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
3100         (speedbar-timer-fn, speedbar-change-expand-button-char)
3101         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
3103 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
3105         This changeset reverts GDB Graphical Interface to use annotations.
3106         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
3108 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
3110         Make vc-dir work on subdirectories of the bzr root.
3111         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
3112         file names relative to it.
3113         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
3114         relative directory to vc-bzr-after-dir-status.
3116 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
3118         * font-lock.el (font-lock-refresh-defaults): New function, which
3119         can be used to let font-lock react to external changes in
3120         variables like font-lock-defaults and keywords.
3121         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
3123 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
3125         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
3127         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
3129 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
3131         Supersede color.diff settings in git log (bug#5211).
3133         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
3134         escape chars in its output when the user has color.diff set to `always'.
3135         This fix works on git 1.4.2 and newer (released on 2006-08-13).
3137 2009-12-26  Kevin Ryde  <user42@zip.com.au>
3139         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
3140         node.  Keep previous "Index" name to work with past coreutils too.
3142         * man.el (man): Revise docstring a bit to show -a and -l as
3143         examples.  Add -k description since support for it has otherwise
3144         been a secret.  (Further to bug#3717.)
3145         (Man-bgproc-sentinel): When "-k foo" produces no output show error
3146         "no matches" rather than "Can't find manpage", as the latter reads
3147         like -k was interpreted as a page name, which is not so.  (Bug#5431)
3149 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
3151         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
3152         switches.  Check also for //SUBDIRED// line.
3154 2009-12-25  Kenichi Handa  <handa@m17n.org>
3156         * language/indian.el (devanagari-composable-pattern): Fixed to
3157         handle ZWNJ and ZWJ.  Use it in composition-function-table for
3158         Devanagari.
3159         (malayalam-composable-pattern): Fix previous change.
3161 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3163         * ps-print.el (ps-face-attributes): It was not returning the
3164         attribute face for faces specified as string.  Reported by harven
3165         <harven@free.fr>.
3166         (ps-print-version): New version 7.3.5.
3168 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
3170         * calendar/icalendar.el (icalendar--convert-tz-offset):
3171         Fix timezone names.
3172         (icalendar--convert-tz-offset): Fix the "last-day-problem".
3173         (icalendar--add-diary-entry): Remove the trailing blank that
3174         diary-make-entry inserts.
3176 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
3178         Make `file-expand-wildcards' work for remote files.
3180         * files.el (file-expand-wildcards): In case of remote files, check
3181         only local file name part for wildcards.  Provide feature 'files
3182         and subfeature 'remote-wildcards.  (Bug#5198)
3184         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
3185         if there is already an established connection.
3186         (tramp-advice-file-expand-wildcards): Remove it.
3188         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
3189         (tramp-advice-file-expand-wildcards): Move from tramp.el.
3190         Activate advice for older GNU Emacs versions.  (Bug#5237)
3192 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
3194         Some doc fixes (more needed).
3196         * find-cmd.el (find-constituents): Reflow docstring.
3197         (find-cmd, find-prune, find-command): Fix typos in docstrings.
3198         (find-generic): Doc fix.
3200 2009-12-17  Juri Linkov  <juri@jurta.org>
3202         Fix regression from 23.1 to allow multiple modes in Local Variables.
3204         * files.el (hack-local-variables-filter): While ignoring duplicates,
3205         don't take `mode' into account.
3206         (hack-local-variables-filter, hack-dir-local-variables):
3207         Don't remove duplicate `mode' from local-variables-alist (like `eval').
3209 2009-12-17  Juri Linkov  <juri@jurta.org>
3211         Make `dired-diff' safer.  (Bug#5225)
3213         * dired-aux.el (dired-diff): Signal an error when `file' equals to
3214         `current' or when `file' is a directory of the `current' file.
3216 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
3218         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
3219         unconditionally preloaded files.
3221 2009-12-16  Juri Linkov  <juri@jurta.org>
3223         Revert to old 23.1 logic of using the file at the mark as default.
3224         * dired-aux.el (dired-diff): Use the file at the mark as default
3225         if it's not the same as the current file, and the target dir is
3226         the current dir or the mark is active.  Add the current file
3227         as the arg of `dired-dwim-target-defaults'.  Use the default file
3228         in the prompt.  (Bug#5225)
3230 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
3232         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
3233         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
3234         (tramp-check-for-regexp): Check also, when an echoing shell stops
3235         to echo sent commands.
3237 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
3239         * Makefile.in: Revert last change (Bug#5191).
3241 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
3243         * vc-hg.el (vc-hg-print-log): Fix argument order.
3244         (vc-hg-working-revision): Make sure the command is executed in a
3245         known environment so that we can parse the output.  (Bug#4417)
3247 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
3249         * progmodes/python.el (python-symbol-completions): Remove text
3250         properties from symbol string before calling python-send-receive.
3252 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
3254         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
3255         when there are values for both file and line.  (Bug#5060)
3257 2009-12-14  Juri Linkov  <juri@jurta.org>
3259         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
3260         whitespace after the file name of the first line of unified format,
3261         because git-diff doesn't output whitespace and file modification time
3262         after the file name.
3264 2009-12-14  David Kastrup  <dak@gnu.org>
3266         * info.el (Info-hide-cookies-node): Before hiding a cookie,
3267         check if it already has the `display' property added by
3268         `Info-display-images-node', and not put the `invisible' property
3269         in this case.
3271 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
3273         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
3274         (semantic-mru-bookmark-mode): Doc fixes.
3276         * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
3277         of assert.
3279 2009-12-13  Glenn Morris  <rgm@gnu.org>
3281         * mail/emacsbug.el (message-sort-headers): Define for compiler.
3282         (report-emacs-bug): In message-mode, sort manually before storing
3283         original report text.  (Bug#5178)
3284         Remove superfluous save-excursion.
3286 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
3288         * net/dbus.el (dbus-property-handler): Filter lambda forms out
3289         when responding to "GetAll" properties.
3291 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
3293         * simple.el (compose-mail): Remove mail-setup-with-from from
3294         customization checks.
3296 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
3298         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
3299         RAR archives created on Unix systems.
3301 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3303         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
3304         the varalias that was accidentally removed by the 2009-11-19 change
3305         (bug#5186).
3307 2009-12-12  Kenichi Handa  <handa@m17n.org>
3309         * language/indian.el (indian-compose-regexp): New function.
3310         (malayalam-composable-pattern): Fix the pattern.
3311         (composition-function-table): Set malayalam-composable-pattern for
3312         Malayalam characters.
3314 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
3316         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
3317         rather than down-mouse-1, based on follow-link conventions.
3319         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
3320         are compiled.
3322 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
3324         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
3325         (verilog-vmm-statement-re, verilog-ovm-statement-re)
3326         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
3327         (verilog-leap-to-head, verilog-backward-token):
3328         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
3330 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
3332         * progmodes/verilog-mode.el (verilog-auto-lineup)
3333         (verilog-nameable-item-re): Cleanup user-visible spelling and
3334         documentation errors.  One reported by Gary Delp.
3335         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
3336         (verilog-read-decls): Fix AUTOWIRE with types declared in a
3337         package, bug195.  Reported by Pierre-David Pfister.
3339 2009-12-11  Glenn Morris  <rgm@gnu.org>
3341         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
3343         * mail/emacsbug.el: No longer require sendmail.
3344         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
3345         (report-emacs-bug-orig-text): Doc fix.
3346         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
3347         New local variables, to adapt to different mail-user-agents.
3348         (report-emacs-bug): Fix test for a gnu.org address.
3349         Use overlays for emphasis, since font-lock defeats 'face property.
3350         Pretest bugs also end up at the newsgroup these days.
3351         Stop message-mode stripping text properties.
3352         Set and use the new buffer-local variables.
3353         (report-emacs-bug-hook): Add doc-string.
3354         Remove some unnecessary save-excursions and simplify.
3355         Use the appropriate hook and send-command.
3357         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
3358         capitalization of some menu entries.
3360 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3362         * whitespace.el (whitespace-display-char-on): Ensure
3363         `buffer-display-table' is unique when two or more windows are
3364         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
3365         New version 12.1.
3367 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
3369         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
3370         characters in the Attribute field.
3372 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
3374         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
3376 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3378         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
3379         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3380         Disregard autoload-excludes.
3381         (update-directory-autoloads): Obey autoload-excludes here instead.
3382         But don't store its contents in no-autoloads and remove entries that
3383         refer to excludes files.
3385 2009-12-10  Glenn Morris  <rgm@gnu.org>
3387         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
3388         (expand-mail-aliases): Define for compiler.
3390         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
3391         Define for compiler.
3393         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
3394         appropriate for the mail-user-agent in use.
3396 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
3398         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
3400 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
3402         Fix short log parsing and fontification.
3403         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
3404         Fix fontification for the [merge] label.
3406 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
3408         Drop some properties to avoid surprises (bug#5002).
3409         * htmlfontify.el (hfy-ignored-properties): New defcustom.
3410         (hfy-fontify-buffer): Use it.
3412 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3414         Minor cleanup.
3415         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
3416         Adjust all callers.
3417         (ffap-locate-file): Remove unused arg `dir-ok' and make other
3418         args compulsory.  Adjust callers.
3419         (ffap-gopher-at-point): Remove unused var `name'.
3421         Get rid of the ELCFILES abomination.
3422         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
3423         (compile-elcfiles): New phony target.
3424         (compile-main): Compute ELCFILES dynamically.
3425         (compile-clean): New target to remove left-over elc files.
3426         (compile, all): Use it.
3428 2009-12-09  Kenichi Handa  <handa@etlken>
3430         * international/mule-diag.el: Require help-mode instead of help-fns.
3432 2009-12-09  Kenichi Handa  <handa@m17n.org>
3434         * international/mule-cmds.el (ucs-names): Supply sufficiently
3435         fine ranges instead of pre-calculating accurate ranges.
3436         Iterate with bigger gc-cons-threshold.
3438 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
3440         Add support for stashing a snapshot of the current tree.
3441         * vc-git.el (vc-git-stash-snapshot): New function.
3442         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
3444 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
3446         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
3447         instead of `(beginning|end)-of-line'.
3449 2009-12-08  Glenn Morris  <rgm@gnu.org>
3451         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
3453         * Makefile.in (ELCFILES): Regenerate.
3455 2009-12-07  Juri Linkov  <juri@jurta.org>
3457         Don't lazy-highlight the comint output in history Isearch mode.
3459         * comint.el (comint-history-isearch-search): Instead of
3460         `comint-line-beginning-position', use `comint-after-pmark-p'
3461         to check if point if before the process mark, and go to
3462         `process-mark' in this case.
3464 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3466         * textmodes/tex-mode.el (latex-complete)
3467         (latex-indent-or-complete): Remove.
3468         (latex-mode): Set completion-at-point-functions instead.
3470         Provide a standard completion command and hook it into TAB.
3471         * minibuffer.el (completion-at-point-functions): New var.
3472         (completion-at-point): New command.
3473         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
3474         * progmodes/python.el (python-mode-map): Use completion-at-point.
3475         (python-completion-at-point): Rename from python-partial-symbol and
3476         adjust for use in completion-at-point-functions.
3477         (python-mode): Setup completion-at-point for Python completion.
3478         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
3479         extracted from lisp-complete-symbol.
3480         (lisp-complete-symbol): Use it.
3481         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
3482         setup completion-at-point for Elisp completion.
3483         (emacs-lisp-mode-map, lisp-interaction-mode-map):
3484         Use completion-at-point.
3485         * ielm.el (ielm-map): Use completion-at-point.
3486         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
3487         * progmodes/sym-comp.el: Move to...
3488         * obsolete/sym-comp.el: Move from progmodes.
3490 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
3492         Prevent save-buffer in Rmail buffers from using the coding-system
3493         of the current message, and from clobbering the encoding mnemonics
3494         in the mode line (Bug#4623).
3496         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
3497         flag, too.
3498         (rmail-message-encoding): New variable.
3499         (rmail-write-region-annotate): Record the encoding of the current
3500         message in rmail-message-encoding.
3501         (rmail-after-save-hook): New function, restores the encoding of
3502         the current message after the message collection is saved.
3504 2009-12-07  Juri Linkov  <juri@jurta.org>
3506         * progmodes/grep.el (grep-read-files): Use `completing-read'
3507         instead of `read-string'.  Set its `collection' arg to
3508         `read-file-name-internal'.  (Bug#4301)
3510 2009-12-07  Juri Linkov  <juri@jurta.org>
3512         Correctly restore original Isearch point.  (Bug#4994)
3514         * isearch.el (isearch-mode): Move `isearch-push-state' after
3515         `(run-hooks 'isearch-mode-hook)'.
3516         (isearch-cancel): When `isearch-push-state-function' is defined,
3517         let-bind `isearch-cmds' to the first state (the last element of
3518         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
3519         function and restores the original point).  Otherwise, move point
3520         to `isearch-opoint'.
3522 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3524         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
3525         chars that don't have names, so the table can be built much faster at
3526         run-time.
3528 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
3530         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
3531         change.  Suggested by David Kastrup.
3533         * simple.el (compose-mail): Check for incompatibilities and warn.
3534         (compose-mail-user-agent-warnings): New option.
3536 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
3538         Support showing a single log entry from vc-annotate.
3539         * vc.el (print-log): Add a new argument: START-REVISION.
3540         (vc-print-log-internal): Add a new optional argument and
3541         pass it to the backend.
3542         (vc-print-log, vc-print-root-log): Adjust callers.
3543         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
3544         buffer already displays the requested log entry, use it.
3545         Otherwise display only the log entry in question.
3546         * vc-svn.el (vc-svn-print-log):
3547         * vc-mtn.el (vc-mtn-print-log):
3548         * vc-hg.el (vc-hg-state):
3549         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
3550         (vc-git-show-log-entry): Return t on success.
3551         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
3552         (vc-bzr-show-log-entry): Return t on success.
3553         * vc-rcs.el (vc-rcs-print-log):
3554         * vc-sccs.el (vc-sccs-print-log):
3555         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
3557 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
3559         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
3560         Add menus to the meta mode.  (Bug#5043)
3562 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
3564         * ediff-init.el (ediff-event-key): Use event-to-character instead of
3565         event-key.
3567         * ediff.el (ediff-buffers-internal): Add unwind-protect.
3569 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
3571         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
3572         Berbain <raphael.berbain@gmail.com>.
3574         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
3575         characters.
3576         (tramp-initial-end-of-output): New defconst.
3577         (tramp-methods, tramp-find-shell)
3578         (tramp-open-connection-setup-interactive-shell)
3579         (tramp-maybe-open-connection): Use it.
3580         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
3581         existence of `#' and `$'.
3583         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
3584         `tramp-initial-end-of-output'.
3586 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
3588         Get the background mode from the terminal for xterm, and set
3589         faces accordingly.
3590         * term/xterm.el (xterm-set-background-mode): New function.
3591         (terminal-init-xterm): Use it in case xterm supports background
3592         color queries.  Recompute faces after getting the background
3593         color.
3595 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
3597         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
3598         number comment back on its own line, for easier parsing.
3600 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3602         Make it work for non-file buffers (bug#5102).
3603         * doc-view.el (doc-view-current-cache-dir):
3604         Use doc-view-buffer-file-name rather than buffer-file-name.
3605         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
3607 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
3609         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
3610         author field is too short.
3612 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
3614         * vc-git.el (vc-git-print-log): Handle a limit argument.
3615         Display the short log in graph form and with labels.
3616         (vc-git-log-view-mode): Handle labels.
3618         Make vc-revert change VC state from 'added to 'unregistered.
3619         * vc-git.el (vc-git-revert): Call git reset first.
3621 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
3623         * net/newst-backend.el, net/newst-plainview.el:
3624         * net/newst-reader.el, net/newst-ticker.el:
3625         * net/newst-treeview.el, net/newsticker.el:
3626         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
3628 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
3630         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
3632         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
3633         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
3634         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
3635         Update annotation regexp.
3637         * simple.el (beginning-of-visual-line): Constrain to field
3638         boundaries (Bug#5106).
3640 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
3642         * xml.el (xml-substitute-numeric-entities): Move
3643         newsticker--decode-numeric-entities in newst-backend.el to
3644         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
3645         * net/newst-backend.el (newsticker--parse-generic-feed)
3646         (newsticker--parse-generic-items)
3647         (newsticker--decode-numeric-entities): Move
3648         newsticker--decode-numeric-entities in newst-backend.el to
3649         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
3651 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
3653         * progmodes/js.el (js--js-not): Add null to the list of values.
3655 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
3657         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
3659 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3661         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
3662         delimiter if it is at the end of the current line.
3663         (bibtex-generate-url-list): Fix docstring.
3665 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3667         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
3668         minibuffer's content with itself.
3669         Fold the confirm-after-completion case into the `confirm' case.
3670         (completion-pcm-word-delimiters): Add : and / to the delimiters.
3672 2009-12-06  Kevin Ryde  <user42@zip.com.au>
3674         * ffap.el (ffap-rfc-path): Make this a defcustom since
3675         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
3677         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
3678         manuals, similar to existing setup for help-mode.  (Bug#3913.)
3680 2009-12-05  Juri Linkov  <juri@jurta.org>
3682         Save and restore dired buffer's point positions too.  (Bug#4880)
3684         * dired.el (dired-save-positions): Return in the first element
3685         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
3686         Doc fix.
3687         (dired-restore-positions): First restore buffer's position.
3688         While restoring window's positions, check if window still displays
3689         the original buffer.
3691 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
3693         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
3694         if possible.
3696         * cedet/semantic/ia.el (semantic-ia-complete-symbol):
3697         Make argument optional.
3699         * shell.el (shell): Require ansi-color (Bug#5113).
3701         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
3703         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
3705 2009-12-05  Alan Mackenzie  <acm@muc.de>
3707         * progmodes/cc-mode.el (c-before-hack-hook)
3708         (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
3709         `c-file-style' to work again.  This reversion restores the current
3710         software to its state in Emacs 23.1.  (Bug#4146)
3712 2009-12-05  Kevin Ryde  <user42@zip.com.au>
3714         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
3715         comment-start-skip to comment-end-skip as comment (Bug#4781).
3717 2009-12-05  Juri Linkov  <juri@jurta.org>
3719         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
3720         for virtual nodes.  (Bug#4147)
3721         (Info-find-node-2): Set `Info-current-node-virtual' to nil
3722         when moving from a virtual node.
3723         (Info-mode-menu): Add `Info-virtual-index' to the menu.
3724         (Info-mode): Add `Info-virtual-index' to the docstring.
3726 2009-12-05  Eric Ludlam  <zappo@gnu.org>
3728         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
3729         Describe project macro symbols.
3731         * cedet/semantic/complete.el (semantic-complete-do-completion):
3732         Don't call semantic-collector-current-exact-match.
3734         * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
3735         ede-objects as targets.
3737         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
3738         a target's object list even if compiler vars are already in the
3739         Makefile.
3741         * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
3742         list of headers producing necessary macros.
3744 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3746         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
3747         track of the buffer position of the end of a BibTeX entry as this
3748         position may change during reformatting.
3749         (bibtex-format-entry): Remove whitespace before processing
3750         numerical fields so that we recognize the latter properly.
3751         (bibtex-reformat): Do not use push which changes the global value
3752         of bibtex-entry-format.
3753         (bibtex-field-braces-alist, bibtex-field-strings-alist)
3754         (bibtex-field-re-init): Replace only space characters by regexp
3755         for whitespace.
3756         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
3757         (bibtex-initialize): Also update bibtex-strings.
3758         (bibtex-kill-field): Preserve white space at end of entry.
3759         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
3760         Update bibtex-reference-keys.
3762 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3764         * minibuffer.el (completion-pcm--merge-try): Also consider placing
3765         point after a star, if that's the only place where modifications can
3766         make progress.
3768 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
3770         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
3771         in docstrings.
3773 2009-12-04  Juri Linkov  <juri@jurta.org>
3775         * proced.el (proced): Call `(proced-update t)' to update process
3776         information instead of only running proced-post-display-hook.
3777         (proced-send-signal): Add a leading space to the buffer name
3778         " *Marked Processes*" to make this buffer ephemeral.
3780 2009-12-04  Juri Linkov  <juri@jurta.org>
3782         * dired.el (dired-auto-revert-buffer): New defcustom.
3783         (dired-internal-noselect): Use it.
3785 2009-12-04  Juri Linkov  <juri@jurta.org>
3787         Change roles of modes and functions in image-mode.el (Bug#5062).
3789         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
3790         in `auto-mode-alist'.
3791         (image-mode-previous-major-mode): New variable.
3792         (image-minor-mode-map): Rename from `image-mode-text-map'.
3793         (image-mode): Move graceful error-handling code from
3794         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
3795         (image-minor-mode): Remove all image-handling code.
3796         Replace `image-mode-text-map' with `image-minor-mode-map'.
3797         Check for `image-type' in mode-line format string.
3798         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
3799         (image-mode-as-text): New function with most code from
3800         `image-mode-maybe'.
3801         (image-toggle-display-text): Move code that removes image
3802         properties from `image-toggle-display' to here.
3803         (image-toggle-display-image): New function with code that adds
3804         image properties copied from `image-toggle-display'.
3805         (image-toggle-display): Remove most code with leaving only code
3806         that toggles between `image-mode-as-text' and `image-mode'.
3808 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
3810         * net/newst-treeview.el
3811         (newsticker--treeview-list-highlight-start): Restored call to
3812         save-excursion: Selected item was stuck.
3813         (newsticker--treeview-list-select): New.
3814         (newsticker--treeview-item-show-text)
3815         (newsticker--treeview-item-show)
3816         (newsticker--treeview-item-update): Use new
3817         newsticker-treeview-item-mode.
3818         (newsticker-treeview-update): Keep current item.
3819         (newsticker-treeview-next-new-or-immortal-item): Doc change.
3820         (newsticker--treeview-first-feed): Doc change.
3821         (newsticker-treeview-list-menu)
3822         (newsticker-treeview-item-menu): Added menu entries.
3823         (newsticker-treeview-item-mode): New.
3825         * net/newst-backend.el (newsticker-customize): Delete other
3826         windows.
3828 2009-12-04  Sam Steingold  <sds@gnu.org>
3830         * log-view.el (log-view-mode-map): "q" calls quit-window,
3831         like in all the other non-self-insert buffers.
3833 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3835         Minor cleanup.
3836         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
3837         key decoding rather than do it manually via last-input-event +
3838         ascii-character.
3839         (term-exec): Use delete-and-extract-region.
3840         (term-handle-ansi-terminal-messages): Remove unused var `end'.
3841         (term-process-pager): Remove unused var `i'.
3842         (term-dynamic-simple-complete): Make obsolete.
3843         (serial-update-config-menu): Remove unused vars `y' and `str'.
3844         (term-update-mode-line): Remove unused var `temp'.
3846 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3848         Limit the number of log entries displayed by default.
3849         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
3850         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
3851         using a prefix argument.
3853 2009-12-03  Glenn Morris  <rgm@gnu.org>
3855         * progmodes/idlwave.el (class): Restore still useful declaration.
3857 2009-12-03  Alan Mackenzie  <acm@muc.de>
3859         Enhance `c-parse-state' to run efficiently in "brace deserts".
3861         * progmodes/cc-mode.el (c-basic-common-init):
3862         Call c-state-cache-init.
3863         (c-neutralize-syntax-in-and-mark-CPP): Rename from
3864         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
3865         placing `category' properties value 'c-cpp-delimiter at its boundaries.
3867         * progmodes/cc-langs.el (c-before-font-lock-function):
3868         c-extend-and-neutralize-syntax-in-CPP has been renamed
3869         c-neutralize-syntax-in-and-mark-CPP.
3871         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
3872         with `category' properties now, not `syntax-table' ones.
3874         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
3875         enhanced (but slower) version of c-end-of-macro that won't land
3876         inside a literal or on another awkward character.
3877         (c-state-cache-too-far, c-state-cache-start)
3878         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
3879         (c-state-nonlit-pos-cache-limit, c-state-point-min)
3880         (c-state-point-min-lit-type, c-state-point-min-lit-start)
3881         (c-state-min-scan-pos, c-state-brace-pair-desert)
3882         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
3883         buffer local variables.
3884         (c-state-literal-at, c-state-lit-beg)
3885         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
3886         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
3887         (c-state-cache-top-paren, c-state-cache-after-top-paren)
3888         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
3889         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
3890         (c-renarrow-state-cache)
3891         (c-append-lower-brace-pair-to-state-cache)
3892         (c-state-push-any-brace-pair, c-append-to-state-cache)
3893         (c-remove-stale-state-cache)
3894         (c-remove-stale-state-cache-backwards, c-state-cache-init)
3895         (c-invalidate-state-cache-1, c-parse-state-1)
3896         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
3897         (c-parse-state): Enhance and refactor.
3898         (c-debug-parse-state): Amend to deal with all the new variables.
3900         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
3901         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
3902         modify to use category text properties rather than syntax-table ones.
3903         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
3904         to switch off/on the syntactic paren property of C++ template
3905         delimiters using the category property.
3906         (c-with-<->-as-parens-suppressed): Macro to invoke code with
3907         template delims suppressed.
3908         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
3909         New constant/macros which apply category properties to the start
3910         and end of preprocessor constructs.
3911         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
3912         "comment out" the syntactic value of characters in preprocessor
3913         constructs.
3914         (c-with-cpps-commented-out)
3915         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
3916         with characters in all or all but one preprocessor constructs
3917         "commented out".
3919 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3921         * proced.el (proced-filter-alist): Use regexp-quote.
3923 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
3925         Cleanup.
3926         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
3927         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
3928         arguments.  Expand `default-directory'.
3930         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
3931         the benefit of returning an expanded localname.
3932         (tramp-tramp-file-p): Handle the case NAME is not a string.
3934 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3936         Add support for bzr shelve/unshelve.
3937         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
3938         (vc-bzr-extra-menu-map): New variables.
3939         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
3940         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
3941         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
3942         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
3943         (vc-bzr-dir-extra-headers): Display shelves.
3945         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
3947 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3949         * textmodes/bibtex.el (bibtex-complete-internal):
3950         Use completion-in-region.
3951         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
3953 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3955         Support applying stashes.  Improve UI.
3956         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
3957         (vc-git-stash-apply, vc-git-stash-pop)
3958         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
3959         (vc-git-stash-menu): New functions.
3960         (vc-git-stash-menu-map): New variable.
3961         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
3963 2009-12-03  Glenn Morris  <rgm@gnu.org>
3965         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
3966         (vc-print-log-internal): Fix previous change.
3967         (vc-revert): Correct pluralization.
3969 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3971         * progmodes/make-mode.el (makefile-special-targets-list): No need for
3972         it to be an alist any more.
3973         (makefile-complete): Use completion-in-region.
3975         * progmodes/octave-mod.el (octave-complete-symbol):
3976         Use completion-in-region.
3978         Misc cleanup.
3979         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
3980         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
3981         (idlwave-complete-class): Don't quote lambda.
3982         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
3983         (idlwave-mode-map): Move initialization into declaration.
3984         (idlwave-action-and-binding): Use backquotes.
3985         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
3986         Simplify.
3987         (idlwave-is-pointer-dereference): Remove unused var `pos'.
3988         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
3989         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
3990         `parts', and `all-parts'.
3991         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
3992         (idlwave-convert-xml-system-routine-info): Remove unused string
3993         `version-string'.
3994         (idlwave-display-user-catalog-widget): Use dolist.
3995         (idlwave-scanning-lib): Declare dynamically-scoped var.
3996         (idlwave-scan-library-catalogs): Remove unused var `flags'.
3997         (completion-highlight-first-word-only): Declare to silence bytecomp.
3998         (idlwave-popup-select): Tighten scope of `resp'.
3999         (idlwave-find-struct-tag): Remove unused var `beg'.
4000         (idlwave-after-load-rinfo-hook): Declare.
4001         (idlwave-sintern-class-info): Remove unused var `taglist'.
4002         (idlwave-find-class-definition): Remove unused var `list'.
4003         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
4004         (idlwave-what-module-find-class): Remove unused var `classes'.
4006 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
4008         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
4010 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4012         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
4013         buffers visited.  Remove redundant current-buffer-saving.
4015 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4017         Use completion-in-buffer and remove uses of dynamic scoping.
4018         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
4019         (pascal-buffer-to-use, pascal-flag): Don't declare.
4020         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
4021         (pascal-get-completion-decl, pascal-keyword-completion):
4022         Add `pascal-str' argument, save-excursion,
4023         return the found completions, and don't filter with pascal-pred.
4024         (pascal-completion-cache): New var.
4025         (pascal-completion): Don't switch buffer any more (it was never
4026         necessary).  Don't save-excursion any more (it's done by the called
4027         subroutines).  Use a cache to avoid redundant computations.
4028         Use complete-with-action rather than pascal-completion-response and
4029         let it apply the predicate as well.
4030         (pascal-complete-word): Use completion-in-buffer when
4031         pascal-toggle-completions is nil.
4032         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
4033         not used any more.
4034         (pascal-comp-defun): Don't change buffer any more.
4035         Use complete-with-action rather than pascal-completion-response and
4036         let it apply the predicate as well.
4037         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
4038         when neded.
4040 2009-12-02  Kenichi Handa  <handa@m17n.org>
4042         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
4043         shape for all Indic scripts.
4045 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4047         Use completion-in-buffer.
4048         * wid-edit.el (widget-field-text-end): New function.
4049         (widget-field-value-get): Use it.
4050         (widget-string-complete, widget-file-complete)
4051         (widget-color-complete): Use it and completion-in-region.
4052         (widget-complete): Don't narrow the buffer.
4054 2009-12-02  Glenn Morris  <rgm@gnu.org>
4056         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
4057         (rmail-select-summary): Use rmail-pop-to-buffer.
4058         * mail/rmailsum.el: Replace all pop-to-buffer calls with
4059         rmail-pop-to-buffer, to prevent horizontal splits.
4061         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
4062         save-excursion with save-current-buffer.
4063         Widen before searching.  (Bug#5093)
4064         (diary-list-sexp-entries): Remove superfluous save-excursion.
4066 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
4068         * woman.el (woman-make-bufname): Handle man-pages with "." in the
4069         name.  (Bug#5038)
4071 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
4073         * ido.el (ido-file-internal): Handle filenames at point that do
4074         not have a directory part.  (Bug#5049)
4076 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
4078         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
4079         (mpc-songs-jump-to, mpc-resume): Doc fixes.
4081 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
4083         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
4084         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
4085         any more.
4087 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4089         * comint.el (comint-insert-input): Ignore clicks to the right of
4090         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
4092         * vc.el (vc-print-log-internal): Don't wait for the process to
4093         terminate before setting up the major mode.
4095         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
4096         in case.
4098         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
4099         the last element.
4101         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
4103 2009-12-01  Glenn Morris  <rgm@gnu.org>
4105         * window.el (window--display-buffer-2): Fix previous changes.
4107 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
4109         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
4111 2009-12-01  Glenn Morris  <rgm@gnu.org>
4113         * Makefile.in (ELCFILES): Add mpc.elc.
4115 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4117         * mpc.el: New file.
4119 2009-12-01  Glenn Morris  <rgm@gnu.org>
4121         * window.el (window-to-use): Define for compiler.
4123         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
4124         consistent with others (no final period).
4126         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
4127         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
4129 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
4131         Make vc-print-log buttons work.
4132         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
4134 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
4136         * savehist.el (savehist-autosave-interval): Allow setting to nil
4137         through customize.  (Bug#5056)
4139 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
4141         Fix references to jit-lock properties.
4142         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
4143         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
4144         (perl-font-lock-special-syntactic-constructs):
4145         Quote jit-lock-defer-multiline property.
4147 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
4149         * vc-git.el (vc-git-registered): Call vc-git-root only once.
4151 2009-11-30  Juri Linkov  <juri@jurta.org>
4153         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
4154         value `buffer' of `multi-isearch-next-buffer-current-function'.
4155         Use `(current-buffer)' when `buffer' is nil.
4156         (multi-isearch-next-buffer-from-list): Don't fallback to
4157         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
4159 2009-11-30  Juri Linkov  <juri@jurta.org>
4161         * misearch.el (multi-isearch-read-buffers): Move canonicalization
4162         of buffers with `get-buffer' to `multi-isearch-buffers'.
4163         (multi-isearch-buffers, multi-isearch-buffers-regexp):
4164         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
4165         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
4166         FILES with `expand-file-name' converting relative file names
4167         to absolute.  Doc fix.  (Bug#4727)
4169 2009-11-30  Juri Linkov  <juri@jurta.org>
4171         * misearch.el (multi-isearch-read-buffers)
4172         (multi-isearch-read-matching-buffers): New functions.
4173         (multi-isearch-buffers, multi-isearch-buffers-regexp):
4174         Use them in the `interactive' spec.  Doc fix.
4175         (multi-isearch-read-files, multi-isearch-read-matching-files):
4176         New functions.
4177         (multi-isearch-files, multi-isearch-files-regexp):
4178         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
4180 2009-11-30  Juri Linkov  <juri@jurta.org>
4182         * doc-view.el (doc-view-continuous):
4183         Rename from `doc-view-continuous-mode'.
4184         (doc-view-menu): Move "Toggle display" to the top.
4185         Add submenu "Continuous" with radio buttons "Off"/"On"
4186         and "Save as Default".
4187         (doc-view-scroll-up-or-next-page)
4188         (doc-view-scroll-down-or-previous-page)
4189         (doc-view-next-line-or-next-page)
4190         (doc-view-previous-line-or-previous-page): Rename
4191         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
4193 2009-11-30  Juri Linkov  <juri@jurta.org>
4195         * comint.el (comint-mode-map): Rebind `M-r' from
4196         `comint-previous-matching-input' to
4197         `comint-history-isearch-backward-regexp'.
4198         Unbind `M-s' to allow global key binding `M-s'.
4199         Add menu items for `comint-history-isearch-backward' and
4200         `comint-history-isearch-backward-regexp'.  (Bug#3746)
4202 2009-11-30  Juri Linkov  <juri@jurta.org>
4204         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
4205         For def=recenter, replace `recenter' with `recenter-top-bottom'
4206         that is called with `this-command' and `last-command' let-bound
4207         to `recenter-top-bottom'.  When the last `def' was not `recenter',
4208         set `recenter-last-op' to nil.  (Bug#4981)
4210 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4212         Minor cleanup and simplification.
4213         * filecache.el (file-cache-add-directory)
4214         (file-cache-add-directory-recursively)
4215         (file-cache-add-from-file-cache-buffer)
4216         (file-cache-delete-file-regexp, file-cache-delete-directory)
4217         (file-cache-files-matching-internal, file-cache-display): Use dolist.
4218         (file-cache-temp-minibuffer-message): Delete function.
4219         (file-cache-minibuffer-complete): Use minibuffer-message instead.
4221         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
4222         Don't signal an error when bumping into EOB in tr, s, or y.
4224 2009-11-29  Juri Linkov  <juri@jurta.org>
4226         * startup.el (fancy-about-text): Fix wording of Guided Tour.
4227         (Bug#4960)
4229         * descr-text.el (describe-char-unidata-list): Use lowercase name
4230         for "Unicode name" like in other tags.
4232 2009-11-29  Juri Linkov  <juri@jurta.org>
4234         * ediff-util.el (ediff-minibuffer-with-setup-hook):
4235         New compatibility macro.
4236         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
4238 2009-11-29  Juri Linkov  <juri@jurta.org>
4240         Add defcustom to define the cycling order of `recenter-top-bottom'.
4241         (Bug#4981)
4243         * window.el (recenter-last-op): Doc fix.
4244         (recenter-positions): New defcustom.
4245         (recenter-top-bottom): Rewrite to use `recenter-positions'.
4246         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
4248 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
4250         Improve integration of Tramp and ange-ftp in eshell.
4252         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
4253         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
4254         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
4256         * eshell/esh-util.el (top): Require also Tramp when compiling.
4257         (eshell-directory-files-and-attributes): Check for FTP remote
4258         connection.
4259         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
4260         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
4261         (eshell-file-attributes): Handle ".".  Return `entry'.
4263         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
4264         (ange-ftp-directory-files-and-attributes)
4265         (ange-ftp-real-directory-files-and-attributes): New defuns.
4267         * net/tramp.el (tramp-maybe-open-connection): Open the remote
4268         shell with "exec" when possible.  This prevents trailing prompts
4269         in `start-file-process'.
4271 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4273         Try and remove assumptions about point-min==1.
4274         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
4275         (rng-compute-mode-line-string): Show the validation percentage in
4276         terms of the narrowed text, not the widened text.
4277         (rng-do-some-validation): Don't catch internal errors when debugging.
4278         (rng-first-error): Simplify.
4279         (rng-after-change-function): Remove work around.  AFAIK the bug has
4280         been fixed a while ago.
4282         * image-mode.el (image-minor-mode): Exit more gracefully when the image
4283         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
4285         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
4287         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
4288         `cd' doesn't always do it for us (bug#5067).
4290         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
4291         on 2009-10-25 as part of some other change (bug#5067).
4293 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4295         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
4296         `suspicious'.
4297         (byte-compile-warnings): Use byte-compile-warning-types.
4298         (byte-compile-save-excursion): Warn about use of set-buffer right
4299         after save-excursion.
4301         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
4302         the excursion as well.
4304 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
4306         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
4307         providing a Tramp related implementation of "su" and "sudo".
4308         (eshell-unix-initialize): Add "su" and "sudo".
4310 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
4312         * net/socks.el (socks-send-command): Convert binary request to
4313         unibyte before sending.  This fixes mishandling of some port
4314         numbers such as 129.
4316 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4318         * help.el (describe-bindings-internal): Remove `interactive'.
4320         * man.el (Man-completion-table): Trim a terminating "(".
4321         Remove the space between name page a section.
4322         Add the command's description on the `help-echo' property.
4323         Remove `process-connection-type' binding since it's unused by
4324         call-process.
4325         Provide completion for the "<section> <name>" format as well.
4326         (Man-default-man-entry): Remove spurious var shadowing the argument.
4328 2009-11-26  Kevin Ryde  <user42@zip.com.au>
4330         * log-view.el: Add "Keywords: tools", since its other keywords
4331         aren't in finder-known-keywords, and following vc.el.
4333         * sha1.el (sha1-string-external): default-directory "/" in case
4334         otherwise non-existent.  process-connection-type pipe for touch of
4335         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
4337 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4339         Misc coding convention cleanups.
4340         * htmlfontify.el (hfy-init-kludge-hook): Rename from
4341         hfy-init-kludge-hooks.
4342         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
4343         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
4344         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
4345         and push.
4346         (hfy-slant, hfy-weight): Use tables rather than code.
4347         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
4348         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
4349         (hfy-face-attr-for-class): Initialize `face-spec' directly.
4350         (hfy-face-to-css): Remove `nconc' with single arg.
4351         (hfy-p-to-face-lennart): Use `or'.
4352         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
4353         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
4354         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
4355         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
4356         (hfy-force-fontification): Use run-hooks.
4358 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
4360         Various minor fixes.
4361         * htmlfontify.el (hfy-default-header): Add toggle_invis since
4362         Javascript belongs in the header, not the body.
4363         (hfy-javascript): Remove.
4364         (hfy-fontify-buffer): Don't insert it any more.
4365         (hfy-face-at): Handle (face0 face1 face2) style face properties.
4366         Fix bug in invis handling when there were no invis props in a chunk.
4368 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4370         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
4372 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
4374         * finder.el (finder-mode-map): Add a menu.
4376 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
4378         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
4379         "unsigned" structs.
4381         (verilog-leap-to-head, verilog-backward-token): Handle "disable
4382         fork" statement better.
4384 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
4386         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
4387         (verilog-delete-auto, verilog-delete-empty-auto-pair)
4388         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
4389         Reported by Clay Douglass.
4391         (verilog-auto-inst, verilog-auto-star-safe)
4392         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
4393         Fix removing "// Interfaces" when saving .* expansions.  Reported by
4394         Pierre-David Pfister.
4396 2009-11-26  Glenn Morris  <rgm@gnu.org>
4398         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
4399         the scope.
4401 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
4403         * vc-annotate.el (vc-annotate-revision-previous-to-line):
4404         Really use previous revision.
4406 2009-11-25  Kevin Ryde  <user42@zip.com.au>
4408         * man.el (Man-completion-table): default-directory "/" in case
4409         doesn't otherwise exist.  process-environment COLUMNS=999 so as
4410         not to truncate long names.  process-connection-type pipe to avoid
4411         any chance of hitting the pseudo-tty TIOCGWINSZ.
4412         (man): completion-ignore-case t for friendliness and since man
4413         itself is case-insensitive on the command line.
4414         Further to Bug#3717.
4416         * arc-mode.el: Add "Keywords: files", so the details in its
4417         commentary can be reached from finder-by-keyword.
4418         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
4419         editing mode, but it's comms related and sgml-mode.el has "comm"
4420         on that basis too.
4421         * textmodes/bibtex-style.el: Add "Keywords: tex".
4422         * international/isearch-x.el, international/ja-dic-cnv.el:
4423         * international/ja-dic-utl.el, international/kkc.el:
4424         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
4426 2009-11-25  Juri Linkov  <juri@jurta.org>
4428         * man.el (Man-completion-table): Modify regexp to include
4429         section names to completion strings.  (Bug#3717)
4431 2009-11-25  Juri Linkov  <juri@jurta.org>
4433         Search recursively in gzipped files.  (Bug#4982)
4435         * progmodes/grep.el (grep-highlight-matches): Add new options
4436         `always' and `auto'.  Doc fix.
4437         (grep-process-setup): Check `grep-highlight-matches' for
4438         `auto-detect' to determine the need to compute grep defaults.
4439         Move Windows/DOS specific --colors settings handling
4440         to `grep-compute-defaults'.  Check `grep-highlight-matches'
4441         to get the value of "--color=".
4442         (grep-compute-defaults): Compute `grep-highlight-matches' when it
4443         has the value `auto-detect'.  Move Windows/DOS specific settings
4444         from `grep-process-setup'.
4445         (zrgrep): New command with alias `rzgrep'.
4447 2009-11-25  Juri Linkov  <juri@jurta.org>
4449         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
4450         to nil instead of switching off view-mode.  (Bug#4896)
4452 2009-11-25  Juri Linkov  <juri@jurta.org>
4454         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
4456         * mwheel.el (mwheel-scroll-up-function)
4457         (mwheel-scroll-down-function): New defvars.
4458         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
4459         `scroll-up', and `mwheel-scroll-down-function' instead of
4460         `scroll-down'.
4462         * doc-view.el (doc-view-scroll-up-or-next-page)
4463         (doc-view-scroll-down-or-previous-page): Add optional ARG.
4464         Use this ARG in the call to image-scroll-up/image-scroll-down.
4465         Change `interactive' spec to "P".  Goto next/previous page only
4466         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
4467         SPC/DEL case).  Doc fix.
4468         (doc-view-next-line-or-next-page)
4469         (doc-view-previous-line-or-previous-page): Rename arg to ARG
4470         for consistency.
4471         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
4472         `doc-view-scroll-up-or-next-page', and buffer-local
4473         `mwheel-scroll-down-function' to
4474         `doc-view-scroll-down-or-previous-page'.
4476 2009-11-25  Juri Linkov  <juri@jurta.org>
4478         Provide additional default values (directories at other Dired
4479         windows) via M-n in the minibuffer of some Dired commands.
4481         * dired-aux.el (dired-diff, dired-compare-directories)
4482         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
4483         `minibuffer-default' in `minibuffer-with-setup-hook'.
4484         (dired-dwim-target-directory): Find a window that displays Dired
4485         buffer instead of failing when the next window is not Dired.
4486         Use `get-window-with-predicate' to find for the next Dired window.
4487         (dired-dwim-target-defaults): New function.
4489         * ediff-util.el (ediff-read-file-name):
4490         Use `dired-dwim-target-defaults' to set `minibuffer-default'
4491         in `minibuffer-with-setup-hook'.
4493 2009-11-25  Juri Linkov  <juri@jurta.org>
4495         Provide additional default values (file name at point or at the
4496         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
4498         * minibuffer.el (read-file-name-defaults): New function.
4499         (read-file-name): Reset `minibuffer-default' to nil when
4500         it duplicates initial input `insdef'.
4501         Bind `minibuffer-default-add-function' to lambda that
4502         calls `read-file-name-defaults' in `minibuffer-selected-window'.
4503         (minibuffer-insert-file-name-at-point): New command.
4505         * files.el (file-name-at-point-functions): New defcustom.
4506         (find-file-default): Remove defvar.
4507         (find-file-read-args): Don't use `find-file-default'.
4508         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4509         to `read-file-name'.
4510         (find-file-literally): Use `read-file-name' with
4511         `confirm-nonexistent-file-or-buffer'.
4513         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
4515         * dired.el (dired-read-dir-and-switches):
4516         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4517         to `read-file-name'.
4518         (dired-file-name-at-point): New function.
4519         (dired-mode): Add hook `dired-file-name-at-point' to
4520         `file-name-at-point-functions'.
4522 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4524         Really make the *Completions* window soft-dedicated (bug#5030).
4525         * window.el (window--display-buffer-2): Add `dedicated' argument.
4526         (display-buffer): Pass it when needed so the dedicated flag is set
4527         after calling set-window-buffer, which would otherwise reset it.
4529 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4531         * progmodes/meta-mode.el (meta-complete-symbol):
4532         * progmodes/etags.el (complete-tag):
4533         * mail/mailabbrev.el (mail-abbrev-complete-alias):
4534         Use completion-in-region.
4536         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
4537         (dabbrev-completion): Use completion-in-region.
4538         (dabbrev--abbrev-at-point): Simplify regexp.
4540         * abbrev.el (abbrev--before-point): Use word-motion functions
4541         if :regexp is not specified (bug#5031).
4543         * subr.el (string-prefix-p): New function.
4545         * man.el (Man-completion-cache): New var.
4546         (Man-completion-table): Use it.
4548         * vc.el (vc-print-log-internal): Make `limit' optional for better
4549         compatibility (e.g. with vc-annotate.el).
4551 2009-11-24  Kevin Ryde  <user42@zip.com.au>
4553         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
4554         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
4556         * emacs-lisp/elint.el (elint-add-required-env): Better error message
4557         when .el source file not found or other error.
4559 2009-11-24  Markus Triska  <markus.triska@gmx.at>
4561         * linum.el (linum-update-window): Ignore intangible (bug#4996).
4563 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4565         Handle the [back] button properly (bug#4979).
4566         * descr-text.el (describe-text-properties): Add a `buffer' argument.
4567         Use help-setup-xref, help-buffer, and with-help-window.
4568         (describe-char): Add `buffer' argument.
4569         Pass proper command to help-setup-xref.  Don't meddle with
4570         help-xref-stack-item directly.
4571         (describe-text-category): Use with-help-window and help-buffer.
4573         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
4574         for the displayed buffer (bug#4887).
4576         * man.el (Man-completion-table): New function.
4577         (man): Use it.
4579 2009-11-24  David Reitter  <david.reitter@gmail.com>
4581         * vc-git.el (vc-git-registered): Use checkout directory (where
4582         .git is) rather than the file's directory and a relative path spec
4583         to work around a bug in git.
4585 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
4587         Improve handling of processes on remote hosts.
4589         * eshell/esh-util.el (eshell-path-env): New defvar.
4590         (eshell-parse-colon-path): New defun.
4591         (eshell-file-attributes): Use `eshell-parse-colon-path'.
4593         * eshell/esh-ext.el (eshell-search-path):
4594         Use `eshell-parse-colon-path'.
4595         (eshell-remote-command): Remove argument HANDLER.
4596         (eshell-external-command): Check for FTP remote connection.
4598         * eshell/esh-proc.el (eshell-gather-process-output):
4599         Use `file-truename', in order to start also symlinked files.
4600         Apply `start-file-process' instead of `start-process'.
4601         Shorten `command' to the local file name part.
4603         * eshell/em-cmpl.el (eshell-complete-commands-list):
4604         Use `eshell-parse-colon-path'.
4606         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
4608         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
4609         to `eshell-directory-change-hook'.
4611 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
4613         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
4614         because it could be enabled automatically if view-read-only is non-nil.
4616 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
4618         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
4619         made on 2009-11-22.
4621 2009-11-24  Glenn Morris  <rgm@gnu.org>
4623         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
4624         deleted variable bookmark-bmenu-bookmark-column.
4626         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
4627         Move after definition of global-semantic-idle-tag-highlight-mode.
4629 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4631         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
4633 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
4635         * net/browse-url.el (browse-url-filename-alist): On Windows, add
4636         two slashes to the "file:" prefix.
4637         (browse-url-file-url): De-munge Cygwin filenames before passing
4638         them to Windows browser.
4639         (browse-url-default-windows-browser): Use call-process.
4641 2009-11-23  Juri Linkov  <juri@jurta.org>
4643         Implement DocView Continuous mode.  (Bug#4896)
4644         * doc-view.el (doc-view-continuous-mode): New defcustom.
4645         (doc-view-mode-map): Bind C-n/<down> to
4646         `doc-view-next-line-or-next-page', C-p/<up> to
4647         `doc-view-previous-line-or-previous-page'.
4648         (doc-view-next-line-or-next-page)
4649         (doc-view-previous-line-or-previous-page): New commands.
4651 2009-11-23  Juri Linkov  <juri@jurta.org>
4653         Implement Isearch in comint input history.  (Bug#3746)
4654         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
4655         `isearch-mode-hook'.
4656         (comint-history-isearch): New defcustom.
4657         (comint-history-isearch-backward)
4658         (comint-history-isearch-backward-regexp): New commands.
4659         (comint-history-isearch-message-overlay): New buffer-local variable.
4660         (comint-history-isearch-setup, comint-history-isearch-end)
4661         (comint-goto-input, comint-history-isearch-search)
4662         (comint-history-isearch-message, comint-history-isearch-wrap)
4663         (comint-history-isearch-push-state)
4664         (comint-history-isearch-pop-state): New functions.
4666 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
4668         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
4669         return.
4670         (tramp-handle-make-symbolic-link)
4671         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
4672         Quote file names.
4673         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
4674         (tramp-handle-process-file): Use it.
4676 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4678         * window.el (move-to-window-line-last-op): Remove.
4679         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
4681 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
4683         Make M-r mirror the new cycling behavior of C-l.
4684         * window.el (move-to-window-line-last-op): New var.
4685         (move-to-window-line-top-bottom): New command.
4686         (global-map): Bind M-r move-to-window-line-top-bottom.
4688 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
4690         * dired-x.el (dired-guess-shell-alist-default):
4691         Support xz format.  (Bug#4953)
4693 2009-11-22  Chong Yidong  <cyd@stupidchicken.com>
4695         * cedet/srecode/map.el (srecode-get-maps):
4696         * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
4697         * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
4698         * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
4699         (semantic-toggle-decoration-style):
4700         * cedet/semantic/decorate/include.el
4701         (semantic-decoration-include-describe)
4702         (semantic-decoration-unknown-include-describe)
4703         (semantic-decoration-unparsed-include-describe)
4704         (semantic-decoration-all-include-summary):
4705         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
4706         * cedet/semantic/analyze/complete.el
4707         (semantic-analyze-possible-completions):
4708         * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
4709         (semantic-show-unmatched-syntax-mode)
4710         (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
4711         (semantic-highlight-func-mode):
4712         * cedet/semantic/util.el (semantic-describe-buffer):
4713         * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
4714         (semantic-symref-find-tags-by-name)
4715         (semantic-symref-find-tags-by-regexp)
4716         (semantic-symref-find-tags-by-completion)
4717         (semantic-symref-find-file-references-by-name)
4718         (semantic-symref-find-text):
4719         * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
4720         (senator-yank-tag):
4721         * cedet/semantic/scope.el (semantic-calculate-scope):
4722         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
4723         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
4724         (define-semantic-idle-service):
4725         * cedet/semantic/complete.el (semantic-complete-analyze-inline)
4726         (semantic-complete-analyze-inline-idle):
4727         * cedet/semantic/analyze.el (semantic-analyze-current-context):
4728         * cedet/mode-local.el (describe-mode-local-bindings)
4729         (describe-mode-local-bindings-in-mode):
4730         * cedet/ede/make.el (ede-make-check-version):
4731         * cedet/ede/locate.el (ede-enable-locate-on-project):
4732         * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
4733         (cedet-idutils-version-check):
4734         * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
4735         (cedet-gnu-global-version-check):
4736         * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
4737         (cedet-cscope-version-check): Use called-interactively-p instead
4738         of interactive-p.
4740         * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
4741         Use semantic-format-tag-prototype.
4743 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
4745         * emulation/viper-cmd.el: Use viper-last-command-char instead of
4746         last-command-char/last-command-event.
4747         (viper-prefix-arg-value): Do correct conversion of event-char for
4748         XEmacs.
4750         * emulation/viper-util.el, emulation/viper.el:
4751         Use viper-last-command-char instead of
4752         last-command-char/last-command-event.
4754         * ediff-init.el, ediff-mult.el, ediff-util.el:
4755         Replace last-command-char and last-command-event
4756         with (ediff-last-command-char) everywhere.
4758         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
4759         created in fundamental mode.
4761         * ediff.el (ediff-version): Revert the change of interactive-p to
4762         called-interactively-p.
4764 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
4766         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
4767         generation from word-movement command names.
4769 2009-11-21  Chong Yidong  <cyd@stupidchicken.com>
4771         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
4772         (semantic-complete-jump-local, semantic-complete-jump):
4773         Improve prompt string.
4775 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
4777         * cus-start.el (all): Add native condition for font-use-system-font.
4779 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
4781         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
4782         Correct the patch from 2009-11-18.  (Bug#3910)
4784 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
4786         * progmodes/subword.el: Rename from lisp/subword.el.
4788         * subword.el: Rename to progmodes/subword.el.
4790         * Makefile.in (ELCFILES): Adapt to subword.el move.
4792 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4793             Stefan Monnier  <monnier@iro.umontreal.ca>
4795         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
4796         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
4797         (bookmark-bmenu-show-filenames): Use push.
4798         (bookmark-bmenu-hide-filenames): Use local var instead of
4799         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
4800         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
4801         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
4802         filenames now that the bookmark names are always available.
4804 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4806         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
4807         (bookmark-search-pattern): Move and leave unbound.
4808         (bookmark-bmenu-mode-map): Change binding.
4809         (bookmark-read-search-input): Simplify.
4810         Don't use text-char-description.  Don't error on non-char events.
4811         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
4812         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
4813         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
4814         Use a local var for the timer.
4815         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
4816         (i.e. bookmark-bmenu-search).
4818 2009-11-21  Glenn Morris  <rgm@gnu.org>
4820         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
4822 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
4824         * net/browse-url.el (browse-url-default-windows-browser):
4825         Use cygstart for cygwin.
4827 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
4829         * bookmark.el: Formatting and doc fixes only:
4830         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
4831         (bookmark-bmenu-search): Wrap to fit within 80 columns.
4832         Minor grammar and punctuation fixes in doc string.
4833         (bookmark-read-search-input): Adjust to fit within 80 columns.
4835 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
4837         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
4838         (c-backward-into-nomenclature): Adapt to subword renaming.
4840         * subword.el (subword-forward, subword-backward, subword-mark)
4841         (subword-kill, subword-backward-kill, subword-transpose)
4842         (subword-downcase, subword-upcase, subword-capitalize)
4843         (subword-forward-internal, subword-backward-internal):
4844         Rename from forward-subword, backward-subword, mark-subword,
4845         kill-subword, backward-kill-subword, transpose-subwords,
4846         downcase-subword, upcase-subword, capitalize-subword,
4847         forward-subword-internal, backward-subword-internal.
4849 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4851         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
4852         New options.
4853         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
4854         New vars.
4855         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
4856         (bookmark-bmenu-filter-alist-by-regexp)
4857         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
4858         (bookmark-bmenu-search): New command.
4859         (bookmark-bmenu-mode-map): Bind it.
4861 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
4863         * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
4865         * cedet/semantic/idle.el (define-semantic-idle-service)
4866         (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
4868 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
4870         * progmodes/cc-cmds.el: declare-functioned forward-subword and
4871         backward-subword to quit the byte-compiler.
4873         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
4875         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
4877         * progmodes/cc-cmds.el (c-update-modeline)
4878         (c-forward-into-nomenclature, c-backward-into-nomenclature):
4879         Refer to subword.el functions instead of cc-subword.el.
4881         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
4882         subword.el functions instead of cc-subword.el.
4884         * progmodes/cc-subword.el: Rename to subword.el.
4885         * subword.el: Rename from progmodes/cc-subword.el.
4886         (subword-mode-map): Rename from c-subword-mode-map.
4887         (subword-mode): Rename from c-subword-mode.
4888         (global-subword-mode): New global minor mode.
4889         (forward-subword): Rename from c-forward-subword.
4890         (backward-subword): Rename from c-backward-subword.
4891         (mark-subword): Rename from c-mark-subword.
4892         (kill-subword): Rename from c-kill-subword.
4893         (backward-kill-subword): Rename from c-backward-kill-subword.
4894         (transpose-subwords): Rename from c-tranpose-subword.
4895         (downcase-subword): Rename from c-downcase-subword.
4896         (capitalize-subword): Rename from c-capitalize-subword.
4897         (forward-subword-internal): Rename from c-forward-subword-internal.
4898         (backward-subword-internal): Rename from c-backward-subword-internal.
4900 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
4902         * vc.el (vc-deduce-fileset): Allow non-state changing operations
4903         from a dired buffer.
4904         (vc-dired-deduce-fileset): New function.
4905         (vc-root-diff, vc-print-root-log): Use it.
4907         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
4908         nil LIMIT argument to vc-print-log-internal.
4910 2009-11-20  Glenn Morris  <rgm@gnu.org>
4912         * Makefile.in (ELCFILES): Regenerate.
4914 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
4916         * cedet/cedet.el (cedet-menu-map): Re-order menu items.
4918         * cedet/semantic.el: Enable idle-mode menu items only if
4919         global-semantic-idle-scheduler-mode is enabled.
4920         (semantic-default-submodes): Doc fix.
4922         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
4923         When turning off, disable other idle modes.
4925 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
4927         * calc/calc.el (calc-set-mode-line):
4928         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4929         (math-format-number): Rename `math-format-complement-signed' to
4930         `math-format-twos-complement'.
4932         * calc/calc-bin.el (math-format-twos-complement): Rename from
4933         math-format-complement-signed.
4934         (calc-radix): Rename `calc-complement-signed-mode' to
4935         `calc-twos-complement-mode'.
4936         (calc-octal-radix, calc-hex-radix): Add an argument for
4937         two's complement.
4939         * calc/calc-embed.el (calc-embedded-mode-vars):
4940         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4942         * calc/calc-ext.el (calc-init-extensions):
4943         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4944         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
4946         * calc/calc-units.el (math-build-units-table-buffer):
4947         Let `calc-twos-complement-mode' be nil.
4949         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
4950         entries.
4952         * calc/calc-vec.el (calcFunc-vunpack):
4953         * calc/calc-aent.el (calc-do-calc-eval):
4954         * calc/calc-forms.el (math-format-date):
4955         * calc/calc-graph.el (calc-graph-plot):
4956         * calc/calc-math.el (math-use-emacs-fn):
4957         * calc/calccomp.el (math-compose-expr):
4958         Let `calc-twos-complement-mode' be nil.
4960 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4962         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
4963         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
4964         * minibuffer.el (completion-in-region-functions): New hook.
4965         (completion-in-region): New function.
4966         * emacs-lisp/lisp.el (lisp-complete-symbol):
4967         * pcomplete.el (pcomplete-std-complete): Use it.
4969 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4971         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
4972         (latex-complete-alist): New vars.
4973         (latex-string-prefix-p, latex-complete-bibtex-keys)
4974         (latex-complete-envnames, latex-complete-refkeys)
4975         (latex-complete-data): New functions.
4976         (latex-complete, latex-indent-or-complete): New commands.
4978         * window.el (display-buffer-mark-dedicated): New var.
4979         (display-buffer): Obey it.
4980         * minibuffer.el (minibuffer-completion-help): Use it.
4982         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
4984         * filecache.el (file-cache-add-file): Use push and cons.
4985         (file-cache-delete-file-regexp): Use push.
4986         (file-cache-complete): Use completion-in-region.
4988         * simple.el (with-wrapper-hook): Fix thinko.
4990         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
4991         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
4992         Use with-current-buffer and string-to-number.
4993         (hfy-fallback-colour-values): Use assoc-string.
4994         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
4995         (hfy-face-at): Remove unused var `found-face'.
4996         (hfy-compile-stylesheet): Remove unused var `css'.
4997         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
4998         and `orig-buffer'.
4999         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
5000         Use with-current-buffer.
5001         (hfy-text-p): Use expand-file-name and fewer setq.
5003 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
5005         * htmlfontify.el, hfy-cmap.el: New files.
5007 2009-11-19  Juri Linkov  <juri@jurta.org>
5009         * minibuffer.el (completions-format): New defcustom.
5010         (completion--insert-strings): Implement vertical format.
5012         * simple.el (switch-to-completions): Move point to the first
5013         completion when point was at the beginning of the buffer.
5015 2009-11-19  Juri Linkov  <juri@jurta.org>
5017         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
5019         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
5021 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
5023         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
5024         (mail-signature): Change default to t.
5025         (mail-from-style): Deprecate `system-default' value.
5026         (mail-insert-from-field): For default value of mail-from-style,
5027         default to `angles' unless `angles' needs quoting and `parens'
5028         does not.
5029         (mail-citation-prefix-regexp): Use citation regexp from
5030         message-mode.
5032 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
5034         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
5035         Set variables for computing the prompt for reading password.
5037 2009-11-19  Glenn Morris  <rgm@gnu.org>
5039         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
5041         * textmodes/flyspell.el (sgml-lexical-context): Declare.
5043         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
5044         (newsticker-treeview-listwindow-height): Fix custom type.
5046 2009-11-19  Kenichi Handa  <handa@m17n.org>
5048         * descr-text.el (describe-char-padded-string): Compose with TAB
5049         only if there's a font for CH.
5050         (describe-char): Fix the condition for detecting a trivial composition.
5052 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
5054         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
5055         more accurate version of the regexp.  (Bug#3910)
5057 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
5059         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
5061 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
5063         * font-setting.el (font-use-system-font): Declare for byte-compiler.
5064         (font-setting-change-default-font): Fix typo in docstring.
5066 2009-11-18  Alan Mackenzie  <acm@muc.de>
5068         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
5070 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
5072         * font-setting.el (font-use-system-font): Move ...
5074         * cus-start.el (all): ... to here.
5076 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
5078         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
5079         Don't set `ad-return-value' if `ad-do-it' doesn't.
5081         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
5082         modification time.
5084 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
5086         * menu-bar.el: Put "Use system font" in Option-menu.
5087         (menu-bar-options-save): Add font-use-system-font.
5089         * loadup.el: If feature system-font-setting or font-render-setting is
5090         there, load font-setting.
5092         * Makefile.in (ELCFILES): Add font-settings.el.
5093         * font-setting.el: New file.
5095 2009-11-17  Glenn Morris  <rgm@gnu.org>
5097         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
5099         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
5100         Preserve point in the list buffer.  (Bug#4939)
5101         Use point-at-eol.
5102         (newsticker--treeview-list-update-highlight)
5103         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
5105 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
5107         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
5108         Remove.
5110         * calc/calc-ext.el (calc-init-extensions): Remove references to
5111         symclip.
5113         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
5115         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
5116         * calc/calc-help.el (calc-b-prefix-help): Remove references to
5117         `calc-symclip'.
5119 2009-11-16  Kevin Ryde  <user42@zip.com.au>
5121         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
5122         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
5124         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
5125         (lm-keywords-list): Allow comma-only separator like "foo,bar".
5126         Ignore trailing spaces by omit-nulls to split-string (fixing
5127         regression from Emacs 21 due to the incompatible split-string
5128         change).  (Bug #4928.)
5130 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
5132         * vc.el (vc-log-show-limit): Default to 2000.
5133         (vc-print-log-internal): Insert buttons to request more entries
5134         when limiting the output.
5136         * vc-sccs.el (vc-sccs-print-log):
5137         * vc-rcs.el (vc-rcs-print-log):
5138         * vc-cvs.el (vc-cvs-print-log):
5139         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
5140         LIMIT is non-nil.
5142 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
5144         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
5145         error when `tramp-gvfs-dbus-event-vector' is set.
5146         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
5148 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
5150         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
5152 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
5154         * net/dbus.el (dbus-unregister-service): New defun.
5155         (dbus-register-property): Register the handlers of
5156         "org.freedesktop.DBus.Properties" for SERVICE.
5157         (dbus-property-handler): Fix docstring.
5159 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5161         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
5162         Quote doc string reference in defvaralias as it is not in special form.
5163         (byte-compile-output-docform): Doc fix.
5165 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
5167         * calc/calc.el (math-2-word-size, math-half-2-word-size)
5168         (calc-complement-signed-mode): New variables.
5169         (calc-set-mode-line): Add indicator for twos-complements.
5170         (math-format-number): Format twos-complement notation.
5172         * calc/calc-bin.el (calc-word-size): Reset the variables
5173         `math-2-word-size' and `math-half-2-word-size'.
5174         (math-format-complement-signed, math-symclip, calcFunc-symclip)
5175         (calc-symclip): New functions.
5177         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
5179         * calc/calc-embed.el (calc-embedded-mode-vars):
5180         Add `calc-complement-signed-mode' to the list of modes.
5182         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
5183         (calc-b-oper-keys): Add `calc-symclip' to list.
5185         * calc/calc-ext.el (math-read-number-fancy): Read complement
5186         signed numbers.
5187         (calc-init-extensions): Add binding for `calc-symclip'.
5188         Add autoload for `calcFunc-symclip' and `calc-symclip'.
5190         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
5191         `calc-symclip'.
5192         (calc-modes-menu): Add item for twos complement mode.
5194         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
5196 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
5198         * register.el (jump-to-register, insert-register): Handle Semantic
5199         tags.  From commented-out advice in semantic/senator.el.
5201 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
5203         * vc.el (vc-log-show-limit): New variable.
5204         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
5205         when using a prefix argument.
5206         (vc-print-log-internal): Add new argument LIMIT.
5208         * vc-svn.el (vc-svn-print-log):
5209         * vc-mtn.el (vc-mtn-print-log):
5210         * vc-hg.el (vc-hg-print-log):
5211         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
5212         pass it to the log command when set.  Make the BUFFER argument
5213         non-optional.
5215         * vc-sccs.el (vc-sccs-print-log):
5216         * vc-rcs.el (vc-rcs-print-log):
5217         * vc-git.el (vc-git-print-log):
5218         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
5219         ignore it.  Make the BUFFER argument non-optional
5221         * bindings.el (mode-line-buffer-identification): Do not purecopy.
5223 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
5225         * dired.el (dired-mode-map): Move encryption items to "Operate"
5226         menu (Bug#4703).
5228         * strokes.el (strokes-update-window-configuration): Make strokes
5229         buffer current before erasing (Bug#4906).
5231         * cedet/semantic/idle.el (semantic-idle-summary-mode)
5232         (semantic-idle-summary-mode): Define using define-minor-mode
5233         instead of define-semantic-idle-service.
5234         (semantic-idle-summary-mode): New function.
5235         (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
5236         that mouse motion does not reset the echo area.
5238 2009-11-15  Juri Linkov  <juri@jurta.org>
5240         * simple.el (set-mark-default-inactive): Add :type, :group
5241         and :version.  (Bug#4876)
5243 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
5245         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
5246         (archive-unique-fname): ... here.  (Bug#4929)
5248 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5250         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
5251         with a real fix.
5253         * novice.el (disabled-command-function): Add useful args.
5254         Setup the help buffer so that [back] works.
5255         Remove redundant call to help-mode.
5256         (disabled-command-function): Use `case'.
5257         (en/disable-command): New function extracted from enable-command.
5258         (enable-command, disable-command): Use it.
5260 2009-11-14  Glenn Morris  <rgm@gnu.org>
5262         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
5263         constants.  (Bug#4913)
5265         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
5267 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
5269         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
5270         defined in C that have no doc-strings.  (Bug#1063)
5272 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
5274         * cus-edit.el (data, files):
5275         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
5277 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
5279         * simple.el (shell-command): Doc fix (Bug#4891).
5281         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
5283 2009-11-14  Glenn Morris  <rgm@gnu.org>
5285         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
5286         statements for vc-diff, emerge-quit, and rmail-cease-edit.
5287         If they are already loaded, eval-after-load will do the right thing.
5289         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
5290         compiling.
5292         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
5294         * simple.el (x-selection-owner-p): Declare.
5295         (read-mail-command): Use custom radio type rather than choice.
5296         (completion-no-auto-exit): Doc fix.
5298         * custom.el (defgroup):
5299         * epg-config.el (epg): Doc fixes.
5301 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
5303         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
5304         * international/ccl.el (define-ccl-program): Do not purecopy the
5305         docstring, defconst does it anyway.
5307 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5309         * add-log.el (add-change-log-entry): Avoid displaying the changelog
5310         a second time.
5312         * x-dnd.el (x-dnd-maybe-call-test-function):
5313         * window.el (split-window-vertically):
5314         * whitespace.el (whitespace-help-on):
5315         * vc-rcs.el (vc-rcs-consult-headers):
5316         * userlock.el (ask-user-about-lock-help)
5317         (ask-user-about-supersession-help):
5318         * type-break.el (type-break-force-mode-line-update):
5319         * time-stamp.el (time-stamp-conv-warn):
5320         * terminal.el (te-set-output-log, te-more-break, te-filter)
5321         (te-sentinel, terminal-emulator):
5322         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
5323         (term-write-input-ring, term-check-source, term-start-output-log):
5324         (term-display-buffer-line, term-dynamic-list-completions):
5325         (term-ansi-make-term, serial-term):
5326         * subr.el (selective-display):
5327         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
5328         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
5329         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
5330         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
5331         (speedbar-remove-localized-speedbar-support)
5332         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
5333         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
5334         (speedbar-buffers-line-directory):
5335         * simple.el (shell-command-on-region, append-to-buffer)
5336         (prepend-to-buffer):
5337         * shadowfile.el (shadow-save-todo-file):
5338         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
5339         (scroll-bar-maybe-set-window-start):
5340         * sb-image.el (speedbar-image-dump):
5341         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
5342         (load-save-place-alist-from-file):
5343         * ps-samp.el (ps-print-message-from-summary):
5344         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
5345         (ps-background-image, ps-begin-job, ps-do-despool):
5346         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
5347         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
5348         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
5349         (pr-call-process, pr-file-list, pr-interface-save):
5350         * novice.el (disabled-command-function)
5351         (enable-command, disable-command):
5352         * mouse.el (mouse-buffer-menu-alist):
5353         * mouse-copy.el (mouse-kill-preserving-secondary):
5354         * macros.el (kbd-macro-query):
5355         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
5356         * informat.el (batch-info-validate):
5357         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
5358         * hippie-exp.el (try-expand-dabbrev-visible):
5359         * help-mode.el (help-make-xrefs):
5360         * help-fns.el (describe-variable):
5361         * generic-x.el (bat-generic-mode-run-as-comint):
5362         * finder.el (finder-mouse-select):
5363         * find-dired.el (find-dired-sentinel):
5364         * filesets.el (filesets-file-close):
5365         * files.el (list-directory):
5366         * faces.el (list-faces-display, describe-face):
5367         * facemenu.el (list-colors-display):
5368         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
5369         * epg.el (epg--process-filter, epg-cancel):
5370         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
5371         (epa--read-signature-type):
5372         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
5373         (emerge-file-names):
5374         * ehelp.el (electric-helpify):
5375         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
5376         * ediff-vers.el (rcs-ediff-view-revision):
5377         * ediff-util.el (ediff-setup):
5378         * ediff-mult.el (ediff-append-custom-diff):
5379         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
5380         (ediff-wordify):
5381         * echistory.el (Electric-command-history-redo-expression):
5382         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
5383         * disp-table.el (describe-display-table):
5384         * dired.el (dired-find-buffer-nocreate):
5385         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
5386         * dabbrev.el (dabbrev--same-major-mode-p):
5387         * chistory.el (list-command-history):
5388         * apropos.el (apropos-documentation):
5389         * allout.el (allout-obtain-passphrase):
5390         (allout-copy-exposed-to-buffer):
5391         (allout-verify-passphrase): Use with-current-buffer.
5393 2009-11-13  Glenn Morris  <rgm@gnu.org>
5395         * Makefile.in (ELCFILES): Regenerate.
5397 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
5399         * net/dbus.el (dbus-registered-objects-table): Rename from
5400         `dbus-registered-functions-table', because it contains also properties.
5401         (dbus-unregister-object): Unregister also properties.
5402         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
5403         Use a timeout of 500 msec, in order to not block.
5404         (dbus-register-property, dbus-property-handler): New defuns.
5406 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5408         * simple.el (minibuffer-default-add-completions): Drop deprecated
5409         4th arg.
5411 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
5413         * textmodes/artist.el (artist-mouse-choose-operation):
5414         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
5415         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
5416         (artist-compute-up-event-key): New function.
5417         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
5419 2009-11-13  Kenichi Handa  <handa@m17n.org>
5421         * language/japan-util.el: Make sure that the value of jisx0208
5422         property is jisx0208 character.
5424 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
5426         * international/mule.el (auto-coding-regexp-alist): Only purecopy
5427         car or each item, not the whole list.
5429 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5431         * minibuffer.el (minibuffer-completion-help):
5432         Use minibuffer-hide-completions.
5434 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
5436         * dired.el (dired-save-positions, dired-restore-positions): New funs.
5437         (dired-revert): Use them (bug#4880).
5439 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
5441         * tooltip.el (tooltip-frame-parameters): Undo previous change.
5443 2009-11-12  Juri Linkov  <juri@jurta.org>
5445         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
5446         New functions.
5447         (find-file-literally-at-point): Alias of `ffap-literally'.
5449 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
5451         * textmodes/ispell.el (ispell-skip-region-alist):
5452         * textmodes/css-mode.el (auto-mode-alist):
5453         * progmodes/compile.el (auto-mode-alist):
5454         * international/mule.el (ctext-non-standard-encodings-alist)
5455         (ctext-non-standard-encodings-regexp):
5456         * simple.el (shell-command-switch, text-read-only):
5457         * replace.el (occur-mode-map):
5458         * paths.el (rmail-file-name):
5459         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
5460         * find-file.el (ff-special-constructs):
5461         * files.el (file-name-handler-alist):
5462         * composite.el: Purecopy strings.
5464         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
5466 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
5468         * widget.el (define-widget): Purecopy the docstring.
5469         * international/mule-cmds.el (charset): Do not purecopy the
5470         docstring here, define-widget does it.
5472         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
5473         * textmodes/bibtex-style.el (auto-mode-alist):
5474         * progmodes/inf-lisp.el (inferior-lisp-prompt):
5475         * progmodes/compile.el (compile-command):
5476         * language/korea-util.el (default-korean-keyboard):
5477         * international/mule-conf.el (file-coding-system-alist):
5478         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
5479         * tooltip.el (tooltip-frame-parameters):
5480         * newcomment.el (comment-end, comment-padding):
5481         * dired.el (dired-trivial-filenames):
5482         * comint.el (comint-file-name-prefix): Purecopy initial values.
5484 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
5486         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
5487         (tramp-advice-minibuffer-electric-tilde): Unload advices via
5488         `tramp-unload'.
5489         (tramp-advice-make-auto-save-file-name)
5490         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
5491         after removing the advice.
5493 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
5495         * progmodes/grep.el (grep-regexp-alist):
5496         * international/mule-cmds.el (iso-2022-control-alist):
5497         * emacs-lisp/timer.el (timer-duration-words):
5498         * subr.el (version-separator, version-regexp-alist):
5499         * minibuffer.el (completion-styles-alist):
5500         * faces.el (face-attribute-name-alist, list-faces-sample-text):
5501         Change defvars to defconsts.
5503         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
5504         * loadup.el ("international/mule-conf"): Load the byte compiled version.
5505         * international/mule-conf.el: Allow to be byte compiled.
5507         * international/mule.el (define-charset): Purecopy props.
5508         (load-with-code-conversion): Purecopy doc string and file name.
5509         (put-charset-property): Purecopy strings.
5510         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
5512         * international/mule-cmds.el (register-input-method): Purecopy arguments.
5513         (define-char-code-property): Correctly purecopy the table.
5515         * international/ccl.el (define-ccl-program): Purecopy the docstring.
5517         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
5519         * subr.el (add-hook): Purecopy strings.
5520         (eval-after-load): Purecopy load-history-regexp and the form.
5522         * custom.el (custom-declare-group): Purecopy load-file-name.
5524         * subr.el (menu-bar-separator): New defconst.
5525         * net/eudc.el (eudc-tools-menu):
5526         * international/mule-cmds.el (set-coding-system-map)
5527         (mule-menu-keymap):
5528         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5529         * vc-hooks.el (vc-menu-map):
5530         * replace.el (occur-mode-map):
5531         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
5532         (menu-bar-edit-menu, menu-bar-goto-menu)
5533         (menu-bar-custom-menu, menu-bar-showhide-menu)
5534         (menu-bar-options-menu, menu-bar-tools-menu)
5535         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
5536         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
5537         (menu-bar-help-menu):
5538         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
5539         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
5541         * term/x-win.el (x-gtk-stock-map):
5542         * progmodes/vera-mode.el (auto-mode-alist):
5543         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
5544         (inferior-lisp-program, inferior-lisp-load-command):
5545         * progmodes/hideshow.el (hs-special-modes-alist):
5546         * progmodes/gud.el (same-window-regexps):
5547         * progmodes/grep.el (grep-program, find-program, xargs-program):
5548         * net/telnet.el (same-window-regexps):
5549         * net/rlogin.el (same-window-regexps):
5550         * language/ethiopic.el (font-ccl-encoder-alist):
5551         * vc-sccs.el (vc-sccs-master-templates):
5552         * vc-rcs.el (vc-rcs-master-templates):
5553         * subr.el (cl-assertion-failed):
5554         * simple.el (next-error-overlay-arrow-position):
5555         * lpr.el (lpr-command):
5556         * locate.el (locate-ls-subdir-switches):
5557         * info.el (same-window-regexps, info)
5558         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
5559         * image-mode.el (image-mode, auto-mode-alist):
5560         * hippie-exp.el (hippie-expand-ignore-buffers):
5561         * format.el (format-alist):
5562         * find-dired.el (find-ls-subdir-switches, find-grep-options)
5563         (find-name-arg):
5564         * facemenu.el (facemenu-keybindings):
5565         * dired.el (dired-listing-switches, dired-chown-program):
5566         * diff.el (diff-switches, diff-command):
5567         * cus-edit.el (same-window-regexps):
5568         * bindings.el (mode-line-mule-info)
5569         (mode-line-buffer-identification): Purecopy strings.
5571 2009-11-11  Juri Linkov  <juri@jurta.org>
5573         * simple.el (dired-get-filename) <declare-function>:
5574         Tell the byte-compiler about dired-get-filename.
5575         (shell-command): In Dired mode, get filename from the current line
5576         as the default value.
5578 2009-11-10  Glenn Morris  <rgm@gnu.org>
5580         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
5581         * calendar/holidays.el, progmodes/cperl-mode.el:
5582         Update x-popup-menu declarations.
5584         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
5585         (list-load-path-shadows): Use dolist.
5586         (list-load-path-shadows): Use with-current-buffer.
5588 2009-11-10  Juri Linkov  <juri@jurta.org>
5590         * minibuffer.el (read-file-name): Support a list of default values
5591         in `default-filename'.  Use the first file name where only one
5592         element is required.  Doc fix.
5594 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
5596         * net/dbus.el (dbus-unregister-object): Release service, if no
5597         other method is registered for it.
5599 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
5601         * bookmark.el (bookmark-completing-read): Sort bookmark names if
5602         bookmark-sort-flag is non-nil (Bug#4653).
5604 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
5606         * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
5607         the progress reporter entirely.
5609         * emulation/cua-base.el: Add CUA property to some CC mode commands
5610         (Bug#4100).
5612 2009-11-08  Kevin Ryde  <user42@zip.com.au>
5614         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
5615         at end of sentence (Bug#4818).
5617 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
5619         * progmodes/compile.el (compilation-error-regexp-alist-alist):
5620         Handle "see declaration of" MSFT statements (Bug#4100).
5622 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
5624         * net/tramp.el (tramp-advice-make-auto-save-file-name)
5625         (tramp-advice-file-expand-wildcards): Unload via
5626         `ad-remove-advice'.
5628         * net/trampver.el: Update release number.
5630 2009-11-08  Kevin Ryde  <user42@zip.com.au>
5632         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
5633         `ad-do-it'.
5635 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
5637         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
5638         in order to keep context in SELinux.
5640 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
5642         * dired-aux.el (dired-query): Place cursor in echo area and allow
5643         C-g.
5645         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
5646         menu item if not on a directory (Bug#4701).
5648 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
5650         Sync with Tramp 2.1.17.
5652         * net/tramp.el (tramp-handle-copy-directory): Don't use
5653         `file-remote-p' (due to compatibility).
5655         * net/tramp-compat.el (tramp-compat-copy-directory)
5656         (tramp-compat-delete-directory): New defuns.
5658         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
5659         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
5660         `tramp-compat-delete-directory'.
5662         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5663         (tramp-smb-handle-delete-directory): Use
5664         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
5666         * net/trampver.el: Update release number.
5668 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
5670         * tar-mode.el (tar-copy): Call write-region on the right buffer
5671         (Bug#4857).
5673         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
5674         by hand, if necessary (Bug#4878).
5676 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
5678         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
5679         align size column (Bug#4839).
5681         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
5682         statement.
5684 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
5686         * progmodes/ld-script.el (auto-mode-alist):
5687         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
5689         * cus-face.el (custom-declare-face): Purecopy face spec.
5691 2009-11-06  Kenichi Handa  <handa@m17n.org>
5693         * international/uni-bidi.el: Re-generated.
5694         * international/uni-category.el: Re-generated.
5695         * international/uni-combining.el: Re-generated.
5696         * international/uni-mirrored.el: Re-generated.
5698 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
5700         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
5701         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
5702         (tex-start-options, slitex-run-command, latex-run-command)
5703         (tex-run-command, tex-directory):
5704         * textmodes/ispell.el (ispell-html-skip-alists)
5705         (ispell-tex-skip-alists, ispell-tex-skip-alists):
5706         * textmodes/fill.el (adaptive-fill-first-line-regexp):
5707         (adaptive-fill-regexp):
5708         * textmodes/dns-mode.el (auto-mode-alist):
5709         * progmodes/python.el (interpreter-mode-alist):
5710         * progmodes/etags.el (tags-compression-info-list):
5711         * progmodes/etags.el (tags-file-name):
5712         * net/browse-url.el (browse-url-galeon-program)
5713         (browse-url-firefox-program):
5714         * mail/sendmail.el (mail-signature-file)
5715         (mail-citation-prefix-regexp):
5716         * international/mule-conf.el (eight-bit):
5717         * international/latexenc.el (latex-inputenc-coding-alist):
5718         * international/fontset.el (x-pixel-size-width-font-regexp):
5719         * emacs-lisp/warnings.el (warning-type-format):
5720         * emacs-lisp/trace.el (trace-buffer):
5721         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
5722         (emacs-lisp-mode-map):
5723         * calendar/holidays.el (holiday-solar-holidays)
5724         (holiday-bahai-holidays, holiday-islamic-holidays)
5725         (holiday-christian-holidays, holiday-hebrew-holidays)
5726         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
5727         (hebrew-holidays-1, holiday-oriental-holidays)
5728         (holiday-general-holidays):
5729         * x-dnd.el (x-dnd-known-types):
5730         * tool-bar.el (tool-bar):
5731         * startup.el (site-run-file):
5732         * shell.el (shell-dumb-shell-regexp):
5733         * rfn-eshadow.el (file-name-shadow-tty-properties)
5734         (file-name-shadow-properties):
5735         * paths.el (remote-shell-program, news-directory):
5736         * mouse.el ([C-down-mouse-3]):
5737         * menu-bar.el (menu-bar-tools-menu):
5738         * jka-cmpr-hook.el (jka-compr-load-suffixes)
5739         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
5740         (jka-compr-compression-info-list):
5741         * isearch.el (search-whitespace-regexp):
5742         * image-file.el (image-file-name-extensions):
5743         * find-dired.el (find-ls-option):
5744         * files.el (directory-listing-before-filename-regexp)
5745         (directory-free-space-args, insert-directory-program)
5746         (list-directory-brief-switches, magic-fallback-mode-alist)
5747         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
5748         (automount-dir-prefix):
5749         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
5750         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
5751         (face-font-registry-alternatives, face-font-registry-alternatives)
5752         (face-font-family-alternatives):
5753         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
5754         (facemenu-foreground-menu, facemenu-face-menu):
5755         * epa-hook.el (epa-file-name-regexp):
5756         * dnd.el (dnd-protocol-alist):
5757         * textmodes/rst.el (auto-mode-alist):
5758         * button.el (default-button): Purecopy strings.
5760 2009-11-06  Glenn Morris  <rgm@gnu.org>
5762         * Makefile.in (ELCFILES): Update.
5764 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5766         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
5767         * emacs-lisp/levents.el: Move to obsolete/levents.el.
5769         * nxml/xsd-regexp.el (xsdre-gen-categories):
5770         * nxml/xmltok.el (xmltok-parse-entity):
5771         * nxml/rng-parse.el (rng-parse-validate-file):
5772         * nxml/rng-maint.el (rng-format-manual)
5773         (rng-manual-output-force-new-line):
5774         * nxml/rng-loc.el (rng-save-schema-location-1):
5775         * nxml/rng-cmpct.el (rng-c-parse-file):
5776         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5777         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
5779 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
5781         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
5782         Remove extra save-excursions and make-variable-buffer-local's.
5783         Suggested by Stefan Monnier.
5785         (verilog-getopt-file, verilog-module-inside-filename-p)
5786         (verilog-set-define): Merge GNU 1.35 and repair changes from
5787         switching to using with-current-buffer.
5789         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
5790         being treated as a number and confusing AUTORESET.
5791         Reported by Dan Dever.
5793         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
5794         Add verilog-auto-ignore-concat to fix backward compatibility with
5795         older verilog-modes.  Reported by Dan Katz.
5797         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
5798         containing closing anchors "...$".
5800         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
5801         Reported by Wade Smith.
5803         (verilog-batch-execute-func): Comment on function usage.
5805 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
5807         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
5808         for labels.
5810         (verilog-label-re, verilog-calc-1): Support proper indent of named
5811         asserts.
5813         (verilog-backward-token, verilog-basic-complete-re)
5814         (verilog-beg-of-statement, verilog-indent-re): Support proper
5815         indent of the assert statement at the beginning of a block of text.
5817         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
5818         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
5819         tokens as begins.
5821 2009-11-05  Glenn Morris  <rgm@gnu.org>
5823         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
5824         Emacs 19.  (Bug#1531)
5825         (byte-compile-fix-header): Update for the above change.
5826         Drop test for epoch::version.
5828         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
5829         * cus-dep.el (custom-make-dependencies):
5830         * finder.el (finder-compile-keywords):
5831         Use autoload-rubric's feature argument.
5833         * calendar/diary-lib.el (top-level): Make load behave more like require.
5835         * vc-git.el (vc-git-stash-map): Move definition before use.
5837 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
5839         * custom.el (custom-declare-group): Purecopy standard-value.
5840         (custom-declare-group): Purecopy custom-prefix.
5842         * international/mule.el (load-with-code-conversion):
5843         Call do-after-load-evaluation unconditionally.
5845         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
5847 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5849         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
5851 2009-11-04  Glenn Morris  <rgm@gnu.org>
5853         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
5854         (byte-compile-compatibility): Remove option.
5855         (byte-compile-close-variables, byte-compile-fix-header)
5856         (byte-compile-insert-header, byte-compile-output-docform)
5857         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
5858         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
5859         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
5860         (byte-compile-insert, byte-compile-defun):
5861         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
5862         (byte-defop-compiler19): Remove.
5863         Without byte-compile-compatibility, the 'emacs19-opcode property is not
5864         used by anything.  Replace all calls with byte-defop-compiler.
5866 2009-11-04  Juri Linkov  <juri@jurta.org>
5868         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
5869         (menu-bar-options-menu): Don't quote the `prop' arg of
5870         `menu-bar-make-mm-toggle'.
5872 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
5874         * calendar/calendar.el (cal-loaddefs):
5875         * calendar/diary-lib.el (diary-loaddefs):
5876         * calendar/holidays.el (hol-loaddefs):
5877         * eshell/esh-module.el (esh-groups): Load rather than require.
5879 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5881         * calendar/todo-mode.el (todo-add-category): Don't hardcode
5882         point-min==1.
5883         (todo-top-priorities): Only display-buffer when called interactively.
5884         (todo-item-start): Don't save excursion point.
5885         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
5886         (todo-insert-item-here, todo-file-item, todo-remove-item):
5887         Adjust uses of todo-item-start and todo-item-end.
5889         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
5890         (autoload-rubric): Don't use any more.
5891         * cedet/semantic/fw.el (semantic/loaddefs):
5892         * cedet/srecode.el (srecode/loaddefs):
5893         * cedet/ede.el (ede/loaddefs): Load rather than require.
5894         * cedet/ede/cpp-root.el:
5895         * cedet/ede/emacs.el:
5896         * cedet/ede/files.el:
5897         * cedet/ede/linux.el:
5898         * cedet/ede/locate.el:
5899         * cedet/ede/make.el:
5900         * cedet/ede/shell.el:
5901         * cedet/ede/speedbar.el:
5902         * cedet/ede/system.el:
5903         * cedet/ede/util.el:
5904         * cedet/semantic/analyze.el:
5905         * cedet/semantic/bovine.el:
5906         * cedet/semantic/complete.el:
5907         * cedet/semantic/ctxt.el:
5908         * cedet/semantic/db-file.el:
5909         * cedet/semantic/db-find.el:
5910         * cedet/semantic/db-global.el:
5911         * cedet/semantic/db-mode.el:
5912         * cedet/semantic/db-typecache.el:
5913         * cedet/semantic/db.el:
5914         * cedet/semantic/debug.el:
5915         * cedet/semantic/dep.el:
5916         * cedet/semantic/doc.el:
5917         * cedet/semantic/edit.el:
5918         * cedet/semantic/find.el:
5919         * cedet/semantic/format.el:
5920         * cedet/semantic/html.el:
5921         * cedet/semantic/ia-sb.el:
5922         * cedet/semantic/ia.el:
5923         * cedet/semantic/idle.el:
5924         * cedet/semantic/lex-spp.el:
5925         * cedet/semantic/lex.el:
5926         * cedet/semantic/mru-bookmark.el:
5927         * cedet/semantic/scope.el:
5928         * cedet/semantic/senator.el:
5929         * cedet/semantic/sort.el:
5930         * cedet/semantic/symref.el:
5931         * cedet/semantic/tag-file.el:
5932         * cedet/semantic/tag-ls.el:
5933         * cedet/semantic/tag-write.el:
5934         * cedet/semantic/tag.el:
5935         * cedet/semantic/util-modes.el:
5936         * cedet/semantic/analyze/complete.el:
5937         * cedet/semantic/analyze/refs.el:
5938         * cedet/semantic/bovine/c.el:
5939         * cedet/semantic/bovine/gcc.el:
5940         * cedet/semantic/bovine/make.el:
5941         * cedet/semantic/bovine/scm.el:
5942         * cedet/semantic/decorate/include.el:
5943         * cedet/semantic/decorate/mode.el:
5944         * cedet/semantic/symref/cscope.el:
5945         * cedet/semantic/symref/global.el:
5946         * cedet/semantic/symref/grep.el:
5947         * cedet/semantic/symref/idutils.el:
5948         * cedet/semantic/symref/list.el:
5949         * cedet/semantic/wisent/java-tags.el:
5950         * cedet/semantic/wisent/javascript.el:
5951         * cedet/srecode/compile.el:
5952         * cedet/srecode/cpp.el:
5953         * cedet/srecode/document.el:
5954         * cedet/srecode/el.el:
5955         * cedet/srecode/expandproto.el:
5956         * cedet/srecode/getset.el:
5957         * cedet/srecode/insert.el:
5958         * cedet/srecode/java.el:
5959         * cedet/srecode/map.el:
5960         * cedet/srecode/mode.el:
5961         * cedet/srecode/template.el:
5962         * cedet/srecode/texi.el: Remove the file-local setting of
5963         generated-autoload-feature.
5965         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
5966         and only put a prop if it is non-nil.
5968 2009-11-03  Juri Linkov  <juri@jurta.org>
5970         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
5971         (menu-bar-options-menu): Fix list quoting (Bug#4429).
5973         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
5974         and "Menu" to make top-level menu item visually one unit (like
5975         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
5976         multi-word menu items).  Fix :help string for quit-window.
5978 2009-11-03  Glenn Morris  <rgm@gnu.org>
5980         * cedet/mode-local.el (with-mode-local): Doc fix.
5982         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
5983         (byte-compile-file-form-define-abbrev-table)
5984         (byte-compile-file-form-custom-declare-variable)
5985         (byte-compile-variable-ref, byte-compile-defvar):
5986         Whether or not a warning is enabled should only affect whether we issue
5987         the warning, not whether or not we collect the relevant data.
5988         Eg warnings can be turned on and off throughout the course of a file.
5990         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
5991         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
5993 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5995         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
5996         * play/mpuz.el (mpuz-create-buffer):
5997         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
5998         (lm-print-y,s,noise, lm-print-w0, lm-init):
5999         * play/gomoku.el (gomoku-prompt-for-move):
6000         * play/fortune.el (fortune-in-buffer):
6001         * play/dissociate.el (dissociated-press):
6002         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
6003         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
6004         * mail/supercite.el (sc-eref-show):
6005         * mail/smtpmail.el (smtpmail-send-it):
6006         * mail/rmailsum.el (rmail-summary-next-labeled-message)
6007         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
6008         (rmail-summary-undelete-many, rmail-summary-rmail-update)
6009         (rmail-summary-goto-msg, rmail-summary-expunge)
6010         (rmail-summary-get-new-mail, rmail-summary-search-backward)
6011         (rmail-summary-add-label, rmail-summary-output-menu)
6012         (rmail-summary-output-body):
6013         * mail/rfc822.el (rfc822-addresses):
6014         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
6015         * mail/mailpost.el (post-mail-send-it):
6016         * mail/hashcash.el (hashcash-generate-payment):
6017         * mail/feedmail.el (feedmail-run-the-queue)
6018         (feedmail-queue-send-edit-prompt-help-first)
6019         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
6020         (feedmail-deduce-address-list):
6021         * eshell/esh-ext.el (eshell-remote-command):
6022         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
6023         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
6024         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
6025         (viper-save-string-in-file, viper-valid-marker):
6026         * emulation/viper-keym.el (viper-toggle-key):
6027         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
6028         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
6029         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
6030         * emulation/viper-cmd.el (viper-exec-form-in-vi)
6031         (viper-exec-form-in-emacs, viper-brac-function):
6032         * emulation/viper.el (viper-delocalize-var):
6033         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
6034         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
6035         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
6036         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
6037         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
6038         * emulation/edt.el (edt-electric-helpify):
6039         * emulation/cua-rect.el (cua--rectangle-aux-replace):
6040         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
6041         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
6042         (cua-indent-to-global-mark-column):
6043         * calendar/diary-lib.el (calendar-mark-1):
6044         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
6045         Use with-current-buffer.
6046         * emulation/viper.el (viper-delocalize-var): Use dolist.
6048 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
6050         * comint.el (comint-replace-by-expanded-history-before-point):
6051         Replace !! with the previous input string literally (Bug#1795).
6053 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
6055         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
6056         to be made up of whitespace.
6058 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
6060         * minibuffer.el (read-file-name): Don't use file dialogs for
6061         remote directories (Bug#99).
6063 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
6065         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
6067 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
6069         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
6070         instead of deleting the window or frame.
6072 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
6074         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
6075         Support face colors.
6077         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
6078         New function.  Support face colors (Bug#1168).
6079         (tex-common-initialization): Use it.
6081         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
6082         mode allows it (Bug#1168).
6084 2009-10-31  Juri Linkov  <juri@jurta.org>
6086         * facemenu.el (list-colors-display): Don't mark buffer as
6087         modified (Bug#3948).
6089 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
6091         * international/mule-diag.el (list-character-sets-1): Minor
6092         message fix (Bug#3526).
6094         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
6095         face property (Bug#4834).
6096         (etags-list-tags, etags-tags-apropos-additional)
6097         (etags-tags-apropos, tags-select-tags-table): Add follow-link
6098         property.
6100         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
6101         items.
6103         * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
6104         items.
6106         * cedet/ede.el (ede-minor-mode):
6107         * cedet/semantic.el (semantic-mode): Toggle menu separators.
6109 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
6111         * textmodes/two-column.el (2C-split):
6112         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
6113         * textmodes/tex-mode.el (tex-set-buffer-directory):
6114         * textmodes/spell.el (spell-region, spell-string):
6115         * textmodes/reftex.el (reftex-erase-buffer):
6116         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
6117         * textmodes/reftex-toc.el (reftex-toc-promote-action):
6118         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
6119         (reftex-select-item):
6120         * textmodes/reftex-ref.el (reftex-label-info-update)
6121         (reftex-offer-label-menu):
6122         * textmodes/reftex-index.el (reftex-index-change-entry)
6123         (reftex-index-phrases-info):
6124         * textmodes/reftex-global.el (reftex-create-tags-file)
6125         (reftex-save-all-document-buffers, reftex-ensure-write-access):
6126         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
6127         (reftex-view-crossref-from-bibtex):
6128         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
6129         (reftex-extract-bib-entries-from-thebibliography)
6130         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
6131         * textmodes/refbib.el (r2b-capitalize-title):
6132         (r2b-convert-buffer, r2b-help):
6133         * textmodes/page-ext.el (pages-directory)
6134         (pages-directory-goto-with-mouse):
6135         * textmodes/bibtex.el (bibtex-validate-globally):
6136         * textmodes/bib-mode.el (bib-capitalize-title):
6137         * textmodes/artist.el (artist-clear-buffer, artist-system):
6138         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
6139         (local-set-scheme-interaction-buffer, xscheme-process-filter)
6140         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
6141         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
6142         (xscheme-send-control-g-interrupt, xscheme-start-process)
6143         (xscheme-process-sentinel, xscheme-cd):
6144         * progmodes/verilog-mode.el (verilog-read-always-signals)
6145         (verilog-set-define, verilog-getopt-file)
6146         (verilog-module-inside-filename-p):
6147         * progmodes/sh-script.el:
6148         * progmodes/python.el (python-pdbtrack-get-source-buffer)
6149         (python-pdbtrack-grub-for-buffer, python-execute-file):
6150         * progmodes/octave-inf.el (inferior-octave):
6151         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
6152         (idlwave-shell-compile-helper-routines, idlwave-set-local)
6153         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
6154         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
6155         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
6156         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
6157         (idlwave-shell-filter, idlwave-shell-examine-highlight)
6158         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
6159         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
6160         (idlwave-shell-examine-display, idlwave-shell-run-region)
6161         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
6162         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
6163         * progmodes/idlw-help.el (idlwave-help-get-special-help)
6164         (idlwave-help-get-help-buffer):
6165         * progmodes/gud.el (gud-basic-call, gud-find-class)
6166         (gud-tooltip-activate-mouse-motions-if-enabled):
6167         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
6168         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
6169         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
6170         (ebrowse-tags-next-file):
6171         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
6172         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
6173         (ebnf-eps-finish-and-write):
6174         * progmodes/cpp.el (cpp-edit-save):
6175         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
6176         * progmodes/cc-defs.el (c-emacs-features):
6177         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
6178         (antlr-directory-dependencies):
6179         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
6180         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
6181         (ada-find-any-references, ada-make-filename-from-adaname)
6182         (ada-make-body-gnatstub):
6183         * obsolete/rnews.el (news-list-news-groups):
6184         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
6185         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
6186         * net/rcirc.el (rcirc-debug):
6187         * net/newst-treeview.el (newsticker--treeview-list-add-item)
6188         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
6189         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
6190         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
6191         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
6192         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
6193         (newsticker--treeview-list-clear-highlight)
6194         (newsticker--treeview-list-update-highlight)
6195         (newsticker--treeview-list-highlight-start)
6196         (newsticker--treeview-tree-update-highlight)
6197         (newsticker--treeview-get-selected-item)
6198         (newsticker-treeview-mark-list-items-old)
6199         (newsticker--treeview-set-current-node):
6200         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
6201         * net/newst-backend.el (newsticker--get-news-by-funcall)
6202         (newsticker--get-news-by-wget, newsticker--image-get)
6203         (newsticker--image-sentinel):
6204         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
6205         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
6206         (eudc-ph-close-session):
6207         * net/eudc.el (eudc-save-options):
6208         * language/thai-word.el (thai-update-word-table):
6209         * language/japan-util.el (japanese-string-conversion):
6210         * international/titdic-cnv.el (tsang-quick-converter)
6211         (ziranma-converter, ctlau-converter):
6212         * international/mule-cmds.el (describe-language-environment):
6213         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
6214         (skkdic-convert-postfix, skkdic-convert-prefix):
6215         (skkdic-convert-okuri-nasi, skkdic-convert):
6216         * emacs-lisp/re-builder.el (reb-update-overlays):
6217         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
6218         * emacs-lisp/gulp.el (gulp-send-requests):
6219         * emacs-lisp/find-gc.el (trace-call-tree):
6220         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
6221         (eieio-describe-generic):
6222         * emacs-lisp/eieio-base.el (eieio-persistent-read):
6223         * emacs-lisp/edebug.el (edebug-outside-excursion):
6224         * emacs-lisp/debug.el (debugger-make-xrefs):
6225         * emacs-lisp/cust-print.el (custom-prin1-to-string):
6226         * emacs-lisp/chart.el (chart-new-buffer):
6227         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
6228         Use with-current-buffer.
6229         * textmodes/artist.el (artist-system): Don't call
6230         copy-sequence on a fresh string.
6231         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
6233 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
6235         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
6236         is no item to edit.  (Bug#4820)
6237         (todo-top-priorities): Restore point and restore narrowing in Todo
6238         buffer.  (Bug#4820)
6240 2009-10-31  Glenn Morris  <rgm@gnu.org>
6242         * net/ange-ftp.el (top-level): Don't require dired when compiling.
6243         (comint-last-output-start, comint-last-input-start)
6244         (comint-last-input-end): Don't defvar when compiling.
6245         (ange-ftp-process-file): Use bound-and-true-p.
6247         * pcmpl-rpm.el (top-level): Move provide statement to end.
6248         (pcmpl-rpm): Remove unused custom group.
6250         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
6252         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
6254         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
6255         (byte-compile-warnings): Add `constants' as an option.
6256         (byte-compile-callargs-warn, byte-compile-arglist-warn)
6257         (display-call-tree): Update for byte-compile-fdefinition possibly
6258         returning `(macro lambda ...)'.  (Bug#4778)
6259         (byte-compile-variable-ref, byte-compile-setq-default):
6260         Respect `constants' member of byte-compile-warnings.
6262         * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
6263         Use mapc rather than mapcar because the return value is never used.
6265         * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
6266         * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
6267         * cedet/semantic/html.el:
6268         Suppress harmless warnings about setting up semantic-imenu (not
6269         part of Emacs) variables.
6271 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6273         * vc-bzr.el (vc-bzr-revision-keywords): New var.
6274         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
6275         to "submit:".
6277         * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
6278         * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
6279         * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
6280         * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
6281         * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
6282         * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
6283         (semantic-analyzer-debug-global-symbol)
6284         (semantic-analyzer-debug-missing-innertype)
6285         (semantic-analyzer-debug-insert-include-summary):
6286         * cedet/semantic/util.el (semantic-file-tag-table):
6287         (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
6288         (semantic-recursive-find-nonterminal-by-name):
6289         * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
6290         * cedet/semantic/tag-file.el (semantic-prototype-file):
6291         * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
6292         * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
6293         * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
6294         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
6295         (semantic-idle-summary-maybe-highlight):
6296         * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
6297         (semantic-ia-sb-tag-info):
6298         * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
6299         * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
6300         * cedet/semantic/ede-grammar.el (project-compile-target):
6301         (ede-proj-makefile-insert-variables):
6302         * cedet/semantic/debug.el (semantic-debug-set-parser-location):
6303         (semantic-debug-set-source-location, semantic-debug-interface-layout)
6304         (semantic-debug-mode, semantic-debug):
6305         * cedet/semantic/db.el (semanticdb-needs-refresh-p):
6306         * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
6307         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
6308         * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
6309         (semanticdb-find-translate-path-includes--internal)
6310         (semanticdb-reset-log, semanticdb-find-log-activity):
6311         * cedet/semantic/db-file.el (object-write):
6312         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
6313         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
6314         (semanticdb-create-ebrowse-database):
6315         * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
6316         * cedet/semantic/complete.el (semantic-displayor-focus-request)
6317         (semantic-collector-calculate-completions-raw)
6318         (semantic-complete-read-tag-analyzer):
6319         * cedet/semantic/analyze.el (semantic-analyze-pulse):
6320         * cedet/ede/util.el (ede-update-version-in-source):
6321         * cedet/ede/proj.el (project-delete-target):
6322         * cedet/ede/proj-elisp.el (ede-update-version-in-source)
6323         (ede-proj-flush-autoconf):
6324         * cedet/ede/pconf.el (ede-proj-configure-synchronize)
6325         (ede-proj-configure-synchronize):
6326         * cedet/ede/locate.el (ede-locate-file-in-project-impl):
6327         * cedet/ede/linux.el (ede-linux-version):
6328         * cedet/ede/emacs.el (ede-emacs-version):
6329         * cedet/ede/dired.el (ede-dired-add-to-target):
6330         * cedet/ede.el (ede-buffer-header-file, ede-find-target)
6331         (ede-buffer-documentation-files, ede-project-buffers, ede-set)
6332         (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
6333         * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
6334         (cedet-idutils-lid-call, cedet-idutils-expand-filename)
6335         (cedet-idutils-version-check):
6336         * cedet/cedet-global.el (cedet-gnu-global-call):
6337         (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
6338         (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
6339         * cedet/cedet-cscope.el (cedet-cscope-call)
6340         (cedet-cscope-expand-filename, cedet-cscope-version-check):
6341         Use with-current-buffer.
6342         * cedet/ede.el (ede-make-project-local-variable)
6343         (ede-set-project-variables, ede-set): Use dolist.
6345 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
6347         * textmodes/ispell.el (ispell-skip-region-alist):
6348         * international/mule-conf.el (eight-bit):
6349         * international/fontset.el (font-encoding-alist):
6350         * startup.el (pure-space-overflow-message):
6351         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
6352         * paths.el (gnus-nntp-service, rmail-spool-directory)
6353         (term-file-prefix):
6354         * files.el (save-some-buffers-action-alist):
6355         * cmuscheme.el (same-window-buffer-names):
6356         * ielm.el (same-window-buffer-names):
6357         * shell.el (same-window-buffer-names):
6358         * mail/sendmail.el (same-window-buffer-names):
6359         * progmodes/inf-lisp.el (same-window-buffer-names):
6360         * bindings.el (mode-line-client)
6361         (mode-line-column-line-number-mode-map):
6362         * language/tibetan.el (tibetan-precomposition-rule-regexp)
6363         (tibetan-precomposed-regexp): Purecopy string arguments.
6365 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6367         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
6368         (calcDigit-nondigit):
6369         * calc/calc-yank.el (calc-copy-to-buffer):
6370         * calc/calc-units.el (calc-invalidate-units-table):
6371         * calc/calc-trail.el (calc-trail-yank):
6372         * calc/calc-store.el (calc-insert-variables):
6373         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
6374         * calc/calc-prog.el (calc-read-parse-table):
6375         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
6376         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
6377         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
6378         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
6379         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
6380         (calc-graph-name, calc-graph-find-command, calc-graph-view)
6381         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
6382         * calc/calc-ext.el (calc-realign):
6383         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
6384         (calc-embedded-finish-edit, calc-embedded-make-info)
6385         (calc-embedded-finish-command, calc-embedded-stack-change):
6386         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
6388         * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
6389         (overload-docstring-extension): Use that info.
6390         * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
6391         * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
6392         * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
6393         (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
6394         (semantic-nonterminal-full-name): Add the new `when' info.
6395         * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
6396         `assert'.
6398         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
6399         shell-dynamic-complete-filename in preference to
6400         comint-dynamic-complete-filename.
6402         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
6403         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
6404         Don't consider whether the display supports colors.
6405         (bookmark-import-new-list): Use dolist.
6406         (bookmark-bmenu-mode-map): Move initialization into declaration.
6407         (bookmark-bmenu-list): Use dolist, simplify.
6408         (bookmark-show-all-annotations): Use save-selected-window and dolist.
6409         (menu-bar-final-items): Use push.
6411 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
6413         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
6414         it works on remote files.
6415         (vc-hg-diff): Don't pass any `--cwd' argument.
6417 2009-10-27  Kevin Ryde  <user42@zip.com.au>
6419         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6420         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
6421         (Further to Bug#3921).
6423 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
6425         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
6426         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
6427         calling `tramp-imap-put-file'.  Add file size to the call.
6428         (tramp-imap-get-file-entries): Compute also user name, file size,
6429         and date.
6430         (tramp-imap-handle-insert-directory): Insert uid and gid.
6431         (tramp-imap-handle-file-attributes): Transform uid and gid
6432         according to `id-format'.
6433         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
6434         size in header X-Size.
6436 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
6438         * simple.el (transpose-subr): Give clearer error when the mark
6439         is not set.  (Bug#4807)
6441 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
6443         * net/tramp.el (tramp-perl-file-truename): New defconst.
6444         Perl code contributed by yary <not.com@gmail.com> (tiny change).
6445         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
6446         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
6447         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
6449         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
6450         Ignore `dired-call-process'.
6451         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
6453 2009-10-26  Julian Scheid  <julians37@gmail.com>
6455         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
6456         (tramp-get-remote-readlink): New defun.
6457         (tramp-handle-file-truename): Use it.
6458         (tramp-handle-file-exists-p): Check file-attributes cache, assume
6459         file exists if cache value present.
6460         (tramp-check-cached-permissions): New defun.
6461         (tramp-handle-file-readable-p): Use it.
6462         (tramp-handle-file-writable-p): Likewise.
6463         (tramp-handle-file-executable-p): Likewise.
6464         (tramp-handle-file-name-all-completions): Try using Perl to get
6465         partial completions.  When perl not available, combine `cd' and
6466         `ls' into single remote operation and use shell expansion to get
6467         partial remote directory contents.  Set `file-exists-p' cache for
6468         directory and any files returned by ls.  Change cache handling to
6469         support partial directory contents.  Use error message emitted by
6470         remote `cd' or Perl code for local tramp-error.
6471         (tramp-do-copy-or-rename-file-directly): Avoid separate
6472         tramp-send-command-and-check call.
6473         (tramp-handle-process-file): Merge three remote ops into one.
6474         Do not flush all caches when `process-file-side-effects' is set.
6475         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
6476         file-attributes shows uid/gid to be set already.
6478 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
6480         * textmodes/tex-mode.el (tex-dvi-view-command)
6481         (tex-show-queue-command, tex-open-quote):
6482         * progmodes/ruby-mode.el (auto-mode-alist)
6483         (interpreter-mode-alist): Purecopy strings.
6485         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
6487         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
6488         string for the hook, keymap and abbrev table.
6490         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
6492         * x-dnd.el (x-dnd-xdnd-to-action):
6493         * startup.el (fancy-startup-text, fancy-about-text): Change to
6494         defconst from defvar.
6496         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
6498         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
6499         Purecopy initialization strings.
6501         * mail/sendmail.el (mail-header-separator)
6502         (mail-personal-alias-file):
6503         * mail/rmail.el (rmail-default-dont-reply-to-names)
6504         (rmail-ignored-headers, rmail-retry-ignored-headers)
6505         (rmail-highlighted-headers, rmail-secondary-file-directory)
6506         (rmail-secondary-file-regexp):
6507         * files.el (null-device, file-name-invalid-regexp)
6508         (locate-dominating-stop-dir-regexp)
6509         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
6510         (interpreter-mode-alist): Use mapcar instead of mapc.
6512         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
6514         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
6515         (completion-ignored-extensions):
6516         (debug-ignored-errors): Purecopy strings.
6518 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6520         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
6521         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
6522         (pcomplete--here): Use push.
6524         * subr.el (all-completions): Declare the 4th arg obsolete.
6526 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6528         * pcomplete.el (pcomplete-unquote-argument-function): New var.
6529         (pcomplete-unquote-argument): New function.
6530         (pcomplete--common-suffix): Always pay attention to case.
6531         (pcomplete--table-subvert): Quote and unquote the text.
6532         (pcomplete--common-quoted-suffix): New function.
6533         (pcomplete-std-complete): Use it and pcomplete-begin.
6535         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
6536         we're inside a dedicated or minibuffer window.
6538 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6540         * cedet/semantic/fw.el (semantic-alias-obsolete)
6541         (semantic-varalias-obsolete): Make the `when' arg mandatory.
6542         (define-mode-overload-implementation):
6543         * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
6544         * cedet/semantic/wisent.el (wisent-lex-make-token-table):
6545         * cedet/semantic/util.el (semantic-file-token-stream)
6546         (semantic-something-to-stream):
6547         * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
6548         (semantic-expand-nonterminal):
6549         * cedet/semantic/tag-file.el (semantic-find-nonterminal)
6550         (semantic-find-dependency, semantic-find-nonterminal)
6551         (semantic-find-dependency):
6552         * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
6553         (semantic-flex-text, semantic-flex-make-keyword-table)
6554         (semantic-flex-keyword-p, semantic-flex-keyword-put)
6555         (semantic-flex-keyword-get, semantic-flex-map-keywords)
6556         (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
6557         * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
6558         * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
6559         (semantic-after-idle-scheduler-reparse-hooks):
6560         * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
6561         * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
6562         * cedet/semantic.el (semantic-toplevel-bovine-table)
6563         (semantic-toplevel-bovine-cache)
6564         (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
6565         (semantic-init-mode-hooks, semantic-init-db-hooks)
6566         (semantic-bovination-working-type): Provide the `when' arg.
6568 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
6570         * bookmark.el: Update documentation, especially documentation
6571         of `bookmark-alist' and of the bookmark file format.
6572         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
6574 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
6576         * mail/emacsbug.el (report-emacs-bug): Clarify that the
6577         keybindings apply to the mail buffer (Bug#4003).  Shrink help
6578         window to buffer.
6580         * whitespace.el (whitespace-mode, whitespace-newline-mode)
6581         (global-whitespace-mode, global-whitespace-newline-mode)
6582         (whitespace-toggle-options, global-whitespace-toggle-options):
6583         Doc fix (Bug#3660).
6585         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
6586         of xmltok-start before the end tag was inserted (Bug#2840).
6588         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
6589         patterns that are preceded by an open-paren (Bug#1320).
6591 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
6593         * files.el (delete-directory): Delete symlinks to directories with
6594         delete-file (Bug#4739).
6596 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
6598         * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
6599         * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
6600         argument to make-obsolete.
6602         * cedet/semantic/fw.el (semantic-alias-obsolete)
6603         (semantic-varalias-obsolete): Add optional WHEN argument.
6605 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
6607         * vc.el (vc-backend-for-registration): Rename from
6608         vc-get-backend-for-registration.  Update callers.
6610         * international/mule-cmds.el (set-language-info-alist):
6611         Purecopy lang-env.
6612         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
6613         (charset): Purecopy the name.
6614         (define-char-code-property): Purecopy string arguments.
6616         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6617         Purecopy string arguments.
6619         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
6620         * ediff-hook.el (menu-bar-ediff-menu):
6621         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
6622         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
6624 2009-10-24  Glenn Morris  <rgm@gnu.org>
6626         * comint.el (comint-dynamic-list-completions):
6627         * term.el (term-dynamic-list-completions): Use choose-completion rather
6628         than obsolete alias mouse-choose-completion.
6630         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
6631         file-cache-choose-completion.
6632         (file-cache-choose-completion): Handle an optional event argument.
6633         (file-cache-mouse-choose-completion): Make it an obsolete alias.
6635         * progmodes/octave-mod.el (octave-complete-symbol):
6636         Use choose-completion if mouse-choose-completion is ever removed.
6638         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
6639         use.
6641         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
6642         compiler.
6644         * vc-hooks.el (vc-responsible-backend): Fix declaration.
6646 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6648         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
6649         Ignore `pred' now that we receive one.
6650         Handle test-completion specially.
6652 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
6654         * vc.el (vc-responsible-backend): Throw an error if not backend is
6655         found.  Remove the REGISTER argument.  Move the code dealing with
6656         REGISTER ...
6657         (vc-get-backend-for-registration): ... here.  New function.
6658         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
6659         of vc-responsible-backend, pass the file name instead of the
6660         directory name.
6662 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6664         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
6665         New funs.
6666         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
6667         (pcomplete-comint-setup): Don't modify a global var via
6668         accidental side-effects.
6669         (pcomplete-shell-setup): Adjust call accordingly.
6670         (pcomplete-parse-comint-arguments): Use push.
6672 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
6674         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6675         Allow uncapitalized info node names (Bug#3921).
6677         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
6678         to the DEBUG file (Bug#3781).
6680 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
6682         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
6683         dictionary entry (Bug#4579).
6685 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
6687         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
6688         from `rfn-eshadow-update-overlay-hook' when unloading.
6689         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
6690         "rsyncc".  Adjust doc string.
6691         (tramp-temp-buffer-file-name): New buffer-local defvar.
6692         (tramp-handle-insert-file-contents, tramp-handle-write-region):
6693         Keep temporary file when indicated by method ("rsync" and
6694         "rsyncc").
6695         (tramp-handle-write-region): Handle APPEND.
6696         (tramp-delete-temp-file-function): New defun.  Added to
6697         `kill-buffer-hook'.
6699 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
6701         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
6703 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
6705         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
6706         (color-name-rgb-alist, tty-standard-colors)
6707         (tty-color-mode-alist): Change to defconst.
6709         * simple.el (mark-inactive): Purecopy message.
6711         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
6712         (global-map, yank-menu):
6713         * textmodes/ispell.el (ispell-menu-map):
6714         * net/eudc.el (eudc-tools-menu):
6715         * international/mule-cmds.el (describe-language-environment-map)
6716         (setup-language-environment-map, set-coding-system-map)
6717         (mule-menu-keymap):
6718         * vc-hooks.el (vc-menu-entry, vc-menu-map):
6719         * replace.el (occur-mode-map):
6720         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
6722 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
6724         * calc/calc.el (math-read-number, math-read-number-simple): Use
6725         `save-match-data'.
6727 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6729         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
6730         rather than fiddling with global-map bindings, since it should only
6731         affect per-terminal settings.
6732         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
6734         * minibuffer.el (completion-table-with-terminator): Allow to specify
6735         the terminator-regexp.
6737         * simple.el (switch-to-completions): Look for *Completions* in other
6738         frames as well.
6740         * pcomplete.el: Allow the use of completion-tables.
6741         (pcomplete-std-complete): New command.
6742         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
6743         (pcomplete--here): Use a function for `form' rather than an expression,
6744         so it can be byte-compiled.
6745         (pcomplete-here, pcomplete-here*): Adjust accordingly.
6746         Add edebug declaration.
6747         (pcomplete-show-completions): Remove unused var `curbuf'.
6748         (pcomplete-do-complete, pcomplete-stub):
6749         Don't assume `completions' is a list of strings any more.
6751 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
6753         * find-dired.el (find-name-arg): Fix typo in docstring.
6755 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6757         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
6758         (pcmpl-linux-fs-types): Same, and update to new modules layout.
6760         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
6761         pcomplete-entries.
6763         * comint.el (comint-read-input-ring, comint-write-input-ring)
6764         (comint-substitute-in-file-name)
6765         (comint-dynamic-complete-as-filename)
6766         (comint-dynamic-simple-complete)
6767         (comint-dynamic-list-filename-completions)
6768         (comint-dynamic-list-completions)
6769         (comint-redirect-results-list-from-process): Minor simplifications.
6771 2009-10-21  Kevin Ryde  <user42@zip.com.au>
6773         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
6774         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
6775         the first form.  And insert a blank line after ";;; Code" since
6776         that's usual style.  (Bug#4612)
6778         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
6780 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6782         * minibuffer.el (completion-table-with-terminator): Properly implement
6783         boundaries, in case `terminator' appears in the suffix.
6784         (completion--embedded-envvar-table): Don't return boundaries if
6785         there's no valid completion.  Simplify.
6786         (completion-file-name-table): New completion table extracted from
6787         completion--file-name-table.
6788         (completion--file-name-table): Use it.
6789         (read-file-name-predicate): Declare obsolete.
6790         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
6791         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
6792         completion-file-name-table, and use the `pred' argument.
6793         * files.el (locate-file-completion-table): Use the `pred' arg rather
6794         than read-file-name-predicate.
6795         (abbreviate-file-name): Use \` rather than ^ for BOS.
6797 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
6799         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
6800         vc-responsible-backend to register, it causes problems.
6802 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6804         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
6806 2009-10-21  Eric Ludlam  <zappo@gnu.org>
6808         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
6809         (semantic-c-debug-mode-init-pch): New functions.
6810         (semantic-c-debug-mode-init-last-mode): New var.
6811         (semantic-c-parse-lexical-token): Use them.
6813         * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
6814         When extracting the argument list, limit only by point-max.
6816 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
6818         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
6819         (tramp-smb-handle-file-attributes): Use it.
6820         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
6821         (tramp-smb-handle-insert-directory): Use `mapc' rather than
6822         `mapcar'.  Use `tramp-smb-get-stat-capability'.
6823         Add `dired-filename' text properties.
6824         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
6825         (tramp-smb-maybe-open-connection): Simplify check for smbclient
6826         version.
6828 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6830         * subr.el (read-key-delay): Reduce to 0.01.
6831         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
6832         (bug#4751).
6834 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6836         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
6838         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
6839         (Info-menu): Remove unused vars `last' and `completions'.
6840         (Info-index-nodes): Remove unused var `node'.
6842         * info.el (Info-complete-menu-item): Use complete-with-action.
6844 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
6846         Make vc-annotate work through copies and renames.
6847         * vc-annotate.el (vc-annotate-extract-revision-at-line):
6848         Return the file name too.
6849         (vc-annotate-revision-at-line)
6850         (vc-annotate-find-revision-at-line)
6851         (vc-annotate-revision-previous-to-line)
6852         (vc-annotate-show-log-revision-at-line): Update to get the file
6853         name from vc-annotate-extract-revision-at-line.
6854         (vc-annotate-show-diff-revision-at-line-internal): Change the
6855         argument to mean whether to show a file diff or not.  Get the file
6856         name from vc-annotate-extract-revision-at-line.
6857         (vc-annotate-show-diff-revision-at-line):
6858         Update vc-annotate-show-diff-revision-at-line call.
6859         (vc-annotate-warp-revision): Add an optional file argument.
6861         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
6862         (vc-git-annotate-extract-revision-at-line): Also return the file
6863         name if found.
6865         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
6866         command.  Remove unused code.
6867         (vc-hg-annotate-re): Update to match --follow output.
6868         (vc-hg-annotate-extract-revision-at-line): Also return the file
6869         name if found.
6871         * vc.el: Update annotate-extract-revision-at-line documentation.
6873 2009-10-18  Kevin Ryde  <user42@zip.com.au>
6875         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
6876         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
6878         * net/browse-url.el (browse-url): Identify alist with "consp and
6879         not functionp" and let all other things go down the `apply' leg,
6880         as suggested by Stefan.  (Further to bug#4531.)
6882 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
6884         * minibuffer.el (read-file-name): Check for repeat before putting
6885         a default argument in file-name-history (Bug#4657).
6887         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
6888         read syntax (Bug#4737).
6890         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
6892 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
6894         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
6895         (html-tag-alist, html-tag-help): Add descriptions for undocumented
6896         entries and make note of obsolete tags.
6898 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6900         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
6902 2009-10-18  Glenn Morris  <rgm@gnu.org>
6904         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
6905         grep, so that binary files (eg international/uni-bidi.el) can match.
6906         Remove test for "UnicodeData" files, since it is hopefully unnecessary
6907         now, and in any case the file header format has changed.
6909 2009-10-17  Glenn Morris  <rgm@gnu.org>
6911         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
6912         (flyspell-get-word, flyspell-large-region)
6913         (flyspell-auto-correct-previous-word): Doc/error message fixes.
6915 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
6917         * Makefile.in (ELCFILES): Add ede/shell.
6919 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
6921         * term/common-win.el (x-colors): Purecopy it.
6923 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6925         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
6926         permissive for when the buffer is empty.
6927         (tar-header-block-tokenize): Decode the username and groupname.
6928         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
6930 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
6932         * cedet/srecode/srt.el:
6933         * cedet/srecode/compile.el:
6934         * cedet/semantic/mru-bookmark.el:
6935         * cedet/semantic/debug.el:
6936         * cedet/semantic/complete.el:
6937         * cedet/semantic/analyze.el: Require CL when compiling.
6939 2009-10-17  Eric Ludlam  <zappo@gnu.org>
6941         * cedet/semantic/scope.el
6942         (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
6943         tmpscope so that the regular scope will continue to work.
6945         * cedet/semantic/idle.el (semantic-idle-tag-highlight):
6946         Use semantic-idle-summary-highlight-face as the highlighting.
6948         * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
6949         contains multibyte characters, choose first applicable coding
6950         system automatically.
6952         * cedet/ede/project-am.el (project-run-target): New method.
6953         (project-run-target): New method.
6955         * cedet/ede.el (ede-target): Add run target menu item.
6956         (ede-project, ede-minor-keymap): Add ede-run-target binding.
6957         (ede-run-target): New function.
6958         (ede-target::project-run-target): New method.
6960         * cedet/ede/proj.el (project-run-target): New method.
6962         * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
6963         (ede-g++-libtool-shared-compiler): Remove SHELL.  Remove COMMANDS.
6964         Add :rules.
6965         (ede-proj-target-makefile-shared-object): Only libtool compilers
6966         now available.  Add linkers for libtool.
6967         (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
6968         (ede-proj-makefile-target-name): Always use .la extension.
6970         * cedet/ede/proj-prog.el (project-run-target): New method.
6972         * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
6973         (ede-g++-linker): Change Change link lines.
6975         * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
6976         When searching for old variables, go to the end of the buffer and
6977         search backward from there.
6978         (ede-proj-makefile-automake-insert-subdirs)
6979         (ede-proj-makefile-automake-insert-extradist): New methods.
6980         (ede-proj-makefile-create): Use them.
6982         * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
6983         Force FILE to expand to the current target.  Use file-exists-p to
6984         check that it exists.
6986         * cedet/ede/linux.el (ede-linux-version): Don't call "head".
6987         (ede-linux-load): Wrap dir in file-name-as-directory.
6988         Set :version slot.
6990         * cedet/ede/files.el (ede-get-locator-object): When enabling
6991         locate, do so on "top".
6993         * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
6994         file-name-as-directory during compare.
6995         (ede-emacs-version): Return Emacs/XEmacs differentiator.
6996         Get version number from different places.  Don't call egrep.
6997         (ede-emacs-load): Set :version slot.  Call file-name-as-directory
6998         to set the directory.
7000         * cedet/ede/shell.el: New file.
7002         * cedet/inversion.el (inversion-decoders): Allow for stray . in
7003         alpha/beta variants.
7005 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7007         * international/mule-cmds.el (select-safe-coding-system): If the file
7008         has a coding cookie, use it regardless of any other setting (bug#4712).
7010 2009-10-17  Glenn Morris  <rgm@gnu.org>
7012         * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
7013         All errors should have messages.
7015         * foldout.el (foldout-mouse-swallow-events):
7016         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
7018         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
7019         (dired-keep-marker-copy, dired-keep-marker-hardlink)
7020         (dired-keep-marker-symlink, dired-dwim-target)
7021         (dired-copy-preserve-time): Do not autoload these defcustoms.
7023         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
7024         messages from messing up the file coding.  (Bug#4623)
7026 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
7028         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
7029         if no match is found for the current dictionary.  (Bug#4578)
7031         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
7032         optional, since that is how it is documented, and this is often called
7033         with a nil argument.  (Bug#4577)
7034         (flyspell-external-point-words, flyspell-auto-correct-word)
7035         (flyspell-correct-word-before-point, flyspell-word-search-forward)
7036         (flyspell-word-search-backward): Remove nil argument in calls to
7037         flyspell-get-word, since it is not needed now.
7039 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
7041         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
7043 2009-10-16  Glenn Morris  <rgm@gnu.org>
7045         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
7047 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
7049         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
7050         (ange-ftp-file-size): New function.
7051         (ange-ftp-file-attributes): Use it.
7053 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
7055         * net/tramp-smb.el (tramp-smb-version): New defvar.
7056         (tramp-smb-maybe-open-connection): Use it, in order to avoid
7057         repeated checks.
7059 2009-10-16  Glenn Morris  <rgm@gnu.org>
7061         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
7062         Maybe copy some custom properties from old to new name.  (Bug#4706)
7064 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
7066         * subr.el (error, sit-for, start-process-shell-command)
7067         (start-file-process-shell-command): Set the calling convention
7068         after the function definition.
7070 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
7072         * subr.el (error, sit-for, start-process-shell-command)
7073         (start-file-process-shell-command): Use the new
7074         set-advertised-calling-convention feature.
7076 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
7078         * international/ucs-normalize.el (ucs-normalize-version):
7079         Change to 1.2.
7080         (check-range): Adjust for Unicode 5.2.
7082 2009-10-15  Juri Linkov  <juri@jurta.org>
7084         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
7085         to the `menu-item' format.
7087 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
7089         * net/tramp.el (tramp-replace-environment-variables): Do not fail
7090         if the environment variable does not exist.
7092         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7093         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
7094         parameter.
7095         (tramp-smb-handle-add-name-to-file)
7096         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
7097         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
7098         (tramp-smb-handle-file-attributes)
7099         (tramp-smb-do-file-attributes-with-stat)
7100         (tramp-smb-handle-file-local-copy)
7101         (tramp-smb-handle-insert-directory)
7102         (tramp-smb-handle-make-directory)
7103         (tramp-smb-handle-make-directory-internal)
7104         (tramp-smb-handle-make-symbolic-link)
7105         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
7106         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
7107         (tramp-smb-maybe-open-connection): Apply the changed parameters.
7108         (tramp-smb-read-file-entry): Read Disk names in compressed format.
7109         Handle long file names.
7110         (tramp-smb-get-cifs-capabilities): Check, whether the connection
7111         process is running.
7112         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
7113         Read share names with "-g" option.
7115 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
7117         * net/rcirc.el (rcirc-view-log-file): New command.
7118         (rcirc-track-minor-mode-map): Remove C-c ` binding.
7119         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
7120         specified.
7122 2009-10-15  Glenn Morris  <rgm@gnu.org>
7124         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
7125         from the second command-line argument.
7126         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
7127         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
7128         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
7129         w32-batch-update-autoloads.
7130         * emacs-lisp/autoload.el (autoload-make-program): New variable.
7131         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
7133         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
7134         the headers cannot be located.  Simplify, subtracting superflous
7135         save-excursions.
7137 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7139         Replace completion-base-size by completion-base-position to fix bugs
7140         such as (bug#4699).
7141         * simple.el (completion-base-position): New var.
7142         (completion-base-size): Mark as obsolete.
7143         (choose-completion): Make it work for mouse events as well.
7144         Pass the new base-position to choose-completion-string.
7145         (choose-completion-guess-base-position): New function, extracted from
7146         choose-completion-delete-max-match.
7147         (choose-completion-delete-max-match): Use it.  Make obsolete.
7148         (choose-completion-string): Use the new base-position info.
7149         (completion-root-regexp): Delete.
7150         (completion-setup-function): Preserve completion-base-position.
7151         Eliminate obsolete base-size manipulation.
7152         * minibuffer.el (display-completion-list): Don't mess with base-size.
7153         (minibuffer-completion-help): Set completion-base-position instead.
7154         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
7155         choose-completion.
7156         * textmodes/bibtex.el (bibtex-complete):
7157         * emacs-lisp/crm.el (crm--choose-completion-string):
7158         Adjust to new calling convention.
7159         * complete.el (partial-completion-mode): Use minibufferp to avoid
7160         bumping into incompatible change to choose-completion-string-functions.
7161         * ido.el (ido-choose-completion-string): Make its calling convention
7162         more permissive.
7163         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
7164         base-size manipulation.
7165         (comint-dynamic-list-input-ring): Use dotimes and push.
7166         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
7167         fundamental-mode.  Use `or'.
7169 2009-10-14  Juri Linkov  <juri@jurta.org>
7171         * misearch.el (multi-isearch-next-buffer-from-list)
7172         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
7174 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7176         * Makefile.in (compile-onefile): Load `bytecomp' rather than
7177         `bytecomp.el'.
7179         * minibuffer.el (completion-pcm--merge-completions): Make sure the
7180         string we return is all made up of text from the completions rather
7181         than part from the completions and part from the input (bug#4219).
7183         * ido.el (ido-everywhere): Use define-minor-mode.
7185         * buff-menu.el (list-buffers, ctl-x-map):
7186         Mark the entry points with ;;;###autoload cookies.
7188 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
7190         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
7191         correctly in the detached head case.
7192         (vc-git-print-log): Remove unused binding.
7194         * vc.el (vc-responsible-backend): When a directory is passed for
7195         for registration create a VC repository if no backend is
7196         responsible for the directory argument.
7197         (vc-deduce-fileset): Tell vc-responsible-backend to register.
7199         * vc.el: Move comments about RCS and SCCS ...
7200         * vc-rcs.el:
7201         * vc-sccs.el: ... here, respectively.
7203 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7205         * minibuffer.el (completion--file-name-table): Return nil if there's
7206         no file completion, even if substitute-in-file-name changed
7207         the string (bug#4708).
7209 2009-10-13  Juri Linkov  <juri@jurta.org>
7211         * files-x.el (read-file-local-variable-value): Don't filter out
7212         minor modes from mode name completion (bug#4664).
7214 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
7216         * international/mule-cmds.el (ucs-names): Remove exclusion of
7217         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
7219 2009-10-13  Kenichi Handa  <handa@m17n.org>
7221         * international/uni-name.el: Regenerated.
7223 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
7225         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
7226         should be automatically buffer-local, but isn't.)
7228 2009-10-12  Sam Steingold  <sds@gnu.org>
7230         * progmodes/compile.el (compilation-next-error-function): Fix the
7231         timestamps if the buffer has been visited before.
7232         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
7233         non-anchored patterns, like the perl one (bug#3928).
7235 2009-10-12  Glenn Morris  <rgm@gnu.org>
7237         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
7238         Let-bind `size'.
7240 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
7242         * proced.el (proced-unload-function): New function.
7244         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
7245         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
7246         Doc fix.
7248         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
7250 2009-10-11  Juri Linkov  <juri@jurta.org>
7252         * files-x.el (read-file-local-variable-value):
7253         Provide default value only for bound variables (bug#4664).
7255 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
7257         * net/tramp.el (tramp-local-host-p): Function shall return nil for
7258         connection methods like smb.
7260         * net/tramp-cache.el (tramp-flush-connection-property): The hash
7261         can be empty.
7263         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7264         (tramp-smb-file-name-handler-alist): Add handlers for
7265         `add-name-to-file', `make-symbolic-link'.
7266         (tramp-smb-handle-add-name-to-file)
7267         (tramp-smb-do-file-attributes-with-stat)
7268         (tramp-smb-handle-make-symbolic-link)
7269         (tramp-smb-get-cifs-capabilities): New defuns.
7270         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
7271         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
7272         (tramp-smb-handle-file-local-copy)
7273         (tramp-smb-handle-make-directory-internal)
7274         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
7275         The file name syntax depends on cifs capabilities.
7276         (tramp-smb-handle-file-attributes):
7277         Call `tramp-smb-do-file-attributes-with-stat' if possible.
7278         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
7279         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
7281 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
7283         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
7284         (eieio-defclass): Apply deftype handler and setf-method properties
7285         directly.
7286         (eieio-add-new-slot): Avoid union function from cl library.
7287         (eieio--typep): New function.
7288         (eieio-perform-slot-validation): Use it.
7290 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
7292         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
7293         Update documentation to refer to the variables documented in r1.135.
7294         (Bug#4188)
7296 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
7298         * bookmark.el (Info-suffix-list): Remove this unused variable.
7299         (bookmark-current-point): Remove this obsolete variable.
7300         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
7301         Adjust for removal of bookmark-current-point.
7303         (bookmarks-already-loaded, bookmark-current-buffer)
7304         (bookmark-yank-point): Document.  (Bug#4188)
7306 2009-10-10  Glenn Morris  <rgm@gnu.org>
7308         * frame.el (frame-height): Doc fix.
7310         * calendar/calendar.el (calendar-split-width-threshold): New option.
7311         (calendar-basic-setup): Use calendar-split-width-threshold.
7313 2009-10-10  Sascha Wilde  <wilde@sha-bang.de>
7315         * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
7316         Use .la for Automake.
7318 2009-10-09  Chong Yidong  <cyd@stupidchicken.com>
7320         * cedet/ede/pconf.el (ede-proj-configure-synchronize):
7321         Use "autoreconf -i".  Suggested by Andreas Schwab.
7323 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
7325         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
7326         Ideographic Supplement" range (U+1F200..U+1F2FF).
7328 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
7330         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
7331         since the list will have been rebuilt anyway.  (Bug#4349)
7333 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
7335         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
7336         (bookmark-bmenu-execute-deletions): Don't save here, as
7337         bookmark-delete will now do so if necessary.
7338         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
7339         (Bug#4348)
7341 2009-10-09  Glenn Morris  <rgm@gnu.org>
7343         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
7345 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
7347         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
7348         (bookmark-jump-other-window): Just invoke bookmark-jump with new
7349         argument now, so the two function's behaviors will match.  (Bug#3645)
7351 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
7353         * cedet/ede/proj.el (project-make-dist, project-compile-project):
7354         Fix filename test.
7355         (ede-proj-dist-makefile): Use expand-file-name instead of concat
7356         to expand file names.
7358 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
7360         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
7361         (tramp-file-name-real-host, tramp-file-name-port):
7362         Apply `save-match-data'.
7364         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
7365         case both directories are remote.
7366         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
7367         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
7369 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
7371         * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
7372         (ede-proj-target-makefile-objectcode): Use it.
7374         * cedet/ede/source.el (ede-want-any-source-files-p)
7375         (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
7376         Return search result.  This error was introduced while merging.
7378 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
7380         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
7382 2009-10-07  Glenn Morris  <rgm@gnu.org>
7384         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
7385         of concat.
7387 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7389         * files-x.el (read-file-local-variable): Include some
7390         non-user-variables in the completion table (bug#4664).
7392 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
7394         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
7395         message.
7397         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
7398         (tramp-smb-file-name-handler-alist): Add handler for
7399         `copy-directory', `expand-file-name', `set-file-modes'.
7400         (tramp-smb-handle-copy-directory)
7401         (tramp-smb-handle-expand-file-name)
7402         (tramp-smb-handle-set-file-modes): New defuns.
7403         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
7404         (tramp-smb-handle-file-attributes): Simplify check for retrieving
7405         entry.
7406         (tramp-smb-handle-insert-directory): Don't flush the cache.
7407         (tramp-smb-maybe-open-connection): Check for samba client and
7408         server versions.
7410 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
7412         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
7413         to not error out of search for "^lisp=" fails.
7415 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
7417         * makefile.w32-in (WINS_UPDATES): New macro.
7418         (custom-deps, finder-data, autoloads): Use it.
7420 2009-10-07  Glenn Morris  <rgm@gnu.org>
7422         * Makefile.in (autoloads): Revert previous change.
7423         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
7424         the list of preloaded files passed on the command-line, get
7425         it from src/Makefile.
7427         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
7428         show the original buffer rather than a random one.
7430 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
7432         * help.el (describe-no-warranty): Place point in a slightly better
7433         position in the GPLv3 text.
7435 2009-10-06  Sam Steingold  <sds@gnu.org>
7437         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
7438         the comm attribute is present before calling regexp-quote.
7440 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
7442         * play/animate.el (animate-string): For good effect, make sure
7443         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
7445         * play/animate.el (animate-sequence, animate-birthday-present):
7446         * misc.el (butterfly): Don't set `indent-tabs-mode'.
7448 2009-10-06  Glenn Morris  <rgm@gnu.org>
7450         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
7452         * emacs-lisp/autoload.el (autoload-excludes): New variable.
7453         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
7454         (batch-update-autoloads): Process a string value of autoload-excludes,
7455         set during the build process.
7456         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
7458         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
7459         inside with-parsed...  macro so that `v' is defined.
7461         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
7462         * progmodes/fortran.el (fortran-end-of-block)
7463         (fortran-beginning-of-block):
7464         Also push mark in the macro case.
7466         * emerge.el (emerge-show-file-name):
7467         * calc/calc.el (calc-quit):
7468         * calc/calc-misc.el (calc-big-or-small):
7469         * calc/calc-graph.el (calc-graph-view):
7470         * calc/calc-ext.el (calc-reset):
7471         * calendar/calendar.el (calendar-basic-setup):
7472         Use window-full-height-p.
7474         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
7475         header we don't understand, don't insert another.  (Bug#4624)
7476         If changing mime charset, insert the new one in the right place.
7478 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
7480         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
7481         (cal-tex-cursor-month): Correctly increment the end date for diary and
7482         holiday listing.  (Bug#4626)
7484 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7486         * help-fns.el (describe-function-1): Don't burp if the function is not
7487         a symbol.
7489 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
7491         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
7492         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
7493         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
7494         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
7496         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
7497         (eieio-default-superclass): Reflow docstrings.
7498         (this, class-option-assoc, defclass, eieio-class-un-autoload)
7499         (eieio-unbind-method-implementations, defmethod)
7500         (eieio-validate-slot-value, eieio-validate-class-slot-value)
7501         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
7502         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
7503         (eieio-slot-originating-class-p, eieio-slot-name-index)
7504         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
7505         (constructor, initialize-instance, no-next-method, object-print)
7506         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
7507         Fix typos in docstrings.
7508         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
7509         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
7510         (next-method-p): Doc fixes.
7511         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
7512         Fix typos in error messages.
7513         (eieio-defmethod): Fix typo in description of generic method.
7515         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
7516         (eieio-persistent-save-interactive, slot-missing):
7517         Fix typos in docstrings.
7518         (eieio-instance-inheritor-slot-boundp): Doc fix.
7520         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
7521         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
7523         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
7524         (eieio-custom-object-apply-reset):
7525         Fix typos in docstrings and error messages.
7527         * emacs-lisp/eieio-datadebug.el (data-debug-show):
7528         Fix typo in docstring.
7530         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
7531         (eieio-browse-tree): Doc fix.
7532         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
7533         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
7534         Fix typos in docstrings.
7536         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
7537         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
7538         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
7539         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
7540         Reflow docstrings.
7542 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
7544         * vc-hg.el (log-view-vc-backend): Declare for compiler.
7545         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
7546         Set log-view-vc-backend so that diff can work.
7548         * log-view.el (log-view-diff): Use vc-diff-internal instead of
7549         vc-version-diff.
7550         (vc-diff-internal): Autoload this instead of vc-version-diff.
7552 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
7554         * simple.el (eval-expression): Doc fix.
7556         * progmodes/cwarn.el (cwarn-mode): Doc fix.
7558 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
7560         * files.el (directory-files-no-dot-files-regexp): New defconst.
7561         (delete-directory): Use it.
7562         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
7564         * net/tramp.el (tramp-verbose): Fix docstring.
7565         (tramp-methods): Add recursive option to `tramp-copy-args'.
7566         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
7567         "scp1_old", "scp2_old", "rsync", "rsyncc".
7568         (tramp-default-method): Check also for `auth-source-user-or-password'.
7569         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
7570         Add handler for `copy-directory'.
7571         (tramp-handle-copy-directory): New defun.
7572         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
7573         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
7574         Optimize sent command.
7576 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7578         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
7579         window if necessary.
7581         * calendar/calendar.el (calendar-basic-setup): Don't call
7582         switch-to-buffer in a dedicated window.
7584 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
7586         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
7587         don't do anything related to relocating, just return nil.
7588         (bookmark-error-no-filename): New error.
7589         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
7590         bookmark has no file.  Don't even attempt to handle things that
7591         are not files; the whole point of custom handlers is to keep that
7592         knowledge elsewhere anyway.  Tighten some comments.
7593         (bookmark-file-or-variation-thereof): Remove now-unused function.
7594         (bookmark-location): Doc string fix.
7595         (Bug#4250)
7597 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
7599         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
7600         don't use a file dialog, because they usually don't know how to read
7601         a directory target from the user.  (Bug#4230)
7602         Also, make sure the prompt can display directories as well as files.
7604 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
7606         * bookmark.el (bookmark-set, bookmark-buffer-name):
7607         Improve doc strings.  (Bug#1193)
7609 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
7611         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
7612         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
7613         (bookmark-get-annotation, bookmark-set-annotation)
7614         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
7615         (bookmark-set-position, bookmark-get-front-context-string)
7616         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
7617         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
7618         (bookmark-jump-other-window, bookmark-handle-bookmark)
7619         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
7620         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
7621         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
7622         Improve doc strings to say whether bookmark can be a string or
7623         a record or both, and make other consistency and clarity fixes.
7624         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
7625         (bookmark-default-annotation-text, bookmark-yank-word)
7626         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
7627         (bookmark-import-new-list, bookmark-maybe-rename)
7628         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7629         (bookmark-bmenu-bookmark): Give these doc strings.
7630         (bookmark-bmenu-check-position): Give this a doc string, but also
7631         add a FIXME comment about how the function may be pointless.
7632         (bookmark-default-handler): Rework doc string and change a
7633         parameter name, to clarify that this takes a bookmark record
7634         not a bookmark name.
7635         (bookmark-set): Change a parameter name to indicate its meaning,
7636         and improve the doc string a bit.
7637         (Bug#4188)
7639 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
7641         * bookmark.el (bookmark-alist): Document the new `handler' element
7642         in the param alist.
7643         (bookmark-make-record-function): Adjust documentation for above.
7644         (Bug#4193)
7646 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
7648         * info.el (Info-bookmark-make-record): Document this function.
7649         (Info-bookmark-jump): Document with a doc string, not just a comment.
7650         (Bug#4203)
7652 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
7654         * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
7655         (semantic-new-buffer-fcn): Call parser setup functions here.
7656         (semantic-mode): Don't call parser setup functions here, it's done
7657         in semantic-new-buffer-fcn now.
7658         (semantic-mode): Parse all existing buffers when enabled.
7660         * cedet/srecode/compile.el (srecode-compile-file):
7661         Call semantic-new-buffer-fcn if the buffer has not been parsed.
7663 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
7665         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
7667         * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
7668         (proj-comp-insert-variable-once): New macro, renamed from
7669         ede-pmake-insert-variable-once in ede/pmake.edl.
7670         (ede-proj-makefile-insert-variables): Use it.
7672 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
7674         * files.el (copy-directory): New defun.
7676         * dired-aux.el (dired-copy-file-recursive): Use it.
7678 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
7680         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
7681         (makefile-end-of-command):
7682         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
7683         (semantic-end-of-context): Fix previous change.  Doc fixes.
7685 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
7687         * files-x.el (modify-dir-local-variable)
7688         (copy-dir-locals-to-file-locals-prop-line):
7689         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
7690         (makefile-end-of-command):
7691         * cedet/semantic/lex.el (semantic-lex-token):
7692         * cedet/semantic/analyze/fcn.el
7693         (semantic-analyze-dereference-metatype-1):
7694         * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
7695         (semantic-lex-cpp-undef):
7696         * cedet/semantic/wisent/wisent.el (wisent-skip-block):
7697         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
7698         (semantic-end-of-context): Fix typos in docstrings.
7700         * recentf.el (recentf-unload-function): New function.
7702 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
7704         * cedet/ede.el (ede-project-placeholder-cache-file):
7705         * cedet/semantic/db-file.el (semanticdb-default-save-directory):
7706         * cedet/srecode/map.el (srecode-map-save-file):
7707         Use locate-user-emacs-file.  Suggested by Juanma Barranquero.
7709 2009-10-04  Glenn Morris  <rgm@gnu.org>
7711         * window.el (window-full-height-p): Add doc string.
7713 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
7715         * window.el (window-full-height-p): New function.  (Bug#4543)
7717 2009-10-03  Chong Yidong  <cyd@stupidchicken.com>
7719         * cedet/srecode/insert.el: Require srecode/args.
7721         * cedet/srecode/args.el: Require srecode/dictionary instead of
7722         srecode/insert.
7724         * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
7726         * files.el (auto-mode-alist): Add .srt and Project.ede.
7728         * cedet/semantic.el (semantic-mode):
7729         Handle srecode-template-mode-hook as well.
7730         (semantic-mode): Use js-mode-hook for Javascript hook.
7732         * cedet/srecode/template.el: Remove hook variable.
7734         * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
7736         * cedet/ede.el (ede-target-forms-menu): Don't enable if no
7737         projects exist.
7738         (ede-project-placeholder-cache-file): Default to a file in
7739         user-emacs-directory.
7741         * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
7742         templates in data-directory.
7743         (srecode-map-save-file): Default to a file in user-emacs-directory.
7745         * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
7746         directory.
7748 2009-09-30  Eric Ludlam  <zappo@gnu.org>
7750         * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
7751         Doc fix.
7753         * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
7754         Only insert each variable once.
7756         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
7757         (ede-pmake-insert-variable-shared): Use it.
7759         * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
7760         for lexical table iff table is nil.
7762 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
7764         * vc.el: Remove commented out code.
7765         (vc-derived-from-dir-mode): Remove, unused.
7766         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
7768 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
7770         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
7771         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
7772         there could be recursive loading when `default-directory' is a
7773         remote file name.  (Bug#4614)
7775 2009-10-03  Glenn Morris  <rgm@gnu.org>
7777         * calendar/calendar.el (calendar-basic-setup): Handle the case where
7778         the frame is wide.
7779         (calendar-generate-window): Test for shrinkability rather than width.
7781         * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
7782         declaration, currently false.
7784         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
7785         reusing existing buffers, in case we happen to visit two files with the
7786         same basename.  (Bug#4593)
7788 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
7790         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
7791         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
7792         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
7793         subdirs of cedet as well.
7794         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
7796 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7798         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
7799         Obey advertised-signature-table.
7801         * help-fns.el (help-function-arglist): Don't check
7802         advertised-signature-table.
7803         (describe-function-1): Do it here instead so it also applies to subrs.
7805 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
7807         * simple.el (start-file-process): Say in the doc-string, that file
7808         handlers might not support pty association, if PROGRAM is nil.
7810         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
7811         HOST and USER are strings.  They are nil, when there are
7812         incomplete entries in ~/.netrc, for example.
7813         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
7814         root directory ("device busy" error otherwise).
7816         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
7817         Flush file properties of created directory.
7819 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
7821         * makefile.w32-in (WINS_BASIC): Remove cedet.
7822         (WINS_CEDET): Add cedet.
7823         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
7825 2009-10-02  Kevin Ryde  <user42@zip.com.au>
7827         * net/browse-url.el (browse-url): Pass any symbol in
7828         browse-url-browser-function to `apply', since if you've mistakenly put
7829         an unbound symbol then the error is clearer.  (Bug#4531)
7831 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
7833         * allout.el (allout-init, allout-back-to-current-heading)
7834         (allout-beginning-of-current-entry, allout-ascend-to-depth)
7835         (allout-ascend, allout-up-current-level, allout-end-of-level)
7836         (allout-previous-visible-heading, allout-forward-current-level)
7837         (allout-backward-current-level, allout-show-children):
7838         * apropos.el (apropos-describe-plist):
7839         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
7840         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
7841         * completion.el (add-completion, add-permanent-completion):
7842         * descr-text.el (describe-text-category, describe-char):
7843         * desktop.el (desktop-lazy-abort):
7844         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
7845         * dired.el (dired-build-subdir-alist):
7846         * ediff.el (ediff-version):
7847         * elide-head.el (elide-head, elide-head-show):
7848         * emerge.el (emerge-version):
7849         * env.el (getenv):
7850         * face-remap.el (variable-pitch-mode):
7851         * faces.el (describe-face):
7852         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
7853         (dired-at-point):
7854         * files.el (find-file-existing, auto-save-mode):
7855         * font-lock.el (font-lock-fontify-buffer):
7856         * help-fns.el (describe-function, describe-variable)
7857         (describe-syntax, describe-categories):
7858         * help.el (view-lossage, describe-bindings, describe-key)
7859         (describe-mode):
7860         * hexl.el (hexl-current-address):
7861         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
7862         * info.el (Info-goto-emacs-key-command-node):
7863         * log-edit.el (log-edit-insert-cvs-template)
7864         (log-edit-insert-cvs-rcstemplate):
7865         * menu-bar.el (menu-bar-mode):
7866         * mouse.el (mouse-appearance-menu):
7867         * newcomment.el (comment-indent-new-line):
7868         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
7869         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
7870         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
7871         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
7872         * recentf.el (recentf-mode):
7873         * savehist.el (savehist-mode, savehist-save):
7874         * shadowfile.el (shadow-copy-files):
7875         * simple.el (kill-ring-save, next-line, previous-line)
7876         (normal-erase-is-backspace-mode):
7877         * strokes.el (strokes-update-window-configuration)
7878         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
7879         (strokes-xpm-for-stroke):
7880         * time.el (emacs-uptime, emacs-init-time):
7881         * tutorial.el (tutorial--describe-nonstandard-key)
7882         (tutorial--detailed-help):
7883         * type-break.el (type-break-mode)
7884         (type-break-mode-line-message-mode, type-break-query-mode)
7885         (type-break-guesstimate-keystroke-threshold):
7886         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
7887         * version.el (emacs-version):
7888         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
7889         * winner.el (winner-mode):
7890         * calendar/timeclock.el (timeclock-in, timeclock-out)
7891         (timeclock-status-string, timeclock-change)
7892         (timeclock-workday-remaining-string)
7893         (timeclock-workday-elapsed-string)
7894         (timeclock-when-to-leave-string):
7895         * calendar/todo-mode.el (todo-add-category):
7896         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
7897         * emacs-lisp/autoload.el (update-file-autoloads):
7898         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
7899         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
7900         (checkdoc-message-text, checkdoc-defun):
7901         * emacs-lisp/debug.el (debugger-list-functions):
7902         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7903         * emacs-lisp/eieio-opt.el (eieio-describe-class)
7904         (eieio-describe-generic):
7905         * emacs-lisp/lisp-mnt.el (lm-synopsis):
7906         * emacs-lisp/shadow.el (list-load-path-shadows):
7907         * emulation/cua-base.el (cua-mode):
7908         * emulation/edt.el (edt-set-scroll-margins):
7909         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
7910         (tpu-toggle-regexp, tpu-toggle-search-direction)
7911         (tpu-toggle-rectangle, tpu-toggle-control-keys):
7912         * emulation/tpu-extras.el (tpu-set-scroll-margins):
7913         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7914         (viper-set-parsing-style-toggling-macro)
7915         (viper-set-emacs-state-searchstyle-macros):
7916         * emulation/viper.el (viper-set-hooks):
7917         * eshell/esh-mode.el (eshell-truncate-buffer):
7918         * international/mule-cmds.el (prefer-coding-system)
7919         (describe-input-method, describe-language-environment):
7920         * international/mule-diag.el (list-character-sets)
7921         (describe-character-set, describe-coding-system)
7922         (describe-fontset, list-fontsets, list-input-methods):
7923         * mail/sendmail.el (mail-signature):
7924         * net/ange-ftp.el (ange-ftp-copy-file):
7925         * net/browse-url.el (browse-url):
7926         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
7927         * net/quickurl.el (quickurl-add-url):
7928         * net/rcirc.el (names, topic):
7929         * net/xesam.el (xesam-mode):
7930         * play/5x5.el (5x5-new-game):
7931         * play/yow.el (apropos-zippy):
7932         * progmodes/ada-mode.el (ada-mode-version):
7933         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
7934         (f90-end-of-block)
7935         (f90-beginning-of-block):
7936         * progmodes/fortran.el (fortran-end-of-block)
7937         (fortran-beginning-of-block):
7938         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
7939         * progmodes/python.el (python-describe-symbol, python-shell):
7940         * term/ns-win.el (ns-print-buffer):
7941         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
7942         * textmodes/flyspell.el (flyspell-mode-on):
7943         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
7944         (pages-directory-for-addresses):
7945         * textmodes/table.el (table-recognize-cell)
7946         (table-query-dimension, table-generate-source)
7947         (table-insert-sequence, table--warn-incompatibility):
7948         * textmodes/tex-mode.el (tex-validate-buffer):
7949         * textmodes/texinfmt.el (texinfmt-version)
7950         (texinfo-format-buffer):
7951         Use `called-interactively-p' instead of `interactive-p'.
7953 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
7955         * image-mode.el (image-toggle-display):
7956         * emacs-lisp/elp.el (elp-instrument-function):
7957         * emacs-lisp/advice.el (ad-make-advised-definition):
7958         * emacs-lisp/easy-mmode.el (define-minor-mode):
7959         * net/browse-url.el (browse-url-maybe-new-window):
7960         * progmodes/sh-script.el (sh-learn-buffer-indent):
7961         Pass new argument 'any to `called-interactively-p'.
7963 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
7965         * international/uni-bidi.el:
7966         * international/uni-category.el:
7967         * international/uni-combining.el:
7968         * international/uni-comment.el:
7969         * international/uni-decimal.el:
7970         * international/uni-decomposition.el:
7971         * international/uni-digit.el:
7972         * international/uni-lowercase.el:
7973         * international/uni-mirrored.el:
7974         * international/uni-name.el:
7975         * international/uni-numeric.el:
7976         * international/uni-old-name.el:
7977         * international/uni-titlecase.el:
7978         * international/uni-uppercase.el:
7979         Regenerate from Unicode 5.2.0 data.
7981 2009-10-01  Glenn Morris  <rgm@gnu.org>
7983         * Makefile.in (ELCFILES): Regenerate.
7985 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7987         * subr.el (interactive-p): Mark obsolete.
7988         (called-interactively-p): Make the optional-ness of `kind' obsolete.
7989         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
7990         advertised-signature-table for subroutines as well.
7992         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
7993         (set-advertised-calling-convention): New function.
7994         (make-obsolete, define-obsolete-function-alias)
7995         (make-obsolete-variable, define-obsolete-variable-alias):
7996         Make the optional-ness of `when' obsolete.
7997         (define-obsolete-face-alias): Make `when' non-optional.
7998         * help-fns.el (help-function-arglist):
7999         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
8000         Use advertised-signature-table.
8002 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
8004         * files.el (delete-directory): New defun.  The original function
8005         in fileio.c has been renamed to `delete-directory-internal'.
8007         * dired.el (dired-delete-file): Call `delete-directory' with
8008         RECURSIVE parameter.
8010         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
8011         parameter RECURSIVE.  Implementation is missing.
8013         * net/tramp.el (tramp-handle-make-directory): Flush upper
8014         directory's file properties.
8015         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
8016         (tramp-handle-dired-recursive-delete-directory): Flush directory
8017         properties after the remove command only.
8019         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
8020         Handle optional parameter RECURSIVE.
8022         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
8023         Handle optional parameter RECURSIVE.
8025         * net/tramp-smb.el (tramp-smb-errors): Add error message for
8026         connection timeout.
8027         (tramp-smb-handle-delete-directory): Handle optional parameter
8028         RECURSIVE.
8030 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8032         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
8033         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
8034         (byte-compile-defmacro): Use backquotes.
8036         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
8038         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
8039         has no associated file.
8040         (vc-resynch-buffer): Use vc-dir-buffers.
8042 2009-10-01  Glenn Morris  <rgm@gnu.org>
8044         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
8045         (chart-file-count):
8046         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
8047         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
8048         * emacs-lisp/eieio-opt.el (eieio-describe-class):
8049         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
8050         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
8051         (eieio-copy-parents-into-subclass, make-instance, class-children)
8052         (eieio-generic-form):
8053         * cedet/cedet-files.el (cedet-directory-name-to-file-name):
8054         * cedet/cedet-idutils.el (cedet-idutils-search)
8055         (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
8056         (cedet-idutils-version-check):
8057         * cedet/cedet.el (cedet-version):
8058         * cedet/data-debug.el (data-debug-insert-overlay-button)
8059         (data-debug-insert-overlay-list-button)
8060         (data-debug-insert-buffer-button)
8061         (data-debug-insert-buffer-list-button)
8062         (data-debug-insert-process-button, data-debug-insert-ring-button)
8063         (data-debug-insert-widget, data-debug-insert-stuff-list-button)
8064         (data-debug-insert-stuff-vector-button)
8065         (data-debug-insert-symbol-button, data-debug-insert-string)
8066         (data-debug-insert-number, data-debug-insert-lambda-expression)
8067         (data-debug-insert-nil, data-debug-insert-simple-thing)
8068         (data-debug-insert-custom, data-debug-edebug-expr):
8069         * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
8070         (global-ede-mode-map, ede-new, ede-debug-target)
8071         (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
8072         * cedet/semantic.el (semantic-minimum-working-buffer-size)
8073         (semantic-fetch-tags, semantic-submode-list)
8074         (semantic-default-submodes):
8075         * cedet/ede/source.el (ede-source-match):
8076         * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
8077         (project-am-package-info):
8078         * cedet/ede/proj.el (ede-proj-target, project-new-target):
8079         * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
8080         * cedet/ede/proj-comp.el (ede-current-build-list):
8081         * cedet/ede/makefile-edit.el (makefile-move-to-macro):
8082         * cedet/ede/files.el (ede-toplevel-project-or-nil):
8083         * cedet/ede/cpp-root.el (initialize-instance):
8084         * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
8085         (autoconf-parameter-strip, autoconf-insert-new-macro):
8086         * cedet/semantic/wisent.el (wisent-lex-eoi):
8087         * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
8088         (semantic-show-parser-state-mode):
8089         * cedet/semantic/texi.el (semantic-texi-environment-regexp):
8090         * cedet/semantic/tag.el (semantic-tag-new-variable)
8091         (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
8092         (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
8093         (semantic--tag-deep-copy-tag-list)
8094         (semantic-tag-components-with-overlays-default):
8095         * cedet/semantic/symref.el (semantic-symref-find-text):
8096         * cedet/semantic/senator.el (senator-yank-tag)
8097         (senator-transpose-tags-up):
8098         * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
8099         (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
8100         * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
8101         * cedet/semantic/lex.el (semantic-lex-comment-regex)
8102         (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
8103         (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
8104         * cedet/semantic/lex-spp.el
8105         (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
8106         (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
8107         * cedet/semantic/idle.el
8108         (semantic-idle-summary-current-symbol-info-brutish)
8109         (semantic-idle-summary-current-symbol-info-default):
8110         * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
8111         (semantic--grammar-macro-compl-dict):
8112         * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
8113         * cedet/semantic/format.el (semantic-format-tag-custom-list)
8114         (semantic-format-tag-canonical-name-default):
8115         * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
8116         (semantic-find-tags-for-completion)
8117         (semantic-find-tags-by-scope-protection-default)
8118         (semantic-deep-find-tags-for-completion):
8119         * cedet/semantic/edit.el
8120         (semantic-edits-incremental-reparse-failed-hook)
8121         (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
8122         (semantic-edits-splice-remove, semantic-edits-splice-replace):
8123         * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
8124         * cedet/semantic/dep.el (semantic-dependency-include-path):
8125         * cedet/semantic/db.el (semanticdb-default-find-index-class)
8126         (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
8127         (semanticdb-project-roots):
8128         * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
8129         (semanticdb-find-adebug-insert-scanned-tag-cons)
8130         (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
8131         (semanticdb-brute-deep-find-tags-for-completion):
8132         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
8133         * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
8134         (semantic-end-of-context-default)
8135         (semantic-ctxt-current-function-default)
8136         (semantic-ctxt-scoped-types-default):
8137         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
8138         (semantic-complete-inline-tag-engine)
8139         (semantic-complete-inline-custom-type)
8140         (semantic-complete-read-tag-analyzer):
8141         * cedet/semantic/chart.el (semantic-chart-tags-by-class)
8142         (semantic-chart-database-size):
8143         * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
8144         (semantic-analyze-current-context):
8145         * cedet/semantic/symref/list.el (semantic-symref)
8146         (semantic-symref-hide-buffer, semantic-symref-symbol):
8147         * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
8148         * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
8149         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
8150         * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
8151         (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
8152         (semantic-c-dereference-template):
8153         * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
8154         (semantic--analyze-refs-full-lookup-with-parents)
8155         (semantic--analyze-refs-full-lookup-simple):
8156         * cedet/semantic/analyze/complete.el
8157         (semantic-analyze-possible-completions):
8158         * cedet/srecode/table.el (srecode-mode-table-new):
8159         * cedet/srecode/srt.el (srecode-read-variable-name):
8160         * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
8161         * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
8162         (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
8163         * cedet/srecode/map.el (srecode-current-map):
8164         * cedet/srecode/insert.el (srecode-insert)
8165         (srecode-insert-variable-secondname-handler, srecode-insert-method)
8166         (srecode-template-inserter-point-override)
8167         (srecode-insert-include-lookup):
8168         * cedet/srecode/getset.el (srecode-auto-choose-class):
8169         * cedet/srecode/extract.el (srecode-inserter-extract):
8170         * cedet/srecode/document.el
8171         (srecode-document-autocomment-return-last-alist)
8172         (srecode-document-autocomment-param-type-alist)
8173         (srecode-document-insert-function-comment)
8174         (srecode-document-insert-variable-one-line-comment)
8175         (srecode-document-function-name-comment):
8176         * cedet/srecode/dictionary.el (srecode-create-dictionary)
8177         (srecode-compound-toString):
8178         * cedet/srecode/compile.el (srecode-flush-active-templates):
8179         * cedet/srecode/args.el (srecode-semantic-handle-:blank):
8180         Doc/message fixes.
8182         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
8183         match-data.  (Bug#4555).
8185         * cedet/semantic/bovine/gcc.el
8186         (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
8187         (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
8189         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
8190         rather than parsing it as a regexp.  This relaxes the layout
8191         requirements and makes errors easier to detect.
8192         (check-declare-verify): Check file is regular.
8193         (check-declare-directory): Doc fix.
8194         * subr.el (declare-function): Doc fix.
8196         * ibuffer.el (ibuffer-format-qualifier):
8197         * isearch.el (hi-lock-regexp-okay):
8198         * calc/calc.el (math-zerop):
8199         * mail/uce.el (rmail-msgbeg, rmail-msgend):
8200         * term/w32-win.el (setup-default-fontset, set-fontset-font):
8201         Remove unused declarations.
8203 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
8205         * cedet/semantic/wisent/javat-wy.el
8206         (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
8208 2009-09-30  Juanma Barranquero  <lekktu@gmail.com>
8210         * cedet/srecode/expandproto.el: Fix provide statement.
8212 2009-09-30  Eric Ludlam  <zappo@gnu.org>
8214         * emacs-lisp/eieio.el (boolean-p): Delete.
8216 2009-09-30  Sascha Wilde  <wilde@sha-bang.de>
8218         * cedet/ede/srecode.el: Fix provide statement.
8220 2009-09-30  Glenn Morris  <rgm@gnu.org>
8222         * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
8223         * cedet/ede/proj-aux.el (ede-aux-source):
8224         * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
8225         (ede-misc-source):
8226         * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
8227         (semantic-mrub-switch-tags): Fix doc typos.
8229         * cedet/semantic/db-global.el (data-debug-new-buffer)
8230         (data-debug-insert-thing): Remove unneeded declarations (one broken).
8231         (semanticdb-enable-gnu-global-databases): Fix prompt typo.
8233         * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
8235         * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
8236         use of CL function `remove-if-not'.
8238         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
8240         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
8241         filename is not a string.
8243 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
8245         * files.el (safe-local-eval-forms): Fix typo.
8247 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8249         * vc-hooks.el (vc-dir-buffers): New var.
8250         (vc-state-refresh): New function.
8251         (vc-state): Use it.
8252         (vc-after-save): Always ask the backend to recompute the new state.
8253         Always call vc-dir if necessary, using vc-dir-buffers.
8254         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
8255         Use vc-dir-buffers.
8256         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
8257         (vc-dir-prepare-status-buffer, vc-dir-update)
8258         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
8259         Don't call expand-file-name on default-directory.
8261 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
8263         * speedbar.el (speedbar-item-delete):
8264         * calc/calc-prog.el (calc-kbd-if):
8265         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
8267         * epa.el (epa-key-list-mode-map):
8268         * hi-lock.el (hi-lock-menu): Fix typos in menus.
8270         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
8271         (hs-show-hook): Fix typo in docstring.
8273 2009-09-29  Glenn Morris  <rgm@gnu.org>
8275         * cedet/semantic/symref/idutils.el:
8276         * cedet/semantic/symref/list.el: Relicense under GPLv3+.
8278         * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
8280         * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
8281         * cedet/semantic/tag-file.el (semanticdb-table-child-p):
8282         * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
8283         Mark declarations not understood by check-declare.
8285         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
8286         file-name-nondirectory call preventing location of cedet files.
8287         (check-declare-verify): Use literal search rather than re-search.
8288         Add basic defmethod and defclass, and define-overloadable-function.
8290         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
8291         Use tramp-compat-file-attributes rather than nonexistent
8292         tramp-compat-handle-file-attributes.
8294         * Makefile.in (lisptagsfiles4): New.
8295         (AUTOGENEL): Add cedet loaddefs files.
8296         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
8297         (update-elclist, compile-always, backup-compiled-files)
8298         (bootstrap-clean): Add yet another directory level.
8299         (update-elclist): Use LC_COLLATE rather than COLLATE.
8300         (ELCFILES): Update, via `make update-elclist'.
8302 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
8304         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
8305         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
8306         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
8308 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
8310         * Makefile.in (lisptagsfiles3): Define.
8311         (TAGS, TAGS-LISP): Use it.
8312         (update-elclist): Add third directory level to look for elc files.
8313         (compile-always): Likewise.
8314         (backup-compiled-files): Likewise.
8315         (bootstrap-clean): Likewise.
8316         (ELCFILES): Update.
8318 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
8320         * Makefile.in (ELCFILES): Add CEDET files.
8322 2009-09-28  Eric Ludlam  <zappo@gnu.org>
8324         CEDET (development tools) package merged.
8326         * cedet/*.el:
8327         * cedet/ede/*.el:
8328         * cedet/semantic/*.el:
8329         * cedet/srecode/*.el: New files.
8331 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
8333         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
8335         * net/tramp.el (top): Require tramp-imap.
8337         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
8338         Use `tramp-compat-handle-file-attributes'.
8340 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
8342         * net/tramp-imap.el: New package.
8344 2009-09-28  Eric Ludlam  <zappo@gnu.org>
8346         * emacs-lisp/chart.el:
8347         * emacs-lisp/eieio-base.el:
8348         * emacs-lisp/eieio-comp.el:
8349         * emacs-lisp/eieio-custom.el:
8350         * emacs-lisp/eieio-datadebug.el:
8351         * emacs-lisp/eieio-opt.el:
8352         * emacs-lisp/eieio-speedbar.el:
8353         * emacs-lisp/eieio.el: New files.
8355         * cedet/cedet-cscope.el:
8356         * cedet/cedet-files.el:
8357         * cedet/cedet-global.el:
8358         * cedet/cedet-idutils.el:
8359         * cedet/data-debug.el:
8360         * cedet/inversion.el:
8361         * cedet/mode-local.el:
8362         * cedet/pulse.el: New files.
8364 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8366         * whitespace.el (whitespace-trailing-regexp)
8367         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
8368         Fix doc string.
8370 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
8372         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
8373         menu.
8375         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
8376         menu-bar-ediff-menu.
8378         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
8379         define-overloadable-function.
8381         * progmodes/autoconf.el: Provide autoconf as well, so that this
8382         file can be `require'd.
8384         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
8386         * emacs-lisp/autoload.el (generated-autoload-feature)
8387         (generated-autoload-load-name): New vars.
8388         (autoload-rubric, autoload-generate-file-autoloads): Use them.
8389         (make-autoload): Recognize define-overloadable-function and
8390         defclass forms (for EIEIO).
8392         * Makefile.in (update-subdirs): Exclude cedet directory.
8394 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
8396         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
8398         * faces.el: Default light-background background for region face to
8399         ns_selection_color under NS.
8401 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
8403         * net/imap-hash.el: New library, see NEWS.
8405         * Makefile.in (ELCFILES): Add imap-hash.el.
8407 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8409         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
8410         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
8411         * help-macro.el (make-help-screen): Avoid using an ambiguous function
8412         definition where the docstring could be taken for the return value.
8414 2009-09-26  Glenn Morris  <rgm@gnu.org>
8416         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
8417         Add option to only show images below a certain size.
8418         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
8419         save-excursion calls.
8421 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
8423         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
8424         subdirectories) and eieio.
8426 2009-09-26  Alan Mackenzie  <acm@muc.de>
8428         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
8429         buggy bracketing.  (Bug#4289)
8431         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
8432         character constants (as case labels).  (Bug#4289)
8434 2009-09-25  Juri Linkov  <juri@jurta.org>
8436         * files.el (safe-local-eval-forms): Allow time-stamp in
8437         before-save-hook (Bug#4554).
8439 2009-09-25  Drew Adams  <drew.adams@oracle.com>
8441         * menu-bar.el (list-buffers-directory): Doc fix.
8443 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8445         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
8446         Try and avoid copying twice the same paragraph.
8447         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
8448         Remove save-excursion.
8449         (log-edit-changelog-entry): Do it here instead.
8451 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
8453         * bs.el (bs--get-file-name): Use `list-buffers-directory'
8454         when available, instead of hardcoding mode names.  Doc fix.
8456         * menu-bar.el (list-buffers-directory): Add docstring.
8457         Make automatically buffer-local.
8459         * dired.el (dired-mode):
8460         * files.el (cd-absolute):
8461         * pcvs.el (cvs-temp-buffer):
8462         * pcvs-util.el (cvs-get-buffer-create):
8463         * shell.el (shell-mode):
8464         * vc-dir.el (vc-dir-mode):
8465         Don't make `list-buffers-directory' buffer local.
8467 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
8469         * comint.el (comint-exec, comint-run, make-comint):
8470         Doc fixes (Bug#4542).
8472 2009-09-25  Glenn Morris  <rgm@gnu.org>
8474         * mail/rmailmm.el (rmail-mime): New custom group.
8475         Move all defcustoms in this file into this group.
8476         (rmail-mime-media-type-handlers-alist): Revert previous change.
8477         (rmail-mime-show-images): New option.
8478         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
8479         references to it, since it wasn't actually used for anything.
8480         (rmail-mime-insert-image): New function.
8481         (rmail-mime-image): Use rmail-mime-insert-image.
8482         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
8483         obey the value of `rmail-mime-show-images' option.  Print the size of
8484         attachments.
8486 2009-09-25  David Engster  <deng@randomsample.de>
8488         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
8490 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8492         * whitespace.el: Does not highlight trailing spaces While point is
8493         at end of line.  Does not highligt spaces at beginning of buffer
8494         while point is at beginning of buffer.  Does not highlight spaces
8495         at end of buffer while point is at end of buffer.  (Bug#4177)
8496         New version 12.0.
8497         (whitespace-display-mappings): Adjust initialization.
8498         (whitespace-point, whitespace-font-lock-refontify): New vars.
8499         (whitespace-color-on, whitespace-color-off): Adjust code.
8500         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
8501         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
8502         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
8504 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
8506         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
8508         * textmodes/sgml-mode.el: Remove xml-mode alias.
8510         * files.el (auto-mode-alist, conf-mode-maybe)
8511         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
8513 2009-09-24  Alan Mackenzie  <acm@muc.de>
8515         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
8516         c-forward-conditionals, but it doesn't move point and doesn't set
8517         the mark.
8518         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
8519         (c-down-conditional-with-else, c-backward-conditional)
8520         (c-forward-conditional): Refactor to use c-scan-conditionals.
8522 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
8524         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
8525         (help-default-arg-highlight): Remove.
8526         (help-highlight-arg): New function.
8527         (help-do-arg-highlight): Use it.
8528         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
8530 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8532         * term.el (term-set-scroll-region, term-handle-ansi-escape):
8533         Undo last change, which didn't fix the problem and introduced others.
8535 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
8537         * progmodes/gdb-mi.el: Don't require speedbar.
8538         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
8540 2009-09-24  Glenn Morris  <rgm@gnu.org>
8542         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
8544         * term/ns-win.el (ns-reg-to-script): Define for compiler.
8546         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
8547         there is no newline after the final mime boundary.  (Bug#4539)
8548         Move markers on insertion so that any buttons inserted don't end up in
8549         the next part of a multipart message.
8550         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
8551         (rmail-mime-bulk-handler): Optionally handle images.
8552         (rmail-mime-image): New button action.
8553         (rmail-mime-image-handler): New function.
8554         (rmail-mime-mode): New mode.
8555         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
8557 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8559         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
8560         than just dropping elements from it (bug#4504).
8562         * term.el (term-set-scroll-region): Don't move cursor any more.
8563         (term-handle-ansi-escape): Call term-goto here instead.
8564         Suggested by Ivan Kanis <apple@kanis.eu>.
8566         * term.el: Require CL.
8567         (term-ansi-reset): New function.
8568         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
8569         (term-handle-colors-array): Simplify.
8571 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
8573         * allout.el (allout-overlay-interior-modification-handler)
8574         (allout-obtain-passphrase):
8575         * epa-file.el (epa-file-write-region):
8576         * ps-print.el (ps-begin-job):
8577         * vc-hooks.el (vc-toggle-read-only):
8578         * vc-rcs.el (vc-rcs-rollback):
8579         * vc-sccs.el (vc-sccs-rollback):
8580         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
8581         (vc-version-diff, vc-revert, vc-rollback):
8582         * wdired.el (wdired-check-kill-buffer):
8583         * emacs-lisp/authors.el (authors):
8584         * net/socks.el (socks-open-connection):
8585         * net/zeroconf.el (zeroconf-service-add-hook):
8586         * obsolete/vc-mcvs.el (vc-mcvs-register):
8587         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
8588         (gdb-select-frame):
8589         * progmodes/grep.el (lgrep, rgrep):
8590         * progmodes/idlw-help.el (idlwave-help-check-locations)
8591         (idlwave-help-html-link, idlwave-help-assistant-open-link):
8592         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
8593         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
8594         (reftex-toc-rename-label): Fix typos in error messages.
8596         * dired-aux.el (dired-do-shell-command): Reflow docstring.
8597         (dired-copy-how-to-fn): Doc fix.
8598         (dired-files-attributes, dired-read-shell-command):
8599         Fix typos in docstrings.
8601         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
8602         (dired-x-find-file-other-window): Reflow docstrings.
8603         (dired-omit-marker-char, dired-read-shell-command)
8604         (dired-x-submit-report): Fix typos in docstrings.
8606         * shell.el (shell-mode-hook):
8607         * view.el (View-scroll-line-forward):
8608         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
8609         Fix typos in docstrings.
8611         * net/dig.el (dig-invoke): Fix typo in docstring.
8612         (query-dig): Reflow docstring.
8614         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
8615         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
8616         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
8617         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
8618         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
8619         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
8620         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
8621         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
8622         (idlwave-completion-map, idlwave-current-indent)
8623         (idlwave-custom-ampersand-surround, idlwave-customize)
8624         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
8625         (idlwave-define-abbrev, idlwave-determine-class-special)
8626         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
8627         (idlwave-end-block-reg, idlwave-end-of-statement)
8628         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
8629         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
8630         (idlwave-explicit-class-listed, idlwave-file-header)
8631         (idlwave-fill-paragraph, idlwave-find-class-definition)
8632         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
8633         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
8634         (idlwave-in-quote, idlwave-indent-action-table)
8635         (idlwave-indent-expand-table, idlwave-indent-line)
8636         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
8637         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
8638         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
8639         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
8640         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
8641         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
8642         (idlwave-outlawed-buffers, idlwave-popup-select)
8643         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
8644         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
8645         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
8646         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
8647         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
8648         (idlwave-statement-type, idlwave-struct-skip)
8649         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
8650         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
8651         (idlwave-what-module-find-class): Fix typos in docstrings.
8652         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
8653         (idlwave-calculate-cont-indent, idlwave-expand-equal)
8654         (idlwave-find-module, idlwave-find-structure-definition)
8655         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
8656         (idlwave-list-load-path-shadows, idlwave-next-statement)
8657         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
8658         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
8659         (idlwave-template): Reflow docstrings.
8661         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
8662         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
8663         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
8664         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
8665         (idlwave-shell-display-line, idlwave-shell-display-wframe)
8666         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
8667         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
8668         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
8669         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
8670         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
8671         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
8672         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
8673         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
8674         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
8675         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
8676         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
8677         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
8678         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
8679         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
8680         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
8681         Fix typos in docstrings.
8682         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
8683         (idlwave-shell-hide-output, idlwave-shell-mode)
8684         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
8685         Reflow docstrings.
8687         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
8689 2009-09-24  Ivan Kanis  <apple@kanis.eu>
8691         * term.el (term-bold-attribute): New var.
8692         (term-handle-colors-array): Use it.
8694 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
8696         * progmodes/gdb-mi.el (gdb-version): New variable.
8697         (gdb-non-stop-handler): Set gdb-version.
8698         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
8699         Condition "--thread" option on gdb-version.
8700         (gdb-invalidate-threads): Remove unused argument.
8702 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8704         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
8705         to looking-back to avoid ridiculous slow down in large files (bug#4511).
8707 2009-09-23  Glenn Morris  <rgm@gnu.org>
8709         * mail/rmail.el (rmail-reply): Don't try to add a References header when
8710         replying to mail without References or Message-Id.  (Bug#4525)
8712 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
8714         * term/ns-win.el (ns-reg-to-script): New variable.
8716 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
8718         * epg.el (epg-wait-for-status): Preserve existing 'error results.
8720 2009-09-22  Sam Steingold  <sds@gnu.org>
8722         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
8723         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
8724         to 1 because hg returns status 1 when nothing is found.
8725         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
8727 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
8729         * textmodes/fill.el: Convert to utf-8 encoding.
8730         (fill-french-nobreak-p): Remove redundant » and « inherited from our
8731         pre-unicode days.
8733         * add-log.el (change-log-fill-forward-paragraph): New function.
8734         (change-log-mode): Use it so fill-region DTRT.
8735         Set fill-indent-according-to-mode here rather than in
8736         change-log-fill-paragraph.
8737         (change-log-fill-paragraph): Remove.
8739 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
8741         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
8742         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
8744 2009-09-22  Glenn Morris  <rgm@gnu.org>
8746         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
8747         the scroll-bar scroll the calendar window rather than the buffer.
8749         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
8750         commands that move point (as opposed to scrolling).
8752         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
8754         * emacs-lisp/elint.el (elint): New custom group.
8755         (elint-log-buffer): Make it a defcustom.
8756         (elint-scan-preloaded, elint-ignored-warnings)
8757         (elint-directory-skip-re): New options.
8758         (elint-builtin-variables): Doc fix.
8759         (elint-preloaded-env): New variable.
8760         (elint-unknown-builtin-args): Add an entry for encode-time.
8761         (elint-extra-errors): Make it a variable rather than a constant.
8762         (elint-preloaded-skip-re): New constant.
8763         (elint-directory): Skip files matching elint-directory-skip-re.
8764         (elint-features): New variable, local to linted buffers.
8765         (elint-update-env): Initialize elint-features.  Possibly add
8766         elint-preloaded-env to the buffer's environment.
8767         (elint-get-top-forms): Bind elint-current-pos, for log messages.
8768         Skip quoted forms.
8769         (elint-init-form): New function, extracted from elint-init-env.
8770         Make non-list forms a warning rather than an error.
8771         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
8772         easy-menu-define, put that adds an error-condition, and provide.
8773         When requiring cl, also require cl-macs.  Really require cl, to handle
8774         some cl macros.  Store required libraries in the list elint-features,
8775         so as not to re-load them.  Treat cc-require like require.
8776         (elint-init-env): Call elint-init-form to do the work.
8777         Handle eval-and-compile and such like.
8778         (elint-add-required-env): Do not clear messages.
8779         (elint-special-forms): Add handlers for function, defalias, if, when,
8780         unless, and, or.
8781         (elint-form): Add optional argument to ignore elint-special-forms,
8782         useful to prevent recursive calls from handlers.  Doc fix.
8783         Respect elint-ignored-warnings.
8784         (elint-form): Respect elint-ignored-warnings.
8785         (elint-bound-variable, elint-bound-function): New variables.
8786         (elint-unbound-variable): Respect elint-bound-variable.
8787         (elint-get-args): Respect elint-bound-function.
8788         (elint-check-cond-form): Add some simple handling for (f)boundp and
8789         featurep tests.
8790         (elint-check-defalias-form): New handler.
8791         (elint-check-let-form): Make an empty let a warning rather than an
8792         error.
8793         (elint-check-setq-form): Make an empty setq a warning rather than an
8794         error.  Respect elint-ignored-warnings.
8795         (elint-check-defvar-form): Accept null doc-strings.
8796         (elint-check-conditional-form): New handler.  Does some simple-minded
8797         checking of featurep and (f)boundp tests.
8798         (elint-put-function-args): New function.
8799         (elint-initialize): Use elint-scan-doc-file rather than
8800         elint-find-builtin-variables.  Use elint-put-function-args.
8801         Possibly scan preloaded-file-list.
8802         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
8803         extend to handle functions as well.
8805 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
8807         * linum.el (linum-delete-overlays, linum-update-window):
8808         Do not modify the right margin.  (Bug#3971)
8810 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
8812         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
8813         nxml-mode instead of xml-mode.
8815 2009-09-21  Kevin Ryde  <user42@zip.com.au>
8817         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
8819 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8821         * net/dig.el (dig-mode): Use define-derived-mode.
8823 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
8825         * vc-dispatcher.el (vc-do-command): Return the process object in
8826         the asynchronous case.  Use when instead of if.  Do not run
8827         vc-exec-after to display a message if not enabled.  (Bug#4463)
8829         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
8830         properties to the stash strings.
8831         (vc-git-stash-list): Return a list of strings.
8832         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
8833         (vc-git-stash-show-at-point): New functions.
8834         (vc-git-stash-map): New keymap.
8836         * register.el (ctl-x-r-map): Define the keys here instead of
8837         using autoload.
8839 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
8841         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
8842         list, to workaround performance problem (bug#4485).
8844 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
8846         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
8848 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
8850         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
8851         Document that this option is not recommended to use.
8853 2009-09-19  Glenn Morris  <rgm@gnu.org>
8855         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
8856         variable `var'.
8858         * calc/calc-alg.el (var):
8859         * calc/calcalg2.el (var): Define for compiler.
8861 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
8863         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
8864         Doc fix (Bug#3932).
8866         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
8868         * time-stamp.el (time-stamp-month-dd-yyyy)
8869         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
8870         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
8871         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
8872         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
8873         Remove functions that have been obsolete since 1995 (Bug#4436).
8875         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
8876         indent buffer only if called interactively (Bug#4452).
8878 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
8879             Eli Zaretskii  <eliz@gnu.org>
8881         This fixes bug#4197 (merged to bug#865, though not identical).
8882         * server.el (server-auth-dir): Add docstring note about FAT32.
8883         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
8884         but warn against using them.
8886 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
8888         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
8889         older GDB where there is no has_more field.
8891 2009-09-19  Glenn Morris  <rgm@gnu.org>
8893         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
8895 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
8897         * files.el (auto-mode-alist): Change default for XML files to nXML
8898         mode (Bug#4169).
8900 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
8902         * server.el (server-ensure-safe-dir): Pass 'integer
8903         to `file-attributes', as suggested.
8905 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8907         * dired-aux.el (dired-query-alist): Remove spurious backslash.
8908         (dired-query): Use read-key.
8910 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
8912         * cus-start.el (ns-use-qd-smoothing): Remove.
8914 2009-09-18  Glenn Morris  <rgm@gnu.org>
8916         * allout.el (top-level): Remove unnecessary progn.
8918         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
8920         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
8921         definition of abbrev table.
8923         * speedbar.el (speedbar-track-mouse):
8924         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
8925         * net/eudc.el (eudc-expand-inline):
8926         * net/newst-backend.el (newsticker--cache-read-feed):
8927         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
8928         condition-case handlers.
8930 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
8932         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
8933         (gdb-var-list): Add an element for has_more field.
8934         (gdb-non-stop-handler): Enable pretty printing for STL containers.
8935         (gdb-var-create-handler, gdb-var-list-children-handler-1)
8936         (gdb-var-update-handler-1): Parse output of dynamic variable
8937         objects (STL containers).
8938         (gdb-var-delete-1): Pass var1 as an explicit second argument.
8939         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
8941         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
8942         gdb-var-list.
8943         (gud-speedbar-buttons): Make node expandable if expression "has more"
8944         children.
8946 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
8948         * startup.el (emacs-quick-startup): Remove variable and all uses.
8949         (command-line): Set `inhibit-x-resources' instead.
8950         (command-line-1): Use `inhibit-x-resources' instead.
8952 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
8954         * subr.el: Fix last change to avoid using the `unless' macro,
8955         which breaks bootstrapping.
8957 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8959         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
8960         extended definitions, in case we reload subr.el after having
8961         loaded CL.
8962         (eval-next-after-load): Mark as obsolete.
8964 2009-09-17  Juri Linkov  <juri@jurta.org>
8966         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
8967         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
8968         (menu-bar-showhide-menu, menu-bar-tools-menu)
8969         (menu-bar-describe-menu, menu-bar-help-menu)
8970         (minibuffer-local-completion-map, minibuffer-local-map):
8971         Fix list quoting.
8973 2009-09-17  Glenn Morris  <rgm@gnu.org>
8975         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
8976         arguments, whether or not it has a handler.
8978         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
8980         * simple.el (hard-newline): Give it a doc-string.
8982         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
8983         (lisp-mode-syntax-table): Give them doc-strings.
8985 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
8987         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
8988         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
8989         (menu-bar-options-menu, menu-bar-showhide-menu)
8990         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
8991         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
8992         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
8993         (menu-bar-options-menu, menu-bar-tools-menu)
8994         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
8995         (menu-bar-help-menu):
8996         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
8997         string arguments.
8999         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
9000         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
9001         calls for the menu names and :help.
9003 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9005         * mouse.el (minor-mode-menu-from-indicator): Pay attention
9006         to :minor-mode-function (bug#4455).
9008 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9010         * startup.el (command-line): Initialize the window-system after
9011         processing the command-line.
9013         * textmodes/page.el (what-page): Make sure we don't inf-loop if
9014         page-delimiter matches the empty string.
9016 2009-09-16  Glenn Morris  <rgm@gnu.org>
9018         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
9019         byte-compile-not-obsolete-var.  It's a list now.
9020         (byte-compile-not-obsolete-funcs): New variable.
9021         (byte-compile-warn-obsolete): Don't warn about functions if they are in
9022         byte-compile-not-obsolete-funcs.
9023         (byte-compile-variable-ref, byte-compile-defvar): Update for
9024         byte-compile-not-obsolete-vars name-change and list nature.
9025         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
9026         and variables behind (f)boundp tests.
9027         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
9029 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
9031         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
9033 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9035         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
9036         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
9037         Don't autoload.
9039 2009-09-15  Stephen Eglen  <stephen@gnu.org>
9041         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
9042         the virtual-buffers, use the name of the buffer specified by
9043         find-file-noselect, as the match may be a symlink.  (This was a
9044         problem if the target and the symlink had different names.)
9046 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9048         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
9050         * desktop.el (desktop-path): Check user-emacs-directory.
9052         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
9054         * loadup.el: Use after-load-functions to GC after loading each file.
9055         Remove the explicit GC calls that used to be sprinkled around.
9057         * subr.el (after-load-functions): New hook.
9058         (do-after-load-evaluation): Run it.  Use string-match-p to detect
9059         `obsolete' packages, rather than painfully extracting the relevant
9060         directory name.
9062 2009-09-15  Glenn Morris  <rgm@gnu.org>
9064         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
9065         free variable `doc'.
9067         * dired.el (dired-mode-map): Add menu entry for async shell command.
9069         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
9070         variables, also consider the .elc files, since the .el files are
9071         normally gzipped (subsequent code locates the .el.gz from the .elc).
9073         * calc/calc-prog.el (arglist): Define for compiler.
9075         * calendar/diary-lib.el (diary-display-function): Change the default to
9076         fancy display.
9077         (body): Define for compiler.
9079         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
9080         (byte-compile-file-form, byte-compile-lambda)
9081         (byte-compile-top-level-body, byte-compile-form)
9082         (byte-compile-variable-ref, byte-compile-setq)
9083         (byte-compile-setq-default, byte-compile-body)
9084         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
9085         (batch-byte-compile): Give some more local variables with common names
9086         a "bytecomp-" prefix to avoid masking warnings about free variables.
9088         * startup.el (command-line-1): Give local variables with common names a
9089         distinguishing prefix, so as not to hide free variable warnings during
9090         bootstrap.
9092         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
9093         clever and add a suffix to make a unique name, just let the user decide
9094         whether or not to overwrite it.  If the input is a directory, write the
9095         default filename to that directory.  (Bug#4388)
9096         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
9097         is a filename-as-a-directory.
9099 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9101         * textmodes/page.el (what-page): Don't move to beginning of line.
9102         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
9104 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
9106         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
9108 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
9110         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
9111         * help.el (help-for-help-internal): Add purecopy calls for text.
9113         * vc.el (top): print-log method now takes an optional SHORTLOG
9114         argument.  Add a new method: root.
9115         (vc-root-diff, vc-print-root-log): New functions.
9116         (vc-log-short-style): New variable.
9117         (vc-print-log-internal): Add support for showing short logs.
9119         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
9120         vc-print-root-log and vc-print-root-diff.
9122         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
9123         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
9124         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
9125         short logs.
9127         * vc-cvs.el (vc-cvs-print-log):
9128         * vc-mtn.el (vc-mtn-print-log):
9129         * vc-rcs.el (vc-rcs-print-log):
9130         * vc-sccs.el (vc-sccs-print-log):
9131         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
9132         that is ignored for now.
9134         * vc-mtn.el (vc-mtn-annotate-command):
9135         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
9137 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9139         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
9140         to function-key-map, and give them ascii-character property.
9141         * term/x-win.el (x-alternatives-map):
9142         * term/ns-win.el (ns-alternatives-map):
9143         * term/internal.el (msdos-key-remapping-map):
9144         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
9146 2009-09-14  Glenn Morris  <rgm@gnu.org>
9148         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
9149         temp-buffers (2009-09-12).
9151 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9153         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
9154         the new read-key function.
9156 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
9158         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
9159         is defined (Bug#4405).
9161 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
9163         * recentf.el (recentf-cleanup): Use a hash table to find
9164         duplicates (Bug#4407).
9166 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
9168         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
9169         kp-0 to ascii equivalents (Bug#4325).
9171 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
9173         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
9175         * eshell/em-hist.el:
9176         * eshell/em-dirs.el (eshell-complete-user-reference):
9177         Declare pcomplete functions and variables to avoid compiler warnings.
9179 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
9181         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
9182         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
9183         * eshell/em-alias.el (eshell-aliases-file):
9184         * eshell/em-hist.el (eshell-history-file-name):
9185         Use expand-file-name instead of concat to make file names (Bug#4308).
9187 2009-09-13  Glenn Morris  <rgm@gnu.org>
9189         * ediff-merg.el (ediff-do-merge):
9190         * filesets.el (filesets-run-cmd):
9191         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
9192         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
9193         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
9194         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
9195         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
9196         Replace empty `let's with `progn'.
9198 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9200         * mail/sendmail.el (send-mail-function):
9201         * tooltip.el (tooltip-mode):
9202         * simple.el (transient-mark-mode):
9203         * rfn-eshadow.el (file-name-shadow-mode):
9204         * frame.el (blink-cursor-mode):
9205         * font-core.el (global-font-lock-mode):
9206         * files.el (temporary-file-directory)
9207         (small-temporary-file-directory, auto-save-file-name-transforms):
9208         * epa-hook.el (auto-encryption-mode):
9209         * composite.el (global-auto-composition-mode):
9210         Use custom-initialize-delay.
9211         * startup.el (command-line): Don't explicitly call
9212         custom-reevaluate-setting for all the above vars.
9213         * custom.el (custom-initialize-safe-set)
9214         (custom-initialize-safe-default): Delete.
9216 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9218         * term/x-win.el (x-initialize-window-system):
9219         * term/w32-win.el (w32-initialize-window-system):
9220         * term/ns-win.el (ns-initialize-window-system): Don't call
9221         mouse-wheel-mode since it's enabled globally by default already.
9223         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
9224         actually define the variable, but only silences the byte-compiler.
9225         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
9226         before looking it up.
9227         (mouse-wheel-scroll-amount): Also reset the bindings if this value
9228         is changed.
9230 2009-09-12  Glenn Morris  <rgm@gnu.org>
9232         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
9233         1000.
9234         (elint-add-required-env): Don't beep on error.
9235         (elint-forms): In case of error, return ENV unchanged.
9236         (elint-init-env): Skip non-list forms.
9237         (elint-log): Handle unknown file positions.
9239 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
9241         * epg.el (epg-make-context): Add autoload cookie.
9242         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
9243         (epg-decrypt-string, epg-start-verify, epg-verify-file)
9244         (epg-verify-string, epg-start-sign, epg-sign-file)
9245         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
9246         (epg-encrypt-string, epg-start-export-keys)
9247         (epg-export-keys-to-file, epg-export-keys-to-string)
9248         (epg-start-import-keys, epg-import-keys-from-file)
9249         (epg-import-keys-from-string, epg-start-receive-keys)
9250         (epg-receive-keys, epg-import-keys-from-server)
9251         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
9252         (epg-sign-keys, epg-start-generate-key)
9253         (epg-generate-key-from-file, epg-generate-key-from-string):
9254         Remove autoload cookie.
9256 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
9258         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
9259         reevaluation of trash-directory.
9261         * mwheel.el: Fix last change.
9262         (mouse-wheel-mode): New defvar.
9263         (mouse-wheel-mode): Remove autoload cookie.
9265 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9267         * mwheel.el (mwheel-installed-bindings): New var.
9268         (mouse-wheel-mode): Use it, so as to make sure we really remove all
9269         the bindings we set last time.  Use custom-initialize-delay.
9270         * loadup.el: Load mwheel after term/*-win.el.
9271         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
9272         and mouse-wheel-up-event now that their first evaluation is done
9273         sufficiently late to be correct.
9275         * startup.el (tutorial-directory): Make it a defcustom.
9276         Use custom-initialize-delay rather than eval-at-startup to set it.
9277         * image.el (image-load-path): Make it a defcustom.
9278         Use custom-initialize-delay rather than eval-at-startup to set it.
9279         * subr.el (eval-at-startup): Remove.
9280         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
9282         * subr.el (do-after-load-evaluation): Warn the user after loading an
9283         obsolete package.
9285 2009-09-12  Glenn Morris  <rgm@gnu.org>
9287         * proced.el (proced-mark-alt): Remove alias.
9288         (proced-mode-map): Remove proced-mark-alt.
9290         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
9291         Elint file and directory.  Remove initialization entry.
9293         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
9294         commands.
9295         (elint-current-buffer): Set mode-line-process.
9296         (elint-init-env): Handle define-derived-mode.
9297         Fix declare-function with unspecified arglist.  Guard against odd
9298         defalias statements (eg iso-insert's 8859-1-map).
9299         (elint-add-required-env): Use a temp buffer.
9300         (elint-form): Just print the function/macro name, not the whole form.
9301         Return env unchanged if we fail to parse a macro.
9302         (elint-forms): Guard against parse errors.
9303         (elint-output): New function, to handle batch mode.
9304         (elint-log-message): Add optional argument.  Use elint-output.
9305         (elint-set-mode-line): New function.
9307 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
9309         * emacs-lisp/elp.el (elp-not-profilable): Add more
9310         functions (Bug#4233).
9312 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
9314         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
9315         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
9317 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
9319         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
9320         (gdb-var-list-children): Use json parsing.
9322 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
9324         * progmodes/js.el (js--proper-indentation): Handle the case where
9325         char-before is null.  Reported by Deniz Dogan.
9327 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
9329         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
9331 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
9333         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
9334         (epg-digest-algorithm-alist): Add SHA224.
9335         (epg-context-set-passphrase-callback)
9336         (epg-context-set-progress-callback): Add description about
9337         callback function.
9339 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9341         * custom.el (custom-delayed-init-variables): New var.
9342         (custom-initialize-delay): New function.
9343         * startup.el (command-line): "Re"evaluate all vars in
9344         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
9345         explicitly any more.
9346         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
9347         to avoid creating a ~/.emacs.d at build-time (bug#4347).
9349         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
9351 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
9353         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
9354         (gdb-var-update-handler): Use json parsing.
9356 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
9358         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
9359         decode annotated text, regardless of language environment.  (Bug#2741)
9361 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9363         * Makefile.in (autoloads): Make rmail.el writable as well.
9365 2009-09-11  Glenn Morris  <rgm@gnu.org>
9367         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
9368         loaddefs.el.
9369         * dired.el: Regenerate with extracted autoloads.
9370         * Makefile.in (autoloads): Make dired.el writable.
9372         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
9373         * ibuffer.el: Regenerate with extracted autoloads.
9374         * Makefile.in (autoloads): Make ibuffer.el writable.
9376         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
9377         * version.el (emacs-copyright, emacs-major-version)
9378         (emacs-minor-version): Reformat doc-strings for make-docfile.
9380         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
9381         functions and variables, since they must be stuff specific to some other
9382         platform.
9383         (apropos-print): Make mouse-click message less specific about button.
9385         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
9386         that records where a macro was defined.
9387         * help-fns.el (describe-function-1): Mention if a function has a
9388         compiler-macro.
9389         * help-mode.el (help-function-cmacro): New button.
9391         * locate.el (top-level): Always require dired.
9392         (locate-mode-map): Initialize inside the defvar.
9394         * net/ange-ftp.el (dired-compress-file): Declare.
9395         (ange-ftp-dired-compress-file): Add doc string.
9397         * term/ns-win.el (x-display-name, x-setup-function-keys):
9398         Unify doc-strings with X versions.
9400 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9402         * emulation/crisp.el (crisp-mode-map): Move initialization
9403         into declaration.
9404         (crisp-mode): Use define-minor-mode.
9406         * progmodes/xscheme.el (xscheme-evaluation-commands):
9407         Put a :advertised-binding property rather than using
9408         advertised-xscheme-send-previous-expression.
9409         (advertised-xscheme-send-previous-expression): Declare obsolete.
9410         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
9411         `advertised-undo'.
9412         (crisp-mode): Add corresponding bindings to
9413         undo's :advertised-binding instead.
9414         * dired.el (dired-mode-map): Put a :advertised-binding property rather
9415         than using dired-advertised-find-file.
9416         (dired-advertised-find-file):
9417         * simple.el (advertised-undo):
9418         * wid-edit.el (advertised-widget-backward): Declare obsolete.
9419         (widget-keymap): Put a :advertised-binding property rather
9420         than using advertised-widget-backward.
9421         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
9422         than using advertised-undo.
9423         * tutorial.el (tutorial--default-keys): Adjust accordingly.
9425 2009-09-10  Simon South  <ssouth@slowcomputing.org>
9427         * progmodes/delphi.el (delphi-tab): Indent region when Transient
9428         Mark mode is enabled and region is active; otherwise indent or
9429         insert TAB as usual.
9430         (delphi-mode): Update description of TAB-key binding.
9432 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9434         * subr.el (define-key-rebound-commands): Mark obsolete.
9435         * startup.el (precompute-menubar-bindings): Remove.
9436         (normal-top-level): Remove obsolete code that tried to precompute
9437         menubar bindings.
9438         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
9439         define-key-rebound-commands and precompute-menubar-bindings.
9441 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
9443         * net/imap.el (imap-interactive-login): Better messages.
9444         (imap-open): Fix bug with renamed buffer on reconnect.
9445         (imap-authenticate): Add buffer-local imap-last-authenticator variable
9446         for easier debugging and cleaner code.  On successful (guessed based on
9447         server capabilities) secondary authentication, set imap-state
9448         correctly.
9449         (imap-last-authenticator): Define imap-last-authenticator as a variable
9450         to avoid warnings.
9452 2009-09-10  Glenn Morris  <rgm@gnu.org>
9454         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
9456         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
9457         (byte-compile-file-form-autoload): Don't warn about unknown functions
9458         where the autoload statement comes after the use.
9459         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
9460         that any handlers inside the body (eg require) are in turn respected.
9462         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
9463         effects.
9465         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
9466         and syntax and abbrev tables basic docs, if they don't have any.
9468         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
9470         * international/mule-cmds.el (top-level): Require cl when compiling.
9471         (view-hello-file): Use default-value rather than
9472         default-enable-multibyte-characters.
9474         * progmodes/fortran.el: Move all safe and risky properties into the
9475         defcustoms.
9477         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
9478         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
9479         * mail/undigest.el:
9480         Put autoloads in rmail.el rather than loaddefs.el.
9481         * mail/rmail.el: Regenerate with extracted autoloads.
9483         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
9484         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
9486 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
9488         Reported in thread for Bug#4375.
9489         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
9490         "-data-evaluate-expression" instead of print.
9491         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
9492         (gdb-tooltip-print): Parse output from above MI command.
9493         (gdb): Revert 2009-08-11 change.  User should detach inferior
9494         manually.
9496         Remove the word "separate" from IO functions as inferior
9497         output is now never displayed in the GUD buffer.
9499 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
9501         * startup.el (command-line-normalize-file-name): On Windows and
9502         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
9504 2009-09-10  Juri Linkov  <juri@jurta.org>
9506         * isearch.el (isearch-text-char-description): Propertize escape
9507         character sequences with the `escape-glyph' face.  (Bug#4344)
9509         * simple.el (shell-command): Set asynchronous process filter to
9510         `comint-output-filter'.  (Bug#4343)
9512         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
9513         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
9514         the list.  Move "asm" to the bottom.
9515         (grep-find-ignored-directories): Add `choice' with nil value
9516         to empty the list easily.
9517         (grep-find-ignored-files): New option.
9518         (grep-files-history): Set to nil by default instead of '("ch" "el").
9519         (grep-compute-defaults): Add "<X>" to `grep-template'.
9520         (grep-read-files): Bind new local variables `default-alias' and
9521         `default-extension'.  Use a list of default values for the file prompt.
9522         (lgrep): Add `--exclude=' command line options composed from
9523         `grep-find-ignored-files'.
9524         (rgrep): Add `-name' command line options composed from
9525         `grep-find-ignored-files'.  (Bug#4301)
9527 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
9529         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
9530         (bug#4368).
9532 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9534         * calendar/time-date.el (autoload):
9535         Expand define-obsolete-function-alias into defalias and make-obsolete
9536         for old Emacsen that Gnus supports.
9537         (with-no-warnings): Define it for old Emacsen.
9538         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
9539         is available.
9540         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
9541         float-time is available; suppress compile warning for time-to-seconds.
9543 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
9545         * net/imap.el (imap-message-map): Docstring fix.
9547 2009-09-09  Glenn Morris  <rgm@gnu.org>
9549         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
9550         line numbers too.  (Bug#4374)
9552 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9554         * smerge-mode.el (smerge-remove-props, smerge-refine):
9555         Use with-silent-modifications (bug#4342).
9557         * subr.el (with-silent-modifications): New macro.
9559 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
9561         * files.el (top-level): Require `cl' when compiling.
9563 2009-09-07  Glenn Morris  <rgm@gnu.org>
9565         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
9567         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
9568         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
9570 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
9572         * vc-git.el (vc-git-annotate-command): Use separator to parse
9573         arguments correctly.
9575 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
9577         * proced.el (proced-mode): Doc fix.
9579 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
9581         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
9582         lstat fails.
9583         (tramp-do-file-attributes-with-ls): Check for file existence at
9584         remote end.
9585         (tramp-do-file-attributes-with-stat): Likewise.
9586         (tramp-convert-file-attributes): Return nil when attr is nil.
9588 2009-09-05  Glenn Morris  <rgm@gnu.org>
9590         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
9591         properties to this button.
9592         (diary-fancy-display): Don't extend the button to the final newline.
9593         (diary-fancy-display-mode): Continue to define "q" as a local key.
9595         * calendar/cal-china.el (holiday-chinese): Make it slightly more
9596         efficient.
9598         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
9600         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
9601         (byte-compile-dest-file-function): New option.
9602         (byte-compile-dest-file): Doc fix.
9603         Obey byte-compile-dest-file-function.
9604         (byte-compile-cl-file-p): New function.
9605         (byte-compile-eval): Only suppress noruntime warnings about cl functions
9606         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
9607         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
9608         than for file being previously loaded.
9609         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
9610         (byte-compile-file-form-require): Handle the case where requiring a file
9611         indirectly causes CL to be loaded.
9613 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
9615         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
9616         before killing the old buffer, since by the time `kill-buffer' is
9617         run so many buffer variables have been set to nil that it may not
9618         behave as expected.  (Bug#4061)
9620 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
9622         * files.el (find-alternate-file): If the old buffer is modified
9623         and visiting a file, behave similarly to `kill-buffer' when
9624         killing it, thus reverting to the pre-1.878 behavior; see
9625         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
9626         for discussion.  Also, consult `buffer-file-name' as a variable
9627         not as a function, for consistency with the rest of the code.
9629 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
9631         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
9632         also when adding a new directory.
9634         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
9635         defun.
9637 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9639         * files.el (locate-file-completion-table): Make it provide boundary
9640         information, so partial-completion works better.
9642 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
9644         * mail/footnote.el (Footnote-text-under-cursor):
9645         Check footnote-text-marker-alist before using it (bug#4324).
9647 2009-09-04  Glenn Morris  <rgm@gnu.org>
9649         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
9650         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
9651         * play/solitaire.el, play/tetris.el:
9652         Remove leading * from defcustom and defface docs.
9654         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
9655         necessary.
9656         (diary-fancy-overriding-map): New variable.
9657         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
9658         Use view-mode.
9660         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
9661         goto-line.
9663 2009-09-03  Glenn Morris  <rgm@gnu.org>
9665         * arc-mode.el (archive-mode):
9666         * dos-fns.el (set-default-process-coding-system):
9667         * man.el (Man-getpage-in-background):
9668         * menu-bar.el (menu-bar-describe-menu):
9669         * server.el (server-process-filter):
9670         * startup.el (command-line):
9671         * tar-mode.el (tar-header-block-tokenize, tar-extract):
9672         * w32-fns.el (set-default-process-coding-system):
9673         * x-dnd.el (x-dnd-handle-file-name):
9674         * international/mule-cmds.el (mule-menu-keymap)
9675         (set-default-coding-systems, language-info-alist, set-language-info)
9676         (set-language-environment, standard-display-european-internal)
9677         (set-locale-environment):
9678         * international/mule-diag.el (mule-diag):
9679         * mail/emacsbug.el (report-emacs-bug):
9680         * mail/rmail.el (rmail-mode):
9681         * mail/sendmail.el (mail-setup):
9682         Use default-value rather than default-enable-multibyte-characters.
9684         * progmodes/f90.el: Move all safe properties into the defcustoms.
9685         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
9687         * calendar/appt.el (appt-check):
9688         * calendar/diary-lib.el (diary-set-header, diary-live-p)
9689         (diary-check-diary-file, diary-list-entries)
9690         (diary-include-other-diary-files, diary-simple-display)
9691         (diary-fancy-display, diary-print-entries)
9692         (diary-mark-included-diary-files, diary-make-entry):
9693         Don't call substitute-in-file-name on diary-file.
9695 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
9696             Stefan Monnier  <monnier@iro.umontreal.ca>
9698         * mail/footnote.el (footnote-prefix): Make it a defcustom.
9699         (footnote-mode-map): Move initialization into the declaration.
9700         (footnote-minor-mode-map): Define it rather than changing global-map.
9701         (footnote-mode): Use define-minor-mode.
9703 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
9705         * net/tramp.el (tramp-handle-file-attributes-with-ls)
9706         (tramp-do-file-attributes-with-perl)
9707         (tramp-do-file-attributes-with-stat): Rename from
9708         `tramp-handle-file-attributes-with-*'.
9709         (tramp-handle-file-attributes): Use them.
9710         (tramp-do-directory-files-and-attributes-with-perl)
9711         (tramp-do-directory-files-and-attributes-with-stat): Rename from
9712         `tramp-handle-directory-files-and-attributes-with-*'.
9713         (tramp-handle-directory-files-and-attributes): Use them.
9714         (tramp-method-out-of-band-p): Additional parameter SIZE.
9715         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
9716         (tramp-handle-write-region): Use it.
9717         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
9718         (tramp-handle-vc-registered): Check, whether the first run did
9719         return files to be tested.
9720         (tramp-advice-make-auto-save-file-name): Do not call directly
9721         `tramp-handle-make-auto-save-file-name', because this would bypass
9722         the locking mechanism.
9724         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
9725         (file-remote-p, process-file, start-file-process, set-file-times)
9726         (tramp-compat-file-attributes): Compatibility functions shall not
9727         call directly `tramp-handle-*', because this would bypass the
9728         locking mechanism.
9729         (tramp-compat-number-sequence): New defun.
9731 2009-09-02  Glenn Morris  <rgm@gnu.org>
9733         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
9734         alias for float-time.
9735         (time-to-number-of-days): In Emacs, use float-time.
9736         * net/newst-backend.el (time-add): Suppress warnings from compat
9737         function.
9738         * time.el (emacs-uptime, emacs-init-time):
9739         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
9740         Use float-time rather than time-to-seconds.
9742         * minibuffer.el (completion-initials-expand): Fix typo.
9744         * faces.el (modeline, modeline-inactive, modeline-highlight)
9745         (modeline-buffer-id):
9746         * info.el (info-menu-5): Mark these face aliases as obsolete.
9748 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
9750         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
9751         space ...
9752         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
9753         no "--thread" option.
9754         (gdb-stopped): Don't print "Switched to thread" message when it is
9755         unchanged.
9757 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9759         * minibuffer.el (completion-try-completion)
9760         (completion-all-completions): Remove ill-defined (and
9761         mistakenly installed and luckily never used nor documented)
9762         `completion-styles' property.
9763         (completion-initials-expand, completion-initials-all-completions)
9764         (completion-initials-try-completion): New functions.
9765         (completion-styles-alist): Add doc to each entry.
9766         Add new `initials' entry.
9768 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
9770         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
9771         MI command -var-evaluate-expression.
9772         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
9773         and tweak for case of string child.
9774         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
9776 2009-09-01  Glenn Morris  <rgm@gnu.org>
9778         * add-log.el (change-log-date-face, change-log-name-face)
9779         (change-log-email-face, change-log-file-face, change-log-list-face)
9780         (change-log-conditionals-face, change-log-function-face)
9781         (change-log-acknowledgement-face):
9782         * cus-edit.el (custom-invalid-face, custom-rogue-face)
9783         (custom-modified-face, custom-set-face, custom-changed-face)
9784         (custom-saved-face, custom-button-face, custom-button-pressed-face)
9785         (custom-documentation-face, custom-state-face, custom-comment-face)
9786         (custom-comment-tag-face, custom-variable-tag-face)
9787         (custom-variable-button-face, custom-face-tag-face)
9788         (custom-group-tag-face-1, custom-group-tag-face):
9789         * diff-mode.el (diff-header-face, diff-file-header-face)
9790         (diff-index-face, diff-hunk-header-face, diff-removed-face)
9791         (diff-added-face, diff-changed-face, diff-function-face)
9792         (diff-context-face, diff-nonexistent-face):
9793         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
9794         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
9795         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
9796         (Info-title-4-face):
9797         * isearch.el (isearch-lazy-highlight-face):
9798         * log-view.el (log-view-file-face, log-view-message-face):
9799         * paren.el (show-paren-match-face, show-paren-mismatch-face):
9800         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
9801         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
9802         (cvs-msg-face):
9803         * smerge-mode.el (smerge-mine-face, smerge-other-face)
9804         (smerge-base-face, smerge-markers-face):
9805         * wid-edit.el (widget-documentation-face, widget-button-face)
9806         (widget-field-face, widget-single-line-field-face)
9807         (widget-inactive-face, widget-button-pressed-face):
9808         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
9809         (woman-addition-face):
9810         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
9811         (eshell-ls-executable-face, eshell-ls-readonly-face)
9812         (eshell-ls-unreadable-face, eshell-ls-special-face)
9813         (eshell-ls-missing-face, eshell-ls-archive-face)
9814         (eshell-ls-backup-face, eshell-ls-product-face)
9815         (eshell-ls-clutter-face):
9816         * eshell/em-prompt.el (eshell-prompt-face):
9817         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
9818         * obsolete/old-whitespace.el (whitespace-highlight-face):
9819         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
9820         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
9821         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
9822         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
9823         (antlr-font-lock-literal-face):
9824         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
9825         (ebrowse-root-class-face, ebrowse-file-name-face)
9826         (ebrowse-default-face, ebrowse-member-attribute-face)
9827         (ebrowse-member-class-face, ebrowse-progress-face):
9828         * progmodes/make-mode.el (makefile-space-face):
9829         * progmodes/sh-script.el (sh-heredoc-face):
9830         * textmodes/flyspell.el (flyspell-incorrect-face)
9831         (flyspell-duplicate-face):
9832         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
9833         * textmodes/texinfo.el (texinfo-heading-face):
9834         Mark face aliases with "-face" suffix as obsolete.
9836         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
9837         compiler.
9839         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
9840         (eudc-bob-sound-menu): Use defvar rather than defconst, since
9841         easy-menu-define wants to modify these.
9843         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
9845         * net/browse-url.el (browse-url-file-url):
9846         * term/internal.el (dos-codepage-setup):
9847         Use default-value rather than default-enable-multibyte-characters.
9849         * progmodes/etags.el (etags-goto-tag-location):
9850         * progmodes/flymake.el (flymake-highlight-line)
9851         (flymake-goto-file-and-line, flymake-goto-line):
9852         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
9853         (gdb-goto-breakpoint):
9854         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
9855         * progmodes/python.el (python-find-function)
9856         (python-pdbtrack-track-stack-file):
9857         * progmodes/verilog-mode.el (verilog-surelint-off):
9858         * term/ns-win.el (ns-open-file-select-line):
9859         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
9860         Use forward-line rather than goto-line.
9862         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
9863         * textmodes/reftex-index.el (reftex-display-index):
9864         * textmodes/reftex-ref.el (reftex-offer-label-menu):
9865         * textmodes/reftex-toc.el (reftex-toc):
9866         Remove unnecessary bindings of default-major-mode (all are followed by
9867         major-mode check and possible mode switch).
9869 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
9871         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
9872         Handle watchpoints (bug#4282).
9873         (def-gdb-thread-buffer-command): Enable thread to be selected by
9874         clicking without selecting threads buffer first.
9875         (gdb-current-context-command): Use selected frame so that "up",
9876         "down" etc work in the GUD buffer.
9877         (gdb-update): Find selected frame before rendering stack buffer.
9878         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
9880 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
9882         * progmodes/sym-comp.el (displayed-completions): Remove.
9883         (symbol-complete): Use minibuffer-complete.
9885 2009-08-31  Glenn Morris  <rgm@gnu.org>
9887         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
9889         * apropos.el (apropos-symbols-internal):
9890         Handle (obsolete) face aliases.
9892         * faces.el (describe-face): Adjust the output format to be more like
9893         describe-variable, and to mention (obsolete) face aliases.
9894         Adjust the whitespace so that help-setup-xref works.
9896         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
9897         * calendar/diary-lib.el (diary-button-face):
9898         Mark these face aliases as obsolete.
9900         * calendar/calendar.el (calendar-today): Doc fix.
9902 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
9904         * progmodes/gdb-mi.el (gdb-control-all-threads)
9905         (gdb-control-current-thread): Force tool bar update.
9906         (gdb-non-stop-handler): New function.
9907         (gdb-init-1): Use it to test if non-stop mode is supported.
9908         Remove unused gdbmi buffer type.
9910 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
9912         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
9913         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
9915 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
9917         * comint.el (comint-exec-1): Check command is non-null first.
9918         Part of gdb-mi.el change (2009-08-28).
9920 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9922         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
9924 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
9926         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
9927         instead of `dolist' to avoid a recursive require when bootstrapping.
9929 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9931         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
9933         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
9935         * net/imap.el (imap-send-command): Simplify.
9936         (imap-wait-for-tag): point-max -> buffer-size.
9938         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
9940         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
9941         with constant argument.
9943         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
9945         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
9947         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
9948         Change default, since most of our files don't have a history.
9949         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
9950         the user.
9952         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9953         Add comint-run.
9955         * calc/calc.el: Improve commenting convention.
9956         (calc-digit-map, toplevel): Simplify.
9958         * comint.el (comint-insert-input): Be careful to only set point if we
9959         don't delegate to some other command.
9961         * proced.el (proced-signal-list): Make it an alist.
9962         (proced-grammar-alist): Capitalize names.
9963         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
9964         Disable undo manually and make it read-only.
9965         Use completion-annotate-function.
9967         * minibuffer.el (minibuffer-message): If the current buffer is not
9968         a minibuffer, insert the message in the echo area rather than at the
9969         end of the buffer.
9970         (completion-annotate-function): New variable.
9971         (minibuffer-completion-help): Use it.
9972         (completion--embedded-envvar-table): Environment vars are
9973         always case-sensitive.
9975 2009-08-30  Glenn Morris  <rgm@gnu.org>
9977         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
9978         from fortran-current-defun.
9979         (fortran-beginning-of-subprogram): Be more precise about finding the
9980         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
9981         (fortran-end-of-subprogram): Simplify.
9982         (fortran-current-defun): Use fortran-start-prog-re.
9984 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
9986         * subr.el (do-after-load-evaluation): Simplify.
9988 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
9990         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
9992         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
9993         (vc-rcs-print-log): Use it.
9995         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
9997 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9999         * paths.el (abbrev-file-name): Move to abbrev.el.
10000         * abbrev.el (abbrev-file-name): Move from paths.el.
10001         Obey user-emacs-directory.
10002         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
10003         user-emacs-directory.
10004         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
10005         abbrev-file-name and calc-settings-file any more.
10006         * startup.el (command-line): Recompute abbrev-file-name and
10007         abbreviated-home-dir.
10008         (normal-no-mouse-startup-screen): Improve the generic code and get rid
10009         of the special code for when C-h bindings haven't been changed.
10010         (display-startup-echo-area-message): Use with-current-buffer.
10011         (command-line-1): Use a list of strings, rather than a list of lists
10012         of strings for longopts.
10014         * files.el (get-free-disk-space): Use / for default-directory.
10016         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
10017         Use with-current-buffer.
10019         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
10020         Recognize immutable variables like most-positive-fixnum.
10021         (byte-compile-setq-default): Check and warn if trying to assign
10022         to an immutable variable, or a non-variable.
10024         * progmodes/cc-vars.el (c-comment-continuation-stars):
10025         * progmodes/cc-engine.el (c-looking-at-bos):
10026         * progmodes/cc-cmds.el (c-toggle-auto-state)
10027         (c-forward-into-nomenclature, c-backward-into-nomenclature)
10028         (c-comment-line-break-function): Add version of obsolescence.
10030 2009-08-28  Juri Linkov  <juri@jurta.org>
10032         * files.el (magic-fallback-mode-alist): Add ZIP magic number
10033         associated with `archive-mode'.
10035         * image.el (image-type-header-regexps): Use only JPEG magic number
10036         to determine JPEG images, and don't use `image-jpeg-p' because
10037         Emacs can display non-JFIF non-Exif JPEG images.
10039 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
10041         * arc-mode.el (archive-mode):
10042         * emacs-lisp/re-builder.el (re-builder-unload-function):
10043         Protect against the default value of `major-mode' being nil.
10045 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
10047         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
10048         Fix typos in docstrings.
10050         * progmodes/js.el (js--macro-decl-re): Doc fix.
10051         (js--plain-method-re, js--split-name): Refloc docstring.
10052         (js--class-styles, js--make-merged-item, js--splice-into-items):
10053         Fix typos in docstrings; reflow docstrings.
10054         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
10055         (js--variable-decl-matcher, js--inside-pitem-p)
10056         (js--parse-state-at-point, js--get-all-known-symbols)
10057         (js--symbol-history, js-find-symbol, js--js-references)
10058         (js--moz-interactor, js--js-encode-value, js--read-tab):
10059         Fix typos in docstrings.
10061 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10063         * textmodes/reftex.el (reftex-get-file-buffer-force):
10064         * progmodes/verilog-mode.el (verilog-batch-execute-func):
10065         * emulation/viper.el (viper-go-away, viper-set-hooks):
10066         * emacs-lisp/re-builder.el (re-builder-unload-function):
10067         * emacs-lisp/bytecomp.el (byte-compile-file):
10068         * ses.el (ses-unload-function):
10069         * hexl.el (hexl-find-file):
10070         * files.el (normal-mode):
10071         * ehelp.el (with-electric-help):
10072         * autoinsert.el (auto-insert-alist):
10073         * arc-mode.el (archive-mode):
10074         Use (default-value 'major-mode) instead of default-major-mode.
10076         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
10077         * international/mule.el (load-with-code-conversion):
10078         * emacs-lisp/debug.el (debug):
10079         * ediff-vers.el (ediff-rcs-get-output-buffer):
10080         * dired.el (dired-internal-noselect): Don't let-bind
10081         default-major-mode around code that doesn't use it.
10082         E.g. buffer creation via get-buffer-create doesn't use it.
10084 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
10086         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
10087         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
10088         when writing the temp file.  Otherwise, epa-file gets confused.
10089         (tramp-register-file-name-handlers): Make it a defun.  Move also
10090         `epa-file-handler' to the front of `file-name-handler-alist'.
10092 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10094         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
10095         start right after a ^M.
10096         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
10097         (tramp-completion-file-name-regexp-separate)
10098         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
10099         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
10100         Don't modify last-coding-system-used by accident.
10101         (tramp-completion-file-name-handler): Apply the checks here,
10102         instead during registration.
10103         (tramp-register-file-name-handlers): Renamed from
10104         `tramp-register-file-name-handler'.  Register both
10105         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
10106         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
10108 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
10110         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
10111         Remove variable ...
10112         (gdb-init-1, gdb-display-separate-io-buffer)
10113         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
10114         references to it.
10115         (gdb-inferior-io-mode): Use make-comint-in-buffer.
10116         (gdb-inferior-filter): Use comint-output-filter to stop
10117         echoing and remove ^M characters.
10119 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10121         * emulation/viper-init.el (viper-restore-cursor-type):
10122         * emulation/cua-base.el (cua--update-indications):
10123         Replace default-cursor-type with (default-value 'cursor-type).
10125         * mail/sendmail.el (mail-recover-1):
10126         * international/mule-diag.el (describe-current-coding-system-briefly)
10127         (describe-current-coding-system):
10128         * international/mule-cmds.el (select-safe-coding-system)
10129         (select-message-coding-system)
10130         (set-language-environment-coding-systems, set-locale-environment):
10131         * hexl.el (hexl-insert-multibyte-char):
10132         * dos-w32.el (find-buffer-file-type-coding-system):
10133         * simple.el (what-cursor-position):
10134         Replace uses of default-buffer-file-coding-system
10135         with (default-value 'buffer-file-coding-system).
10137         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
10138         Replace uses of default-cursor-in-non-selected-windows
10139         with (default-value 'cursor-in-non-selected-windows).
10140         Use with-current-buffer.
10142         * mail/feedmail.el: Use CL macros.
10143         (feedmail-run-the-queue, feedmail-send-it-immediately):
10144         * dos-w32.el (find-buffer-file-type): Replace uses of
10145         default-buffer-file-type with (default-value 'buffer-file-type).
10147 2009-08-28  Glenn Morris  <rgm@gnu.org>
10149         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
10150         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
10151         Use default-value of major-mode rather than default-major-mode.
10153 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10155         * Makefile.in (update-elcfiles): Report left over elc files.
10157         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
10158         expand-file-name and with-current-buffer.
10159         (mail-get-names, mail-directory): Use with-current-buffer.
10161         * vc.el (vc-read-revision): New function.
10162         (vc-version-diff, vc-merge): Use it.
10164 2009-08-27  Sam Steingold  <sds@gnu.org>
10166         * simple.el (kill-do-not-save-duplicates): New user option.
10167         (kill-new): When it is non-nil, and the new string is the same as
10168         the latest kill, set replace to t to avoid duplicates in kill-ring.
10170 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
10172         * net/tramp.el (tramp-handle-process-file): Do not flush all
10173         caches when `process-file-side-effects' is set.
10174         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
10175         instead of `tramp-find-file-exists-command'.
10176         Unset `process-file-side-effects'.
10178 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
10180         * net/tramp.el (tramp-methods): New method "rsyncc".
10181         (top): Add completion function for "rsyncc".
10182         (tramp-message-show-message): New defvar.
10183         (tramp-message, tramp-error): Use it.
10184         (tramp-do-copy-or-rename-file-directly): Extend check for direct
10185         remote copying.
10186         (tramp-do-copy-or-rename-file-out-of-band): Handle new
10187         `tramp-methods' entry `copy-env' of "rsyncc".
10188         (tramp-vc-registered-read-file-names): New defconst.
10189         (tramp-vc-registered-file-names): New defvar.
10190         (tramp-handle-vc-registered): Implement optimization strategy.
10191         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
10192         (tramp-vc-file-name-handler): New defun.
10193         (tramp-get-ls-command, tramp-get-test-command)
10194         (tramp-get-file-exists-command, tramp-get-remote-ln)
10195         (tramp-get-remote-perl, tramp-get-remote-stat)
10196         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
10198         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
10199         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
10200         timestamps.
10201         (tramp-get-file-property): Check for timestamps in
10202         `tramp-cache-inhibit-cache'.
10203         (tramp-set-file-property): Write timestamp.
10205 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
10207         * language/japan-util.el (japanese-symbol-table): Add entries for
10208         cp932-2-byte.
10210         * international/characters.el: Add category `j' to cp932-2-byte.
10212 2009-08-27  Kenichi Handa  <handa@m17n.org>
10214         * international/fontset.el (build-default-fontset-data): New macro.
10215         (setup-default-fontset): Use build-default-fontset-data for CJK,
10216         tibetan, ethiopic, and ipa.
10218 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10220         * cus-start.el (default-major-mode): Customize `major-mode' instead.
10221         (enable-multibyte-characters): Not customizable any more.
10223         * subr.el (default-mode-line-format, default-header-line-format)
10224         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
10225         (default-direction-reversed, default-truncate-lines)
10226         (default-left-margin, default-tab-width, default-case-fold-search)
10227         (default-left-margin-width, default-right-margin-width)
10228         (default-left-fringe-width, default-right-fringe-width)
10229         (default-fringes-outside-margins, default-scroll-bar-width)
10230         (default-vertical-scroll-bar, default-indicate-empty-lines)
10231         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
10232         (default-fringe-cursor-alist, default-scroll-up-aggressively)
10233         (default-scroll-down-aggressively, default-fill-column)
10234         (default-cursor-type, default-buffer-file-type)
10235         (default-cursor-in-non-selected-windows)
10236         (default-buffer-file-coding-system, default-major-mode)
10237         (default-enable-multibyte-characters): Mark as obsolete.
10239 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
10241         * vc-dir.el (vc-dir-update): Remove debug helper.
10243         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
10245 2009-08-26  Sam Steingold  <sds@gnu.org>
10247         * simple.el (save-interprogram-paste-before-kill): New user option.
10248         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
10249         save the interprogram-paste into kill-ring before overriding it
10250         with the Emacs kill.
10252 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
10254         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
10255         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
10256         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
10257         and move to vc-rcs.el.
10258         (vc-default-next-revision): Rename to vc-rcs-next-revision and
10259         move to vc-rcs.el.
10260         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
10261         (vc-rcs-update-changelog): Remove.
10262         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
10263         and move to vc-rcs.el.
10265         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
10266         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
10267         renaming.
10268         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
10269         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
10270         vc.el, renamed to be RCS specific.
10272         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
10273         New functions.
10274         (vc-cvs-update-changelog): Move here from vc.el.
10276         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
10277         New functions.
10279 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10281         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
10283 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
10285         * vc-git.el (vc-git-register): Use "git add" for directories.
10286         (vc-git-stash, vc-git-stash-show): New functions.
10287         (vc-git-extra-menu-map): Bind them.
10289         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
10290         directory correctly in case the item is a directory itself.
10292         * vc.el: Document the desired behavior for reverted files in the
10293         `added' state.
10294         (vc-default-prettify-state-info): Remove function, unused.
10296         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
10298 2009-08-26  Glenn Morris  <rgm@gnu.org>
10300         * bindings.el (standard-mode-line-format): Reposition dashes in
10301         which-func entry.  (Bug#4217)
10303         * files.el (enable-local-variables, enable-local-eval)
10304         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
10305         the defcustoms.
10306         (auto-mode-alist, ignored-local-variables)
10307         (save-some-buffers-action-alist): Move risky declarations to the
10308         definitions.
10309         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
10310         (font-lock-defaults, format-alist, imenu--index-alist)
10311         (imenu-generic-expression, input-method-alist, minor-mode-alist)
10312         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
10313         (mode-line-modified, mode-line-mule-info, mode-line-position)
10314         (mode-line-process, mode-line-remote, outline-level)
10315         (parse-time-rules, rmail-output-file-alist)
10316         (special-display-buffer-names, vc-mode):
10317         Move risky declarations to the relevant files.
10318         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
10319         (mode-line-modified, mode-line-process, mode-line-position)
10320         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
10321         * font-core.el (font-lock-defaults):
10322         * format.el (format-alist):
10323         * vc-hooks.el (vc-mode):
10324         * window.el (special-display-buffer-names):
10325         * international/mule-cmds.el (input-method-alist):
10326         Define riskiness here (dumped file) rather than in files.el.
10327         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
10328         * imenu.el (imenu-generic-expression, imenu--index-alist):
10329         * outline.el (outline-level):
10330         * time.el (display-time-string):
10331         * calendar/parse-time.el (parse-time-rules):
10332         * mail/rmailout.el (rmail-output-file-alist):
10333         Autoload riskiness here, rather than placing in files.el.
10335 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
10337         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
10339 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
10341         * simple.el (process-file-side-effects): New defvar.
10343         * dired-aux.el (dired-show-file-type):
10344         * vc.el (vc-diff-internal):
10345         * vc-arch.el (vc-arch-diff):
10346         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
10347         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
10348         * vc-git.el (vc-git-registered, vc-git-working-revision)
10349         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
10350         (vc-git--empty-db-p):
10351         * vc-hooks.el (vc-user-login-name):
10352         * vc-svn.el (vc-svn-registered, vc-svn-state)
10353         (vc-svn-dir-extra-headers, vc-svn-find-revision):
10354         * progmodes/grep.el (grep-probe): Let-bind
10355         `process-file-side-effects' with nil.
10357         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
10359         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
10360         daemon.  Replace ping by checking for running service for bluez
10361         and zeroconf.  (Bug#4239)
10363 2009-08-25  Kevin Ryde  <user42@zip.com.au>
10365         * net/dig.el (dig): Add autoload cookie.
10367 2009-08-25  Glenn Morris  <rgm@gnu.org>
10369         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
10370         load-history for absolute file-names.
10371         (byte-compile-file-form-require): Warn about use of the cl package.
10373         * format.el (format-alist): Doc fix.
10375         * play/bubbles.el (top-level): Don't require cl at run-time.
10377         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
10378         run-time cl).
10380 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
10382         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
10383         from cl package.
10384         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
10386 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
10388         * calc/calc-alg.el (math-trig-rewrite)
10389         (math-hyperbolic-trig-rewrite): New functions.
10390         (calc-simplify): Simplify trig functions when asked.
10392 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10394         * diff-mode.el (diff-find-source-location): Avoid goto-line.
10396 2009-08-24  Kenichi Handa  <handa@m17n.org>
10398         * language/ind-util.el (mapthread): Delete it.
10399         (combinatorial): New function.
10400         (indian--puthash-cv): Use combinatorial instead of mapthread.
10402 2009-08-22  Kevin Ryde  <user42@zip.com.au>
10404         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
10405         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
10406         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
10407         Clarify docstring that the value is strings not symbols.
10408         (checkdoc-list-of-strings-p): New function.
10410 2009-08-22  Glenn Morris  <rgm@gnu.org>
10412         * files.el (auto-mode-alist):
10413         * hippie-exp.el (he-concat-directory-file-name):
10414         * lpr.el (lpr-windows-system, printer-name):
10415         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
10416         * ps-print.el (ps-windows-system):
10417         * startup.el (command-line):
10418         * emulation/viper-ex.el (viper-glob-function):
10419         * international/mule-cmds.el (set-language-environment-coding-systems):
10420         * net/ange-ftp.el (ange-ftp-write-region):
10421         * obsolete/fast-lock.el (fast-lock-cache-name):
10422         Remove code for defunct system-types emx, macos, mswindows, next-mach,
10423         unisoft-unix, vax-vms, win32, w32.
10425         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
10426         given name if the pattern is not more specific.
10428         * calendar/lunar.el (lunar-phase-names): New option.
10429         (lunar-phase): Doc fix.
10430         (lunar-cycles-per-year): New constant.
10431         (lunar-index): New function.
10432         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
10433         (lunar-phase-name): Use lunar-phase-names.
10434         (calendar-lunar-phases): Use format.
10435         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
10437         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
10438         Copy imenu-example--name-and-position function here for own use.
10439         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
10441         * bs.el (bs--redisplay):
10442         * cus-edit.el (custom-redraw):
10443         * ibuffer.el (ibuffer-bury-buffer):
10444         * server.el (server-goto-line-column):
10445         * startup.el (command-line-1):
10446         * strokes.el (strokes-xpm-for-stroke):
10447         * term.el (term-display-buffer-line):
10448         * view.el (View-goto-line):
10449         * calc/calc.el (calc-do, calc-trail-buffer):
10450         * play/gamegrid.el (gamegrid-add-score-insecure):
10451         * progmodes/ada-mode.el (ada-compile-goto-error):
10452         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
10453         (ebrowse-select-1st-to-9nth):
10454         * progmodes/cperl-mode.el (cperl-time-fontification):
10455         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
10456         * progmodes/gud.el (gud-display-line):
10457         (idlwave-shell-display-line):
10458         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
10459         * progmodes/make-mode.el (makefile-browser-toggle):
10460         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
10461         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
10462         * textmodes/picture.el (picture-draw-rectangle):
10463         * textmodes/reftex-index.el (reftex-index-goto-letter):
10464         (reftex-select-jump-to-previous):
10465         * textmodes/reftex-sel.el (reftex-find-start-point)
10466         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
10467         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
10468         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
10469         * textmodes/tex-mode.el (tex-compilation-parse-errors):
10470         * textmodes/two-column.el (2C-associated-buffer):
10471         Use forward-line rather than goto-line.
10473         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
10474         goto-line.
10476         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
10477         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
10478         (quick-check-list-to-regexp): Declare.
10480         * progmodes/make-mode.el (makefile-browser-insert-selection):
10481         Use goto-char rather than goto-line.
10483         * progmodes/prolog.el (compilation-error-regexp-alist)
10484         (compilation-forget-errors): Declare.
10486 2009-08-22  Juri Linkov  <juri@jurta.org>
10488         * progmodes/grep.el (lgrep, rgrep): At the beginning
10489         set `dir' to `default-directory' unless `dir' is a non-nil
10490         readable directory.  (Bug#4052)
10491         (lgrep, rgrep): Change a weird way to report an error
10492         from using `read-string' to using `error'.
10493         Instead of using interactive arguments in the function body,
10494         add new argument `confirm'.
10496 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10498         * textmodes/remember.el (remember-buffer):
10499         * progmodes/cperl-mode.el (cperl-vc-header-alist):
10500         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
10501         (icalendar-extract-ical-from-buffer):
10502         * net/newst-treeview.el (newsticker-groups-filename):
10503         * net/newst-backend.el (newsticker-cache-filename):
10504         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
10505         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
10506         (speedbar-add-ignored-path-regexp, speedbar-line-path)
10507         (speedbar-buffers-line-path, speedbar-path-line)
10508         (speedbar-buffers-line-path):
10509         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
10510         (epg-sign-keys):
10511         * epa.el (epa-display-verify-result):
10512         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
10514 2009-08-21  Glenn Morris  <rgm@gnu.org>
10516         * progmodes/js.el (inferior-moz-process): Fix declaration.
10518         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
10520         * obsolete/rnewspost.el (news-mail-reply):
10521         Use goto-char rather than goto-line.
10523         * term/ns-win.el (ns-open-file-select-line):
10524         Use line-beginning-position rather than goto-line.
10526         * apropos.el (apropos-command):
10527         * ehelp.el (electric-helpify):
10528         * printing.el (pr-show-setup):
10529         * strokes.el (strokes-help):
10530         * tutorial.el (tutorial--describe-nonstandard-key)
10531         (tutorial--detailed-help):
10532         * woman.el (woman-mini-help, woman-display-extended-fonts):
10533         * calc/calc-help.el (calc-describe-key):
10534         * emulation/edt.el (edt-electric-helpify):
10535         * international/mule-diag.el (mule-diag):
10536         * play/yow.el (apropos-zippy):
10537         * progmodes/python.el (python-describe-symbol):
10538         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
10539         * textmodes/table.el (*table--cell-describe-mode)
10540         (*table--cell-describe-bindings):
10541         Use help-print-return-message rather than the now obsolete alias.
10543         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
10544         (calendar-cursor-to-visible-date):
10545         * play/5x5.el (5x5-position-cursor):
10546         * play/decipher.el (decipher):
10547         * play/gomoku.el (gomoku-goto-xy):
10548         * play/landmark.el (lm-goto-xy):
10549         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
10550         (mpuz-paint-digit):
10551         Use forward-line, not goto-line.
10553         * mail/rmail.el (rmail-obsolete): Delete custom group.
10554         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
10555         (rmail-remote-password, rmail-remote-password-required):
10556         Remove unneeded :set-after and :set properties.
10558 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
10560         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
10562 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
10564         * loadup.el: Remove leftover macos code.
10566         * vc-git.el (vc-git-annotate-command): Run asynchronously.
10567         Explicitly pass the date format to git blame so that user local
10568         so that the output format can be parsed.
10570 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
10572         * net/dbus.el (top): Don't check for (getenv
10573         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
10575 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
10577         * log-edit.el (log-edit-strip-single-file-name): New var.
10578         (log-edit-insert-changelog): Use it.  Bug#3571
10580 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10582         * subr.el (read-passwd): Use read-key so keypad keys work as well.
10583         Bug#3287
10585         * help.el (help-print-return-message): Rename from
10586         print-help-return-message.
10588         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
10589         cvs-mode-map parent hack.
10590         (log-view-mode): Derive from special-mode.
10592         * linum.el (linum-mode): window-size-change-functions is redundant.
10593         Adapt to new window-configuration-change-hook behavior.
10594         (linum-after-size, linum-after-config): Remove.
10596         * imenu.el (imenu-example--name-and-position)
10597         (imenu-example--lisp-extract-index-name)
10598         (imenu-example--create-lisp-index, imenu-example--create-c-index):
10599         Mark as obsolete.
10601         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
10602         (inferior-prolog-mode): Use it.
10603         (inferior-prolog-load-file): Reset list of errors.
10605 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
10607         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
10609         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
10611 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
10613         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
10614         is running already.
10616 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10618         * subr.el (listify-key-sequence-1): Use normal syntax since those
10619         integers are nowadays always represented by the same (positive) number
10620         on all platforms.
10621         (read-key-empty-map): New const.
10622         (read-key-delay): New var.
10623         (read-key): New function.
10624         (force-mode-line-update): Use with-current-buffer.
10625         (locate-user-emacs-file): Don't forget to abbreviate the file name.
10626         (start-process-shell-command, start-file-process-shell-command):
10627         Discourage the use of command-args.
10629 2009-08-19  Glenn Morris  <rgm@gnu.org>
10631         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
10633 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10635         * simple.el (choose-completion-string): Don't rely on
10636         minibuffer-completing-file-name and ad-hoc checks to decide whether
10637         to continue completion or not.
10639         * minibuffer.el (minibuffer-hide-completions): New function.
10640         (completion--do-completion): Use it.
10641         (completions-annotations): New face.
10642         (completion--insert-strings): Use it.
10643         (completion-pcm--delim-wild-regex): Add docstring.
10644         (completion-pcm--string->pattern): Add support for 0-width delimiters
10645         in completion-pcm--delim-wild-regex.
10647 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10649         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
10650         Remove unused var `buffer-modified-p'.
10652         * minibuffer.el (completion--do-completion): Move point for the #b001
10653         case as well (bug#4176).
10654         (minibuffer-complete, minibuffer-complete-word): Don't move point.
10656 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
10658         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
10659         and :session buses.
10661 2009-08-18  Kenichi Handa  <handa@m17n.org>
10663         * international/ucs-normalize.el (ucs-normalize-version):
10664         Change to 1.1.
10665         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
10666         (utf-8-hfs): Make it perform normalization on encoding too.
10668         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
10669         (sentence-end-without-space): Delete duplicated chars.
10670         (sentence-end-base): Likewise.
10672         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
10673         (html-mode): Delete duplicated chars from sentence-end-base.
10675         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
10676         (texinfo-mode): Delete duplicated chars from sentence-end-base.
10678 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
10680         * files.el (hack-one-local-variable): If the mode function is for
10681         a minor mode, pass it an argument (Bug#4148).
10683 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
10685         * net/tramp.el (tramp-register-completion-file-name-handler):
10686         Check also for (member 'partial-completion completion-styles).
10688 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
10690         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
10691         abbrev (Bug#3943).
10693 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
10695         * progmodes/cperl-mode.el: Merge upstream 6.2.
10696         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
10697         (cperl-forward-re): Check cperl-brace-recursing.
10698         (cperl-highlight-charclass): New function.
10699         (cperl-find-pods-heres): Use it.
10700         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
10701         (cperl-beautify-regexp-piece): Fix column calculation.
10702         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
10703         (cperl-beautify-level): Don't process entire regexp.
10704         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
10705         calling man.
10706         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
10707         (cperl-init-faces): Build a list in the normal way.
10709 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
10711         * calendar/parse-time.el (parse-time-string-chars): Save match
10712         data.
10714 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10716         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
10717         (sql-product): Use it.
10718         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
10719         (sql-set-product): Add completion.
10720         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
10721         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
10722         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
10723         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
10724         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
10725         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
10726         (sql-highlight-db2-keywords): Remove.
10727         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
10728         (sql-highlight-product): Use derived-mode-p.
10729         (sql-set-sqli-buffer): Use with-current-buffer.
10730         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
10731         Simplify.
10733         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
10735         * term.el: Fix commenting convention, turn comments into docstrings.
10737 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
10739         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
10741 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
10743         * calendar/parse-time.el (parse-time-string-chars): Compute using
10744         character classes, to handle non-ascii characters (Bug#3190).
10746 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
10748         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
10749         another heredoc if the user adds another < (Bug#3226).
10751         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
10752         Don't initialize based on window-system (Bug#4124).
10754         * facemenu.el (facemenu-read-color): Use a completion function
10755         that accepts any defined color, such as RGB triplets (Bug#3677).
10757         * files.el (get-free-disk-space): Change fallback default
10758         directory to /.  Expand DIR argument before switching to fallback.
10759         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
10761 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
10763         * files.el (load-library): Doc fix.
10765 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
10767         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
10768         (viper-if-string): Redefine C-s in the minibuffer to insert the last
10769         incremental search string.
10771         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
10772         XEmacs.
10774         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
10775         (ediff-merge-region-is-non-clash)
10776         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
10777         Also check if the job is really a merge job.
10779         * ediff.el (ediff-current-file): New function.
10781 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
10783         * progmodes/js.el: Edit docstrings throughout to follow Emacs
10784         conventions.
10785         (js-insert-and-indent): Delete function.
10786         (js-mode-map): Don't bind keys to js-insert-and-indent.
10787         (js-beginning-of-defun): Rename from js--beginning-of-defun.
10788         (js-end-of-defun): Rename from js--end-of-defun.
10789         (js-auto-indent-flag): Delete variable.
10791 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
10793         * progmodes/js.el: Remove proclaim statement.
10794         Defvar which-func-imenu-joiner-function to silence compiler.
10796         * files.el (auto-mode-alist): Use js-mode for .js files.
10798         * progmodes/js2-mode.el: Remove file.
10800         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
10802         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
10804         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
10806 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
10807             Karl Landstrom  <karl.landstrom@brgeight.se>
10809         * progmodes/js.el: New file.
10811 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
10813         * timezone.el (timezone-parse-date): Add ability to understand ISO
10814         basic format (minimal separators) dates in addition to the
10815         already-supported extended format dates.
10817 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
10819         * international/ucs-normalize.el: Add a `coding' file variable.
10821         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
10823 2009-08-14  Sam Steingold  <sds@gnu.org>
10825         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
10827 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
10829         * faces.el (help-argument-name): Define it here instead of
10830         help-fns.el, because in daemon mode help-fns.el may be loaded when
10831         faces are still uninitialized (Bug#1078).
10833         * help-fns.el (help-argument-name): Move defface to faces.el.
10835 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
10837         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
10838         create buffer with a pty but no process so that GDB can make the
10839         inferior the controlling process.
10841 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
10843         * international/ucs-normalize.el: New file.
10845 2009-08-13  Richard Stallman  <rms@gnu.org>
10847         * mail/rmail.el (rmail-get-attr-names):
10848         Accept an attribute header that is too short.
10850         * mail/rmail.el (rmail-forget-messages):
10851         Ignore nil elt in rmail-message-vector.  Use dotimes.
10853         * progmodes/compile.el (compilation-goto-locus):
10854         Use next-error-move-function.
10856         * simple.el (next-error-move-function): New variable.
10858 2009-08-12  Juri Linkov  <juri@jurta.org>
10860         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
10861         always non-nil.  (Bug#4052)
10863         * replace.el (read-regexp): Return empty string when
10864         `default-value' is nil.
10865         (keep-lines-read-args): Don't use empty string as the
10866         default value for `read-regexp'.  (Bug#2495)
10868 2009-08-12  Juri Linkov  <juri@jurta.org>
10870         * international/mule-cmds.el (ucs-insert): Change arguments
10871         from `arg' to `character', `count', `inherit' to be the same
10872         as in `insert-char'.  Doc fix.  (Bug#4039)
10874         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
10876 2009-08-12  Juri Linkov  <juri@jurta.org>
10878         * files-x.el: New file.
10880         * files.el: Move code that deals with adding/deleting
10881         file/directory-local variables to files-x.el.
10883         * Makefile.in (ELCFILES): Add files-x.elc.
10885 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
10887         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
10888         to use `goto-line'.
10889         (gdb-place-breakpoints, gdb-get-location): Rewritten without
10890         `goto-line'.
10891         (gdb-invalidate-disassembly): Do not refresh upon receiving
10892         'update signal.  Instead, update all disassembly buffers only after
10893         threads list.
10894         (gdb): Send -target-detach when buffer is killed (Bug#3794).
10895         (gdb-starting): Moved -data-list-register-names...
10896         (gdb-stopped): ...here so it's sent when first thread stops.
10897         (gdb-registers-handler-custom): Do nothing if register names are
10898         unknown yet.
10900         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
10901         from `gdb-mi.el' to avoid extra tangling.
10903         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
10904         change which breaks `gud-def' definitions used in `gdb'.
10905         (gdb-update-gud-running): No extra fuss for updating frame number.
10907 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10909         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
10910         (describe-language-environment-map, setup-language-environment-map)
10911         (set-coding-system-map): Move initialization into declaration.
10912         (set-language-info-alist): Last arg to define-key-after can be skipped.
10914         * international/quail.el (quail-completion-1): Simplify.
10915         (quail-define-rules): Use slightly more compact code.
10916         (quail-insert-decode-map): Propertize keys, compact columns.
10918         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10919         Add goto-line.
10921 2009-08-10  Miles Bader  <miles@gnu.org>
10923         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
10924         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
10925         (js2-instance-member, js2-private-member, js2-private-function-call)
10926         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
10927         (js2-magic-paren, js2-external-variable):
10928         Remove "-face" suffix from face names.
10929         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
10930         (js2-highlight-undeclared-vars, js2-peek-token)
10931         (js2-parse-function-params, js2-mode-show-errors)
10932         (js2-mode-show-warnings, js2-make-magic-delimiter)
10933         (js2-mode-highlight-magic-parens): Update to use new face names.
10935 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
10937         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
10938         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
10940 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
10942         * subr.el: Provide hashtable-print-readable.
10944         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
10945         hs-c-like-adjust-block-beginning.
10946         (hs-hide-block-at-point): Stop hiding at the beginning of
10947         hs-block-end-regexp (Bug#700).
10949 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
10951         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
10952         a macro.
10953         (gdb-registers-handler-custom): Do not fail when register names
10954         are unavailable.
10956 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
10958         * progmodes/gdb-mi.el (gdb-control-all-threads)
10959         (gdb-control-current-thread): Interactive setters for
10960         `gdb-gud-control-all-threads' to use in menu.
10961         (gdb-show-run-p): Show «Go» when process is not active.
10962         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
10963         gud/thread.xpm and gud/all.xpm.
10965 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
10967         * net/net-utils.el (net-utils-font-lock-keywords): New var.
10968         (nslookup-font-lock-keywords): Make it a variable.
10969         (net-utils-mode): New mode for viewing diagnostic network output.
10970         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
10971         (net-utils-run-simple): New function.
10972         (ifconfig, iwconfig, netstat, arp, route): Use it.
10974 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
10976         * progmodes/gdb-mi.el (gdb-read-memory-custom)
10977         (gdb-memory-set-address, def-gdb-set-positive-number)
10978         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
10979         after changing settings.
10980         (gdb-invalidate-disassembly): Update when first shown.
10981         (gdb-edit-locals-value): Fixed.
10982         (gdb-registers-handler-custom): Print registers in right order and
10983         allow changing register values (only for current thread yet).
10984         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
10985         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
10986         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
10987         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
10988         info in mode name.
10989         (gdb-registers-mode-map): TAB to switch to locals.
10991 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
10993         * mail/rmail.el (rmail-add-mbox-headers)
10994         (rmail-set-message-counters-counter): Search for
10995         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
10997 2009-08-08  Glenn Morris  <rgm@gnu.org>
10999         * Makefile.in (ELCFILES): Update.
11001 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
11003         * mail/sendmail.el (mail-yank-original): Set
11004         buffer-file-coding-system from the one used by the message whose
11005         text is yanked.
11007         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
11008         to "windows" when "pgnuplot" is used.
11009         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
11010         call accept-process-output if "pgnuplot" is used.
11011         (calc-graph-init): Don't send -display and -geometry to
11012         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
11013         running "pgnuplot -V" with shell-command-to-string.
11015         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
11016         the default.
11018 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
11020         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
11021         org/org-latex.elc.
11023 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
11025         * vc-dispatcher.el (vc-resynch-window): Update comment.
11027         * term.el (term-handle-ansi-escape): Add comments with the
11028         terminfo capabilities implemented.
11030 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
11032         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
11033         (gdb-var-create-handler): Rewritten using JSON parser.
11034         (gdb-propertize-header): Moved earlier.
11035         (gdb-set-header): Removed to avoid duplication.
11036         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
11037         Refresh disassembly buffers only after threads list have been
11038         update.
11039         (gdb-threads-header, gdb-registers-header): Per-buffer header line
11040         variables.
11042 2009-08-04  Juri Linkov  <juri@jurta.org>
11044         * files.el: Commands to add/delete file/directory-local variables.
11045         (read-file-local-variable, read-file-local-variable-value)
11046         (read-file-local-variable-mode, modify-file-local-variable)
11047         (modify-file-local-variable-prop-line)
11048         (modify-dir-local-variable): New functions.
11049         (add-file-local-variable, delete-file-local-variable)
11050         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
11051         (add-dir-local-variable, delete-dir-local-variable)
11052         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
11053         (copy-dir-locals-to-file-locals-prop-line): New commands.
11055 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
11057         * abbrev.el (insert-abbrev-table-description): Prettify output.
11058         Suggested by Karl Chen.
11060 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
11062         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
11063         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
11064         (gdb-overlay-arrow-position, gdb-thread-position)
11065         (gdb-disassembly-position): Declare variables.
11066         (gdb-wait-for-pending): Function now.
11067         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
11068         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
11069         compilation goes smoothly.
11070         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
11071         (gdb-non-stop-setting): New customization setting which replaces
11072         `gdb-non-stop' so changing it doesn't break active GDB session.
11073         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
11074         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
11075         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
11076         (gdb-show-threads-by-default): New customization options.
11077         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
11078         routines.
11079         (gdb-get-buffer-create): Send buffers update signal when they are
11080         created.
11081         (gdb-invalidate-locals, gdb-invalidate-registers)
11082         (gdb-invalidate-breakpoints)
11083         (gdb-invalidate-threads, gdb-invalidate-disassembly)
11084         (gdb-invalidate-memory): Accept update signal.
11085         (gdb-current-context-command): Use --frame option.
11086         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
11087         Implement `gdb-frame-number' selection logic.
11088         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
11089         whether to show GUD toolbar buttons.
11090         (gdb-thread-exited): Unselect current thread when it exits.
11091         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
11092         (gdb-mark-line): Routine which sets overlay arrow or inverses
11093         video on fringeless displays.
11094         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
11095         to build aligned columns of data in GDB buffers and set text
11096         properties line-by-line.
11097         (gdb-invalidate-breakpoints)
11098         (gdb-breakpoints-list-handler-custom)
11099         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
11100         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
11101         (gdb-registers-handler-custom): Align data columns.
11102         (gdb-locals-handler-custom): Now prints data like in variable
11103         declarations.
11104         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
11105         Removed confusing buttons.
11106         (gdb-invalidate-threads): Append --frame.
11107         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
11108         between breakpoints/threads buffers.
11109         (gdb-set-window-buffer): Now can ignore dedicated windows.
11110         (gdb-propertize-header): Use `gdb-set-window-buffer'.
11111         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
11112         (def-gdb-thread-buffer-gud-command): Replaces
11113         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
11114         for fine thread control.
11115         (gdb-preempt-existing-or-display-buffer): New function used to
11116         display bound buffers without breaking window layout.
11117         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
11118         (gdb-select-frame): New version of `gdb-frames-select' which now
11119         sets `gdb-frame-number' so commands may use --frame option instead
11120         of inner debugger state.
11121         (gdb-frame-handler): Do not set `gdb-frame-number'.
11122         (gdb-threads-mode-map): Select threads with mouse.
11124         * progmodes/gud.el (gdb-gud-context-call): Declare function to
11125         avoid compilation warning.
11126         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
11127         `gdb-show-stop-p`.
11129         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
11130         Argument `key' renamed to `buffer-type'.
11131         (gdb-current-context-buffer-name): Do not add thread info to
11132         buffer name when no thread is selected.
11133         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
11134         command (bug 3794).
11135         (gdb-thread-selected): Handle `=thread-selected' notification.
11136         (gdb-wait-for-pending): New macro to deal with congestion problems.
11137         (gdb-breakpoints-list-handler-custom): Don't fail on pending
11138         breakpoints.
11139         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
11140         This fixes problem similar to one described in bug 3947.
11141         (gud-menu-map): More menu items.
11142         (gdb-init-1): Reset `gdb-thread-number' to nil.
11144         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
11145         non-stop settings.
11147         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
11148         (gdb-current-context-command): Do not append --thread if
11149         `gdb-thread-number' is nil.
11150         (gdb-running-threads-count, gdb-stopped-threads-count): New
11151         variables.
11152         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
11153         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
11154         customization options.
11155         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
11156         GUD commands.
11157         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
11158         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
11159         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
11160         set `gdb-thread-number' and update `gud-running' properly.
11161         (gdb-running): Update threads list when new threads appear.
11162         (gdb-stopped): Support non-stop operation and new thread switching
11163         logic.
11164         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
11165         (gdb-json-partial-output): New set of JSON routines.
11166         (def-gdb-auto-update-trigger): New `signal-list' optional
11167         argument.
11168         (gdb-thread-list-handler-custom): Update `gud-running',
11169         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
11170         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
11171         (gdb-continue-thread, gdb-step-thread): New commands for fine
11172         thread execution control.
11173         (gud-menu-map): New menu items to switch non-stop options.
11174         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
11175         (gdb-send): Mimic RET properly (bug 3794).
11177         * progmodes/gdb-mi.el (gdb-rules-name-maker)
11178         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
11179         gdb-buffer-rules.
11180         (def-gdb-auto-update-handler): New nopreserve optional argument.
11181         (gdb-stack-list-frames-custom): Print stack from top to bottom.
11183         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
11184         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
11185         (gdb-parent-mode): New mode to derive other GDB modes from.
11186         (gdb-display-disassembly-for-thread)
11187         (gdb-frame-disassembly-for-thread): New commands for threads
11188         buffer.
11190         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
11191         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
11192         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
11193         (gdb-update): We now store all GDB buffers in a list so that they
11194         can be updated by traversing a list instead of calling invalidate
11195         triggers explicitly.
11196         (def-gdb-trigger-and-handler): New macro to define trigger-handler
11197         pair for GDB buffer.
11198         (gdb-stack-buffer-name): Add thread information.
11199         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
11200         handle pending triggers.
11201         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
11202         (def-gdb-thread-buffer-simple-command)
11203         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
11204         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
11205         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
11206         New commands which show buffers bound to thread.
11207         (gdb-stack-list-locals-regexp): Removed unused regexp.
11209         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
11210         (gdb-locals-buffer-name, gdb-registers-buffer-name)
11211         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
11212         to (gud-comint-buffer) in *-buffer-name functions
11213         because (gdb-get-target-string) already does that.
11214         (gdb-locals-handler-custom, gdb-registers-handler-custom)
11215         (gdb-changed-registers-handler): Rewritten without regexps.
11217         * progmodes/gdb-mi.el: Basic thread selection support.
11218         (gdb-thread-number): New variable.
11219         (gdb-current-context-command): New macro which adds --thread
11220         option to command.
11221         (gdb-threads-mode-map): Select thread with SPC.
11222         (gdb-thread-list-handler-custom): Mark current thread with overlay
11223         arrow.  Synchronize GDB thread and Emacs thread.
11224         (gdb-select-thread): New command which selects current thread.
11225         (gdb-invalidate-frames, gdb-invalidate-locals)
11226         (gdb-invalidate-registers): Use --thread option.
11228 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
11230         * net/tramp.el (top): Make check for tramp-gvfs loading more
11231         robust.  (Bug#3977)
11232         (tramp-handle-insert-file-contents): `unwind-protect' must be
11233         inside `with-parsed-tramp-file-name'.
11235         * net/tramp-gvfs.el (top): Remove superfluous message when loading
11236         fails.
11238 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
11240         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
11241         directory if CLASSPATH is not set.
11243 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
11245         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
11246         New defconst.
11247         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
11249 2009-08-02  Kevin Ryde  <user42@zip.com.au>
11251         * net/newst-backend.el (newsticker--raw-url-list-defaults):
11252         Update freshmeat link.  Delete newsforge.com as it seems gone.
11254 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
11256         * select.el (x-set-selection): Doc fix (Bug#4021).
11258         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
11260         * help-fns.el (describe-variable): Treat list return values from
11261         dir-locals-find-file properly (Bug#4005).
11263 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
11265         * net/tramp.el (tramp-debug-message): Print also microseconds.
11267 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
11269         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
11270         or END is non-nil.
11271         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
11272         (tramp-get-debug-buffer): Change `outline-regexp' according to new
11273         format.
11275         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
11276         (tramp-get-file-property): Use it.
11278         * autorevert.el (auto-revert-handler): Allow
11279         `auto-revert-tail-mode' for remote files.
11281 2009-08-02  Jason Rumney  <jasonr@gnu.org>
11283         * minibuffer.el (read-file-name): Treat confirm options to
11284         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
11286 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
11288         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
11289         (font-lock-variable-name-face, font-lock-constant-face): Darken
11290         the colors for light backgrounds.
11292 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
11294         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
11295         month names.  (Bug#3987)
11297 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
11299         * simple.el (line-move-finish): Pass whole number to
11300         line-move-to-column.
11301         (line-move-visual): Perform hscroll to the recorded position.
11303 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
11305         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
11307 2009-07-29  Alan Mackenzie  <acm@muc.de>
11309         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
11311 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
11313         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
11314         (gdb-place-breakpoints): Use full path when setting breakpoints.
11316 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
11318         * calc/calc.el (calc-mode-map): Add keybinding for
11319         `calc-transpose-lines'.
11321 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
11323         * calc/calc-misc.el (calc-transpose-lines): New function.
11325 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
11327         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
11328         Simplify check for out-of-band methods.
11329         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
11330         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
11332 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
11334         * vc-git.el (vc-git-checkin): Fix typo.
11336 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
11338         * progmodes/js2-mode.el: New file.
11340 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
11342         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
11343         (gud-menu-map): Adjust tooltip accordingly.
11345 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
11347         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
11348         (vc-bzr-log-view-mode): Adjust log-view-file-re.
11350         * add-log.el (change-log-mode-map): Add a menu.
11352 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
11354         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
11355         function returns nil.
11356         (dbus-handle-event): Handle special return value :ignore.
11357         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
11359 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
11361         * view.el (view-mode-enable): Don't define Helper-return-blurb if
11362         it's not needed.
11364 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
11366         Fix Bug#3888:
11368         * w32-vars.el (x-select-enable-clipboard): Doc fix.
11370         * term/pc-win.el (x-display-name, x-colors)
11371         (x-select-enable-clipboard, x-select-text): Doc fix.
11373         * term/common-win.el (x-display-name, x-colors): Doc fix.
11375         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
11376         (xw-defined-colors): Doc fix.
11378         * w32-fns.el (x-select-text, x-setup-function-keys)
11379         (x-get-selection, x-set-selection): Doc fix.
11381         * term/x-win.el (x-select-text, x-setup-function-keys)
11382         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
11384         * select.el (x-set-selection): Doc fix.
11386 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
11388         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
11389         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
11390         "IsNSSSupportAvailable" method is not available.  Reported by
11391         Steve Youngs <steve@sxemacs.org>.
11393 2009-07-24  Kenichi Handa  <handa@m17n.org>
11395         * international/characters.el: Fix setting of category ?C, ?|, ?K,
11396         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
11397         (build-unicode-category-table): Fix range checks.
11399 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
11401         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
11402         the buffer we try to sync is current when calling
11403         vc-resynch-buffer.
11405         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
11406         not show up to date files.
11408 2009-07-24  Glenn Morris  <rgm@gnu.org>
11410         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
11411         Add autoload cookies.  If necessary, initialize.
11412         (elint-log): Handle non-file buffers.
11413         (elint-initialize): Add optional argument to reinitialize.
11414         (elint-find-builtin-variables): Save excursion.
11416 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
11418         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
11419         for Lint.
11421 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
11423         * vc.el (vc-print-log-internal): New function, split out from ...
11424         (vc-print-log): ... here.
11425         (vc-dir-move-to-goal-column): Declare.
11427         * vc-git.el (vc-git-add-signoff): New variable.
11428         (vc-git-checkin): Use it.
11429         (vc-git-toggle-signoff): New function.
11430         (vc-git-extra-menu-map): Bind it to menu.
11431         (vc-git--run-command-string): Accept a nil FILE argument.
11432         (vc-git-stash-list): New function.
11433         (vc-git-dir-extra-headers): Use it.
11435 2009-07-23  Glenn Morris  <rgm@gnu.org>
11437         * help-fns.el (describe-variable): Describe ignored and risky local
11438         variables in a similar way to that in which we describe safe ones.
11440         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
11441         (byte-compile-output-file-form, byte-compile-output-docform)
11442         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
11443         Give some more local variables with common names a "bytecomp-" prefix,
11444         so as not to shadow things during compilation.
11445         * emacs-lisp/cl-macs.el (load-time-value)
11446         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
11447         `outbuffer' to `bytecomp-outbuffer'.
11449         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
11450         since the next two variables cover them automatically now.
11451         (elint-builtin-variables, elint-autoloaded-variables): New.
11452         (elint-unknown-builtin-args): Remove all members, since they can be
11453         parsed automatically now.
11454         (elint-extra-errors): New.
11455         (elint-env-add-env, elint-env-add-macro): Use cadr.
11456         (elint-current-buffer): Use or.  Change final message.
11457         (elint-get-top-forms): Use line-end-position.
11458         (elint-init-env): Use cadr.  Handle autoload, declare-function,
11459         and defalias.
11460         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
11461         (regexp-assoc): Remove unused function.
11462         (elint-top-form): Set elint-current-pos, to record the start of the
11463         top-level form, for compilation-mode.
11464         (elint-form): Trap errors in macro expansion.  Use dolist.
11465         (elint-unbound-variable): Use elint-builtin-variables and
11466         elint-autoloaded-variables.
11467         (elint-get-args): Use cadr, or.
11468         (elint-check-cond-form): Use dolist, cadr.
11469         (elint-check-condition-case-form): Doc fix.  Use cadr.
11470         Use elint-extra-errors.
11471         (elint-log): New function.
11472         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
11473         Distinguish errors and warnings.
11474         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
11475         Use a bytecomp-style format.
11476         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
11477         (elint-get-log-buffer): Use compilation mode.  Disable undo.
11478         Don't truncate lines.
11479         (elint-initialize): Set builtin and autoloaded variable lists.
11480         Only process elint-unknown-builtin-args if non-nil.
11481         (elint-find-builtin-variables, elint-find-autoloaded-variables):
11482         New functions.
11483         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
11485 2009-07-22  Kevin Ryde  <user42@zip.com.au>
11487         * net/newst-backend.el (newsticker--parse-atom-1.0)
11488         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
11489         (newsticker--parse-rss-1.0):
11490         * progmodes/idlwave.el (idlwave-mode):
11491         * progmodes/idlw-shell.el (idlwave-shell-mode):
11492         * progmodes/vera-mode.el (vera-mode):
11493         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
11494         * progmodes/vhdl-mode.el (vhdl-mode):
11495         * textmodes/table.el (table-generate-source)
11496         (table--warn-incompatibility):
11497         Hyperlink urls in docstrings with URL `...'.
11499 2009-07-22  Glenn Morris  <rgm@gnu.org>
11501         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
11502         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
11503         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
11504         Remove leading * from defcustom docs.
11506         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
11508         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
11509         defcustom doc.
11510         (list-load-path-shadows): Optionally, just return shadows as a string.
11512         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
11514 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
11516         * mail/rmailedit.el (rmail-edit-mode): Use
11517         auto-save-include-big-deletions.
11519         * mail/rmail.el (rmail-variables): Use
11520         auto-save-include-big-deletions.
11522         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
11523         changes.
11525 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
11527         * calc/calc.el (calc-undo-length): New variable.
11528         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
11530 2009-07-21  Richard Stallman  <rms@gnu.org>
11532         * files.el (auto-save-mode): Handle buffer-save-size = -2
11533         for toggling mode.
11535 2009-07-21  Glenn Morris  <rgm@gnu.org>
11537         * textmodes/ispell.el (ispell-looking-back): Update declaration.
11539         * calendar/todo-mode.el (calendar-current-date): Update declaration.
11541         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
11542         silence compiler.  Instead...
11543         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
11544         (ps-print-ensure-fontified): Update for above function name changes.
11546         * printing.el (pr-mh-get-msg-num, pr-mh-show)
11547         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
11548         silence compiler.  Instead...
11549         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
11550         (mh-show-buffer): Only define for compiler.
11551         (pr-mh-current-message): Update for above function name changes.
11553         * files.el (abort-if-file-too-large): Explicitly pass `filename'
11554         as an argument.
11555         (find-file-noselect, insert-file-1): Update for above change.
11557         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
11559         * mail/mailclient.el (mailclient-send-it): Fix message.
11561         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
11562         (edebug-eval): Check cl-debug-env is bound.
11563         (print-level, print-circle): Don't redefine built-in variables.
11565         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
11566         (custom-print-vectors): Remove old comments from doc.
11568         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
11569         (emerge-version): Make the variable an obsolete alias for the
11570         emacs-version variable.  Make the function obsolete.
11571         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
11572         Emerge options, rather than merging in into the main Options menu.
11573         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
11574         and auto advance modes.  Disable edit/fast items when not relevant.
11576 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
11578         * term/vt420.el (terminal-init-vt420): Fix typo.
11580 2009-07-20  Sam Steingold  <sds@gnu.org>
11582         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
11583         variable (removed from compile.el on 2004-03-11).
11585 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
11587         * files.el (hack-local-variables-filter): Fix last change.
11589 2009-07-19  Juri Linkov  <juri@jurta.org>
11591         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
11592         (dir-local-variables-alist): New buffer-local variable.
11593         (hack-local-variables-filter): If variable is not dir-local,
11594         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
11595         because file-local overrides dir-local.
11596         (c-postprocess-file-styles) <declare-function>:
11597         Remove obsolete declaration.
11598         (hack-dir-local-variables): Add dir-local variable/value pair to
11599         `dir-local-variables-alist' and remove duplicates.  Doc fix.
11601         * help-fns.el (describe-variable): Add information about
11602         file-local and dir-local variables.
11604 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
11606         * files.el (hack-local-variables-filter): Rewrite.
11608 2009-07-19  Glenn Morris  <rgm@gnu.org>
11610         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
11611         Silence compiler by only defining on XEmacs.
11613         * international/mule.el (auto-coding-regexp-alist): Only match
11614         BABYL... at the start of buffer, not of lines.  (Bug#3790)
11616         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
11617         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
11618         (cal-menu-context-mouse-menu): Doc fix.
11620         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
11622         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
11624 2009-07-18  Juri Linkov  <juri@jurta.org>
11626         * info.el: Virtual Info keyword finder.
11627         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
11628         (Info-finder-file): New variable.
11629         (Info-finder-find-file): New function.
11630         (finder-known-keywords, finder-package-info)
11631         (find-library-name, lm-commentary): Use defvar and
11632         declare-function to silence compiler warnings.
11633         (Info-finder-find-node): New function.
11634         (info-finder): New command.
11636         * subr.el (process-kill-buffer-query-function): New function.
11637         (add-hook)<kill-buffer-query-functions>: Add hook
11638         `process-kill-buffer-query-function'.
11640 2009-07-18  Alan Mackenzie  <acm@muc.de>
11642         * progmodes/cc-mode.el (c-before-hack-hook)
11643         (c-postprocess-file-styles): Give invocation of `c-set-style'
11644         DONT-OVERRIDE parameter of t.  Already set style variables will
11645         thus not be overridden by style settings given by `c-file-syle'.
11647         * files.el (hack-local-variables-filter): Remove entries with
11648         duplicate keys from `file-local-variables-alist'.
11650 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
11652         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
11653         x-set-selection if display-selections-p returns nil for the
11654         current frame.
11656 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
11658         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
11660 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
11662         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
11663         Accept nil in addition to a regexp.
11664         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
11665         Accept nil in addition to a regexp.
11666         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
11667         buffers that have an associated file.  Handle nil values of
11668         desktop-buffers-not-to-save and desktop-files-not-to-save.
11669         (Bug#3833)
11671         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
11672         (x-disown-selection-internal): New functions.
11674 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
11676         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
11677         warning.
11678         (gdb-breakpoints-header): Move forward to avoid compiler warning.
11679         (gdb-make-header-line-mouse-map): Remove duplicate definition.
11681 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
11683         * simple.el (set-mark): Revert last change.
11685 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
11687         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
11688         rendering of pngs is not possible instead of messaging a long
11689         description.
11691 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
11693         * w32-fns.el (x-selection-owner-p): New function.
11695         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
11696         (mouse-yank-at-click, mouse-yank-primary): If
11697         select-active-regions is non-nil, deactivate the mark before
11698         insertion.
11700         * simple.el (deactivate-mark, set-mark): Only save selection if we
11701         own it.
11703 2009-07-17  Kenichi Handa  <handa@m17n.org>
11705         * case-table.el (describe-buffer-case-table): Fix for the case
11706         that KEY is a cons.
11708 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
11710         * vc-rcs.el (vc-rcs-find-file-hook):
11711         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
11713 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
11715         * net/tramp.el (tramp-wait-for-output): Handle the case when
11716         commands do not return a newline but a null byte before the shell
11717         prompt.  (Bug#3858)
11719 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11721         * term/ns-win.el (ns-set-alpha): Don't declare.
11722         (ns-set-background-alpha): Remove function.
11724 2009-07-16  Kevin Ryde  <user42@zip.com.au>
11726         * emacs-lisp/copyright.el (copyright-update): Save match-data across
11727         y-or-n-p, for safety.
11729 2009-07-16  Richard Stallman  <rms@gnu.org>
11731         * files.el (auto-save-mode): If buffer-saved-size is -2,
11732         don't clobber it.
11734         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
11735         (rmail-retry-ignored-headers): Add more uninteresting fields.
11737 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
11739         * net/rcirc.el (rcirc): Use history variables.
11740         (rcirc-server-name-history, rcirc-nick-name-history)
11741         (rcirc-server-port-history): New variables.
11743 2009-07-15  Kenichi Handa  <handa@m17n.org>
11745         * international/mule-cmds.el (set-language-environment-charset):
11746         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
11747         ignore them.
11749         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
11750         Delete unibyte-display.
11752 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
11754         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
11756 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
11758         * simple.el (deactivate-mark): Optional argument FORCE.
11759         (set-mark): Use deactivate-mark.
11761         * info.el (Info-search): No need to check transient-mark-mode
11762         before calling deactivate-mark.
11764         * select.el (x-set-selection): Doc fix.
11765         (x-valid-simple-selection-p): Allow buffer values.
11766         (xselect--selection-bounds): Handle buffer values.  Suggested by
11767         David De La Harpe Golden.
11769         * mouse.el (mouse-set-region, mouse-drag-track): Call
11770         copy-region-as-kill before setting the mark, to let
11771         select-active-regions work.
11773 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
11775         * simple.el (deactivate-mark): If select-active-regions is
11776         non-nil, copy the selection data into a string.
11777         (activate-mark): If select-active-regions is non-nil, set the
11778         selection to the current buffer.
11779         (set-mark): Update selection if select-active-regions is non-nil.
11781         * select.el (x-valid-simple-selection-p): Allow buffer values.
11783 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11785         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
11786         and more featureful message-mode.
11788 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
11790         * select.el (x-set-selection): Doc fix.
11791         (x-valid-simple-selection-p): Disallow selection data consisting
11792         of a list or cons of integers, since that is not used.
11793         (xselect--selection-bounds, xselect--int-to-cons): New functions.
11794         (xselect-convert-to-string, xselect-convert-to-length)
11795         (xselect-convert-to-filename, xselect-convert-to-charpos)
11796         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
11798 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
11800         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
11801         output in -break-info command (Emacs bug #3794).
11803 2009-07-14  Glenn Morris  <rgm@gnu.org>
11805         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
11806         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
11807         (edebug-print-length, edebug-print-level, edebug-print-circle)
11808         (edebug-sit-for-seconds, edebug-view-outside)
11809         (edebug-bounce-point, edebug-set-global-break-condition)
11810         (edebug-Go-nonstop-mode, edebug-trace-mode)
11811         (edebug-Trace-fast-mode, edebug-continue-mode)
11812         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
11813         (edebug-visit-eval-list): Doc fixes.
11815         * subr.el (def-edebug-spec): Doc fix.
11817 2009-07-14  Kenichi Handa  <handa@m17n.org>
11819         * international/characters.el: Fix setting of category ?C.
11821 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
11823         * term/ns-win.el (x-select-font): defalias x-select-font to
11824         ns-popup-font-panel instead of generate-fontset-menu.
11826 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
11828         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
11830 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
11832         * arc-mode.el (archive-find-type): Allow for a PK00 string before
11833         the PK\003\004 header (Bug#3770).
11835 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
11837         * pcomplete.el (pcomplete-comint-setup): Check for
11838         shell-dynamic-complete-filename too.
11840 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
11842         * simple.el (temporary-goal-column): Change the value for
11843         line-move-visual to a cons cell.
11844         (line-move-visual): Record or set the window hscroll, if
11845         necessary (Bug#3494).
11846         (line-move-1): Handle cons value of temporary-goal-column.
11848 2009-07-11  Kenichi Handa  <handa@m17n.org>
11850         * international/mule-diag.el (describe-character-set): Don't show
11851         width.
11853 2009-07-10  Sam Steingold  <sds@gnu.org>
11855         * progmodes/compile.el (compilation-mode-font-lock-keywords):
11856         Omake sometimes indents the errors it prints, so allow all
11857         regexps to start with spaces.
11859 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
11861         * cus-edit.el (customize-changed-options-previous-release):
11862         Bump value to 22.1.  (Bug#3804)
11864 2009-07-08  Sam Steingold  <sds@gnu.org>
11866         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
11867         to be a cons cell (test . ignored-directory) to selectively ignore
11868         some directories depending on the location of the search.
11870 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
11872         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
11873         remote user is root, on the local host.
11874         (tramp-local-host-p): Either the local user or the remote user
11875         must be root.  (Bug#3771)
11877 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
11879         * progmodes/gdb-mi.el (gdb): Remove description of
11880         gdb-use-separate-io-buffer.
11881         (menu): Don't allow toggling of or enable
11882         gdb-use-separate-io-buffer from menubar.
11884 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
11886         * mail/unrmail.el (unrmail): Make sure the message ends with two
11887         newlines (Bug#3769).
11889 2009-07-08  Glenn Morris  <rgm@gnu.org>
11891         * calendar/calendar.el (calendar-current-date): Rework previous change.
11893 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
11895         * calendar/calendar.el (calendar-current-date):
11896         Add an optional argument giving an offset from today.
11898 2009-07-08  Glenn Morris  <rgm@gnu.org>
11900         * tutorial.el (tutorial--describe-nonstandard-key):
11901         Adjust the message for when a key has been unbound.
11902         (help-with-tutorial): Hide the arch-tag.
11904 2009-07-08  Kenichi Handa  <handa@m17n.org>
11906         * international/fontset.el (setup-default-fontset): For each
11907         script, append (not set) font-specs.
11909         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
11910         docstring.
11912 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
11914         * progmodes/gdb-mi.el (gdb-init-1): Move sending
11915         -data-list-register-names to ...
11916         (gdb-starting): ... here because GDB 7.0 requires execution to
11917         have started when using this MI command.
11918         (gdb-set-header): New function to distinguish select and
11919         unselected tabs in gdb buffers.
11920         (gdb-propertize-header): New macro that uses gdb-set-header.
11921         (gdb-breakpoints-header, gdb-locals-header): Use it.
11922         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
11924 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
11926         * Makefile.in (ELCFILES): Remove fadr.elc.
11928 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
11930         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
11931         may contain frame information, so `string-match' should be used.
11932         (gdb-update): Disassembly is invalidated through
11933         `gdb-get-selected-frame'.
11934         (gdb-pad-string): New function to pad string with spaces.
11935         (gdb-invalidate-disassembly): Invalidate only if the buffer
11936         exists.
11937         (gdb-disassembly-handler-custom): Column alignment.
11938         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
11939         placing new ones.
11940         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
11941         end of line, too.
11942         (gdb-frame-handler): Match convention to for disassembly buffer
11943         mode name.
11944         (gdb-stack-list-frames-handler): Rewritten without regexps.
11945         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
11946         not highlight breakpoints without line information.
11947         (gdb-input): Add trailing newline to command.
11949         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
11950         buffer properly.
11951         (gdb-breakpoints-list-handler-custom): Replacement for
11952         `gdb-break-list-handler'.  Using real parser instead of regexps
11953         now.
11954         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
11955         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
11956         to place breakpoints.
11957         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
11958         functions.
11959         (gdb-disassembly-handler-custom): Show overlay arrow.
11960         (gdb-disassembly-place-breakpoints): Show breakpoints in
11961         disassembly buffer.
11962         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
11963         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
11964         instead of parsing breakpoints buffer.  Fixed old menu references
11965         in `gud-menu-map'.
11967         * fadr.el: Remove.
11969         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
11970         (gdb-memory-address): New variable which holds top address of
11971         memory page shown in memory buffer.
11972         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
11973         customization variables.
11974         New functions:
11975         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
11976         display the memory buffer.
11977         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
11978         buffer display parameters.
11979         (def-gdb-memory-format, gdb-memory-format-binary)
11980         (gdb-memory-format-octal, gdb-memory-format-unsigned)
11981         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
11982         Functions for setting memory buffer format.
11983         (gdb-memory-unit-word, gdb-memory-unit-halfword)
11984         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
11985         unit size used in memory buffer.
11986         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
11987         to next/previous page of memory buffer.
11988         Now using (bindat-get-field) instead of fadr functions.
11990 2009-07-07  Sam Steingold  <sds@gnu.org>
11992         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
11993         non-top-level files.
11995 2009-07-07  Kenichi Handa  <handa@m17n.org>
11997         * international/mule-cmds.el (reset-language-environment): Put
11998         the highset priority to the charset iso-8859-1.
12000 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
12002         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
12003         to the end of the line when locating the block (Bug#700).
12005 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
12007         * net/tramp.el (tramp-handle-write-region): Flush file properties
12008         in case of short track.
12010 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
12012         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
12013         Coded custom representation of verilog error regular expressions
12014         to work with Emacs-22's new format.
12015         (verilog-error-regexp-xemacs-alist): Coded custom representation
12016         of verilog error regular expressions to work with XEmacs format.
12017         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
12018         error recognition into XEmacs.
12019         (verilog-error-regexp-add-emacs): Hook routine to install verilog
12020         error recognition into Emacs-22.
12022 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
12024         * woman.el: Remove stand-alone closing parentheses.
12025         (woman-file-name, woman2-format-paragraphs)
12026         (woman-leave-blank-lines): Code cleanup.
12027         (woman-use-own-frame): Change default to nil.
12028         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
12029         defaults to inherit from default faces.
12030         (woman2-process-escapes): Consume the newline after a stand-alone
12031         filler character (Bug#3651).
12033 2009-07-06  Glenn Morris  <rgm@gnu.org>
12035         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
12036         (top-level): Move provide to the end.
12037         (ffap): Remove defunct URL from custom group.
12039         * subr.el (eval-after-load): Doc fix.
12041 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
12043         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
12044         `calc-embedded-word' is called twice.
12046 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12048         * files.el (find-alternate-file-other-window, find-alternate-file):
12049         Obey confirm-nonexistent-file-or-buffer.
12051 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
12053         * dired-aux.el (dired-show-file-type): Handle remote files.
12055 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
12057         * desktop.el (desktop-globals-to-save):
12058         Add file-name-history (Bug#2750).
12060 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
12062         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
12064 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
12066         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
12067         property on entire argument since this is what eshell-lisp-command
12068         expects.
12070 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
12072         * net/tramp-gvfs.el (tramp-gvfs-methods)
12073         (tramp-gvfs-zeroconf-domain)
12074         (tramp-bluez-discover-devices-timeout): Add version flag.
12075         (tramp-gvfs-handler-mounted-unmounted)
12076         (tramp-gvfs-connection-mounted-p): Polish handling of
12077         incompatibilities between GVFS 0.2 and 1.0.
12079 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
12081         * cus-start.el (all): Add make-pointer-invisible.
12083 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
12085         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
12086         formatted correctly.
12088 2009-07-02  Juri Linkov  <juri@jurta.org>
12090         * info.el: Virtual Info files and nodes.
12091         (Info-virtual-files, Info-virtual-nodes): New variables.
12092         (Info-current-node-virtual): New variable.
12093         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
12094         New functions.
12095         (Info-file-supports-index-cookies): Use Info-virtual-file-p
12096         to check for a virtual file instead of checking a fixed list
12097         of node names.
12098         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
12099         instead of ad-hoc processing of "dir" and (apropos history toc).
12100         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
12101         instead of ad-hoc processing of "dir" and (apropos history toc).
12102         Reread a file when moving from a virtual node.
12103         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
12104         (Info-directory-toc-nodes, Info-directory-find-file)
12105         (Info-directory-find-node): New functions.
12106         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
12107         (Info-history): Move part of code to
12108         `Info-history-find-node'.
12109         (Info-history-toc-nodes, Info-history-find-file)
12110         (Info-history-find-node): New functions.
12111         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
12112         (Info-toc): Move part of code to `Info-toc-find-node'.
12113         (Info-toc-find-node): New function.
12114         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
12115         the current Info file name to references because now the node
12116         "*TOC*" belongs to the same Info manual.
12117         (Info-toc-build): Rename from `Info-build-toc'.
12118         (Info-toc-nodes): Rename input argument `file' to `filename'.
12119         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
12120         instead of ad-hoc processing of ("dir" apropos history toc).
12121         (Info-index-nodes): Use Info-virtual-file-p
12122         to check for a virtual file instead of checking a fixed list
12123         of node names.
12124         (Info-index-node): Add check for `Info-current-node-virtual'.
12125         Raise `save-match-data' higher up the tree to contain
12126         `search-forward' too (bug fix).
12127         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
12128         (Info-virtual-index-nodes): New variable.
12129         (Info-virtual-index-find-node, Info-virtual-index): New functions.
12130         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
12131         (Info-apropos-file, Info-apropos-nodes): New variables.
12132         (Info-apropos-toc-nodes, Info-apropos-find-file)
12133         (Info-apropos-find-node, Info-apropos-matches): New functions.
12134         (info-apropos): Move part of code to `Info-apropos-find-node' and
12135         `Info-apropos-matches'.
12136         (Info-mode-map): Bind "I" to `Info-virtual-index'.
12137         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
12138         for a virtual file instead of checking a fixed list of node names.
12140         * simple.el (async-shell-command): New command.
12142         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
12144         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
12145         instead of `mount-info'.
12147 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
12149         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
12150         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
12152 2009-07-02  Kenichi Handa  <handa@m17n.org>
12154         * international/mule.el (set-keyboard-coding-system): Force *-unix
12155         coding-system to avoid eol conversion.
12157 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
12159         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
12160         Add handler for `process-file', `shell-command' and
12161         `start-file-process'.
12162         (tramp-gvfs-handle-shell-command)
12163         (tramp-gvfs-handle-start-file-process)
12164         (tramp-gvfs-handle-process-file): New defuns.
12165         (tramp-synce-list-devices): Simplify check for existence of property.
12167 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
12169         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
12171 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
12173         * language/korean.el (set-language-info-alist): Add korean-cp949,
12174         cp949 to spec.
12176 2009-07-01  Kenichi Handa  <handa@m17n.org>
12178         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
12180         * international/encoded-kb.el: Deleted.
12182         * international/mule.el (set-keyboard-coding-system): Perform the
12183         necessary setup here instead of calling encoded-kbd-setup-display.
12185 2009-07-01  Glenn Morris  <rgm@gnu.org>
12187         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
12189 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
12191         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
12193 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
12195         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
12196         Handle also the 'rename case, when setting file modes.  (Bug#3712)
12197         (tramp-default-file-modes): Remove execute permissions.
12199         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
12200         (top): Add a default for "synce" in `tramp-default-user-alist'.
12201         Add completion function for "synce" method.
12202         (tramp-hal-service, tramp-hal-path-manager)
12203         (tramp-hal-interface-manager, tramp-hal-interface-device):
12204         New defconst.
12205         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
12206         (tramp-synce-list-devices, tramp-synce-parse-device-names):
12207         New defuns.
12209         * net/trampver.el: Update release number.
12211 2009-06-30  Kenichi Handa  <handa@m17n.org>
12213         * international/fontset.el (setup-default-fontset): Add CJK fonts
12214         for symbols and the other miscellaneous characters.
12216         * language/korea-util.el (setup-korean-environment-internal):
12217         Make char-width-table suitable for Korean environments.
12218         (exit-korean-environment): Cancel above.
12220         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
12221         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
12222         setup-function to make char-width-table suitable for respective
12223         environments, and an exit-function to cancel that.
12225         * language/japan-util.el (setup-japanese-environment-internal):
12226         Call use-cjk-char-width-table with arg `ja_JP'.
12228         * international/characters.el (cjk-char-width-table): Delete it.
12229         (cjk-char-width-table-list): New variable.
12230         (use-cjk-char-width-table): New arg local-name.
12231         (use-default-char-width-table): Fix for the case that Emacs is
12232         already using the default char-width-table.
12234 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
12236         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
12237         modes mandatory.  (Bug#3712)
12239 2009-06-29  Alan Mackenzie  <acm@muc.de>
12241         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
12242         correction between the visible width of TABs and their number of bytes.
12244 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
12246         * server.el (server-buffer-done): Prevent kill-buffer from
12247         prompting by clearing the buffer modification flag (Bug#3696).
12249 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
12251         * progmodes/verilog-mode.el (verilog-beg-of-statement)
12252         (verilog-endcomment-reason-re): Support unique case and priority case.
12253         (verilog-basic-complete-re): Support localparam lineup.
12254         (verilog-beg-of-statement-1): Fix for robustness, unique case.
12255         (verilog-set-auto-endcomments): Fix for unique case, always_comb
12256         commenting.
12257         (verilog-leap-to-case-head): Now support *nested* unique &
12258         priority case statements.
12259         (verilog-auto-lineup): Make just declarations the default (as it
12260         had been).
12261         (verilog-leap-to-case-head): Support priority/unique case statements.
12262         (verilog-auto-lineup): Rework to give users radio buttons to
12263         select the various styles of automatic lineup.
12264         (verilog-error-regexp-alist): Rework to support the XEmacs style
12265         of error regular expressions from compilers, lint tools &
12266         simulators.  Note that GNU Emacs has made it impossible for a mode
12267         to load such things.
12268         (electric-verilog-terminate-line, verilog-indent-declaration)
12269         (verilog-auto-wiure): Rework for radio button selection of
12270         auto-lineup selection of specification of auto lineup.
12271         (verilog-beg-of-statement-1): Redesign to support proper operation
12272         in additional code, based on testing with auto-lineup.
12273         (verilog-calculate-indent, assignments & declarations)
12274         (verilog-backward-token): Enhance to support auto-lineup of
12275         assignments & declarations.
12276         (verilog-in-directive-p, verilog-at-struct-p): New function for
12277         easy test of whether we are.
12278         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
12279         to support safe execution at almost anyline.
12280         (verilog-calc-1): Properly support indenting deep inside generate
12281         blocks.
12282         (verilog-init-font): Remove definition & use of verilog-init-font,
12283         as it is redundant with font-lock-defaults.
12284         (verilog-mode): Alter the definition of verilog-font-lock-defaults
12285         to avoid circular calls if syntax-ppss is a function (as is the
12286         case now in 22.x GNU Emacs) as that function would sometimes call
12287         itself, leading to (nearly) infinite recursion.
12288         (verilog-ovm-begin-re, verilog-ovm-end-re)
12289         (verilog-ovm-statement-re, verilog-leap-to-head)
12290         (verilog-backward-token): Add support for OVM macros.  Some are
12291         complete statements, and others open and close scopes like begin
12292         and end.
12293         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
12294         (verilog-defun-level-generate-only-re): Really fix the defun-list
12295         compilation issue.
12296         (verilog-calc-1, verilog-beg-of-statement): Enhance support for
12297         coverpoint, constraint and cross statements.
12298         (verilog-defun-level-list, verilog-generate-defun-level-list)
12299         (verilog-all-defun-level-list): Redo these specifications - it is
12300         too hard to support eval-when compile aggregation of lists also
12301         built at when-compile time.
12302         (verilog-defun-level-list): Place defconsts of variables used in
12303         building regular expressions which are built in eval-when-compile
12304         bodies in the same eval-when-compile body to facilitate compile
12305         without load.
12306         (verilog-beg-block-re-ordered): Support indenting
12307         virtual/protected tasks and functions.
12308         (verilog-defun-level-list, verilog-in-generate-region-p)
12309         (verilog-backward-ws&directives, verilog-calc-1): Speed up
12310         indentation of some module items (generate items).
12311         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
12312         across virtual/protected tasks and functions.
12314 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
12316         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
12317         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
12318         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
12319         in concatenations.  Reported by Yishay Belkind.
12320         (verilog-auto-ascii-enum): Support one-hot state machines in
12321         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
12322         (verilog-auto-inst, verilog-auto-inst-port): Include interface
12323         modport in AUTOINST and add vl-modport for users.  Reported by
12324         David Rogoff.
12325         (verilog-auto-inout-module, verilog-auto-inst)
12326         (verilog-decls-get-interfaces, verilog-insert-definition)
12327         (verilog-insert-one-definition, verilog-read-decls)
12328         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
12329         (verilog-sig-modport, verilog-signals-combine-bus)
12330         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
12331         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
12332         Suggested by David Rogoff.
12333         (verilog-repair-open-comma): Fix non-insertion of comma when
12334         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
12335         (verilog-make-width-expression): Simplify [A-1:0] expression
12336         widths to just {A{1'b0}}.
12337         (verilog-mode): Cleanup checkdoc warnings.
12338         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
12339         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
12340         inputs/outputs or data type.  Suggested by Vasu Kandadi.
12341         (next-error-last-buffer): Fix byte-compiler warning.
12342         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
12343         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
12344         or shell command text during AUTO expansion.  Suggested by Tad Truex.
12345         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
12346         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
12347         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
12348         in AUTOINOUT.  Reported by Matthew Lovell.
12349         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
12350         causing use of <= assignments.  Reported by Alex Reed.
12351         (verilog-read-decls): Fix triand, trior, wand, wor to be
12352         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
12353         (verilog-extended-complete-re): Support import "DPI-C" functions.
12354         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
12355         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
12356         (verilog-insert-date, verilog-insert-year)
12357         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
12358         Windows systems.  Reported by Michael Potts.
12359         (verilog-read-module-name): Fix AUTOINST when the child module
12360         declaration's name is a tick define.  Reported by Elliot Mednick.
12361         (verilog-read-decls): Fix V2K parameter bit subscripts getting
12362         passed to next parameter's definition.  Reported by Bruce T.
12363         (verilog-read-decls): Fix detecting "parameter int" when using
12364         AUTOINSTPARAM.  Reported by Bruce T.
12365         (verilog-goto-defun): Fix goto not finding modules unless first
12366         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
12367         (verilog-mode): Expand -f flag arguments on entry to mode so
12368         verilog-goto-defun will work.  Reported by Lawrence Butcher.
12369         (verilog-getopt): Expand environment variables in -f file
12370         arguments.  Suggested by Lawrence Butcher.
12371         (verilog-set-define): Fix "Symbol's value as variable is void"
12372         when reading enumerations.
12373         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
12374         Suggested by Stephen Peltan.
12375         (verilog-read-defines): Fix reading of enumerations in include
12376         files.  Reported by Steve Peltan.
12378 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
12380         * files.el (trash-directory): Fix defcustom type.
12382 2009-06-28  Juri Linkov  <juri@jurta.org>
12384         * help-fns.el (describe-function-1): Correctly locate adviced
12385         functions in hyperlink (Bug#2438).
12387 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
12389         * files.el (trash-directory): Change default to nil.
12390         (move-file-to-trash): If trash-directory is nil and
12391         system-move-file-to-trash is unbound, perform freedesktop-style
12392         trashing.
12394 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
12396         * files.el (move-file-to-trash): Add freedesktop trash
12397         support (Bug#973).
12399 2009-06-28  Glenn Morris  <rgm@gnu.org>
12401         * autorevert.el (global-auto-revert-non-file-buffers)
12402         (global-auto-revert-mode): Doc fixes.
12404 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
12406         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
12408 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
12410         * faces.el (x-handle-named-frame-geometry): Ensure that we have
12411         opened an X connection before calling x-get-resource (Bug#3194).
12413         * play/doctor.el: Remove reference to obsolete website.
12414         (make-doctor-variables): Correct grammar mistake (Bug#2633).
12416 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
12418         Remove find-file-not-found-hook VC method.  (Bug#2757)
12419         * vc-hooks.el (vc-file-not-found-hook)
12420         (vc-default-find-file-not-found-hook): Remove functions.
12421         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
12422         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
12423         * vc.el:
12424         * vc-hg.el:
12425         * vc-git.el: Do not mention find-file-not-found-hook VC method.
12427 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
12429         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
12430         compatibility function for `looking-back'.
12432         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
12433         Use `ispell-looking-back'.
12435 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
12437         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
12438         rather than `filename'.
12440 2009-06-23  Miles Bader  <miles@gnu.org>
12442         * face-remap.el (text-scale-set): New function.
12444 2009-06-23  Glenn Morris  <rgm@gnu.org>
12446         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
12448         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
12450         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
12452         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
12454         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
12455         Simplify Persian conditionals.
12457         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
12458         variable `filename'.
12460         * comint.el (comint-insert-input): Doc fix.
12462         * Makefile.in (ELCFILES): Fix typo in previous change.
12464 2009-06-23  Miles Bader  <miles@gnu.org>
12466         * cus-start.el: Add entry for `recenter-redisplay'.
12468 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
12470         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
12471         Add an optional argument for the backend, use it instead of
12472         calling vc-backend.
12473         (vc-mode-line): Add an optional argument for the backend.
12474         Pass the backend to vc-state and vc-working-revision.  Move code for
12475         special handling for vc-state being a buffer to ...
12477         * vc-rcs.el (vc-rcs-find-file-hook):
12478         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
12480         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
12481         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
12482         vc-stay-local-p and vc-mode-line calls.
12484         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
12485         (vc-cvs-diff, vc-cvs-annotate-command)
12486         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
12487         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
12488         vc-mode-line calls.
12490         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
12491         direct comparison.
12492         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
12493         backend when calling vc-mode-line.
12494         (vc-register): Do not create a closure for calling the vc register
12495         function, call it directly.
12497 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
12499         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
12500         to make it obvious item can be clicked.
12502         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
12504 2009-06-23  Kenichi Handa  <handa@m17n.org>
12506         * language/korea-util.el (korean-key-bindings): Change the binding
12507         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
12508         same command.
12510 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
12512         Sync with Tramp 2.1.16.
12514         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
12516         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
12517         when a loading of a package fails.  Completion function for rsync
12518         is `tramp-completion-function-alist-ssh'.
12519         (all): Replace all calls of `split-string' and
12520         `tramp-split-string' by `tramp-compat-split-string'.
12521         (tramp-default-method): Use `tramp-compat-process-running-p'.
12522         (tramp-default-proxies-alist): Allow also Lisp forms.
12523         (tramp-remote-path): Add choice "Private Directories".
12524         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
12525         (tramp-domain-regexp): Allow also "-", "_" and ".".
12526         (tramp-end-of-output): Remove newlines, and add "$" at the end.
12527         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
12528         (tramp-debug-message): Insert header line in debug buffer.
12529         (tramp-handle-directory-files-and-attributes-with-stat):
12530         Care about filenames with spaces, or starting with "-".
12531         (tramp-handle-dired-uncache): New defun.
12532         (tramp-handle-insert-directory): Don't flush the directory from
12533         cache, this is handled by `dired-uncache' now.
12534         (tramp-handle-insert-file-contents): Improve error handling.
12535         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
12536         Quote `tramp-end-of-output'.
12537         (tramp-action-password): Improve trace message.
12538         (tramp-check-for-regexp): Both echoes must be present, before removing.
12539         (tramp-open-connection-setup-interactive-shell): Trace coding system.
12540         (tramp-compute-multi-hops): Eval cons cells of
12541         `tramp-default-proxies-alist'.
12542         (tramp-maybe-open-connection): Use the same command pattern for
12543         first hop and further hops.
12544         (tramp-wait-for-output): Remove handling of newlines.
12545         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
12546         (tramp-split-string): Remove function.  It is handled in
12547         tramp-compat now.
12549         * net/tramp-cmds.el (tramp-bug):
12550         Recommend `tramp-cleanup-all-connections' in the bug mail.
12552         * net/tramp-compat.el (tramp-compat-split-string)
12553         (tramp-compat-process-running-p): New defuns.
12555         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
12556         for `dired-uncache'.
12558         * net/tramp-gvfs.el: New package.
12560         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
12561         Add handler for `dired-uncache'.
12562         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
12564         * net/trampver.el: Update release number.  Make version check fit
12565         for SXEmacs 22.
12567 2009-06-22  Jim Meyering  <meyering@redhat.com>
12569         Automatically handle .xz suffix (XZ-compressed files), too.
12570         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
12571         XZ is the successor to LZMA: <http://tukaani.org/xz/>
12573 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
12574             Nick Roberts  <nickrob@snap.net.nz>
12576         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
12577         repository (http://sphinx.net.ru/hg/gdb-mi/).
12579 2009-06-22  Glenn Morris  <rgm@gnu.org>
12581         * files.el (dir-locals-collect-mode-variables): Allow for any number of
12582         `mode' and `eval' entries.  (Bug#3430)
12584         * Makefile.in (ELCFILES): Add fadr.elc.
12586         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
12587         differing behavior of \n and ^ in strings.  (Bug#3385)
12589         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
12591         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
12592         property.
12593         (lisp-indent-function): Make it a defcustom.
12595 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
12597         * progmodes/gdb-ui.el: Replace with ...
12598         * progmodes/gdb-mi.el: ... this file.
12599         * progmodes/gud.el: Modify for gdb-mi.el.
12601 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
12603         * fadr.el: New file.
12605 See ChangeLog.14 for earlier changes.
12607 ;; Local Variables:
12608 ;; coding: utf-8
12609 ;; End:
12611     Copyright (C) 2009, 2010  Free Software Foundation, Inc.
12613   This file is part of GNU Emacs.
12615   GNU Emacs is free software: you can redistribute it and/or modify
12616   it under the terms of the GNU General Public License as published by
12617   the Free Software Foundation, either version 3 of the License, or
12618   (at your option) any later version.
12620   GNU Emacs is distributed in the hope that it will be useful,
12621   but WITHOUT ANY WARRANTY; without even the implied warranty of
12622   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12623   GNU General Public License for more details.
12625   You should have received a copy of the GNU General Public License
12626   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
12628 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1