Allow Custom settings to be migrated into a custom theme.
[emacs.git] / lisp / ChangeLog
blobb3c24f22a6b405ac30ba918ff845ef4b1cb2f853
1 2010-10-16  Chong Yidong  <cyd@stupidchicken.com>
3         * cus-theme.el (custom-theme--migrate-settings): New var.
4         (customize-create-theme): Allow editing the `user' theme.
5         (custom-theme-add-variable, custom-theme-add-var-1)
6         (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
7         to the front of each variable or face widget.
8         (custom-theme-write): Save theme settings in the correct order.
9         Optionally, remove saved settings from user customizations.
10         (custom-theme-write-variables, custom-theme-write-faces): Saved
11         only the checked widgets.
12         (customize-themes): Add a link for migrating custom settings.
14         * custom.el (custom-declare-theme, provide-theme): Use
15         custom-theme-name-valid-p.
16         (custom-theme-name-valid-p): Remove checks that are now
17         unnecessary since themes no longer obey load-path.
19         * cus-edit.el (custom-variable-value-create): For the simple
20         style, hide documentation string when hidden.
22 2010-10-16  Chong Yidong  <cyd@stupidchicken.com>
24         * cus-edit.el (custom-variable, custom-face): Combine the
25         :inhibit-magic and :display-style properties into a single
26         :custom-style property.
27         (custom-toggle-hide-variable, custom-toggle-hide-face): New
28         functions.  If hiding an edited value, save it to :shown-value.
29         (custom-variable-value-create, custom-face-value-create): Use
30         them.
31         (custom-magic-reset): Allow magic property to be unset.
33         * custom.el: Custom themes no longer use load-path.
34         (custom-theme-load-path): New option.  Change built-in theme
35         directory to etc/.
36         (custom-enabled-themes): Add custom-theme-load-path dependency.
37         (custom-theme--load-path): New function.
38         (load-theme, custom-available-themes): Use it.
40         * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
41         (customize-themes): Link to custom-theme-load-path variable.
42         (custom-theme-add-var-1, custom-theme-add-face-1): Use the
43         :custom-style property.
45         * themes/*.el: Moved to etc/.
47 2010-10-16  Ralf Angeli  <angeli@caeruleus.net>
49         * textmodes/reftex-cite.el
50         (reftex-extract-bib-entries-from-thebibliography): Do not move
51         point when searching for \bibitem entries.  Match entries with
52         spaces or tabs in front of arguments.
54 2010-10-16  Chong Yidong  <cyd@stupidchicken.com>
56         * cus-theme.el (customize-create-theme): Delete overlays after
57         erasing.  If given a THEME arg, display only the faces of that arg
58         instead of custom-theme--listed-faces.
59         (custom-theme-variable-menu, custom-theme-variable-action)
60         (custom-variable-reset-theme, custom-theme-delete-variable): Deleted.
61         (custom-theme-add-variable, custom-theme-add-face): Apply value
62         from the theme settings, instead of the current value.
63         (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
64         (custom-theme-visit-theme): Allow calling outside theme buffers.
65         (custom-theme-merge-theme): Don't enable the theme when merging.
66         (custom-theme-write-variables, custom-theme-write-faces): Use the
67         :shown-value properties to save buffer values, not global ones.
68         (customize-themes): Display a warning about user customizations.
70         * cus-edit.el (custom-variable-value-create)
71         (custom-face-value-create): Obey new special properties
72         :shown-value and :inhibit-magic.
74 2010-10-15  Michael Albinus  <michael.albinus@gmx.de>
76         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
77         Suppress expansion of tabs to spaces.
79 2010-10-14  Kenichi Handa  <handa@m17n.org>
81         * mail/rmail.el (rmail-show-message-1): Catch an error of
82         base64-decode-region and just show an error message (bug#7165).
84         * ps-mule.el (ps-mule-font-spec-list): Delete it.  Not used
85         anymore.
86         (ps-mule-begin-job): Fix for the case that only ENCODING is set in
87         a font-spec (bug#7197).
89 2010-10-14  Glenn Morris  <rgm@gnu.org>
91         * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
93 2010-10-14  Juanma Barranquero  <lekktu@gmail.com>
95         * international/mule.el (define-coding-system):
96         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
97         * composite.el (compose-region): Fix typo in docstring.
99 2010-10-14  Chong Yidong  <cyd@stupidchicken.com>
101         * cus-face.el (custom-theme-set-faces): Call custom-push-theme
102         only after checking the theme-face property.
104         * faces.el (face-spec-reset-face): Reset all attributes in one
105         single call to set-face-attribute.
106         (face-spec-match-p): Make it a defsubst.
107         (frame-set-background-mode): New arg KEEP-FACE-SPECS.
108         (x-create-frame-with-faces, tty-create-frame-with-faces)
109         (tty-set-up-initial-frame-faces): Don't recompute face specs in
110         frame-set-background-mode, since they are recomputed immediately
111         afterwards in face-set-after-frame-default.
112         (face-set-after-frame-default): Minor optimization.
113         (cursor): Provide non-trivial defface spec.
115         * custom.el (custom-theme-recalc-face): Simplify.
117 2010-10-14  Jay Belanger  <jay.p.belanger@gmail.com>
119         * calc/calc-alg.el (math-var): Renamed from `var'.
120         (math-is-polynomial, math-is-poly-rec): Replace `var'
121         with `math-var'.
123         * calc/calcalg2.el (math-var): Renamed from `var'.
124         (calcFunc-table, math-scan-for-limits): Replace `var'
125         with `math-var'.
127 2010-10-13  Glenn Morris  <rgm@gnu.org>
129         * subr.el (last): Deal with dotted lists (reported in bug#7174).
131 2010-10-13  Stephen Berman  <stephen.berman@gmx.net>
133         * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
135 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
137         * net/tls.el (tls-program): Remove spurious %s from openssl.
138         (tls-starttls-switches): Remove starttls hack.
139         (open-tls-stream): Ditto.
140         (tls-find-starttls-argument): Ditto.
142 2010-10-13  Juanma Barranquero  <lekktu@gmail.com>
144         * image.el (image-library-alist): Declare as obsolete alias.
145         (image-type-available-p): Use `dynamic-library-alist'.
147         * term/w32-win.el (dynamic-library-alist):
148         Use instead of `image-library-alist'.
150 2010-10-13  IRIE Shinsuke  <irieshinsuke@yahoo.co.jp>  (tiny change)
152         * subr.el (last): Make it faster.  (Bug#7174)
154 2010-10-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>  (tiny change)
156         * Makefile.in (compile-clean): Use `` instead of $().  (Bug#7178)
158 2010-10-12  Chong Yidong  <cyd@stupidchicken.com>
160         * cus-theme.el (custom-theme--listed-faces): Add cursor face.
161         (describe-theme-1): Extract doc from unloaded themes.
163         * custom.el (custom-theme-name-valid-p): Don't list color-themes.
165         * themes/tango-theme.el:
166         * themes/tango-dark-theme.el:
167         * themes/wheatgrass-theme.el: New files.
169 2010-10-12  Chong Yidong  <cyd@stupidchicken.com>
171         * cus-theme.el (describe-theme, customize-themes)
172         (custom-theme-save): New commands.
173         (custom-new-theme-mode-map): Bind C-x C-s.
174         (custom-new-theme-mode): Use custom--initialize-widget-variables.
175         (customize-create-theme): New optional arg THEME.
176         (custom-theme-revert): Use it.
177         (custom-theme-visit-theme): Remove dead code.
178         (custom-theme-merge-theme): Use custom-available-themes.
179         (custom-theme-write): Make interactive.
180         (custom-theme-write): Use custom-theme-name-valid-p.
181         (describe-theme-1, custom-theme-choose-revert)
182         (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
183         New funs.
184         (custom-theme-allow-multiple-selections): New option.
185         (custom-theme-choose-mode): New major mode.
187         * custom.el (custom-theme-set-variables): Remove dead code.  Obey
188         custom--inhibit-theme-enable.
189         (custom--inhibit-theme-enable): New var.
190         (provide-theme): Obey it.
191         (load-theme): Replace load with manual read/eval, in order to
192         check for correctness.  Use custom-theme-name-valid-p.
193         (custom-theme-name-valid-p): New function.
194         (custom-available-themes): Use it.
196         * cus-edit.el (custom--initialize-widget-variables): New function.
197         (Custom-mode): Use it.
199         * cus-face.el (custom-theme-set-faces): Remove dead code.  Obey
200         custom--inhibit-theme-enable.
202         * help-mode.el (help-theme-def, help-theme-edit): New buttons.
204 2010-10-12  Juanma Barranquero  <lekktu@gmail.com>
206         * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
208 2010-10-12  Jan Djärv  <jan.h.d@swipnet.se>
210         * term/ns-win.el (ns-right-alternate-modifier): New defvar.
211         (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
212         (mac-right-option-modifier): New alias for ns-right-option-modifier.
214         * cus-start.el (all): ns-right-alternate-modifier is new.
216 2010-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
218         * emacs-lisp/lisp.el (lisp-completion-at-point):
219         Use emacs-lisp-mode-syntax-table for the whole function.
221 2010-10-12  David Koppelman  <koppel@ece.lsu.edu>
223         * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
224         instead of font-lock-mode before adding keywords.
225         Remove hi-lock-mode off code.  Remove inhibit hack.
226         (hi-lock-set-pattern): Only add keywords if font-lock-fontified
227         non-nil; removed hook inhibit hack.
229 2010-10-12  Glenn Morris  <rgm@gnu.org>
231         * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
232         (load-path-shadows-find): ... to this.
233         (list-load-path-shadows): Update for above change.
235         * mail/mail-utils.el (mail-mbox-from): Also try return-path.
237 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
239         * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
240         Fix comment for declare-function.
242 2010-10-11  Chong Yidong  <cyd@stupidchicken.com>
244         * custom.el (custom-fix-face-spec): New function; code moved from
245         custom-face-edit-fix-value.
246         (custom-push-theme): Use it when checking if a face has been
247         changed outside customize.
248         (custom-available-themes): New function.
249         (load-theme): Use it.
251         * cus-edit.el (custom-face-edit-fix-value): Use
252         custom-fix-face-spec.
254         * custom.el (custom-push-theme): Cleanup (use cond).
255         (disable-theme): Recompute the saved-face property.
256         (custom-theme-recalc-face): Follow face alias before setting prop.
258         * image.el (image-checkbox-checked, image-checkbox-unchecked): New
259         variables, containing checkbox images.
261         * startup.el (fancy-startup-tail):
262         * wid-edit.el (checkbox): Use them.
264 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
266         * shell.el (shell-mode-map):
267         * progmodes/modula2.el (m2-mode-map):
268         * progmodes/inf-lisp.el (inferior-lisp-mode-map):
269         * play/mpuz.el (mpuz-mode-map):
270         * play/landmark.el (lm-mode-map):
271         * play/decipher.el (decipher-mode-map):
272         * play/5x5.el (5x5-mode-map):
273         * net/telnet.el (telnet-mode-map):
274         * net/quickurl.el (quickurl-list-mode-map):
275         * net/mairix.el (mairix-searches-mode-map):
276         * net/eudc-hotlist.el (eudc-hotlist-mode-map):
277         * net/dig.el (dig-mode-map):
278         * mail/mspools.el (mspools-mode-map):
279         * hexl.el (hexl-mode-map):
280         * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
281         (wordstar-C-o-map, wordstar-C-q-map):
282         * emacs-lisp/edebug.el (edebug-eval-mode-map):
283         * emacs-lisp/chart.el (chart-map):
284         * edmacro.el (edmacro-mode-map):
285         * erc/erc-list.el (erc-list-menu-mode-map):
286         * array.el (array-mode-map): Declare and define in one step.
288         * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
290 2010-10-10  Daiki Ueno  <ueno@unixuser.org>
292         * epa.el (epa-passphrase-callback-function): Display filename
293         passed as the 3rd arg.
294         * epa-file.el (epa-file-passphrase-callback-function): Pass
295         filename to epa-passphrase-callback-function.
297 2010-10-09  Chong Yidong  <cyd@stupidchicken.com>
299         * cus-edit.el (custom-face-widget-to-spec)
300         (custom-face-get-current-spec, custom-face-state): New functions.
301         (custom-face-set, custom-face-mark-to-save)
302         (custom-face-value-create, custom-face-state-set): Use them.
304         * cus-theme.el (custom-theme--listed-faces): New var.
305         (customize-create-theme): Use *Custom Theme* as the buffer name.
306         Set revert-buffer-function.  Optional arg BUFFER.  Insert all
307         faces listed in custom-theme--listed-faces.
308         (custom-theme-revert): New function.
309         (custom-theme-add-variable, custom-theme-add-face): Insert at the
310         bottom of the list.
311         (custom-theme-write): Prompt for theme name if empty.
312         (custom-theme-write-variables): Use dolist.
313         (custom-theme-write-faces): Handle hidden (collapsed) widgets.
315 2010-10-09  Alan Mackenzie  <acm@muc.de>
317         Enhance fontification of declarators to take account of the
318         presence/absence of "typedef".
320         * cc-engine.el (c-forward-type): New &optional param
321         "brace-block-too".
322         (c-forward-decl-or-cast-1): cdr of return value now indicates the
323         presence of either or both of a "struct"-like keyword and
324         "typedef".
326         * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
327         fontification of declarators which follow a "}".
328         (c-font-lock-declarations): Fontify declarators according to the
329         presence/absence of "typedef".
331         * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
332         for "typedef".
333         (c-typedef-decl-key): New lang variable built from
334         c-typedef-decl-kwds.
336 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
338         * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
339         since that's too annoying.  Move the filter groups commands to
340         TAB/backtab.
342         * epa.el (epa-passphrase-callback-function): Say what we're
343         querying the password for.
345         * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
346         behaviour, don't bury the ibuffer buffer when visiting other
347         buffers.
349 2010-10-08  Chong Yidong  <cyd@stupidchicken.com>
351         * cus-edit.el (custom-commands, custom-buffer-create-internal)
352         (custom-magic-value-create): Pad button tags with spaces.
353         (custom-face-edit): New variable.
354         (custom-face-value-create): Determine whether to use the usual
355         face editor here, instead of using custom-face-selected.  Pass
356         face defaults to custom-face-edit widget.
357         (custom-face-selected, custom-display-unselected): Delete widgets.
358         (custom-display-unselected-match): Function removed.
359         (custom-face-set, custom-face-mark-to-save): Accept
360         custom-face-edit widgets as the direct widget child.
362         * wid-edit.el (widget--completing-widget): New var.
363         (widget-default-complete): Bind it when doing completion.
364         (widget-string-complete, widget-file-complete): Use it.
366 2010-10-09  Glenn Morris  <rgm@gnu.org>
368         * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
369         (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
370         (holiday-hebrew-misc): Small simplifications.
372         * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
374         * net/browse-url.el: Don't require thingatpt, term, dired,
375         executable, or w3-auto when compiling.
376         (dired-get-filename, term-char-mode, term-send-down, term-send-string):
377         Declare.
378         (browse-url-text-emacs): Require term.
380 2010-10-08  Andreas Schwab  <schwab@linux-m68k.org>
382         * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
384 2010-10-08  Glenn Morris  <rgm@gnu.org>
386         * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
388         * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
389         (shadows-compare-text-p): Make it an obsolete alias for...
390         (load-path-shadows-compare-text): ... new name.
391         (find-emacs-lisp-shadows): Update for above name change.
392         (load-path-shadows-same-file-or-nonexistent): New name for the old
393         shadow-same-file-or-nonexistent.
395 2010-10-08  Chong Yidong  <cyd@stupidchicken.com>
397         * minibuffer.el (completion--some, completion--do-completion)
398         (minibuffer-complete-and-exit, minibuffer-completion-help)
399         (completion-basic-try-completion)
400         (completion-basic-all-completions)
401         (completion-pcm--find-all-completions): Use lexical-let to
402         avoid some false matches in variable completion (Bug#7056)
404 2010-10-08  Olof Ohlsson Sax  <olof.ohlsson.sax@gmail.com>  (tiny change)
406         * vc-svn.el (vc-svn-merge-news): Use --non-interactive.  (Bug#7152)
408 2010-10-08  Leo  <sdl.web@gmail.com>
410         * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
411         return non-nil if the file exists (Bug#7090).
413 2010-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
415         * minibuffer.el (completion--replace):
416         Better preserve markers (bug#7138).
418 2010-10-08  Juanma Barranquero  <lekktu@gmail.com>
420         * server.el (server-process-filter): Doc fix.
422 2010-10-08  Drew Adams  <drew.adams@oracle.com>
424         * dired.el (dired-save-positions): Doc fix.  (Bug#7119)
426 2010-10-08  Andreas Schwab  <schwab@linux-m68k.org>
428         * Makefile.in (ELCFILES): Update.
430 2010-10-08  Glenn Morris  <rgm@gnu.org>
432         * vc/ediff-wind.el (ediff-setup-control-frame):
433         * vc/ediff-ptch.el (ediff-default-backup-extension):
434         * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
435         (ediff-exec-process): Remove system-types emx, windows-95.
437         * net/browse-url.el (browse-url-xdg-open): Shell-quote url.  (Bug#7166)
439 2010-10-07  Chong Yidong  <cyd@stupidchicken.com>
441         * cus-edit.el (custom-variable, custom-face): Doc fix.
442         (custom-face-edit): Add value-create attribute.
443         (custom-face-edit-value-create)
444         (custom-face-edit-value-visibility-action): New functions.  Hide
445         unused face attributes by default, and add a visibility toggle.
446         (custom-face-edit-deactivate): Show empty values with shadow face.
447         (custom-face-selected): Only use this for face specs with default
448         attributes.
449         (custom-face-value-create): Cleanup.
451         * wid-edit.el (widget-checklist-value-create): Use dolist.
452         (widget-checklist-match-find): Make second arg optional.
454 2010-10-07  Glenn Morris  <rgm@gnu.org>
456         * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
457         Prefix things.
459         * emacs-lisp/shadow.el (shadow-font-lock-keywords)
460         (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
461         load-path-shadows-mode, update references.
462         (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
463         Rename variable and button.
464         (list-load-path-shadows): Update button caller.
466 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
468         * emacs-lisp/smie.el (smie-bnf-classify): New function.
469         (smie-bnf-precedence-table): Use it to remember the closers/openers.
470         (smie-merge-prec2s): Handle those new entries.
471         (smie-prec2-levels): Only set precedence to nil for actual
472         openers/closers.
473         * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
474         that is now unnecessary.
476 2010-10-07  Miles Bader  <miles@gnu.org>
478         * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
480 2010-10-07  Glenn Morris  <rgm@gnu.org>
482         * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
483         (mail-position-on-field): Remove declarations.
484         (mail-position-on-field): Autoload it.
485         (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
486         and mail-header-end.  Don't require sendmail.
488         * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
489         (shadow-mode): New mode.
490         (shadow-find-file): New button.
491         (list-load-path-shadows): Use shadow-mode and buttons.
493         * iimage.el (iimage-version): Remove.
494         (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
495         Turn into defcustoms.
496         (iimage-mode-map): Give it a doc string.
498         * calendar/appt.el (appt-activate): Give a warning rather than an error
499         if there is no diary-file.
501 2010-10-06  Michael Albinus  <michael.albinus@gmx.de>
503         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
504         Use `tramp-handle-find-backup-file-name'.
506 2010-10-06  Glenn Morris  <rgm@gnu.org>
508         * font-core.el (font-lock-defaults-alist): Remove variable.
509         (font-lock-mode): Doc fix.
510         (font-lock-default-function): Do not consult font-lock-defaults-alist.
511         * font-lock.el (font-lock-refresh-defaults): Doc fix.
512         (font-lock-set-defaults): Doc fix.
513         Do not consult font-lock-defaults-alist.
515         * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
517         * emacs-lisp/cl.el: No longer provide cl-19.
519 2010-10-05  Michael Albinus  <michael.albinus@gmx.de>
521         * net/tramp.el (tramp-handle-directory-files-and-attributes)
522         (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
523         New defuns, taken from tramp-smb.el.
524         (tramp-coding-system-change-eol-conversion)
525         (tramp-set-process-query-on-exit-flag): Removed.
527         * net/tramp-compat.el (top): Do not check for byte-compiler
528         objects.
529         (tramp-compat-coding-system-change-eol-conversion)
530         (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
531         from tramp.el.
533         * net/tramp-gvfs.el:
534         * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
535         by `tramp-compat-set-process-query-on-exit-flag'.
537         * net/tramp-imap.el (tramp-imap-file-name-handler-alist): Use
538         `tramp-handle-directory-files-and-attributes',
539         `tramp-handle-file-exists-p' and
540         `tramp-handle-file-newer-than-file-p'.
541         (tramp-imap-handle-file-exists-p)
542         (tramp-imap-handle-file-executable-p)
543         (tramp-imap-handle-file-readable-p)
544         (tramp-imap-handle-directory-files-and-attributes)
545         (tramp-imap-handle-file-newer-than-file-p): Removed.
547         * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
548         by `tramp-compat-set-process-query-on-exit-flag' and
549         `tramp-coding-system-change-eol-conversion' by
550         `tramp-compat-coding-system-change-eol-conversion'.
552         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use
553         `tramp-handle-directory-files-and-attributes',
554         `tramp-handle-file-exists-p' and
555         `tramp-handle-file-newer-than-file-p'.
556         (tramp-smb-handle-directory-files-and-attributes)
557         (tramp-smb-handle-file-exists-p)
558         (tramp-smb-handle-file-newer-than-file-p): Removed.
559         (tramp-smb-maybe-open-connection): Replace
560         `tramp-set-process-query-on-exit-flag' by
561         `tramp-compat-set-process-query-on-exit-flag'.
563 2010-10-05  Glenn Morris  <rgm@gnu.org>
565         * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
567 2010-10-04  Michael Albinus  <michael.albinus@gmx.de>
569         Continue reorganization of load dependencies.  (Bug#7156)
571         * net/tramp.el (tramp-handle-file-local-copy-hook)
572         (tramp-delete-temp-file-function): Move down.
573         (tramp-exists-file-name-handler): Move up.
574         (tramp-register-file-name-handlers): Simplify autoload.
575         (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
576         (tramp-handle-directory-files, tramp-handle-dired-uncache)
577         (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
578         (tramp-handle-file-name-completion)
579         (tramp-handle-file-name-directory)
580         (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
581         (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
582         (tramp-handle-find-backup-file-name)
583         (tramp-handle-insert-file-contents, tramp-handle-load)
584         (tramp-handle-substitute-in-file-name)
585         (tramp-handle-unhandled-file-name-directory)
586         (tramp-mode-string-to-int, tramp-local-host-p)
587         (tramp-make-tramp-temp-file): Moved from tramp-sh.el.
589         * net/tramp-gvfs.el (top):
590         * net/tramp-smb.el (top): Do not require 'tramp-sh.
592         * net/tramp-sh.el (all): Move several objects to tramp.el, see
593         there.  Rename `tramp-handle-*' to `tramp-sh-handle-*'.
595 2010-10-04  Glenn Morris  <rgm@gnu.org>
597         * calendar/appt.el (appt-add): Ensure reminders are enabled.
598         (appt-activate): Give status messages.
600 2010-10-03  Teodor Zlatanov  <tzz@lifelogs.com>
602         * net/gnutls.el: Improve docs.  Remove starttls and ssl emulation.
603         Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
604         `gnutls-negotiate' (formerly `starttls-negotiate').  Remove
605         trivial wrapper `starttls-open-stream'.
607 2010-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
609         Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
610         log-outgoing commands.
611         * vc/vc.el (vc-log-internal-common): Add a new argument and use it
612         to create a buffer local revert-buffer-function variable.
613         (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
614         revert-buffer-function lambda.
616 2010-10-03  Teodor Zlatanov  <tzz@lifelogs.com>
618         * net/gnutls.el (starttls-negotiate): Use the plist interface to
619         `gnutls-boot'.  Make TYPE the only required parameter.  Allow
620         TRUSTFILES and KEYFILES to be lists.
621         (open-ssl-stream): Use it.
623 2010-10-03  Glenn Morris  <rgm@gnu.org>
625         * subr.el (directory-sep-char): Remove obsolete variable.
626         * net/tramp-compat.el: Don't mess about with the byte-compiler unless
627         it is "necessary".
629         * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
630         * vc/vc.el (vc-static-header-alist): Doc fix.
631         * vc/vc-cvs.el (vc-cvs-header):
632         * vc/vc-rcs.el (vc-rcs-header):
633         * vc/vc-sccs.el (vc-sccs-header):
634         * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
635         * obsolete/vc-mcvs.el (vc-mcvs-header):
636         * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
637         on XEmacs.
639 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
641         * emacs-lisp/bytecomp.el (byte-compile-from-buffer): Remove
642         obsolete use of binary-overwrite-mode (Bug#7001).
644 2010-10-03  Glenn Morris  <rgm@gnu.org>
646         * obsolete/x-menu.el: Remove file, obsolete since 21.1
648         * textmodes/rst.el (rst-font-lock-keywords-function):
649         Drop Emacs 20 code.
651         * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
653         * printing.el: Drop Emacs 20 code.
655         * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
656         without having used appt.el already).
658         * subr.el (make-local-hook): Remove function obsolete since 21.1.
659         * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
660         (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
661         XEmacs.
662         * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
663         (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
665         * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
666         (charset-width, find-charset-region, chars-in-region, forward-point)
667         (encode-coding-string, coding-system-p, ccl-execute-on-string)
668         (define-ccl-program, multibyte-string-p, string-make-multibyte):
669         Remove compatibility cruft (none of these are used by ps*.el).
671 2010-10-03  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
673         * subr.el (booleanp): Return t instead of a list (Bug#7086).
675 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
677         * server.el (server-process-filter, server-return-error): Give
678         emacsclient time to shut down after receiving an error string.
680 2010-10-02  Michael Albinus  <michael.albinus@gmx.de>
682         * files.el (remote-file-name-inhibit-cache): New defcustom.
684         * time.el (display-time-file-nonempty-p): Use
685         `remote-file-name-inhibit-cache'.
687         * net/tramp.el (tramp-completion-reread-directory-timeout): Fix
688         docstring.
690         * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
691         (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
692         `remote-file-name-inhibit-cache'.  Check also for an integer
693         value.  Add/increase counter when `tramp-verbose' >= 10.
694         (tramp-set-file-property): Add/increase counter when
695         `tramp-verbose' >= 10.
697         * net/tramp-cmds.el (tramp-cleanup-all-connections)
698         (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
699         (tramp-bug): Set tramp-autoload cookie.  Report all interned
700         tramp-* variables.  Report also `remote-file-name-inhibit-cache'.
701         (tramp-reporter-dump-variable): Fix docstring.  Mask non-7bit
702         characters only in strings.
704         * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
705         to backward compatibility.
707         * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
708         (tramp-handle-file-name-all-completions)
709         (tramp-handle-vc-registered): Use
710         `remote-file-name-inhibit-cache'.
711         (tramp-open-connection-setup-interactive-shell): Call
712         `tramp-cleanup-connection' directly.
714 2010-10-02  Glenn Morris  <rgm@gnu.org>
716         * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
718         * subr.el (char-bytes): Remove obsolete function.
720         * isearch.el (isearch-return-char): Remove obsolete function.
722         * mouse.el: No longer provide mldrag.
723         (mldrag-drag-mode-line, mldrag-drag-vertical-line):
724         Remove obsolete aliases.
726         * comint.el (comint-kill-output): Remove obsolete alias.
728         * composite.el (decompose-composite-char): Remove obsolete function.
729         * ps-def.el (decompose-composite-char): Remove unused function.
731         * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
733         * outline.el (outline-visible): Remove obsolete function.
735         * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
736         * faces.el (internal-find-face, internal-get-face)
737         (frame-update-faces, frame-update-face-colors)
738         (x-frob-font-weight, x-frob-font-slant)
739         (internal-frob-font-weight, internal-frob-font-slant)
740         (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
741         (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
742         (x-make-font-bold-italic): Remove functions and aliases, obsolete
743         since Emacs 21.1.
744         * emulation/viper-util.el (viper-get-face):
745         * obsolete/lucid.el (find-face, get-face): Use facep.
746         * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
747         Remove unused functions.
748         * vc/ediff-util.el (ediff-submit-report): Doc fix.
750         * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
751         delete tempfile if interrupted during compilation.
753 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
755         * net/tls.el (tls-starttls-switches): Give up on using starttls with
756         gnutls-cli.
757         (tls-program): Add --insecure to be consistent with the defaults from
758         openssl s_client.  Now all three commands are insecure.
760 2010-10-01  Eli Zaretskii  <eliz@gnu.org>
762         * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
763         (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
764         (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
766 2010-10-01  Glenn Morris  <rgm@gnu.org>
768         * obsolete/sc.el: Remove file.
770         * files.el (temporary-file-directory): On darwin, also try
771         DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
773 2010-10-01  Juanma Barranquero  <lekktu@gmail.com>
775         * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
776         Let's not break compatibility gratuitously, shall we?
778 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
780         * net/tls.el (tls-starttls-switches): New variable.
781         (tls-find-starttls-argument): Use it.
782         (open-tls-stream): Ditto.
784         * net/netrc.el (netrc-credentials): Return the value of the "default"
785         entry.
786         (netrc-machine): Ditto.
788 2010-09-30  Eli Zaretskii  <eliz@gnu.org>
790         * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
792 2010-09-30  Juanma Barranquero  <lekktu@gmail.com>
794         * server.el (server-start): Don't write pid to the authentication file.
795         (server-create-tty-frame): Don't send pid.
796         (server-process-filter): Send pid at the start of every connection.
798 2010-09-30  Glenn Morris  <rgm@gnu.org>
800         * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
801         (show-all-diary-entries): Remove obsolete function aliases.
803         * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
804         Remove options, obsolete since 22.1.
805         (appt-display-format, appt-display-message): Remove
806         backwards-compatibility code.
807         (appt-check): No longer check appt-issue-message.
808         (appt-make-list): No longer autoload it.  Doc fix.  No longer
809         activate the package.
811 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
813         * net/gnutls.el (starttls-negotiate): Loop a lot longer.
814         (starttls-negotiate): Just call boot, and let the handshake be
815         triggered from the read loop.
817 2010-09-29  Glenn Morris  <rgm@gnu.org>
819         * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
820         not displaying the diary.
821         (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
822         * calendar/appt.el (appt-check): No longer need to kill diary.
824         * calendar/diary-lib.el (diary-list-entries): Move the
825         "Preparing..." message entirely here.
826         (diary-simple-display, diary-fancy-display): Move "Preparing..."
827         messages to diary-list-entries.
828         (diary-include-other-diary-files): Use LIST-ONLY rather than setting
829         diary-display-function.
831         * calendar/diary-lib.el (diary-include-other-diary-files):
832         Trap some recursive includes.
834         * calendar/appt.el (appt-activate): Check diary file.
836 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
838         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
839         construction.
841         * calendar/time-date.el: No need to require cl for Emacs 21.
843 2010-09-28  Glenn Morris  <rgm@gnu.org>
845         * calendar/appt.el (appt-check): Minor simplification.
847 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
849         * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
850         citation prefix.
852 2010-09-27  Andreas Schwab  <schwab@linux-m68k.org>
854         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
855         Avoid infinite recursion on erroneous lambda form.  (Bug#7114)
857 2010-09-27  Kenichi Handa  <handa@m17n.org>
859         * tar-mode.el (tar-header-block-tokenize): Decode filenames in
860         "ustar" format.
862 2010-09-27  Kenichi Handa  <handa@m17n.org>
864         * international/mule.el (define-coding-system): Docstring fixed.
866         * international/mule-diag.el (describe-character-set): Use princ
867         with proper print-length and print-level instead of insert.
869 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
871         * window.el (walk-windows): Doc fix (bug#7105).
873 2010-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
875         * emacs-lisp/float-sup.el (e): Remove.
877 2010-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
879         * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
880         variable.
881         (starttls-negotiate): Use it.
883 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
885         * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
886         back.
888 2010-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
890         * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
892 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
894         * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
896         * net/netrc.el (netrc-store-data): New function.
898 2010-09-26  Teodor Zlatanov  <tzz@lifelogs.com>
900         * net/gnutls.el: GnuTLS glue code to set up a connection.
902 2010-09-25  Julien Danjou  <julien@danjou.info>
904         * notifications.el: Call dbus-register-signal only if it is bound.
906 2010-09-25  Glenn Morris  <rgm@gnu.org>
908         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
909         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
910         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
911         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
912         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
913         * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
914         * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
915         * eshell/esh-util.el, eshell/esh-var.el:
916         Remove leading `*' from docs of faces and defcustoms.
918 2010-09-25  Ulrich Mueller  <ulm@gentoo.org>
920         * eshell/em-ls.el (eshell-ls-archive-regexp):
921         * eshell/esh-util.el (eshell-tar-regexp):
922         * ibuffer.el (ibuffer-compressed-file-name-regexp):
923         * info.el (Info-suffix-list):
924         * international/mule.el (auto-coding-alist):
925         * woman.el (woman-file-regexp, woman-file-compression-regexp):
926         * progmodes/etags.el (tags-compression-info-list):
927         Support xz compression.
929 2010-09-25  Chong Yidong  <cyd@stupidchicken.com>
931         * files.el (get-free-disk-space): Don't assume the "df" output
932         columns line up (Bug#6995).
934 2010-09-25  Juanma Barranquero  <lekktu@gmail.com>
936         * finder.el (finder-unknown-keywords):
937         * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
938         * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
940 2010-09-25  Juanma Barranquero  <lekktu@gmail.com>
942         * server.el (server-start): Revert part of 2010-08-08 change.  Using
943         address 127.0.0.1 for local host is now done in Fmake_network_process.
945 2010-09-24  Glenn Morris  <rgm@gnu.org>
947         * image-mode.el, progmodes/compile.el, progmodes/gud.el:
948         * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
949         * textmodes/css-mode.el, textmodes/dns-mode.el:
950         Move autoloaded auto-mode-alist entries to files.el.
951         * files.el (auto-mode-alist): Move entries here.
953 2010-09-23  Glenn Morris  <rgm@gnu.org>
955         * isearch.el (isearch-lazy-highlight-cleanup)
956         (isearch-lazy-highlight-initial-delay)
957         (isearch-lazy-highlight-interval)
958         (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
959         * net/net-utils.el (ipconfig-program-options):
960         Move aliases to options before the associated definitions.
962 2010-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
964         * newcomment.el (comment-normalize-vars): Better test validity of
965         comment-end-skip.
967 2010-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
969         * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
970         (float-e): New name for `e'.
971         (degrees-to-radians, radians-to-degrees):
972         * calendar/solar.el (solar-longitude):
973         * calculator.el (calculator-registers, calculator-funcall):
974         * textmodes/artist.el (artist-spray-random-points):
975         * play/bubbles.el (bubbles--initialize-images): Use new names.
977 2010-09-23  Eric M. Ludlam  <zappo@gnu.org>
979         Update to CEDET 1.0's version of EIEIO.
981         * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
982         New function.
983         (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
984         (eieio-default-eval-maybe): Eval val instead of unquoting only.
985         (class-precedence-list): If class is nil, return nil.
986         (eieio-generic-call): If class of first input arg is nil, don't
987         look up static methods, and do check for primary methods.
988         (initialize-instance): See if the default needs to be evaluated
989         during the constructor.
990         (eieio-perform-slot-validation-for-default): Don't do the check
991         for values that will eventually be evaluated.
992         (eieio-eval-default-p): New function.
993         (eieio-default-eval-maybe): Use it.
995 2010-09-23  Jan Moringen  <jan.moringen@uni-bielefeld.de>
997         * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
998         method-invocation-order.
999         (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
1000         (eieio-class-precedence-dfs): Compute class precedence list using
1001         dfs algorithm.
1002         (eieio-class-precedence-bfs): Compute class precedence list using
1003         bfs algorithm.
1004         (eieio-class-precedence-c3): Compute class precedence list using
1005         c3 algorithm.
1006         (class-precedence-list): New function.
1007         (eieiomt-method-list, eieiomt-sym-optimize): Use it.
1008         (inconsistent-class-hierarchy): New error symbol.
1009         (call-next-method): Stow the replacement argument list for future
1010         call-next-method invocations.
1012 2010-09-23  Glenn Morris  <rgm@gnu.org>
1014         * calendar/appt.el (appt-check): If not displaying the diary,
1015         use (diary 1) to only get the entries we need.
1016         (appt-make-list): Sort diary-list-entries, if we cannot guarantee
1017         that it is in day order.  (Bug#7019)
1019         * calendar/appt.el (appt-check): Rather than showing the diary,
1020         just turn off invisible display, and only if needed.
1022         * calendar/diary-lib.el (diary-list-entries): Doc fix.  (Bug#7019)
1024 2010-09-23  Glenn Morris  <rgm@gnu.org>
1026         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
1027         (byte-compile-defvar, byte-compile-cl-warn):
1028         Start warnings with lower-case, like the majority.
1030         * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
1032         * files.el (auto-mode-alist): Prefer C-mode for .xs.  (Bug#7071)
1034         * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
1035         * files.el (auto-mode-alist): Move ld-script entries here, further down
1036         the list.
1038         * vc/add-log.el: Don't require timezone when compiling.
1039         (timezone-make-date-sortable): Autoload it.
1040         (change-log-sortable-date-at): Don't require timezone.
1041         Use `ignore-errors'.
1043         * comint.el (comint-use-prompt-regexp-instead-of-fields):
1044         Move alias before definition, so it does not need autoloading.
1046         * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
1047         * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
1048         * international/kkc.el, international/ogonek.el, mail/feedmail.el:
1049         * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
1050         * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
1051         * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
1052         * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
1053         * textmodes/tex-mode.el, textmodes/two-column.el:
1054         Remove leading `*' from docs of defcustoms etc.
1056 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
1058         * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
1060 2010-09-22  Dan Christensen  <jdc@uwo.ca>
1062         * calendar/time-date.el (date-to-time): Try using parse-time-string
1063         first before using the slower timezone-make-date-arpa-standard.
1065 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1067         * calendar/time-date.el (format-seconds): Comment fix.
1069 2010-09-22  Glenn Morris  <rgm@gnu.org>
1071         * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
1072         is not automatically buffer-local.
1074 2010-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1076         * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
1077         (smie-indent-comment): Be more careful with comment-start-skip.
1078         (smie-indent-comment-close, smie-indent-comment-inside): New funs.
1079         (smie-indent-functions): Use them.
1081 2010-09-21  Michael Albinus  <michael.albinus@gmx.de>
1083         * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
1085 2010-09-21  Jan Djärv  <jan.h.d@swipnet.se>
1087         * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
1088         tool-bar-position.  Don't modify frame parameters here.
1089         (menu-bar-options-save): Add tool-bar-position.
1091         * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
1093 2010-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1095         * textmodes/reftex-parse.el (reftex-what-macro)
1096         (reftex-context-substring): Let-bind forward-sexp-function to nil
1097         since we don't need/want to treat \begin...\end as a block (bug#7053).
1099         * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
1101         * simple.el (blink-matching-open): Use syntax-class.
1103         * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
1104         Set invisibility spec for pascal's outline mode.
1105         (pascal-outline-change): Clean up calling convention.
1106         (pascal-show-all, pascal-hide-other-defuns): Update callers.
1108         * progmodes/prolog.el (prolog-smie-forward-token)
1109         (prolog-smie-backward-token): New functions.
1110         (prolog-mode-variables): Use them to parse "!," correctly.
1111         Set up smie-blink-matching for ".".
1113         * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
1114         and `end'.
1115         (ispell-region, ispell-process-line): Update users.
1117         * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
1118         point-min==1.
1120         * textmodes/ispell.el: Fix commenting convention.
1121         (ispell-parse-output): Simplify, use push.
1122         (ispell-region): Use match-string-no-properties.
1123         (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
1124         (ispell-minor-mode): Use define-minor-mode.
1125         (ispell-message): Remove unused var `skip-regexp'.
1126         (ispell-add-per-file-word-list): Use dynamic let-binding.
1127         Try and use the proper comment marker.
1129         * mail/sendmail.el: Fix commenting convention.
1130         (sendmail-send-it): Use line-beginning-position.
1132         * help-fns.el (describe-variable): Add original value, if applicable.
1134 2010-09-20  Juanma Barranquero  <lekktu@gmail.com>
1136         * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
1138         * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
1140 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1142         * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
1143         (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
1144         (smie-prec2-levels): Use them to better diagnose precedence cycles.
1145         (smie-blink-matching-check): Don't signal a mismatch if car is t.
1146         (smie-blink-matching-open): Rewrite to remove assumptions, so that
1147         something like "." can also be a closer.
1148         (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
1149         (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
1150         Rename internal functions to use "--".  Update callers.
1152         * frame.el (make-frame-names-alist): Don't list frames on other displays.
1154         * fringe.el (fringe-styles): New var.
1155         (fringe-mode, fringe-query-style): Use it.
1157 2010-09-18  Michael R. Mauger  <mmaug@yahoo.com>
1159         * progmodes/sql.el: Version 2.8
1160         (sql-login-params): Update widget structure; changes still needed.
1161         (sql-product-alist): Add :list-all and :list-table features for
1162         SQLite, Postgres and MySQL products.
1163         (sql-redirect): Handle default value.
1164         (sql-execute, sql-execute-feature): New functions.
1165         (sql-read-table-name): New function.
1166         (sql-list-all, sql-list-table): New functions.  User API.
1167         (sql-mode-map, sql-interactive-mode-map): Add key definitions
1168         for above functions.
1169         (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
1170         for above functions.
1171         (sql-postgres-login-params): Add user and database defaults.
1172         (sql-buffer-live-p): Bug fix.
1173         (sql-product-history): New variable.
1174         (sql-read-product): New function. Use it.
1175         (sql-set-product, sql-product-interactive): Use it.
1176         (sql-connection-history): New variable.
1177         (sql-read-connection): New function.  Use it.
1178         (sql-connect): New function.
1179         (sql-for-each-login): Redesign function interface.
1180         (sql-make-alternate-buffer-name, sql-save-connection): Use it.
1181         (sql-get-login-ext, sql-get-login): Use it.  Handle default values.
1182         (sql-comint): Check for program.  Existing live buffer.
1183         (sql-comint-postgres): Add port parameter.
1185 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1187         * emacs-lisp/warnings.el: Fix commenting convention.
1188         (display-warning): Use special mode and make the buffer read-only.
1190 2010-09-18  Jay Belanger  <jay.p.belanger@gmail.com>
1192         * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
1193         empty string when it follows a repeated or optional pattern.
1195 2010-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1197         * indent.el (indent-according-to-mode): Apply syntax-propertize.
1198         (indent-region): Use indent-according-to-mode.
1200 2010-09-18  Eli Zaretskii  <eliz@gnu.org>
1202         * fringe.el (fringe-mode): Doc fix.
1204 2010-09-14  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
1206         * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
1207         refreshing the preview buffer.
1209 2010-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1211         * textmodes/tex-mode.el (tex-syntax-propertize-rules)
1212         (latex-syntax-propertize-rules): New consts; replace
1213         tex-font-lock-syntactic-keywords.
1214         (tex-env-mark, latex-env-before-change): New functions.
1215         (latex-electric-env-pair-mode): New minor mode.
1216         (tex-font-lock-verb): Change arguments; do move point.
1217         (tex-font-lock-syntactic-face-function): Adjust to new verbatim
1218         representation as a form of comment.
1219         (tex-font-lock-keywords-1): Remove workaround, now unneeded.
1220         (doctex-syntax-propertize-rules): New const; replaces
1221         doctex-font-lock-syntactic-keywords.
1222         (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
1224         * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
1225         (fortran-make-syntax-propertize-function): New function; replaces
1226         fortran-font-lock-syntactic-keywords.
1227         (fortran-mode): Use it.
1228         (fortran-line-length): Use it.  Improve interactive spec.
1230         * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
1231         (syntax-propertize-rules): Add var-ref case.  Fix offset computation
1232         when adding surrounding \(..\).
1234         * progmodes/js.el (js-mode): Fix last change (bug#7054).
1236 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1238         * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
1239         Use with-current-buffer.
1241         * isearch.el (isearch-face): Rename from `isearch'.
1242         (isearch-highlight): Use new name.
1244 2010-09-17  Eli Zaretskii  <eliz@gnu.org>
1246         * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
1247         5, for `half' width fringes.  (Bug#6933)
1249 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1251         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
1252         (byte-compile-defvar): "foo/bar" does not lack a prefix.
1254         * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
1256 2010-09-17  Stephen Berman  <stephen.berman@gmx.net>
1258         * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
1259         in calculating new frame position.  Add more space between new and
1260         parent on the left (Bug#7048).
1262 2010-09-17  Michael Albinus  <michael.albinus@gmx.de>
1264         * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
1265         defmacro.
1267 2010-09-16  Chong Yidong  <cyd@stupidchicken.com>
1269         * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
1271         * term/x-win.el (x-cut-buffer-or-selection-value): Define as
1272         obsolete alias for x-selection-value.
1274         * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
1276 2010-09-16  Michael Albinus  <michael.albinus@gmx.de>
1278         * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
1279         cookie.
1281 2010-09-15  Michael Albinus  <michael.albinus@gmx.de>
1283         * net/tramp-compat.el (tramp-compat-with-temp-message)
1284         (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
1285         (tramp-compat-process-put): New defuns.
1287         * net/tramp.el (top):
1288         * net/tramp-gvfs.el (top):
1289         * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
1291         * net/tramp.el (tramp-progress-reporter-update):
1292         Use `tramp-compat-funcall'.
1294         * net/tramp.el (tramp-process-actions):
1295         * net/tramp-gvfs.el (tramp-handle-vc-registered):
1296         * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
1297         (tramp-get-remote-stat, tramp-get-remote-readlink):
1298         Use `tramp-compat-with-temp-message'.
1300         * net/tramp-sh.el (top): Require 'cl.
1301         (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
1302         (tramp-open-connection-setup-interactive-shell):
1303         Use `tramp-compat-process-put'.
1305 2010-09-15  Alan Mackenzie  <acm@muc.de>
1307         * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
1308         indentation.
1309         (c-forward-<>-arglist-recur): Fix an infinite recursion.
1311 2010-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1313         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
1314         `lexical' for warnings related to lexical scoping.
1315         (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
1316         global vars which don't have a prefix and could hence affect lexical
1317         scoping in unrelated files.
1319 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1321         * net/imap.el: Revert back to version
1322         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
1323         seem problematic.
1325 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
1327         * obsolete/old-whitespace.el (whitespace-unload-function):
1328         Explicitly pass `obarray' to `unintern' to avoid a warning.
1330 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1332         * emacs-lisp/byte-run.el (set-advertised-calling-convention):
1333         Add `when' argument.  Update callers.
1335         * subr.el (unintern): Declare the obarray arg mandatory.
1337 2010-09-14  Glenn Morris  <rgm@gnu.org>
1339         * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
1340         Doc fixes.
1342         * calendar/diary-lib.el (diary-included-files): New variable.
1343         (diary-list-entries): Maybe initialize diary-included-files.
1344         (diary-include-other-diary-files): Append to diary-included-files.
1345         * calendar/appt.el (appt-update-list): Also check the members of
1346         diary-included-files.  (Bug#6999)
1347         (appt-check): Doc fix.
1349 2010-09-14  David Reitter  <david.reitter@gmail.com>
1351         * simple.el (line-move-visual): Do not truncate goal column to
1352         integer size.  (Bug#7020)
1354 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1356         * repeat.el (repeat): Allow repeating when the last event is a click.
1357         Suggested by Drew Adams (bug#6256).
1359 2010-09-14  Sascha Wilde  <wilde@sha-bang.de>
1361         * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
1362         Replace setting HGRCPATH to "" by some less invasive --config options.
1364 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1366         * font-lock.el (font-lock-beginning-of-syntax-function):
1367         Mark as obsolete.
1369 2010-09-14  Glenn Morris  <rgm@gnu.org>
1371         * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
1372         and tool-bar modes.  (Bug#6211)
1373         (menu-bar-mode): Move setting of standard-value after the
1374         minor-mode definition, otherwise it seems to have no effect.
1376 2010-09-14  Masatake YAMATO  <yamato@redhat.com>
1378         * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
1379         Fix typo.  (Bug#6976)
1381 2010-09-14  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1383         * whitespace.el: Allow cleaning up blanks without blank
1384         visualization (Bug#6651).  Adjust help window for
1385         whitespace-toggle-options (Bug#6479).  Allow to use fill-column
1386         instead of whitespace-line-column (from EmacsWiki).  New version 13.1.
1387         (whitespace-style): Add new value 'face.  Adjust docstring.
1388         (whitespace-space, whitespace-hspace, whitespace-tab):
1389         Adjust foreground property face.
1390         (whitespace-line-column): Adjust docstring and type declaration.
1391         (whitespace-style-value-list, whitespace-toggle-option-alist)
1392         (whitespace-help-text): Adjust const initialization.
1393         (whitespace-toggle-options, global-whitespace-toggle-options):
1394         Adjust docstring.
1395         (whitespace-display-window, whitespace-interactive-char)
1396         (whitespace-style-face-p, whitespace-color-on): Adjust code.
1397         (whitespace-help-scroll): New fun.
1399 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1401         * calendar/time-date.el (format-seconds): Comment fix.
1403 2010-09-13  Michael R. Mauger  <mmaug@yahoo.com>
1405         * progmodes/sql.el: Version 2.7.
1406         (sql-buffer-live-p): Improve detection.
1407         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
1408         (sql-set-sqli-buffer): Use it.
1409         (sql-product-interactive): Run `sql-set-sqli-hook'.
1410         (sql-rename-buffer): Code cleanup.
1411         (sql-redirect, sql-redirect-value): New functions.  More to come.
1413 2010-09-13  Juanma Barranquero  <lekktu@gmail.com>
1415         Port tramp-related Makefile changes of 2010-09-08T14:42:54Z!michael.albinus@gmx.de, 2010-09-13T15:17:01Z!michael.albinus@gmx.de to Windows.
1416         * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
1417         (TRAMP_SRC): New macro.
1418         ($(lisp)/net/tramp-loaddefs.el): New target.
1420 2010-09-13  Michael Albinus  <michael.albinus@gmx.de>
1422         Major code cleanup.  Split tramp.el into tramp.el and tramp-sh.el.
1424         * Makefile.in (TRAMP_SRC): Remove tramp-fish.el.  Add tramp-sh.el.
1426         * net/tramp.el (top): Don't show loading message.  Require just
1427         'tramp-compat, everything else is required there.
1428         Use `ignore-errors' where appropriate.
1429         (tramp-inline-compress-start-size, tramp-copy-size-limit)
1430         (tramp-terminal-type, tramp-end-of-output)
1431         (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
1432         (tramp-completion-function-alist-ssh)
1433         (tramp-completion-function-alist-telnet)
1434         (tramp-completion-function-alist-su)
1435         (tramp-completion-function-alist-putty, tramp-remote-path)
1436         (tramp-remote-process-environment, tramp-sh-extra-args)
1437         (tramp-actions-before-shell, tramp-uudecode)
1438         (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
1439         (tramp-perl-file-attributes)
1440         (tramp-perl-directory-files-and-attributes)
1441         (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
1442         (tramp-perl-encode, tramp-perl-decode)
1443         (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
1444         (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
1445         (tramp-handle-make-symbolic-link, tramp-handle-load)
1446         (tramp-handle-file-name-as-directory)
1447         (tramp-handle-file-name-directory)
1448         (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
1449         (tramp-handle-file-exists-p, tramp-handle-file-attributes)
1450         (tramp-do-file-attributes-with-ls)
1451         (tramp-do-file-attributes-with-perl)
1452         (tramp-do-file-attributes-with-stat)
1453         (tramp-handle-set-visited-file-modtime)
1454         (tramp-handle-verify-visited-file-modtime)
1455         (tramp-handle-set-file-modes, tramp-handle-set-file-times)
1456         (tramp-set-file-uid-gid, tramp-remote-selinux-p)
1457         (tramp-handle-file-selinux-context)
1458         (tramp-handle-set-file-selinux-context)
1459         (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
1460         (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
1461         (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
1462         (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
1463         (tramp-handle-file-ownership-preserved-p)
1464         (tramp-handle-directory-file-name, tramp-handle-directory-files)
1465         (tramp-handle-directory-files-and-attributes)
1466         (tramp-do-directory-files-and-attributes-with-perl)
1467         (tramp-do-directory-files-and-attributes-with-stat)
1468         (tramp-handle-file-name-all-completions)
1469         (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
1470         (tramp-handle-copy-file, tramp-handle-copy-directory)
1471         (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
1472         (tramp-do-copy-or-rename-file-via-buffer)
1473         (tramp-do-copy-or-rename-file-directly)
1474         (tramp-do-copy-or-rename-file-out-of-band)
1475         (tramp-handle-make-directory, tramp-handle-delete-directory)
1476         (tramp-handle-delete-file)
1477         (tramp-handle-dired-recursive-delete-directory)
1478         (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
1479         (tramp-handle-insert-directory)
1480         (tramp-handle-unhandled-file-name-directory)
1481         (tramp-handle-expand-file-name)
1482         (tramp-handle-substitute-in-file-name)
1483         (tramp-handle-executable-find, tramp-process-sentinel)
1484         (tramp-handle-start-file-process, tramp-handle-process-file)
1485         (tramp-handle-call-process-region, tramp-handle-shell-command)
1486         (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
1487         (tramp-handle-insert-file-contents)
1488         (tramp-handle-insert-file-contents-literally)
1489         (tramp-handle-find-backup-file-name)
1490         (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
1491         (tramp-vc-registered-file-names, tramp-handle-vc-registered)
1492         (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
1493         (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
1494         (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
1495         (tramp-find-file-exists-command, tramp-open-shell)
1496         (tramp-find-shell, tramp-barf-if-no-shell-prompt)
1497         (tramp-open-connection-setup-interactive-shell)
1498         (tramp-local-coding-commands, tramp-remote-coding-commands)
1499         (tramp-find-inline-encoding, tramp-call-local-coding-command)
1500         (tramp-inline-compress-commands, tramp-find-inline-compress)
1501         (tramp-compute-multi-hops, tramp-maybe-open-connection)
1502         (tramp-send-command, tramp-wait-for-output)
1503         (tramp-send-command-and-check, tramp-barf-unless-okay)
1504         (tramp-send-command-and-read, tramp-mode-string-to-int)
1505         (tramp-convert-file-attributes, tramp-check-cached-permissions)
1506         (tramp-file-mode-from-int, tramp-file-mode-permissions)
1507         (tramp-shell-case-fold, tramp-make-copy-program-file-name)
1508         (tramp-method-out-of-band-p, tramp-local-host-p)
1509         (tramp-get-remote-path, tramp-get-remote-tmpdir)
1510         (tramp-get-ls-command, tramp-get-ls-command-with-dired)
1511         (tramp-get-test-command, tramp-get-test-nt-command)
1512         (tramp-get-file-exists-command, tramp-get-remote-ln)
1513         (tramp-get-remote-perl, tramp-get-remote-stat)
1514         (tramp-get-remote-readlink, tramp-get-remote-trash)
1515         (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
1516         (tramp-get-local-uid, tramp-get-local-gid)
1517         (tramp-get-inline-compress, tramp-get-inline-coding): Move to
1518         tramp-sh.el.
1519         (tramp-methods, tramp-default-method-alist)
1520         (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
1521         Move initialization to tramp-sh.el.
1522         (tramp-temp-name-prefix): Make it a defconst.
1523         (tramp-dissect-file-name): Don't check anymore for multi-hop
1524         methods.
1525         (tramp-debug-outline-regexp): Add a docstring.
1526         (tramp-debug-outline-level): Rename from `tramp-outline-level'.
1527         (tramp-get-debug-buffer): Use it.
1529         * net/tramp-cache.el (top): Set tramp-autoload cookie for
1530         initialization forms.
1531         (tramp-set-connection-property): Don't protect `tramp-message'
1532         call, it isn't necessary any longer.
1533         (tramp-dump-connection-properties): Use `ignore-errors'.
1535         * net/tramp-compat.el (top): Require 'advice, 'format-spec,
1536         'password-cache and 'auth-source.
1538         * net/tramp-gvfs.el (top):
1539         * net/tramp-smb.el (top): Require 'tramp-sh.
1541         * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
1543         * net/tramp-sh.el: New file, derived from tramp.el.
1544         (top): Initialize `tramp-methods', `tramp-default-method-alist',
1545         `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
1546         Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
1547         Use `ignore-errors' where appropriate.
1548         (tramp-sh-file-name-handler-alist): Rename from
1549         `tramp-file-name-handler-alist'.
1550         (tramp-send-command-and-check): Return t or nil.  Remove all
1551         `zerop' checks, where called.
1552         (tramp-handle-set-file-modes)
1553         (tramp-do-copy-or-rename-file-directly)
1554         (tramp-handle-delete-directory, tramp-handle-delete-file)
1555         (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
1556         (tramp-sh-file-name-handler, tramp-send-command-and-check)
1557         (tramp-get-remote-ln): Set tramp-autoload cookie.
1559         * net/tramp-fish.el: Remove file.
1561 2010-09-13  Daiki Ueno  <ueno@unixuser.org>
1563         * epa-file.el (epa-file-insert-file-contents): If visiting, bind
1564         buffer-file-name to avoid file-locking.  (Bug#7026)
1566 2010-09-13  Julien Danjou  <julien@danjou.info>
1568         * notifications.el (notifications-notify): Add support for
1569         image-path and sound-name.
1570         (notifications-specification-version): Add this variable.
1572 2010-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1574         * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
1576 2010-09-12  Leo  <sdl.web@gmail.com>
1578         * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
1579         (rcirc-completion-start): New variables.
1580         (rcirc-nick-completions): Rename to rcirc-completions.
1581         (rcirc-nick-completion-start-offset): Delete.
1582         (rcirc-completion-at-point): New function for constructing
1583         completion data for both nicks and irc commands.  Add to
1584         completion-at-point-functions in rcirc mode.
1585         (rcirc-complete): Rename from rcirc-nick-complete; use
1586         rcirc-completion-at-point.
1587         (defun-rcirc-command): Update rcirc-client-commands.
1589 2010-09-11  Glenn Morris  <rgm@gnu.org>
1591         * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
1592         atomically, to avoid parallel build errors.  (Bug#4196)
1594 2010-09-11  Michael R. Mauger  <mmaug@yahoo.com>
1596         * progmodes/sql.el: Version 2.6
1597         (sql-dialect): Synonym for "sql-product".
1598         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
1599         (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
1600         Set "sql-buffer" to buffer name not buffer object so multiple sql
1601         interactive buffers work properly.  Reverts misguided changes in
1602         earlier work.
1603         (sql-comint): Make sure different buffer name is used if "*SQL*"
1604         buffer is for a different product.
1605         (sql-make-alternate-buffer-name): Fix bug with "sql-database"
1606         login param.
1607         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
1608         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
1609         (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
1610         Accept new buffer name or prompt for one.
1611         (sql-port): Default to zero.
1612         (sql-comint-mysql): Handle "sql-port" as a numeric.
1613         (sql-port-history): Delete unused variable.
1614         (sql-get-login): Default "sql-port" to a number.
1615         (sql-product-alist): Correct Postgres prompt and terminator regexp.
1616         (sql-sqlite-program): Dynamically detect presence of "sqlite" or
1617         "sqlite3" executables.
1618         (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
1619         (sql-buffer-live-p): New function.
1620         (sql-mode-menu, sql-send-string): Use it.
1621         (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
1622         syntax pattern.
1623         (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
1624         (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
1626 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1628         * net/netrc.el (netrc-credentials): New convenience function.
1630 2010-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1632         * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
1633         to replace texinfo-font-lock-syntactic-keywords.
1634         (texinfo-mode): Use it.
1636         * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
1637         Use syntax-propertize-function.
1639         * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
1640         replace sgml-font-lock-syntactic-keywords.
1641         (sgml-mode): Use it.
1643         * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
1644         since we don't use it.
1646         * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
1648         * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
1649         if available.
1650         (vhdl-fontify-buffer): Adjust.
1652         * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
1653         replace tcl-font-lock-syntactic-keywords.
1654         (tcl-mode): Use it.
1656         * progmodes/simula.el (simula-syntax-propertize-function): New var to
1657         replace simula-font-lock-syntactic-keywords.
1658         (simula-mode): Use it.
1660         * progmodes/sh-script.el (sh-st-symbol): Remove.
1661         (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
1662         (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
1663         (sh-font-lock-quoted-subshell): Assume we've already matched $(.
1664         (sh-font-lock-paren): Set syntax-multiline.
1665         (sh-font-lock-syntactic-keywords): Remove.
1666         (sh-syntax-propertize-function): New function to replace it.
1667         (sh-mode): Use it.
1669         * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
1670         Define while compiling.
1671         (ruby-here-doc-end-re, ruby-here-doc-beg-match)
1672         (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
1673         (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
1674         (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
1675         (ruby-here-doc-end-syntax): Only define when
1676         syntax-propertize is not available.
1677         (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
1678         New functions.
1679         (ruby-in-ppss-context-p): Update to new syntax of heredocs.
1680         (electric-indent-chars): Silence bytecompiler.
1681         (ruby-mode): Use prog-mode, syntax-propertize-function, and
1682         electric-indent-chars.
1684         * progmodes/python.el (python-syntax-propertize-function): New var to
1685         replace python-font-lock-syntactic-keywords.
1686         (python-mode): Use it.
1687         (python-quote-syntax): Simplify and adjust to new use.
1689         * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
1690         replace perl-font-lock-syntactic-keywords.
1691         (perl-syntax-propertize-special-constructs): New fun to replace
1692         perl-font-lock-special-syntactic-constructs.
1693         (perl-font-lock-syntactic-face-function): New fun.
1694         (perl-mode): Use it.
1696         * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
1697         to replace octave-font-lock-close-quotes.
1698         (octave-syntax-propertize-function): New function to replace
1699         octave-font-lock-syntactic-keywords.
1700         (octave-mode): Use it.
1702         * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
1703         replaces mixal-font-lock-syntactic-keywords.
1704         (mixal-mode): Use it.
1706         * progmodes/make-mode.el (makefile-syntax-propertize-function):
1707         New var; replaces makefile-font-lock-syntactic-keywords.
1708         (makefile-mode): Use it.
1709         (makefile-imake-mode): Adjust.
1711         * progmodes/js.el (js--regexp-literal): Define while compiling.
1712         (js-syntax-propertize-function): New var; replaces
1713         js-font-lock-syntactic-keywords.
1714         (js-mode): Use it.
1716         * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
1717         replaces gdb-script-font-lock-syntactic-keywords.
1718         (gdb-script-mode): Use it.
1720         * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
1721         (fortran--font-lock-syntactic-keywords): New var.
1722         (fortran-line-length): Update syntax-propertize-function and
1723         fortran--font-lock-syntactic-keywords.
1725         * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
1727         * progmodes/cfengine.el (cfengine-mode):
1728         Use syntax-propertize-function.
1729         (cfengine-font-lock-syntactic-keywords): Remove.
1731         * progmodes/autoconf.el (autoconf-mode):
1732         Use syntax-propertize-function.
1733         (autoconf-font-lock-syntactic-keywords): Remove.
1735         * progmodes/ada-mode.el (ada-set-syntax-table-properties)
1736         (ada-after-change-function, ada-initialize-syntax-table-properties)
1737         (ada-handle-syntax-table-properties): Only define when
1738         syntax-propertize is not available.
1739         (ada-mode): Use syntax-propertize-function.
1741         * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
1742         (font-lock-fontify-syntactic-keywords-region): Move handling of
1743         font-lock-syntactically-fontified to...
1744         (font-lock-default-fontify-region): ...here.
1745         Let syntax-propertize-function take precedence.
1746         (font-lock-fontify-syntactically-region): Cal syntax-propertize.
1748         * emacs-lisp/syntax.el (syntax-propertize-function)
1749         (syntax-propertize-chunk-size, syntax-propertize--done)
1750         (syntax-propertize-extend-region-functions): New vars.
1751         (syntax-propertize-wholelines, syntax-propertize-multiline)
1752         (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
1753         (syntax-propertize): New functions.
1754         (syntax-propertize-rules): New macro.
1755         (syntax-ppss-flush-cache): Set syntax-propertize--done.
1756         (syntax-ppss): Call syntax-propertize.
1758         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
1760 2010-09-10  Agustín Martín  <agustin.martin@hispalinux.es>
1762         * textmodes/ispell.el (ispell-init-process): Improve comments.
1763         XEmacs compatibility changes regarding (add-hook) 'local option
1764         and (set-process-query-on-exit-flag).
1766 2010-09-09  Michael Albinus  <michael.albinus@gmx.de>
1768         * net/tramp-cache.el (tramp-parse-connection-properties):
1769         Set tramp-autoload cookie.
1771 2010-09-09  Glenn Morris  <rgm@gnu.org>
1773         * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
1774         (imagemagick-register-types): Doc fix.
1776 2010-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1778         * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
1780         * progmodes/js.el (require): Require is already "eval-and-compile".
1781         (js--re-search-forward): Avoid `eval'.  Preserve the error data.
1782         (js--re-search-backward): Use js--re-search-forward.
1784         * progmodes/fortran.el (fortran-line-length): Don't recompute
1785         syntactic keywords redundantly a second time.
1787         * progmodes/ada-mode.el: Replace "(set '" with setq.
1788         (ada-mode): Simplify.
1789         (ada-create-case-exception, ada-adjust-case-interactive)
1790         (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
1791         (ada-search-ignore-string-comment, ada-move-to-start)
1792         (ada-move-to-end): Use with-syntax-table.
1794         * font-lock.el (save-buffer-state): Remove `varlist' arg.
1795         (font-lock-unfontify-region, font-lock-default-fontify-region):
1796         Update usage correspondingly.
1797         (font-lock-fontify-syntactic-keywords-region):
1798         Set parse-sexp-lookup-properties buffer-locally here.
1799         (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
1801         * simple.el (blink-matching-open): Don't burp if we can't find a match.
1803 2010-09-08  Glenn Morris  <rgm@gnu.org>
1805         * emacs-lisp/bytecomp.el (byte-compile-report-ops):
1806         Error if not compiled with -DBYTE_CODE_METER.
1808         * emacs-lisp/bytecomp.el (byte-recompile-directory):
1809         Ignore dir-locals-file.
1811 2010-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1813         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1814         Not a const.
1815         (compilation-error-regexp-alist-alist): Rule out ": " in file names
1816         for the `gnu' messages.
1817         (compilation-set-skip-threshold): New command.
1818         (compilation-start): Use \' rather than $.
1819         (compilation-forget-errors): Use clrhash.
1821 2010-09-08  Agustín Martín  <agustin.martin@hispalinux.es>
1823         * textmodes/ispell.el (ispell-valid-dictionary-list):
1824         Simplify logic.
1826 2010-09-08  Michael Albinus  <michael.albinus@gmx.de>
1828         Migrate to Tramp 2.2.  Rearrange load dependencies.
1829         (Bug#1529, Bug#5448, Bug#5705)
1831         * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
1832         ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
1833         (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
1835         * net/tramp.el (top): Remove all other tramp-* loads except
1836         tramp-compat.el.  Remove all changes to tramp-unload-hook for
1837         other tramp-* packages.  Rearrange defun order.  Change calls of
1838         `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
1839         `tramp-compat-octal-to-decimal' to new function names.
1840         (tramp-terminal-type, tramp-initial-end-of-output)
1841         (tramp-methods, tramp-foreign-file-name-handler-alist)
1842         (tramp-tramp-file-p, tramp-completion-mode-p)
1843         (tramp-send-command-and-check, tramp-get-remote-path)
1844         (tramp-get-remote-tmpdir, tramp-get-remote-ln)
1845         (tramp-shell-quote-argument): Set tramp-autoload cookie.
1846         (with-file-property, with-connection-property): Move to
1847         tramp-cache.el.
1848         (tramp-local-call-process, tramp-decimal-to-octal)
1849         (tramp-octal-to-decimal): Move to tramp-compat.el.
1850         (tramp-handle-shell-command): Do not require 'shell.
1851         (tramp-compute-multi-hops): No special handling for tramp-gw-*
1852         symbols.
1853         (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
1855         * net/tramp-cache.el (top): Require 'tramp.  Add to
1856         `tramp-unload-hook'.
1857         (tramp-cache-data, tramp-get-file-property)
1858         (tramp-set-file-property, tramp-flush-file-property)
1859         (tramp-flush-directory-property, tramp-get-connection-property)
1860         (tramp-set-connection-property, tramp-flush-connection-property)
1861         (tramp-cache-print, tramp-list-connections): Set tramp-autoload
1862         cookie.
1863         (with-file-property, with-connection-property): New defuns, moved
1864         from tramp.el.
1865         (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
1866         macro.
1868         * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
1869         (tramp-version): Set tramp-autoload cookie.
1871         * net/tramp-compat.el (top): Require 'tramp-loaddefs.  Remove all
1872         changes to tramp-unload-hook for other tramp-* packages.  Add to
1873         `tramp-unload-hook'.
1874         (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
1875         (tramp-compat-call-process): New defuns, moved from tramp.el.
1877         * net/tramp-fish.el (top) Require just 'tramp.  Add objects to
1878         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
1879         to `tramp-unload-hook'.  Change call of
1880         `tramp-compat-decimal-to-octal' to new function name.
1881         (tramp-fish-method): Make it a defconst.
1882         (tramp-fish-file-name-p): Make it a defsubst.
1883         (tramp-fish-method, tramp-fish-file-name-handler)
1884         (tramp-fish-file-name-p): Set tramp-autoload cookie.
1886         * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
1887         `tramp-foreign-file-name-handler-alist'.  Add to
1888         `tramp-unload-hook'.
1889         (tramp-ftp-method): Make it a defconst.
1890         (tramp-ftp-file-name-p): Make it a defsubst.
1891         (tramp-ftp-method, tramp-ftp-file-name-handler)
1892         (tramp-ftp-file-name-p): Set tramp-autoload cookie.
1894         * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
1895         `tramp-foreign-file-name-handler-alist'.  Add to
1896         `tramp-unload-hook'.  Change checks, whether package can be
1897         loaded.
1898         (tramp-gvfs-file-name-p): Make it a defsubst.
1899         (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
1900         (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
1901         (tramp-gvfs-handle-file-directory-p): New defun.
1902         (tramp-gvfs-file-name-handler-alist): Use it.
1904         * net/tramp-gw.el (top) Add objects to `tramp-methods' and
1905         `tramp-foreign-file-name-handler-alist'.  Add to
1906         `tramp-unload-hook'.
1907         (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
1908         (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
1909         defconst.
1910         (tramp-gw-tunnel-method, tramp-gw-socks-method)
1911         (tramp-gw-open-connection): Set tramp-autoload cookie.
1913         * net/tramp-imap.el (top) Require just 'tramp.  Add objects to
1914         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
1915         to `tramp-unload-hook'.  Change checks, whether package can be
1916         loaded.
1917         (tramp-imap-file-name-p): Make it a defsubst.
1918         (tramp-imap-method, tramp-imaps-method)
1919         (tramp-imap-file-name-handler)
1920         (tramp-imap-file-name-p): Set tramp-autoload cookie.
1922         * net/tramp-smb.el (top) Require just 'tramp.  Add objects to
1923         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
1924         to `tramp-unload-hook'.  Change checks, whether package can be
1925         loaded.  Change call of `tramp-compat-decimal-to-octal' to new
1926         function name.
1927         (tramp-smb-tunnel-method): Make it a defconst.
1928         (tramp-smb-file-name-p): Make it a defsubst.
1929         (tramp-smb-method, tramp-smb-file-name-handler)
1930         (tramp-smb-file-name-p): Set tramp-autoload cookie.
1932         * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
1933         (tramp-uuencode-region): Set tramp-autoload cookie.
1935         * net/trampver.el (top) Add to `tramp-unload-hook'.
1936         (tramp-version, tramp-bug-report-address): Set tramp-autoload
1937         cookie.  Update release number.
1939 2010-09-07  Agustín Martín  <agustin.martin@hispalinux.es>
1941         * textmodes/ispell.el (ispell-start-process): Make sure original
1942         arg list is properly initialized (Bug#6993, Bug#6994).
1944 2010-09-06  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
1946         * files.el (directory-abbrev-alist): Use \` as default regexp.
1948         * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
1949         chars like - or ] (bug#6984).
1950         (rx-any-condense-range): Explode 2-char ranges.
1952 2010-09-06  Glenn Morris  <rgm@gnu.org>
1954         * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
1956 2010-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1958         * textmodes/bibtex.el:
1959         * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
1961 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1963         * net/imap.el (imap-message-map): Remove optional buffer parameter,
1964         since no callers use it.
1965         (imap-message-get): Ditto.
1966         (imap-message-put): Ditto.
1967         (imap-mailbox-map): Ditto.
1968         (imap-mailbox-put): Ditto.
1969         (imap-mailbox-get): Ditto.
1970         (imap-mailbox-get): Revert last change for this function.
1972 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1974         * net/imap.el (imap-fetch-safe): Remove function, and alter all
1975         callers to use `imap-fetch' instead.  According to the comments, this
1976         should be safe, since all other IMAP clients use the 1:* syntax.
1977         (imap-enable-exchange-bug-workaround): Remove.
1978         (imap-debug): Remove -- doesn't seem very useful.
1980 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1982         * net/imap.el (imap-log): New convenience function used throughout
1983         instead of repeating the same code all over the place.
1985 2010-09-05  David De La Harpe Golden  <david@harpegolden.net>
1987         * mouse.el (mouse-save-then-kill): Save region to kill-ring
1988         when mouse-drag-copy-region is non-nil (Bug#6956).
1990 2010-09-05  Chong Yidong  <cyd@stupidchicken.com>
1992         * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
1993         Improve regexps (Bug#6987).
1994         (dired-sort-toggle): Search more robustly for -t flag.
1996         * files.el (get-free-disk-space): Search more robustly for
1997         "available" column.  Suggested by Ehud Karni
1998         <ehud@unix.mvs.co.il>.
2000 2010-09-05  Juanma Barranquero  <lekktu@gmail.com>
2002         * international/uni-bidi.el:
2003         * international/uni-category.el:
2004         * international/uni-combining.el:
2005         * international/uni-decimal.el:
2006         * international/uni-mirrored.el:
2007         * international/uni-name.el: Regenerate.
2009 2010-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2011         * electric.el (electric-indent-post-self-insert-function):
2012         Don't reindent with a sloppy indentation function.
2014         * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
2015         border case in change-log-mode.
2017 2010-09-04  Chong Yidong  <cyd@stupidchicken.com>
2019         * progmodes/compile.el (compilation-error-regexp-alist-alist):
2020         Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
2021         Recognize leading tab in gcc-include regexp.  Ignore names with
2022         leading "from" or "in" in gnu regexp (Bug#6937).
2024 2010-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2026         Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
2027         * textmodes/ispell.el (ispell-process-buffer-name): Remove.
2028         (ispell-start-process): Avoid setq and simplify logic.
2029         (ispell-init-process): Setup kill-buffer-hook locally when needed.
2030         (kill-buffer-hook): Don't use it globally with code that uses
2031         expand-file-name since that may call kill-buffer via
2032         code_conversion_restore.
2034 2010-09-04  Noorul Islam K M  <noorul@noorul.com>  (tiny change)
2036         * emacs-lisp/package.el (package-directory-list): Only call
2037         file-name-nondirectory on a string.
2039 2010-09-02  Chong Yidong  <cyd@stupidchicken.com>
2041         * emacs-lisp/package.el (package--download-one-archive):
2042         Ensure that archive-contents is valid before saving it.
2043         (package-activate-1, package-mark-obsolete, define-package)
2044         (package-compute-transaction, package-list-maybe-add): Use push.
2046 2010-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2048         Use SMIE's blink-paren for octave-mode.
2049         * progmodes/octave-mod.el (octave-font-lock-close-quotes):
2050         Backslashes do not escape single-quotes, single-quotes do.
2051         (octave-block-else-regexp, octave-block-end-regexp)
2052         (octave-block-match-alist): Remove.
2053         (octave-smie-bnf-table): New var, with old content.
2054         (octave-smie-op-levels): Use it.
2055         (octave-smie-closer-alist): New var.
2056         (octave-mode): Use it.  Setup smie-blink-matching and electric-indent.
2057         (octave-blink-matching-block-open): Remove.
2058         (octave-reindent-then-newline-and-indent, octave-electric-semi)
2059         (octave-electric-space): Let self-insert-command run expand-abbrev and
2060         blink parens.
2062         * electric.el (electricity): New group.
2063         (electric-indent-chars): New var.
2064         (electric-indent-post-self-insert-function): New fun.
2065         (electric-indent-mode): New minor mode.
2066         (electric-pair-skip-self): New custom.
2067         (electric-pair-post-self-insert-function): New function.
2068         (electric-pair-mode): New minor mode.
2070         * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
2071         calcAlg-blink-matching-open.
2072         (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
2073         (calc-do-alg-entry): Only touch the part of the keymap that varies.
2074         Use the new blink-matching-check-function.
2076         Provide blink-matching support to SMIE.
2077         * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
2078         (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
2079         (smie-blink-matching-check, smie-blink-matching-open): New functions.
2081         * simple.el (newline): Fix last change to properly remove itself from
2082         the hook.
2084 2010-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2086         * simple.el (newline): Eliminate optimization.
2087         Use post-self-insert-hook to set hard-newline and things before
2088         running post-self-insert-hook.
2089         (blink-matching-check-mismatch): New function.
2090         (blink-matching-check-function): New variable.
2091         (blink-matching-open): Use them.
2092         Skip back forward over prefix chars skipped by forward-sexp.
2093         Don't check if the parens are backslash escaped.
2094         (blink-paren-post-self-insert-function): Check backslash escaping here.
2096 2010-09-02  Chong Yidong  <cyd@stupidchicken.com>
2098         * emacs-lisp/package.el (package-menu-mode-map):
2099         Change package-menu-revert bindings to revert-buffer.
2100         (package-menu-mode): Set revert-buffer-function.
2101         (package-menu-revert): Doc fix.
2103 2010-09-02  Agustín Martín  <agustin.martin@hispalinux.es>
2105         * textmodes/ispell.el (ispell-init-process): Use "~/" as
2106         `default-directory' unless using Ispell per-directory personal
2107         dictionaries and not in a mini-buffer under XEmacs.
2108         (kill-buffer-hook): Do not kill ispell process on exit when
2109         `ispell-process-directory' is "~/".  (Bug#6143)
2111 2010-09-02  Jan Djärv  <jan.h.d@swipnet.se>
2113         * simple.el (kill-new): Call interprogram-cut-function with only
2114         one argument.
2116         * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
2117         Remove cut buffer from error message.
2119         * term/x-win.el (x-select-text):
2120         * term/pc-win.el (x-selection-value):
2121         * term/ns-win.el (x-selection-value):
2122         * eshell/em-term.el:
2123         * w32-fns.el (x-get-selection-value):
2124         * mouse-sel.el (mouse-sel-set-selection-function):
2125         * frame.el (display-selections-p): Remove cut-buffer in documentation.
2127         * term/x-win.el: Update documentation for x-last-selected-text-*.
2128         (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
2129         (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
2130         (x-select-text): Remove argument PUSH, update documentation.  Remove
2131         cut-buffer code.
2132         (x-selection-value-internal): Was previously x-selection-value.
2133         (x-selection-value): Rename from x-cut-buffer-or-selection-value.
2134         Update documentation, remove cut-buffer code.  Call
2135         x-selection-value-internal.
2136         (x-clipboard-yank): Call x-selection-value-internal.
2137         (x-initialize-window-system): Remove setting of x-cut-buffer-max.
2139         * term/pc-win.el (x-last-selected-text):
2140         x-cut-buffer-or-selection-value renamed to x-selection-value
2141         (x-select-text): Remove argument PUSH, update documentation.
2143         * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
2144         x-cut-buffer-or-selection-value renamed to x-selection-value
2145         (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
2146         (x-select-text): Remove argument PUSH, update documentation.
2148         * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
2150         * w32-fns.el (x-last-selected-text):
2151         x-cut-buffer-or-selection-value renamed to x-selection-value.
2152         (x-cut-buffer-max): Remove.
2153         (x-select-text): Remove argument PUSH, update documentation.
2155         * simple.el (interprogram-cut-function): Remove mention of PUSH.
2157         * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
2159         * mouse-sel.el (mouse-sel-get-selection-function):
2160         x-cut-buffer-or-selection-value renamed to x-selection-value.
2161         (x-select-text): Remove optional push.
2163 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2165         * simple.el (blink-paren-function): Move from C to here.
2166         (blink-paren-post-self-insert-function): New function.
2167         (post-self-insert-hook): Use it.
2169         * emacs-lisp/pcase.el (pcase-split-memq):
2170         Fix overenthusiastic optimisation.
2171         (pcase-u1): Handle the case of a lambda pred.
2173 2010-08-31  Kenichi Handa  <handa@m17n.org>
2175         * international/mule-cmds.el (standard-display-european-internal):
2176         Setup standard-display-table for 8-bit characters by storing 8-bit
2177         characters in the element vector.
2179         * disp-table.el (standard-display-8bit):
2180         Setup standard-display-table for 8-bit characters by storing 8-bit
2181         characters in the element vector.
2182         (standard-display-european): Likewise.
2184 2010-08-31  Masatake YAMATO  <yamato@redhat.com>
2186         * textmodes/nroff-mode.el (nroff-view): New command.
2187         (nroff-mode-map): Bind it to C-c C-c.
2189 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
2191         * emacs-lisp/smie.el (smie-down-list): New command.
2193         Remove old indentation and navigation code on octave-mode.
2194         * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
2195         smie-down-list rather than add a binding for octave-down-block.
2196         (octave-mark-block, octave-blink-matching-block-open):
2197         Rely on forward-sexp-function.
2198         (octave-fill-paragraph): Don't narrow, so you can use
2199         indent-according-to-mode.
2200         (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
2201         (octave-in-block-p, octave-re-search-forward-kw)
2202         (octave-re-search-backward-kw, octave-indent-calculate)
2203         (octave-end-as-array-index-p, octave-block-end-offset)
2204         (octave-scan-blocks, octave-forward-block, octave-backward-block)
2205         (octave-down-block, octave-backward-up-block, octave-up-block)
2206         (octave-before-magic-comment-p, octave-indent-line): Remove.
2208 2010-08-31  Chong Yidong  <cyd@stupidchicken.com>
2210         * emacs-lisp/package.el (package--read-archive-file): Just use
2211         `read', to avoid copying an additional string.
2212         (package-menu-mode): Set header-line-format here.
2213         (package-menu-refresh, package-menu-revert): Signal an error if
2214         not in the Package Menu.
2215         (package-menu-package-list): New var.
2216         (package--generate-package-list): Operate on the current buffer;
2217         don't assume that it is *Packages*, since the user may rename it.
2218         Allow persistent package listings and sort keys using
2219         package-menu-package-list and package-menu-package-sort-key.
2220         (package-menu--version-predicate): Fix version calculation.
2221         (package-menu-sort-by-column): Don't select the window.
2222         (package--list-packages): Create the *Packages* buffer.
2223         Set package-menu-package-list-key.
2224         (list-packages): Sorting by status is now the default.
2225         (package-buffer-info): Use match-string-no-properties.
2226         (define-package): Add a &rest argument for future proofing, but
2227         don't use it yet.
2228         (package-install-from-buffer, package-install-buffer-internal):
2229         Merge into a single function, package-install-from-buffer.
2230         (package-install-file): Change caller.
2232         * finder.el: Load finder-inf using `require'.
2233         (finder-list-matches): Sorting by status is now the default.
2234         (finder-compile-keywords): Simpify printing.
2236 2010-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2238         * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
2239         (octave-mode-map): Remove special bindings for forward/backward-block
2240         and octave-backward-up-block.  Use smie-close-block.
2241         (octave-continuation-marker-regexp): New var.
2242         (octave-continuation-regexp): Use it.
2243         (octave-operator-table, octave-smie-op-levels)
2244         (octave-operator-regexp, octave-smie-indent-rules): New vars.
2245         (octave-smie-backward-token, octave-smie-forward-token): New funs.
2246         (octave-mode): Use SMIE.
2247         (octave-close-block): Delete.
2249 2010-08-30  Eli Zaretskii  <eliz@gnu.org>
2251         * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
2252         CLIPBOARD, not in PRIMARY.  (Bug#6944)
2254 2010-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2256         * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
2257         a list of parents.
2258         (smie-indent-column): Allow indirection through variables.
2260         * composite.el (save-buffer-state): Delete, unused.
2261         * font-lock.el (save-buffer-state): Use with-silent-modifications.
2262         (font-lock-default-fontify-region): Use with-syntax-table.
2263         * jit-lock.el (with-buffer-unmodified): Remove.
2264         (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
2266         Use `declare' in defmacros.
2267         * window.el (save-selected-window):
2268         * subr.el (with-temp-file, with-temp-message, with-syntax-table):
2269         * progmodes/python.el (def-python-skeleton):
2270         * net/dbus.el (dbus-ignore-errors):
2271         * jka-cmpr-hook.el (with-auto-compression-mode):
2272         * international/mule.el (with-category-table):
2273         * emacs-lisp/timer.el (with-timeout):
2274         * emacs-lisp/lisp-mnt.el (lm-with-file):
2275         * emacs-lisp/eieio.el (with-slots):
2276         * emacs-lisp/easymenu.el (easy-menu-define):
2277         * emacs-lisp/debug.el (debugger-env-macro):
2278         * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
2279         (Multiple-value-call, Multiple-value-prog1):
2280         * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
2281         (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
2282         edebug rule to definition.
2283         * emacs-lisp/lisp-mode.el (save-selected-window)
2284         (with-current-buffer, combine-after-change-calls)
2285         (with-output-to-string, with-temp-file, with-temp-buffer)
2286         (with-temp-message, with-syntax-table, read-if, eval-after-load)
2287         (dolist, dotimes, when, unless):
2288         * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
2290 2010-08-29  Chong Yidong  <cyd@stupidchicken.com>
2292         * finder.el: Require `package'.
2293         (finder-known-keywords): Tweak descriptions.  Retire `oop' keyword.
2294         (finder-package-info): Var deleted.
2295         (finder-keywords-hash, finder--builtins-alist): New vars.
2296         (finder-compile-keywords): Compute package--builtins and
2297         finder-keywords-hash instead of finder-keywords-hash, respecting
2298         the "Package" header.
2299         (finder-unknown-keywords, finder-list-matches):
2300         Use finder-keywords-hash and package--list-packages.
2301         (finder-mode): Don't set font-lock-defaults.
2302         (finder-exit): We don't use "*Finder-package*" and "*Finder
2303         Category*" buffers anymore.
2305         * emacs-lisp/package.el (package--builtins-base): Var deleted.
2306         (package--builtins): Set default value to nil.
2307         (package-initialize): Load precomputed value of package--builtins
2308         from finder-inf.el.
2309         (package-alist, package-compute-transaction)
2310         (package-download-transaction): Improve docstring.
2311         (package-read-all-archive-contents): Do not change
2312         package--builtins here.
2313         (list-packages): Make package-list-packages an alias for this.
2314         Sort by status by default.
2315         (package--list-packages): Add optional PACKAGES arg.
2316         (describe-package-1): Use font-lock-face property.  For built-in
2317         packages, insert file commentary.
2318         (package--generate-package-list): Rename from
2319         package-list-packages-internal; all callers changed.  Add optional
2320         PACKAGES arg.  Add alphabetical sort fallbacks.
2321         (package-menu--version-predicate, package-menu--status-predicate)
2322         (package-menu--description-predicate)
2323         (package-menu--name-predicate): New functions.
2325         * info.el (Info-finder-find-node): Search package-alist instead of
2326         finder-package-info.
2328 2010-08-29  Chong Yidong  <cyd@stupidchicken.com>
2330         * subr.el (version-regexp-alist): Don't use "a" and "b" for
2331         "alpha" and "beta".
2332         (version-to-list): Handle versions like "10.3d".
2334 2010-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2336         * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
2337         (macroexp-accumulate): Use `declare'.
2339 2010-08-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2341         * whitespace.el (whitespace-style): Adjust type declaration.
2343 2010-08-26  Magnus Henoch  <magnus.henoch@gmail.com>
2345         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
2346         empty argument to gvfs-copy.
2348 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
2350         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
2351         handle new TRASH arg of `delete-file'.
2353 2010-08-26  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
2355         * net/tramp.el (tramp-handle-insert-directory): Don't use
2356         `forward-word', its default syntax could be changed.
2358 2010-08-26  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
2359             Michael Albinus  <michael.albinus@gmx.de>
2361         Implement compression for inline methods.
2363         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
2364         (tramp-copy-size-limit): Allow also nil.
2365         (tramp-inline-compress-commands): New defconst.
2366         (tramp-find-inline-compress, tramp-get-inline-compress)
2367         (tramp-get-inline-coding): New defuns.
2368         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
2369         replaced by `tramp-get-inline-coding'.
2370         (tramp-handle-file-local-copy, tramp-handle-write-region)
2371         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
2373 2010-08-26  Noah Lavine  <noah549@gmail.com>  (tiny change)
2375         Detect ssh 'ControlMaster' argument automatically in some cases.
2377         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
2378         (tramp-default-method): Use it.
2380 2010-08-26  Karel Klíč  <kklic@redhat.com>
2382         * net/tramp.el (tramp-file-name-for-operation):
2383         Add file-selinux-context.
2385 2010-08-26  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
2387         * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
2389 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
2391         * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
2392         (Bug#6907).
2394 2010-08-26  Nathan Weizenbaum  <nweiz@cressida.sea.corp.google.com>  (tiny change)
2396         * progmodes/js.el: Make indentation more customizable (Bug#6914).
2397         (js-paren-indent-offset, js-square-indent-offset)
2398         (js-curly-indent-offset): New options.
2399         (js--proper-indentation): Use them.
2401 2010-08-26  Daniel Colascione  <dan.colascione@gmail.com>
2403         * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
2404         instead of inspecting font-lock properties (Bug#6916).
2406 2010-08-26  David Reitter  <david.reitter@gmail.com>
2408         * server.el (server-visit-files): Run pre-command-hook and
2409         post-command-hook for each buffer while it is current (Bug#6910).
2410         (server-execute): Do not run hooks here.
2412 2010-08-26  Michael Albinus  <michael.albinus@gmx.de>
2414         Sync with Tramp 2.1.19.
2416         * net/tramp-cmds.el (tramp-cleanup-all-connections)
2417         (tramp-reporter-dump-variable, tramp-load-report-modules)
2418         (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
2419         (tramp-bug): Recommend setting of `tramp-verbose' to 9.
2421         * net/tramp-compat.el (top): Do not autoload
2422         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
2423         only when `start-file-process' is not bound.
2424         (byte-compile-not-obsolete-vars): Define if not bound.
2425         (tramp-compat-funcall): New defmacro.
2426         (tramp-compat-line-beginning-position)
2427         (tramp-compat-line-end-position)
2428         (tramp-compat-temporary-file-directory)
2429         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
2430         (tramp-compat-copy-file, tramp-compat-copy-directory)
2431         (tramp-compat-delete-file, tramp-compat-delete-directory)
2432         (tramp-compat-number-sequence, tramp-compat-process-running-p):
2433         Use it.
2434         (tramp-advice-file-expand-wildcards): Do not use
2435         `tramp-handle-file-remote-p'.
2436         (tramp-compat-make-temp-file): Simplify fallback implementation.
2437         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
2438         (tramp-compat-copy-tree): Remove function.
2439         (tramp-compat-delete-file): New defun.
2440         (tramp-compat-delete-directory): Provide implementation for older
2441         Emacsen.
2442         (tramp-compat-file-attributes): Handle only
2443         `wrong-number-of-arguments' error.
2445         * net/tramp-fish.el (tramp-fish-handle-copy-file):
2446         Add PRESERVE_SELINUX_CONTEXT.
2447         (tramp-fish-handle-delete-file): Add TRASH arg.
2448         (tramp-fish-handle-directory-files-and-attributes):
2449         Do not use `tramp-fish-handle-file-attributes.
2450         (tramp-fish-handle-file-local-copy)
2451         (tramp-fish-handle-insert-file-contents)
2452         (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
2454         * net/tramp-gvfs.el (top): Require url-util.
2455         (tramp-gvfs-mount-point): Remove.
2456         (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
2457         and `set-file-selinux-context'.
2458         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
2459         (tramp-gvfs-handle-file-selinux-context)
2460         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
2461         (with-tramp-dbus-call-method): Format trace message.
2462         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
2463         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
2464         Implement backup call, when operation on local files fails.
2465         Use progress reporter.  Flush properties of changed files.
2466         (tramp-gvfs-handle-delete-file): Add TRASH arg.  Use
2467         `tramp-compat-delete-file'.
2468         (tramp-gvfs-handle-expand-file-name): Expand "~/".
2469         (tramp-gvfs-handle-make-directory): Make more traces.
2470         (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
2471         (tramp-gvfs-url-file-name): Hexify file name in url.
2472         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
2473         into account for the resulting file name.
2474         (tramp-gvfs-handler-askquestion): Preserve current message, in
2475         order to let progress reporter continue afterwards.  (Bug#6257)
2476         Return dummy mountpoint, when the answer is "no".
2477         See `tramp-gvfs-maybe-open-connection'.
2478         (tramp-gvfs-handler-mounted-unmounted)
2479         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
2480         attribute "default_location".  Set "prefix" property.
2481         Handle default-location.
2482         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
2483         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
2484         exists.  Raise an error, if not (due to a corresponding answer
2485         "no" in interactive questions, for example).
2486         Use `tramp-compat-funcall'.
2488         * net/tramp-imap.el (top): Autoload `epg-make-context'.
2489         (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
2490         (tramp-imap-do-copy-or-rename-file)
2491         (tramp-imap-handle-insert-file-contents)
2492         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
2493         (tramp-imap-handle-delete-file): Add TRASH arg.
2495         * net/tramp-smb.el (tramp-smb-handle-copy-file):
2496         Add PRESERVE-SELINUX-CONTEXT.
2497         (tramp-smb-handle-copy-file)
2498         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
2499         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
2500         Use `with-progress-reporter'.
2501         (tramp-smb-handle-delete-file): Add TRASH arg.
2503         * net/tramp.el (tramp-methods): Move hostname to the end in all
2504         ssh `tramp-login-args'.  Add `tramp-async-args' attribute where
2505         appropriate.
2506         (tramp-verbose): Describe verbose level 9.
2507         (tramp-completion-function-alist)
2508         (tramp-file-name-regexp, tramp-chunksize)
2509         (tramp-local-coding-commands, tramp-remote-coding-commands)
2510         (with-connection-property, tramp-completion-mode-p)
2511         (tramp-action-process-alive, tramp-action-out-of-band)
2512         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
2513         (tramp-exists-file-name-handler): Fix docstring.
2514         (tramp-remote-process-environment): Use `format' instead of
2515         `concat'.  Protect version string by apostroph.
2516         (tramp-shell-prompt-pattern): Do not use a shy group in case of
2517         XEmacs.
2518         (tramp-file-name-regexp-unified)
2519         (tramp-completion-file-name-regexp-unified): On W32 systems, do
2520         not regard the volume letter as remote filename.  (Bug#5447)
2521         (tramp-perl-file-attributes)
2522         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
2523         (tramp-vc-registered-read-file-names): Read input as
2524         here-document, otherwise the command could exceed maximum length
2525         of command line.
2526         (tramp-file-name-handler-alist): Add `file-selinux-context' and
2527         `set-file-selinux-context'.
2528         (tramp-debug-message): Add `tramp-compat-funcall' to ignored
2529         backtrace functions.
2530         (tramp-error-with-buffer): Don't show the connection buffer when
2531         we are in completion mode.
2532         (tramp-progress-reporter-update, tramp-remote-selinux-p)
2533         (tramp-handle-file-selinux-context)
2534         (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
2535         (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
2536         New defuns.
2537         (with-progress-reporter): New defmacro.
2538         (tramp-debug-outline-regexp): New defconst.
2539         (top, tramp-rfn-eshadow-setup-minibuffer)
2540         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
2541         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
2542         (tramp-completion-mode-p, tramp-check-for-regexp)
2543         (tramp-open-connection-setup-interactive-shell)
2544         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
2545         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
2546         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
2547         Use `tramp-compat-funcall'.
2548         (tramp-handle-make-symbolic-link): Flush file properties.
2549         (tramp-handle-load, tramp-handle-file-local-copy)
2550         (tramp-handle-insert-file-contents, tramp-handle-write-region)
2551         (tramp-handle-vc-registered, tramp-maybe-send-script)
2552         (tramp-find-shell): Use `with-progress-reporter'.
2553         (tramp-do-file-attributes-with-stat): Add space in format string,
2554         in order to work around a bug in pdksh.  Reported by Gilles Pion
2555         <gpion@lfdj.com>.
2556         (tramp-handle-verify-visited-file-modtime): Do not send a command
2557         when the connection is not established.
2558         (tramp-handle-set-file-times): Simplify the check for utc.
2559         (tramp-handle-directory-files-and-attributes)
2560         (tramp-get-remote-path): Use `copy-tree'.
2561         (tramp-completion-handle-file-name-all-completions): Ensure, that
2562         non remote files are still checked.  Oops.
2563         (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
2564         Handle PRESERVE-SELINUX-CONTEXT.
2565         (tramp-do-copy-or-rename-file): Add progress reporter.
2566         (tramp-do-copy-or-rename-file-directly): Do not use
2567         `tramp-handle-file-remote-p'.
2568         (tramp-do-copy-or-rename-file-out-of-band):
2569         Use `tramp-compat-delete-directory'.
2570         (tramp-do-copy-or-rename-file-out-of-band)
2571         (tramp-compute-multi-hops, tramp-maybe-open-connection):
2572         Use `format-spec-make'.
2573         (tramp-handle-delete-file): Add TRASH arg.
2574         (tramp-handle-dired-uncache): Flush directory cache, not only file
2575         cache.
2576         (tramp-handle-expand-file-name)
2577         (tramp-completion-handle-file-name-all-completions)
2578         (tramp-completion-handle-file-name-completion):
2579         Use `tramp-connectable-p'.
2580         (tramp-handle-start-file-process): Set connection property "vec".
2581         Use it, in order to invalidate file caches.  Check only for
2582         `remote-tty' process property.
2583         Implement tty setting.  (Bug#4604, Bug#6360)
2584         (tramp-file-name-for-operation): Add `call-process-region' and
2585         `set-file-selinux-context'.
2586         (tramp-find-foreign-file-name-handler)
2587         (tramp-advice-make-auto-save-file-name)
2588         (tramp-set-auto-save-file-modes): Remove superfluous check for
2589         `stringp'.  This is done inside `tramp-tramp-file-p'.
2590         (tramp-file-name-handler): Trace 'quit.  Catch the error for some
2591         operations when we are in completion mode.  This gives the user
2592         the chance to correct the file name in the minibuffer.
2593         (tramp-completion-mode-p): Use `non-essential'.
2594         (tramp-handle-file-name-all-completions): Backward/ XEmacs
2595         compatibility: Use `completion-ignore-case' if
2596         `read-file-name-completion-ignore-case' does not exist.
2597         (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
2598         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
2599         `tramp-open-shell'.
2600         (tramp-action-password): Hide password prompt before next run.
2601         (tramp-process-actions): Widen connection buffer for the trace.
2602         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
2603         process property.  Trace stty settings if `tramp-verbose' >= 9.
2604         Apply workaround for IRIX64 bug.  Move argument of last
2605         `tramp-send-command' where it belongs to.
2606         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
2607         front of `login-args'.
2608         (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
2609         on "/dev/null" instead of "/".
2610         (tramp-get-ls-command-with-dired): Make test for "--dired"
2611         stronger.
2612         (tramp-set-auto-save-file-modes): Adapt version check.
2613         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
2614         (tramp-handle-process-file): Call the program in a subshell, in
2615         order to preserve working directory.
2616         (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
2617         `tramp-remote-sh' from `tramp-methods'.
2618         (tramp-get-ls-command): Make test for "--color=never" stronger.
2619         (tramp-check-for-regexp): Use (forward-line 1).
2621         * net/trampver.el: Update release number.
2623 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
2625         * help.el (help-map): Bind `C-h P' to describe-package.
2627         * menu-bar.el (menu-bar-describe-menu): Add describe-package.
2629         * emacs-lisp/package.el (package-refresh-contents): Catch errors
2630         when downloading archives.
2631         (describe-package-1): Add package commentary.
2632         (package-install-button-action): New function.
2633         (package-menu-mode-map): Bind ? to package-menu-describe-package.
2634         (package-menu-view-commentary): Function removed.
2635         (package-list-packages-internal): Hide the `package' package too.
2637 2010-08-25  Kenichi Handa  <handa@m17n.org>
2639         * language/misc-lang.el ("Arabic"): New language environment.
2640         Setup composition-function-table for Arabic characters.
2642         * international/fontset.el (setup-default-fontset): Fix typo for
2643         arabic OTF spec (fini->fina).
2645 2010-08-25  Jan Djärv  <jan.h.d@swipnet.se>
2647         * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
2648         on all frames.
2650 2010-08-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2652         * whitespace.el: Allow cleaning up blanks without blank
2653         visualization (Bug#6651).  Adjust help window for
2654         whitespace-toggle-options (Bug#6479).  Allow to use fill-column
2655         instead of whitespace-line-column (from EmacsWiki).  New version
2656         13.1.
2657         (whitespace-style): Added new value 'face.  Adjust docstring.
2658         (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
2659         foreground property face.
2660         (whitespace-line-column): Adjust docstring and type declaration.
2661         (whitespace-style-value-list, whitespace-toggle-option-alist)
2662         (whitespace-help-text): Adjust const initialization.
2663         (whitespace-toggle-options, global-whitespace-toggle-options):
2664         Adjust docstring.
2665         (whitespace-display-window, whitespace-interactive-char)
2666         (whitespace-style-face-p, whitespace-color-on): Adjust code.
2667         (whitespace-help-scroll): New fun.
2669 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
2671         * emacs-lisp/package.el (list-packages): Alias for
2672         package-list-packages.
2674 2010-08-24  Kevin Ryde  <user42@zip.com.au>
2676         * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
2677         (Bug#5651).
2679         * progmodes/ruby-mode.el (ruby): Add defgroup.
2681 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
2683         * progmodes/python.el: Add Ipython support (Bug#5390).
2684         (python-shell-prompt-alist)
2685         (python-shell-continuation-prompt-alist): New options.
2686         (python--set-prompt-regexp): New function.
2687         (inferior-python-mode, run-python, python-shell): Require
2688         ansi-color.  Use python--set-prompt-regexp to set the comint
2689         prompt based on the Python interpreter.
2690         (python--prompt-regexp): New var.
2691         (python-check-comint-prompt)
2692         (python-comint-output-filter-function): Use it.
2693         (run-python): Use a pipe (Bug#5694).
2695 2010-08-24  Fabian Ezequiel Gallina  <galli.87@gmail.com>  (tiny change)
2697         * progmodes/python.el (python-send-region): Send a different
2698         Python command if Ipython is in use.
2699         (python-check-version): Use a Python command to find the version.
2701 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
2703         * mouse.el (mouse-yank-primary): Avoid setting primary when
2704         deactivating the mark (Bug#6872).
2706 2010-08-23  Chris Foote  <chris@foote.com.au>  (tiny change)
2708         * progmodes/python.el (python-block-pairs): Allow use of "finally"
2709         with "else" (Bug#3991).
2711 2010-08-23  Michael Albinus  <michael.albinus@gmx.de>
2713         * net/dbus.el: Accept UNIX domain sockets as bus address.
2714         (top): Don't initialize `dbus-registered-objects-table' anymore,
2715         this is done in dbusbind,c.
2716         (dbus-check-event): Adapt test for bus.
2717         (dbus-return-values-table, dbus-unregister-service)
2718         (dbus-event-bus-name, dbus-introspect, dbus-register-property):
2719         Adapt doc string.
2721 2010-08-23  Juanma Barranquero  <lekktu@gmail.com>
2723         * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
2725 2010-08-22  Juri Linkov  <juri@jurta.org>
2727         * simple.el (read-extended-command): New function with the logic
2728         for `completing-read' moved to Elisp from `execute-extended-command'.
2729         Use `function-called-at-point' in `minibuffer-default-add-function'
2730         to get a command name for M-n (bug#5364, bug#5214).
2732 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
2734         * startup.el (command-line-1): Issue warning for ignored arguments
2735         --unibyte, etc (Bug#6886).
2737 2010-08-22  Leo  <sdl.web@gmail.com>
2739         * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
2740         (ignore, bright, dim, keyword): Split list of nicknames before
2741         passing to rcirc-add-or-remove (Bug#6894).
2743 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
2745         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
2747 2010-08-22  Leo  <sdl.web@gmail.com>
2749         Fix buffer-list rename&refresh after killing a buffer in ido.
2750         * ido.el: Revert Óscar's.
2751         (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
2752         Remember the buffers at head, rather than their name.
2753         * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
2755 2010-08-22  Kirk Kelsey  <kirk.kelsey@0x4b.net>  (tiny change)
2756             Stefan Monnier  <monnier@iro.umontreal.ca>
2758         * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
2759         extra backslash added to each line (bug#6890).
2761 2010-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2763         * subr.el (read-key): Don't echo keystrokes (bug#6883).
2765 2010-08-22  Glenn Morris  <rgm@gnu.org>
2767         * menu-bar.el (menu-bar-games-menu): Add landmark.
2769 2010-08-22  Glenn Morris  <rgm@gnu.org>
2771         * align.el (align-regexp): Make group and spacing arguments
2772         use the interactive defaults when non-interactive.  (Bug#6698)
2774         * mail/rmail.el (rmail-forward): Replace mail-text-start with its
2775         expansion, so as not to need sendmail.
2776         (mail-text-start): Remove declaration.
2777         (rmail-retry-failure): Require sendmail.
2779 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
2781         * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
2783 2010-08-22  Michael Albinus  <michael.albinus@gmx.de>
2785         * progmodes/flymake.el (flymake-start-syntax-check-process):
2786         Use `start-file-process' in order to let it run also on remote hosts.
2788 2010-08-22  Kenichi Handa  <handa@m17n.org>
2790         * files.el: Add `word-wrap' as safe local variable.
2792 2010-08-22  Glenn Morris  <rgm@gnu.org>
2794         * woman.el (woman-translate): Case matters.  (Bug#6849)
2796 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
2798         * simple.el (kill-region): Doc fix (Bug#6787).
2800 2010-08-22  Glenn Morris  <rgm@gnu.org>
2802         * calendar/diary-lib.el (diary-header-line-format):
2803         Fit it to the window, not the frame.
2805 2010-08-22  Andreas Schwab  <schwab@linux-m68k.org>
2807         * subr.el (ignore-errors): Add debug declaration.
2809 2010-08-22  Geoff Gole  <geoffgole@gmail.com>  (tiny change)
2811         * whitespace.el (whitespace-color-off): Remove post-command-hook
2812         locally.
2814 2010-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2816         * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
2818 2010-08-21  Chong Yidong  <cyd@stupidchicken.com>
2820         * cus-edit.el (custom-group-value-create): Add extra newline
2821         before end line (Bug#6876).
2823 2010-08-21  Chong Yidong  <cyd@stupidchicken.com>
2825         * mouse.el (mouse-save-then-kill): Don't save region to kill ring
2826         when extending it.  Before killing on the second click, check if
2827         the buffer is the correct one.  Doc fix.
2828         (mouse-secondary-save-then-kill): Allow usage without first
2829         calling mouse-start-secondary, by defaulting to point.  Don't save
2830         an empty secondary selection.  Doc fix.
2832 2010-08-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2834         * whitespace.el: Fix slow cursor movement (Bug#6172).  Reported by
2835         Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
2836         New version 13.0.
2837         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
2838         Adjust initialization.
2839         (whitespace-bob-marker, whitespace-eob-marker)
2840         (whitespace-buffer-changed): New vars.
2841         (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
2842         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
2843         (whitespace-post-command-hook, whitespace-display-char-on):
2844         Adjust code.
2845         (whitespace-looking-back, whitespace-buffer-changed): New funs.
2846         (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
2848 2010-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2850         * files.el (locate-file-completion-table): Only list the .el and .elc
2851         extensions if there's no other choice (bug#5955).
2853         * facemenu.el (facemenu-self-insert-data): New var.
2854         (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
2855         New functions.
2856         (facemenu-add-face): Use them.
2858         * simple.el (blink-matching-open): Obey forward-sexp-function.
2860 2010-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2862         * simple.el (prog-mode-map): New var.
2863         (prog-indent-sexp): New command.
2865         * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
2867         * progmodes/prolog.el (smie): Require.
2869         * emacs-lisp/smie.el (smie-default-backward-token)
2870         (smie-default-forward-token): Strip properties.
2871         (smie-next-sexp): Be more careful with associative operators.
2872         (smie-forward-sexp-command): Generalize.
2873         (smie-backward-sexp-command): Simplify.
2874         (smie-closer-alist): New var.
2875         (smie-close-block): New command.
2876         (smie-indent-debug-log): New var.
2877         (smie-indent-offset-rule): Add a few more cases.
2878         (smie-indent-column): New function.
2879         (smie-indent-after-keyword): Use it.
2880         (smie-indent-keyword): Use it.
2881         Fix up the opener code's point position.
2882         (smie-indent-comment): Only applies at BOL.
2883         (smie-indent-debug): New command.
2885         * emacs-lisp/autoload.el (make-autoload): Preload the macros's
2886         declarations that are useful before running the macro.
2888 2010-08-18  Joakim Verona  <joakim@verona.se>
2890         * image.el (imagemagick-types-inhibit): New variable.
2891         (imagemagick-register-types): New function.
2892         * image-mode.el (image-transform-properties): New function.
2893         (image-transform-set-scale, image-transform-fit-to-height)
2894         (image-transform-set-rotation, image-transform-set-resize)
2895         (image-transform-fit-to-width, image-transform-fit-to-height):
2896         New functions.
2897         (image-toggle-display-image): Support image transforms.
2899 2010-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2901         * image.el (create-animated-image): Don't add heuristic mask to image
2902         (Bug#6839).
2904 2010-08-18  Jan Djärv  <jan.h.d@swipnet.se>
2906         * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
2907         Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
2909 2010-08-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2911         * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
2913         Font-lock '...' strings, plus various simplifications and fixes.
2914         * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
2915         (octave-font-lock-close-quotes): New function.
2916         (octave-font-lock-syntactic-keywords): New var.
2917         (octave-mode): Use it.  Set beginning-of-defun-function.
2918         (octave-mode-map): Don't override the <foo>-defun commands.
2919         (octave-mode-menu): Pass it directly to easy-menu-define;
2920         remove (now generic) <foo>-defun commands; use info-lookup-symbol.
2921         (octave-block-match-alist): Fix up last change so that
2922         octave-close-block uses the more specific keyword.
2923         (info-lookup-mode): Silence byte-compiler.
2924         (octave-beginning-of-defun): Not interactive any more.
2925         Optimize slightly.
2926         (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
2927         (octave-indent-defun, octave-send-defun): Use mark-defun instead.
2928         (octave-completion-at-point-function): Make sure point is within
2929         beg..end.
2930         (octave-reindent-then-newline-and-indent):
2931         Use reindent-then-newline-and-indent.
2932         (octave-add-octave-menu): Remove.
2934 2010-08-17  Jan Djärv  <jan.h.d@swipnet.se>
2936         * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
2937         (report-emacs-bug-can-use-xdg-email): New functions.
2938         (report-emacs-bug): Set can-xdg-email to result of
2939         report-emacs-bug-can-use-xdg-email.  If can-xdg-email bind
2940         \C-cm to report-emacs-bug-insert-to-mailer and add help text
2941         about it.
2943         * net/browse-url.el (browse-url-default-browser): Add cond
2944         for browse-url-xdg-open.
2945         (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
2947 2010-08-17  Glenn Morris  <rgm@gnu.org>
2949         * progmodes/cc-engine.el (c-new-BEG, c-new-END)
2950         (c-fontify-recorded-types-and-refs): Define for compiler.
2951         * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
2952         before use.
2954         * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
2955         Fix format call.
2957 2010-08-17  Michael Albinus  <michael.albinus@gmx.de>
2959         * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
2960         properties.
2961         (tramp-handle-process-file): Call the program in a subshell, in
2962         order to preserve working directory.
2963         (tramp-action-password): Hide password prompt before next run.
2964         (tramp-process-actions): Widen connection buffer for the trace.
2966 2010-08-16  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
2968         * net/rcirc.el (rcirc-log-process-buffers): New option.
2969         (rcirc-print): Use it.
2970         (rcirc-generate-log-filename): New function.
2971         (rcirc-log-filename-function): Change default to
2972         rcirc-generate-log-filename (Bug#6828).
2974 2010-08-16  Chong Yidong  <cyd@stupidchicken.com>
2976         * simple.el (deactivate-mark): If select-active-regions is `only',
2977         only set selection for temporarily active regions.
2979         * cus-start.el: Change defcustom for select-active-regions.
2981 2010-08-15  Chong Yidong  <cyd@stupidchicken.com>
2983         * mouse.el (mouse--drag-set-mark-and-point): New function.
2984         (mouse-drag-track): Use LOCATION arg to push-mark.
2985         Use mouse--drag-set-mark-and-point to take click-count into
2986         consideration when updating point and mark (Bug#6840).
2988 2010-08-15  Chong Yidong  <cyd@stupidchicken.com>
2990         * progmodes/compile.el (compilation-error-regexp-alist-alist):
2991         Give the Ruby rule a lower priority than Gnu (Bug#6778).
2993 2010-08-14  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
2995         * font-lock.el (lisp-font-lock-keywords-2):
2996         Add combine-after-change-calls, condition-case-no-debug,
2997         with-demoted-errors, and with-silent-modifications (Bug#6025).
2999 2010-08-14  Kevin Ryde  <user42@zip.com.au>
3001         * emacs-lisp/copyright.el (copyright-update-year)
3002         (copyright-update): Temporary switch-to-buffer to ensure the
3003         buffer change being queried is visible (Bug#5394).
3005 2010-08-14  Tom Tromey  <tromey@redhat.com>
3007         * progmodes/etags.el (tags-file-name): Mark safe if stringp
3008         (Bug#6733).
3010 2010-08-14  Eli Zaretskii  <eliz@gnu.org>
3012         * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
3013         MS-DOS.  (Bug#6689)
3015 2010-08-13  Jan Djärv  <jan.h.d@swipnet.se>
3017         * menu-bar.el (menu-bar-set-tool-bar-position): New function.
3018         (menu-bar-showhide-tool-bar-menu-customize-enable-left)
3019         (menu-bar-showhide-tool-bar-menu-customize-enable-right)
3020         (menu-bar-showhide-tool-bar-menu-customize-enable-top)
3021         (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
3022         Call menu-bar-set-tool-bar-position.
3024 2010-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3026         * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
3027         comment style (bug#6834).
3028         * progmodes/scheme.el (scheme-mode-syntax-table):
3029         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
3030         "b" flag in "' 14b" syntax.
3032         * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
3033         for (un)commenting the region and performing completion.
3034         (octave-mode-menu): Use standard commands for help and completion.
3035         (octave-mode-syntax-table): Support %{..%} comments (sort of).
3036         (octave-mode): Use define-derived-mode.
3037         Set completion-at-point-functions and don't set columns.
3038         Don't disable adaptive-fill-regexp.
3039         (octave-describe-major-mode, octave-comment-region)
3040         (octave-uncomment-region, octave-comment-indent)
3041         (octave-indent-for-comment): Remove.
3042         (octave-indent-calculate): Rename from calculate-octave-indent.
3043         (octave-indent-line, octave-fill-paragraph): Update caller.
3044         (octave-initialize-completions): No need to make an alist.
3045         (octave-completion-at-point-function): New function.
3046         (octave-complete-symbol): Use it.
3047         (octave-insert-defun): Use define-skeleton.
3049         * progmodes/octave-mod.el (octave-mode): Set comment-add.
3050         (octave-mode-map): Use comment-dwim (bug#6829).
3052 2010-08-12  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
3054         * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
3055         indentation of inserted comment.
3057 2010-08-11  Jan Djärv  <jan.h.d@swipnet.se>
3059         * faces.el (region): Add type gtk that uses gtk colors.
3061         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
3062         Handle theme-name change.
3064 2010-08-10  Michael R. Mauger  <mmaug@yahoo.com>
3066         * progmodes/sql.el: Version 2.5
3067         (sql-product-alist): Add :prompt-cont-regexp property for several
3068         database products.
3069         (sql-prompt-cont-regexp): New variable.
3070         (sql-output-newline-count, sql-output-by-send):
3071         New variables.  Record number of newlines in input text.
3072         (sql-send-string): Handle multiple filters and count newlines.
3073         (sql-send-magic-terminator): Count terminator newline.
3074         (sql-interactive-remove-continuation-prompt): Filters output to
3075         remove continuation prompts; one for each newline.
3076         (sql-interactive-mode): Set up new variables, prompt regexp and
3077         output filter.
3078         (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
3079         (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
3081 2010-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3083         * emacs-lisp/pcase.el: New file.
3085 2010-08-10  Michael Albinus  <michael.albinus@gmx.de>
3087         * net/tramp.el (tramp-vc-registered-read-file-names): Read input
3088         as here-document, otherwise the command could exceed maximum
3089         length of command line.
3090         (tramp-handle-vc-registered): Call script accordingly.
3091         Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
3093 2010-08-10  Kenichi Handa  <handa@m17n.org>
3095         * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
3096         composable pattern.
3098 2010-08-09  Chong Yidong  <cyd@stupidchicken.com>
3100         * emacs-lisp/package.el (package-version-split)
3101         (package--version-first-nonzero, package-version-compare):
3102         Functions removed.
3103         (package-directory-list, package-load-all-descriptors)
3104         (package--built-in, package-activate, define-package)
3105         (package-installed-p, package-compute-transaction)
3106         (package-read-all-archive-contents)
3107         (package--add-to-archive-contents, package-buffer-info)
3108         (package-tar-file-info, package-list-packages-internal):
3109         Use version-to-list and version-list-*.
3111         * emacs-lisp/package-x.el (package-upload-buffer-internal):
3112         Use version-to-list.
3113         (package-upload-buffer-internal): Use version-list-<=.
3115 2010-08-09  Kenichi Handa  <handa@m17n.org>
3117         * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
3118         composable pattern.
3120 2010-08-08  Chong Yidong  <cyd@stupidchicken.com>
3122         * tutorial.el (tutorial--default-keys): C-d is now bound to
3123         delete-forward-char (Bug#6826).
3125         * mouse.el (mouse-drag-track): Remove accidentally-removed check
3126         for `double' value of mouse-1-click-follows-link (Bug#6807).
3128 2010-08-08  Johan Bockgård  <bojohan@gnu.org>
3130         * replace.el (replace-highlight): Bind isearch-forward and
3131         isearch-error, ensuring that highlighting is updated if the user
3132         switches the search direction (Bug#6808).
3134         * isearch.el (isearch-lazy-highlight-forward): New var.
3135         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
3136         (isearch-lazy-highlight-update): Use it.
3138 2010-08-08  Kenichi Handa  <handa@m17n.org>
3140         * international/mule.el (define-charset): Store NAME as :base property.
3141         (ctext-non-standard-encodings-table): Pay attention to charset aliases.
3142         (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
3143         current priority.  Force using the designation of the specific
3144         charset by adding `charset' text property.  Improve the whole algorithm.
3146 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
3148         * emulation/pc-select.el (pc-selection-mode-hook)
3149         (copy-region-as-kill-nomark, beginning-of-buffer-mark)
3150         (pc-selection-mode): Fix typos in docstrings.
3152 2010-08-08  Kenichi Handa  <handa@m17n.org>
3154         * language/cyrillic.el: Don't add "microsoft-cp1251" to
3155         ctext-non-standard-encodings-alist here.
3157         * international/mule.el (ctext-non-standard-encodings-alist):
3158         Add "koi8-r" and "microsoft-cp1251".
3159         (ctext-standard-encodings): New variable.
3160         (ctext-non-standard-encodings-table): List only elements for
3161         non-standard encodings.
3162         (ctext-pre-write-conversion): Adjust for the above change.
3163         Check ctext-standard-encodings.
3165         * international/mule-conf.el (compound-text): Doc fix.
3166         (ctext-no-compositions): Doc fix.
3167         (compound-text-with-extensions): Doc fix.
3169 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3171         * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
3173 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
3175         * progmodes/which-func.el (which-func-format): Split help-echo text
3176         into lines, like other mode-line tooltips.
3178         * server.el (server-start): When using TCP sockets, force IPv4
3179         and use a literal 127.0.0.1 for localhost.  (Related to bug#6781.)
3181 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3183         * bindings.el (complete-symbol): Run completion-at-point as a fallback.
3185 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
3187         * term.el (term-delimiter-argument-list): Reflow docstring.
3188         (term-read-input-ring, term-write-input-ring, term-send-input)
3189         (term-bol, term-erase-in-display, serial-supported-or-barf):
3190         Fix typos in docstrings.
3192 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3194         * bindings.el (function-key-map): Add a S-tab => backtab fallback.
3196 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
3198         * dabbrev.el (dabbrev-completion): Fix typo in docstring.
3200 2010-08-08  MON KEY  <monkey@sandpframing.com>  (tiny change)
3202         * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
3203         Fix typo in docstring (bug#6747).
3205 2010-08-08  Leo  <sdl.web@gmail.com>
3207         * eshell/esh-io.el (eshell-get-target): Better detection of
3208         read-only file (Bug#6762).
3210 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
3212         * align.el (align-default-spacing): Doc fix.
3213         (align-region-heuristic, align-regexp): Fix typos in docstrings.
3215 2010-08-08  Stephen Peters  <speters@itasoftware.com>
3217         * calendar/icalendar.el
3218         (icalendar--split-value): Fix splitting regexp.  (Bug#6766)
3219         (icalendar--get-weekday-numbers): New.
3220         (icalendar--convert-recurring-to-diary): Handle multiple byday
3221         values in weekly rules.  (Bug#6766)
3223 2010-08-08  Ulf Jasper  <ulf.jasper@web.de>
3225         * calendar/icalendar.el (icalendar-uid-format): Doc fix.
3226         (icalendar--create-uid, icalendar-export-region)
3227         (icalendar--parse-summary-and-rest): Code formatting.
3229 2010-08-08  Jay Belanger  <jay.p.belanger@gmail.com>
3231         * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
3232         to italicize headers.
3233         (calc-highlight-selections-with-faces): New variable.
3234         (calc-selected-face, calc-nonselected-face): New faces.
3236         * calc/calccomp.el (math-comp-highlight-string): Use
3237         `calc-highlight-selections-with-faces' to determine how to highlight
3238         sub-formulas.
3240         * calc/calc-sel.el (calc-show-selections): Change message to when
3241         using faces to highlight selections.
3243 2010-08-07  Michael R. Mauger  <mmaug@yahoo.com>
3245         * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
3246         Add SQLite 3 keywords, functions and datatypes.
3247         (sql-interactive-mode): Remove `comint-process-echoes' set to t
3248         (Bug#6686).
3250 2010-08-07  Chong Yidong  <cyd@stupidchicken.com>
3252         * simple.el (select-active-regions): Move to keyboard.c.
3253         (deactivate-mark): Used saved-region-selection.
3254         (select-active-region): Function removed.
3255         (activate-mark, set-mark, push-mark-command)
3256         (handle-shift-selection): Don't call it.
3257         (keyboard-quit): Avoid adding the region to the window selection.
3259         * mouse.el (mouse-drag-track): Remove hacks to deal with old
3260         select-active-regions implementation.
3261         (mouse-yank-at-click): Doc fix.
3263         * cus-start.el: Add custom declaration for select-active-regions.
3265 2010-08-07  Eli Zaretskii  <eliz@gnu.org>
3267         * simple.el (delete-forward-char): Doc fix.
3269         * tutorial.el (help-with-tutorial): Hack safe file-local variables
3270         after reading the tutorial.
3272 2010-08-06  Alan Mackenzie  <bug-cc-mode@gnu.org>
3274         * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
3275         for the case that a C style comment has its delimiters alone on
3276         their respective lines.
3278 2010-08-06  Michael Albinus  <michael.albinus@gmx.de>
3280         * net/tramp.el (tramp-handle-start-file-process): Set connection
3281         property "vec".
3282         (tramp-process-sentinel): Use it for flushing the cache.  We
3283         cannot do it via the process buffer, the buffer could be deleted
3284         already when running the sentinel.
3286 2010-08-06  Jürgen Hötzel  <juergen@archlinux.org>  (tiny change)
3288         * comint.el (comint-mode): Make directory tracking functions
3289         functional on remote files.  (Bug#6764)
3291 2010-08-06  Dan Nicolaescu  <dann@ics.uci.edu>
3293         * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
3295 2010-08-05  Eli Zaretskii  <eliz@gnu.org>
3297         * emacs-lisp/find-gc.el (find-gc-source-files): Rename
3298         unexec.c => unexcoff.c.
3300         * emacs-lisp/authors.el (authors-fixed-entries): Rename
3301         unexec.c => unexcoff.c.
3303 2010-08-05  Michael Albinus  <michael.albinus@gmx.de>
3305         * net/tramp.el (tramp-handle-dired-uncache): Flush directory
3306         cache, not only file cache.
3307         (tramp-process-sentinel): New defun.
3308         (tramp-handle-start-file-process): Use it, in order to invalidate
3309         file caches.
3311 2010-08-03  Leo  <sdl.web@gmail.com>
3313         * server.el (server-start): Simplify loop.
3315 2010-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3317         * frame.el (screen-height, screen-width, set-screen-width)
3318         (set-screen-height): Remove ancient compatibility aliases.
3320         * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
3321         when justifying.  It seems useless and harmful for ncols=1 (bug#6738).
3323         * emacs-lisp/timer.el (timer-event-handler): Protect against timers
3324         that change current buffer.
3326 2010-08-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3328         * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
3329         beginning of the string.  Use `string-match-p'.  (Bug#6765)
3331 2010-08-01  Jan Djärv  <jan.h.d@swipnet.se>
3333         * cus-start.el (x-gtk-use-system-tooltips): New variable.
3335 2010-08-01  Chong Yidong  <cyd@stupidchicken.com>
3337         * emacs-lisp/package.el (package--list-packages): Fix column alignment.
3338         (package--builtins): Tweak descriptions.
3339         (package-print-package): Upcase descriptions if necessary.
3340         Show all built-in packages in font-lock-builtin-face.
3341         (package-list-packages-internal): Omit "emacs" package.
3342         Show status of built-in packages as "built-in".
3344 2010-07-31  Chong Yidong  <cyd@stupidchicken.com>
3346         * mouse.el (mouse-save-then-kill): Doc fix.  Deactivate mark
3347         before killing to preserve the primary selection (Bug#6701).
3349         * term/x-win.el (x-select-text): Doc fix.
3351 2010-07-31  Nathaniel Flath  <flat0103@gmail.com>
3353         Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
3354         The following functions were modified or created:
3356         * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
3357         (objc-font-lock-extra-types):
3358         * progmodes/cc-mode.el (c-basic-common-init):
3359         * progmodes/cc-langs.el (c-make-mode-syntax-table)
3360         (c++-make-template-syntax-table)
3361         (c-identifier-syntax-modifications, c-symbol-start, c-operators)
3362         (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
3363         (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
3364         (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
3365         * progmodes/cc-fonts.el (c-make-inverse-face)
3366         (c-basic-matchers-after):
3367         * progmodes/cc-engine.el (c-forward-keyword-clause)
3368         (c-forward-<>-arglist, c-forward-<>-arglist-recur)
3369         (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
3370         (c-guess-continued-construct, c-guess-basic-syntax):
3372 2010-07-31  Jan Djärv  <jan.h.d@swipnet.se>
3374         * faces.el (face-all-attributes): Improve documentation (Bug#6767).
3376 2010-07-31  Eli Zaretskii  <eliz@gnu.org>
3378         * files.el (bidi-paragraph-direction): Define safe local values.
3380         * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
3381         language-info-alist.  Remove outdated FIXME in a comment.
3383 2010-07-31  Alan Mackenzie  <acm@muc.de>
3385         * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
3386         Auto-fill broken in C/C++ modes.
3388 2010-07-29  Jan Djärv  <jan.h.d@swipnet.se>
3390         * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
3391         (menu-bar-showhide-tool-bar-menu-customize-disable)
3392         (menu-bar-showhide-tool-bar-menu-customize-enable-right)
3393         (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
3394         (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
3395         (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
3396         make a menu for Options => toolbar that can move it.
3398 2010-07-29  Chong Yidong  <cyd@stupidchicken.com>
3400         * emacs-lisp/package-x.el (package--make-rss-entry):
3401         (package-maint-add-news-item, package--update-news)
3402         (package-upload-buffer-internal): New arg ARCHIVE-URL.
3404         * emacs-lisp/package.el (package-archive-url): Rename from
3405         package-archive-id.
3406         (package-install): Doc fix.
3407         (package-download-single, package-download-tar, package-install)
3408         (package-menu-view-commentary): Callers changed.
3410 2010-07-29  Michael Albinus  <michael.albinus@gmx.de>
3412         * net/tramp.el (tramp-handle-start-file-process): Check only for
3413         `remote-tty' process property.
3414         (tramp-open-shell): Don't check for tty.
3415         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
3416         process property.
3418         * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
3419         host.
3421 2010-07-28  Chong Yidong  <cyd@stupidchicken.com>
3423         * emacs-lisp/package.el (package-load-list, package-archives)
3424         (package-archive-contents, package-user-dir)
3425         (package-directory-list, package--builtins, package-alist)
3426         (package-activated-list, package-obsolete-alist): Mark as risky.
3428 2010-07-28  Phil Hagelberg  <phil@evri.com>
3430         Add support for non-default package repositories.
3431         * emacs-lisp/package.el (package-archive-base): Var deleted.
3432         (package-archives): New variable.
3433         (package-archive-contents): Doc fix.
3434         (package-load-descriptor): Do nothing if descriptor file is missing.
3435         (package--write-file-no-coding): New function.
3436         (package-unpack-single): Use it.
3437         (package-archive-id): New function.
3438         (package-download-single, package-download-tar)
3439         (package-menu-view-commentary): Use it.
3440         (package-installed-p): Make second argument optional.
3441         (package-read-all-archive-contents): New function.
3442         (package-initialize): Use it.
3443         (package-read-archive-contents): Add ARCHIVE argument.
3444         (package--add-to-archive-contents): New function.
3445         (package-install): Don't call package-read-archive-contents.
3446         (package--download-one-archive): Store archive file in a
3447         subdirectory of package-user-dir.
3448         (package-menu-execute): Remove spurious line movement.
3450 2010-07-28  Jan Djärv  <jan.h.d@swipnet.se>
3452         * cus-start.el (tool-bar-style): Add text-image-horiz.
3454 2010-07-28  Michael Albinus  <michael.albinus@gmx.de>
3456         * progmodes/gud.el (gud-common-init): Check for remoteness of
3457         `file', and not of `default-directory'.
3459 2010-07-28  Michael Albinus  <michael.albinus@gmx.de>
3461         * net/tramp.el (tramp-methods): Move hostname to the end in all
3462         ssh `tramp-login-args'.
3463         (tramp-verbose): Describe verbose level 9.
3464         (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
3465         (tramp-open-connection-setup-interactive-shell): Trace stty
3466         settings if `tramp-verbose' >= 9.
3467         (tramp-handle-start-file-process): Implement tty setting.
3468         (Bug#4604, Bug#6360)
3470         * net/tramp-cmds.el (tramp-bug): Recommend setting of
3471         `tramp-verbose' to 9.
3473 2010-07-27  Aaron S. Hawley  <ashawley@burlingtontelecom.net>
3475         * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
3476         (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
3477         Remove references to package `lisp-re' (bug#4369).
3479 2010-07-27  Tom Tromey  <tromey@redhat.com>
3481         * progmodes/js.el (js-mode):
3482         * progmodes/make-mode.el (makefile-mode):
3483         * progmodes/simula.el (simula-mode):
3484         * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
3486 2010-07-27  Juanma Barranquero  <lekktu@gmail.com>
3488         * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
3490         * time.el (display-time-day-and-date): Remove spurious * in docstring.
3491         (display-time-world-buffer-name, display-time-world-mode-map):
3492         Fix typos in docstrings.
3494 2010-07-27  Shyam Karanatt  <shyam@swathanthran.in>  (tiny change)
3496         * image-mode.el (image-display-size): New function.
3497         (image-forward-hscroll, image-next-line, image-eol, image-eob)
3498         (image-mode-fit-frame): Use it (Bug#6639).
3500 2010-07-27  Chong Yidong  <cyd@stupidchicken.com>
3502         * dired.el (dired-buffers-for-dir): Handle list values of
3503         dired-directory (Bug#6636).
3505 2010-07-26  Sam Steingold  <sds@gnu.org>
3507         * mouse.el (mouse-yank-primary, mouse-yank-secondary):
3508         Do not call `x-get-selection' the second time, reuse the value.
3510 2010-07-26  Daiki Ueno  <ueno@unixuser.org>
3512         * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
3513         which consist of control chars only.  Suggested by Richard Stallman.
3515 2010-07-25  Daiki Ueno  <ueno@unixuser.org>
3517         * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
3518         exists before passing an error to find-file-not-found-functions
3519         (bug#6723).
3521 2010-07-23  Lukas Huonker  <l.huonker@gmail.com>
3523         * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
3524         Remove leading nil element, adjust values.
3525         (tetris-shapes, tetris-shape-scores):
3526         Change representation of shapes and remove some redundancy.
3527         (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
3528         (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
3529         Adjust for working with new representation of shapes.
3530         (tetris-shape-rotations): New function.
3531         (tetris-move-bottom, tetris-move-left, tetris-move-right)
3532         (tetris-rotate-prev, tetris-rotate-next):
3533         Adjust for working with the new version of tetris-test-shape.
3535 2010-07-23  Markus Triska  <markus.triska@gmx.at>
3537         * progmodes/ps-mode.el: Use comint (bug#5954).
3538         (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
3539         (ps-mode-other-newline): Simplify.
3540         (ps-run-mode): Derive from comint-mode instead of
3541         fundamental-mode, yielding input history etc.
3542         (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
3543         (ps-run-send-string): Adapt for comint-mode.
3544         (ps-run-newline): Remove now unneeded function.
3546 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
3548         * net/tramp.el (tramp-methods): Move hostname to the end in all
3549         plink `tramp-login-args'.
3551 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
3553         * net/tramp.el (tramp-open-shell): New defun.
3554         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3555         Use it.
3557 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
3559         * net/tramp.el (tramp-file-name-regexp-unified)
3560         (tramp-completion-file-name-regexp-unified): On W32 systems, do
3561         not regard the volume letter as remote filename.  (Bug#5447)
3563 2010-07-23  Juanma Barranquero  <lekktu@gmail.com>
3565         * custom.el (custom-declare-variable): Give a clearer error message
3566         when the docstring is missing (bug#6476).
3568 2010-07-22  Michael R. Mauger  <mmaug@yahoo.com>
3570         * progmodes/sql.el: Version 2.4.  Improved Login prompting.
3571         (sql-login-params): New widget definition.
3572         (sql-oracle-login-params, sql-mysql-login-params)
3573         (sql-solid-login-params, sql-sybase-login-params)
3574         (sql-informix-login-params, sql-ingres-login-params)
3575         (sql-ms-login-params, sql-postgres-login-params)
3576         (sql-interbase-login-params, sql-db2-login-params)
3577         (sql-linter-login-params): Use it.
3578         (sql-sqlite-login-params): Use it; Define "database" parameter as
3579         a file name.
3580         (sql-sqlite-program): Change to "sqlite3".
3581         (sql-comint-sqlite): Make sure database name is complete.
3582         (sql-for-each-login): New function.
3583         (sql-connect, sql-save-connection): Use it.
3584         (sql-get-login-ext): New function.
3585         (sql-get-login): Use it.
3586         (sql-make-alternate-buffer-name): Handle :file parameters.
3588 2010-07-22  Juanma Barranquero  <lekktu@gmail.com>
3590         * dired.el (dired-no-confirm): Document value t and fix defcustom to
3591         accept it (bug#6597).  Suggested by Drew Adams <drew.adams@oracle.com>.
3593 2010-07-22  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
3595         * dired.el (dired-mode-map): Use command remapping (bug#6632).
3597 2010-07-22  Lawrence Mitchell  <wence@gmx.li>
3599         * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
3601 2010-07-21  Michael Albinus  <michael.albinus@gmx.de>
3603         * net/tramp.el (tramp-get-ls-command)
3604         (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
3605         instead of "/".
3607 2010-07-20  Michael R. Mauger  <mmaug@yahoo.com>
3609         * progmodes/sql.el: Version 2.3.
3610         (sql-connection-alist): Changed keys from symbols to strings;
3611         enhanced the widget definition.
3612         (sql-mode-menu): Added submenu to select connections.
3613         (sql-interactive-mode-menu): Added "Save Connection" item.
3614         (sql-add-product): Fixed menu item.
3615         (sql-get-product-feature): Improved error handling.
3616         (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
3617         (sql-make-alternate-buffer-name): Simplified.
3618         (sql-product-interactive): Handle missing product.
3619         (sql-connect): Support string keys, minor improvements.
3620         (sql-save-connection): New function.
3621         (sql-connection-menu-filter): New function.
3623 2010-07-20  Michael Albinus  <michael.albinus@gmx.de>
3625         * net/tramp.el (tramp-file-name-handler): Trace 'quit.
3626         (tramp-open-connection-setup-interactive-shell): Apply
3627         workaround for IRIX64 bug.  Move argument of last
3628         `tramp-send-command' where it belongs to.
3630 2010-07-20  Michael Albinus  <michael.albinus@gmx.de>
3632         * net/tramp.el (tramp-perl-file-attributes)
3633         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
3634         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
3635         front of `login-args'.
3637 2010-07-19  Juanma Barranquero  <lekktu@gmail.com>
3639         * time.el (display-time-world-mode): Define with `define-derived-mode'.
3640         Set `show-trailing-whitespace' to nil.
3641         (display-time-world-display): Simplify.
3643 2010-07-18  Alan Mackenzie  <acm@muc.de>
3645         Enhance `c-file-style' in file/directory local variables.
3646         * progmodes/cc-mode.el (c-count-cfss): New function.
3647         (c-before-hack-hook): Call `c-set-style' differently according to
3648         whether c-file-style was set in file or directory local
3649         variables.
3651 2010-07-18  Michael R. Mauger  <mmaug@yahoo.com>
3653         * progmodes/sql.el: Version 2.2.
3654         (sql-product, sql-user, sql-database, sql-server, sql-port): Use
3655         defcustom :safe keyword rather than putting safe-local-variable
3656         property.
3657         (sql-password): Use defcustom :risky keyword rather than putting
3658         risky-local-variable property.
3659         (sql-oracle-login-params, sql-sqlite-login-params)
3660         (sql-solid-login-params, sql-sybase-login-params)
3661         (sql-informix-login-params, sql-ingres-login-params)
3662         (sql-ms-login-params, sql-postgres-login-params)
3663         (sql-interbase-login-params, sql-db2-login-params)
3664         (sql-linter-login-params): Add `port' option.
3665         (sql-get-product-feature): Added NO-INDIRECT parameter.
3666         (sql-comint-oracle, sql-comint-sybase)
3667         (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
3668         (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
3669         (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
3670         (sql-comint-linter): Renamed sql-connect-* functions to
3671         sql-comint-*.
3672         (sql-product-alist, sql-mode-menu): Renamed as above and
3673         :sqli-connect-func to :sqli-comint-func.
3674         (sql-connection): New variable.
3675         (sql-interactive-mode): Set it.
3676         (sql-connection-alist): New variable.
3677         (sql-connect): New function.
3678         (sql--alt-buffer-part, sql--alt-if-not-empty)
3679         (sql-make-alternate-buffer-name): Improved alternative buffer name.
3681 2010-07-17  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3683         * image-mode.el (image-bookmark-make-record): Do not set context
3684         in an image (Bug#6650).
3686 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
3688         * simple.el (select-active-region): New function.
3689         (push-mark-command, set-mark, activate-mark)
3690         (handle-shift-selection): Use it.
3691         (deactivate-mark): Don't check for size of region.
3693         * mouse.el (mouse-drag-track): Use select-active-region.
3695 2010-07-17  Michael Albinus  <michael.albinus@gmx.de>
3697         * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
3698         "--dired" stronger.
3700 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
3702         * term/x-win.el (x-select-enable-primary): Change default to nil.
3703         (x-select-enable-clipboard): Add :version keyword.
3705         * mouse.el (mouse-drag-copy-region):
3706         * simple.el (select-active-regions): Likewise.
3708 2010-07-16  Reiner Steib  <Reiner.Steib@gmx.de>
3710         * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
3711         (vc-coding-system-for-diff): Use it to decide whether to inherit
3712         from the file the EOL format for reading the diffs of that file.
3713         (Bug#4451)
3715 2010-07-16  Eli Zaretskii  <eliz@gnu.org>
3717         * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
3718         unibyte, so compressed attachments are not compressed again.
3720 2010-07-16  Michael Albinus  <michael.albinus@gmx.de>
3722         * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
3723         "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
3724         (tramp-find-shell): Simplify setting connection property.
3725         (tramp-get-ls-command): Make test for "--color=never" stronger.
3727 2010-07-15  Simon South  <ssouth@member.fsf.org>
3729         * progmodes/delphi.el (delphi-previous-indent-of): Indent case
3730         blocks within record declarations (i.e. variant parts) correctly.
3732 2010-07-15  Simon South  <ssouth@member.fsf.org>
3734         * progmodes/delphi.el (delphi-token-at): Give newlines precedence
3735         over literal tokens when parsing so newlines aren't "absorbed" by
3736         single-line comments.  Corrects the indentation of case blocks
3737         that have a comment on the first line.
3739 2010-07-14  Karl Fogel  <kfogel@red-bean.com>
3741         * bookmark.el (bookmark-load-hook): Fix doc string as suggested
3742         by Drew Adams (Bug#5504).
3744 2010-07-14  Jan Djärv  <jan.h.d@swipnet.se>
3746         * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
3747         now that Unicode is used (Bug#6594).
3749 2010-07-14  Chong Yidong  <cyd@stupidchicken.com>
3751         * term/x-win.el (x-select-enable-clipboard): Default to t.
3752         (x-initialize-window-system): Don't overwrite Paste menu item.
3754         * simple.el (select-active-regions): Default to t.
3755         (push-mark-command): Don't overwrite primary with empty string.
3757         * mouse.el: Bind mouse-2 to mouse-yank-primary.
3758         (mouse-drag-copy-region): Default to nil.
3760         * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
3761         Cut/Copy/Paste menu bar items.
3763 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3765         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
3766         Patch applied by Karl Fogel.
3768         * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
3769         and `bookmark-current-buffer' if they have been already set in
3770         another buffer (e.g gnus-art).
3772 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
3773             Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3775         Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
3777         * bookmark.el (bookmark-make-record-default): Allow unneeded
3778         information to be omitted from the record.
3780         Adjust declarations and calls:
3782         * info.el (bookmark-make-record-default): Adjust declaration.
3783         (Info-bookmark-make-record): Adjust call.
3785         * woman.el (bookmark-make-record-default): Adjust declaration.
3786         (woman-bookmark-make-record): Adjust call.
3788         * man.el (bookmark-make-record-default): Adjust declaration.
3789         (Man-bookmark-make-record): Adjust call.
3791         * image-mode.el (bookmark-make-record-default): Adjust declaration.
3793         * doc-view.el (bookmark-make-record-default): Adjust declaration.
3795 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
3797         * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
3798         This is also from Thierry Volpiatto's patch in bug #6444.  However,
3799         because it was extraneous to the functional change in that patch,
3800         and causes a re-indendation, I am committing it separately.
3802 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3804         * bookmark.el (bookmark-show-annotation): Ensure annotations show,
3805         e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
3806         Patch applied by Karl Fogel (Bug#6444).
3808 2010-07-13  Chong Yidong  <cyd@stupidchicken.com>
3810         * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
3812 2010-07-13  Adrian Robert  <Adrian.B.Robert@gmail.com>
3814         * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
3815         Dempsky; bug#5084).  Remove incorrect binding for S-tab.
3816         (ns-alternatives-map): Change S-tab binding to backtab
3817         (bug#6616).
3819         * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
3820         under ns.
3822 2010-07-12  Andreas Schwab  <schwab@linux-m68k.org>
3824         * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
3825         (Bug#5806)
3827         * language/tv-util.el (tai-viet-re): Remove format.
3829 2010-07-12  Kenichi Handa  <handa@m17n.org>
3831         * language/hebrew.el: Remove no-byte-compile declaration.
3832         Change coding: tag to utf-8.  Register hebrew-shape-gstring in
3833         composition-function-table for 3-character looking back.
3834         (hebrew-font-get-precomposed): New function.
3835         (hebrew-shape-gstring): Utilize precomposed glyphs if available.
3837 2010-07-11  Chong Yidong  <cyd@stupidchicken.com>
3839         * mouse.el (mouse-drag-track): Handle select-active-regions
3840         (Bug#6612).
3842 2010-07-11  Magnus Henoch  <magnus.henoch@gmail.com>
3844         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
3845         empty argument to gvfs-copy.
3847 2010-07-10  Glenn Morris  <rgm@gnu.org>
3849         * calendar/calendar.el (calendar-week-end-day): New function.
3850         * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
3851         Respect calendar-week-start-day.  (Bug#6606)
3852         (cal-tex-insert-day-names, cal-tex-insert-blank-days)
3853         (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
3854         (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
3855         respect calendar-week-start-day.
3857 2010-07-10  Chong Yidong  <cyd@stupidchicken.com>
3859         * simple.el (use-region-p): Doc fix (Bug#6607).
3861 2010-07-10  Aleksei Gusev  <aleksei.gusev@gmail.com>  (tiny change)
3863         * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
3864         regexps for cucumber and ruby.
3866 2010-07-08  Daiki Ueno  <ueno@unixuser.org>
3868         * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
3869         (epa-file-insert-file-contents): Hack to prevent
3870         find-file from opening empty buffer when decryption failed
3871         (bug#6568).
3873 2010-07-07  Agustín Martín  <agustin.martin@hispalinux.es>
3875         * textmodes/ispell.el (ispell-alternate-dictionary):
3876         Use file-readable-p.
3877         Return nil if no word-list is found at default locations.
3878         (ispell-complete-word-dict): Default to nil.
3879         (ispell-command-loop): Use 'word-list' when using lookup-words.
3880         (lookup-words): Use ispell-complete-word-dict or
3881         ispell-alternate-dictionary.  Check for word-list availability
3882         and handle errors if needed with better messages (Bug#6539).
3883         (ispell-complete-word): Use ispell-complete-word-dict or
3884         ispell-alternate-dictionary.
3886 2010-07-07  Christoph Scholtes  <cschol2112@gmail.com>
3888         * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
3889         builtins (BufferError, BytesWarning, WindowsError; callables
3890         bin, bytearray, bytes, format, memoryview, next, print; __package__).
3892 2010-07-07  Glenn Morris  <rgm@gnu.org>
3894         * play/zone.el (top-level): Do not require timer, tabify, or cl.
3895         (zone-shift-left): Ignore intangibility, and any errors from
3896         forward-char.
3897         (zone-shift-right): Remove no-op end-of-line.  Ignore intangibility.
3898         (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
3899         deleting, and copying text properties.
3900         (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
3901         (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
3902         to point-max is hard.
3903         (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
3904         (zone-fill-out-screen): Ignore intangibility.
3906 2010-07-05  Chong Yidong  <cyd@stupidchicken.com>
3908         * menu-bar.el (menu-bar-mode):
3909         * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
3910         if it has been set.
3912         * mouse.el (mouse-drag-track): Call mouse-start-end to handle
3913         word/line selection (Bug#6565).
3915 2010-07-04  Juanma Barranquero  <lekktu@gmail.com>
3917         * net/dbus.el (dbus-send-signal): Declare function.
3919 2010-07-04  Michael Albinus  <michael.albinus@gmx.de>
3921         * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
3922         (dbus-register-property): New optional argument EMITS-SIGNAL.
3923         (dbus-property-handler): Send signal "PropertiesChanged" if requested.
3925 2010-07-03  Chong Yidong  <cyd@stupidchicken.com>
3927         * mouse.el (mouse-drag-overlay): Variable deleted.
3928         (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
3929         (mouse--remap-link-click-p): New function.
3930         (mouse-drag-track): Handle dragging by using temporary Transient
3931         Mark mode, instead of a special overlay.
3932         (mouse-kill-ring-save, mouse-save-then-kill): Don't call
3933         mouse-show-mark.
3935         * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
3936         deleted.
3938 2010-07-02  Juri Linkov  <juri@jurta.org>
3940         * autoinsert.el (auto-insert-alist): Fix readability
3941         by using dotted pair notation for lambda.
3943 2010-07-02  Juri Linkov  <juri@jurta.org>
3945         * faces.el (read-face-name): Rename arg `string-describing-default'
3946         to `default'.  Doc fix.  Display the default value in quotes
3947         in the prompt.  With empty input, return the `default' arg,
3948         unless the default value is a string (in which case return nil).
3949         (describe-face): Replace the string `default' arg of `read-face-name'
3950         with the symbol `default'.
3952 2010-07-02  Chong Yidong  <cyd@stupidchicken.com>
3954         * emulation/viper-cmd.el (viper-delete-backward-char)
3955         (viper-del-backward-char-in-insert)
3956         (viper-del-backward-char-in-replace, viper-change)
3957         (viper-backward-indent): Replace delete-backward-char with
3958         delete-char (Bug#6552).
3960 2010-07-01  Chong Yidong  <cyd@stupidchicken.com>
3962         * ruler-mode.el (ruler--save-header-line-format): Fix typos.
3964 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
3966         * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
3967         argument passed to frame-creation-function (Bug#5378).
3969         * faces.el (x-handle-named-frame-geometry)
3970         (x-handle-reverse-video, x-create-frame-with-faces)
3971         (face-set-after-frame-default, tty-create-frame-with-faces): Don't
3972         separately consult default-frame-alist.  It is now passed as the
3973         PARAMETER argument.
3975 2010-06-30  Andreas Schwab  <schwab@linux-m68k.org>
3977         * startup.el (command-line): Don't call tool-bar-setup in a
3978         tty-only build.
3980 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
3982         * ruler-mode.el (ruler--save-header-line-format): New fun.
3983         (ruler-mode): Use it as a setter function, so as not to overwrite
3984         ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
3986 2010-06-29  Chong Yidong  <cyd@stupidchicken.com>
3988         * vc/vc.el (vc-deduce-backend): New fun.  Handle diff buffers.
3989         (vc-root-diff, vc-print-root-log, vc-log-incoming)
3990         (vc-log-outgoing): Use it.
3991         (vc-diff-internal): Set diff-vc-backend.
3993         * vc/diff-mode.el (diff-vc-backend): New var.
3995 2010-06-28  Jan Djärv  <jan.h.d@swipnet.se>
3997         * dynamic-setting.el (font-setting-change-default-font): Remove
3998         call to message.
4000 2010-06-28  Kenichi Handa  <handa@m17n.org>
4002         * international/quail.el (quail-insert-kbd-layout): Fix the
4003         showing of untranslated characters.
4005 2010-06-28  Chong Yidong  <cyd@stupidchicken.com>
4007         * simple.el (delete-active-region): New option.
4008         (delete-backward-char): Implement in Lisp.
4009         (delete-forward-char): New command.
4011         * mouse.el (mouse-region-delete-keys): Deleted.
4012         (mouse-show-mark): Simplify.
4014         * bindings.el (global-map): Bind delete and DEL, the former to
4015         delete-forward-char.
4017 2010-06-27  Lennart Borgman  <lennart.borgman@gmail.com>
4019         * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
4020         (ruby-mode): Bind indent-line-function (Bug#5119).
4022 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
4024         * startup.el (command-line): Recognize "0" X resource value.
4026 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
4028         * startup.el (command-line): Use X resources to set the value of
4029         menu-bar-mode and tool-bar-mode, before calling frame-initialize.
4031         * menu-bar.el (menu-bar-mode):
4032         * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
4033         Set init-value to t.
4035         * frame.el (frame-notice-user-settings): Don't change
4036         default-frame-alist based on menu-bar-mode and tool-bar-mode, or
4037         vice versa (Bug#2249).
4039 2010-06-26  Eli Zaretskii  <eliz@gnu.org>
4041         * w32-fns.el (w32-convert-standard-filename): Doc fix.
4043 2010-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
4045         * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
4046         Make sure `flyspell-word' re-checks word after function run (Bug#6504).
4048         * textmodes/ispell.el (ispell-init-process): Make sure ispell and
4049         default directories are expanded (Bug#6143).
4051 2010-06-24  Juri Linkov  <juri@jurta.org>
4053         * minibuffer.el (completions-format): Change default from nil to
4054         `horizontal'.  Remove `nil' value from :type.  Doc fix.  (Bug#6459)
4056 2010-06-24  Juri Linkov  <juri@jurta.org>
4058         * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
4059         buffer-locally to lambda that re-runs the vc diff command.
4060         (Bug#6447)
4062 2010-06-24  Chong Yidong  <cyd@stupidchicken.com>
4064         * kmacro.el (kmacro-call-macro): Don't issue hint message if the
4065         echo area is in use (Bug#3412).
4067 2010-06-22  Glenn Morris  <rgm@gnu.org>
4069         * textmodes/texinfmt.el (texinfo-format-region)
4070         (texinfo-raise-lower-sections, texinfo-format-separate-node)
4071         (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
4072         (texinfo-format-option, texinfo-noindent):
4073         Use line-beginning-position and line-end-position.
4075         * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
4076         * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
4077         * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
4078         utf-8 characters.
4080 2010-06-21  Karl Fogel  <kfogel@red-bean.com>
4082         * play/zone.el (zone-fall-through-ws): Fix next-line ->
4083         forward-line fallout.
4085 2010-07-06  Chong Yidong  <cyd@stupidchicken.com>
4087         * mouse.el (mouse-appearance-menu): Add docstring.
4089         * help.el (describe-key): Print up-event using key-description.
4091 2010-07-03  Michael Albinus  <michael.albinus@gmx.de>
4093         * net/zeroconf.el (zeroconf-resolve-service)
4094         (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
4095         (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
4097 2010-07-03  Jan Moringen  <jan.moringen@uni-bielefeld.de>
4099         * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
4101 2010-06-30  Dan Nicolaescu  <dann@ics.uci.edu>
4103         Avoid displaying files with a nil state in vc-dir.
4104         * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
4105         cases that cause insertion.
4106         (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
4107         with a nil state.
4109 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
4111         * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
4113 2010-06-29  Leo  <sdl.web@gmail.com>
4115         * emacs-lisp/rx.el (rx): Doc fix.  (Bug#6537)
4117 2010-06-27  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
4119         * generic-x.el (bat-generic-mode): Fix regexp for command line
4120         switches (Bug#5719).
4122 2010-06-27  Masatake YAMATO  <yamato@redhat.com>
4124         * htmlfontify.el (hfy-face-attr-for-class): Use append instead
4125         of nconc to avoid pure storage error (Bug#6239).
4127 2010-06-27  Christoph  <cschol2112@googlemail.com>  (tiny change)
4129         * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
4130         (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
4131         bindings of bookmark-automatically-show-annotations (Bug#6515).
4133 2010-06-25  Eli Zaretskii  <eliz@gnu.org>
4135         * arc-mode.el (archive-zip-extract): Don't quote the file name on
4136         MS-Windows and MS-DOS.  (Bug#6467, Bug#6144)
4138 2010-06-24  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
4140         * comint.el (make-comint, make-comint-in-buffer): Mention return
4141         value in the docstrings.  (Bug#6498)
4143 2010-06-24  Yoni Rabkin  <yoni@rabkins.net>
4145         * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
4146         since it is not present when using some non-default switches.
4148 2010-06-23  Karl Fogel  <kfogel@red-bean.com>
4150         * simple.el (compose-mail): Fix doc string to refer to
4151         `compose-mail-user-agent-warnings', instead of to the
4152         nonexistent `compose-mail-check-user-agent'.
4154 2010-06-21  Alan Mackenzie  <bug-cc-mode@gnu.org>
4156         Fix an indentation bug:
4158         * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
4159         (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
4160         of existing values.
4162         * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
4163         (c-clear->-pair-props-if-match-before): now return t when they've
4164         cleared properties, nil otherwise.
4165         (c-before-change-check-<>-operators): Set c-new-beg/end correctly
4166         by taking account of the existing value.
4168         * progmodes/cc-defs.el
4169         (c-clear-char-property-with-value-function): Fix this to clear the
4170         property rather than overwriting it with nil.
4172 2010-06-20  Chong Yidong  <cyd@stupidchicken.com>
4174         * emacs-lisp/package.el (package-print-package): Add link to
4175         package description via describe-package.
4176         (describe-package-1): List package requirements.  Add button to
4177         perform installation.
4178         (package-menu-describe-package): New command.
4180         * help-mode.el (help-package): New button type.
4182 2010-06-19  Chong Yidong  <cyd@stupidchicken.com>
4184         * emacs-lisp/package.el: Move package-list-packages binding to
4185         menu-bar.el.
4186         (describe-package, describe-package-1, package--dir): New funs.
4187         (package-activate-1): Use package--dir.
4189         * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
4191         * help-mode.el (help-package-def): New button type.
4193         * menu-bar.el: Move package-list-packages binding here from
4194         package.el.
4196 2010-06-19  Gustav Hållberg  <gustav@gmail.com>  (tiny change)
4198         * descr-text.el (describe-char): Avoid trailing whitespace.  (Bug#6423)
4200 2010-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4202         * emacs-lisp/edebug.el (edebug-read-list):
4203         Phase out old-style backquotes.
4205 2010-06-17  Juri Linkov  <juri@jurta.org>
4207         * help-mode.el (help-mode): Set buffer-local variable
4208         revert-buffer-function to help-mode-revert-buffer.
4209         (help-mode-revert-buffer): New function.
4211         * info.el (Info-revert-find-node): Check for major-mode Info-mode
4212         before popping to "*info*" (like in other Info functions).
4213         Keep buffer-name in old-buffer-name.  Keep Info-history-forward in
4214         old-history-forward.  Pop to old-buffer-name or "*info*" to
4215         recreate the killed buffer.  Set Info-history-forward from
4216         old-history-forward.
4217         (Info-breadcrumbs-depth): Add :group and :version.
4219 2010-06-17  Dan Nicolaescu  <dann@ics.uci.edu>
4221         * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
4223 2010-06-17  Agustín Martín  <agustin.martin@hispalinux.es>
4225         * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
4226         for languages like Portuguese with pt_{BR,PT} and no plain pt.
4228 2010-06-17  Juanma Barranquero  <lekktu@gmail.com>
4230         * emacs-lisp/package.el (package-menu-mode-map):
4231         Move initialization into declaration.
4233         * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
4235 2010-06-17  Chong Yidong  <cyd@stupidchicken.com>
4237         * emacs-lisp/package.el (package-archive-base): Point to
4238         elpa.gnu.org.
4239         (package-enable, package-load-list): New defcustoms.
4240         (package-user-dir, package-directory-list): Turn into defcustoms.
4241         Don't include package-user-dir in package-directory-list.
4242         (package--builtins-base): Don't include Emacs as a "package".
4243         (package-subdirectory-regexp): New var.
4244         (package-load-all-descriptors, package-compute-transaction)
4245         (package-download-transaction): Obey package-load-list.
4246         (package-activate-1): Rename from package-do-activate.
4247         (package-list-packages-internal): Check package-load-list.
4248         (package-load-descriptor, package-generate-autoloads)
4249         (package-unpack, package-unpack-single)
4250         (package--read-archive-file, package-delete): Use
4251         expand-file-name.
4253         * emacs-lisp/package-x.el: New file.  Package uploading
4254         functionality split out from package.el.
4256         * startup.el (command-line): Load packages after reading init file.
4258 2010-06-17  Tom Tromey  <tromey@redhat.com>
4260         * emacs-lisp/package.el: New file.
4262 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
4264         Fix vc-annotate for renamed files when using Git.
4265         * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
4266         ls-files.  Doe not pass the object as a file name to cat-file, it
4267         is not a file name.
4268         (vc-git-annotate-command): Pass the file name using -- to avoid
4269         ambiguity with the revision.
4270         (vc-git-previous-revision): Pass a relative file name.
4272 2010-06-22  Glenn Morris  <rgm@gnu.org>
4274         * progmodes/js.el (js-mode-map): Use standard capitalization and
4275         ellipses for menu entries.
4277         * wid-edit.el (widget-complete): Doc fix.
4279 2010-06-22  Jürgen Hötzel  <juergen@hoetzel.info>  (tiny change)
4281         * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
4283 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
4285         Fix annotating other revisions for renamed files in vc-annotate.
4286         * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
4287         VC backend.  Use it when non-nil.
4288         (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
4289         (Bug#6487)
4291         Fix vc-annotate-show-changeset-diff-revision-at-line for git.
4292         * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
4293         Do not pass the file name to the 'previous-revision call when we
4294         don't want a file diff.  (Bug#6489)
4296 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
4298         Fix finding revisions for renamed files in vc-annotate.
4299         * vc/vc.el (vc-find-revision): Add an optional argument for
4300         the VC backend.  Use it when non-nil.
4301         * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
4302         backend to vc-find-revision.  (Bug#6487)
4304 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
4306         Fix reading file names in Git annotate buffers.
4307         * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
4308         Remove trailing whitespace.  Suggested by Eric Hanchrow.  (Bug#6481)
4310 2010-06-20  Alan Mackenzie  <acm@muc.de>
4312         * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
4313         in file local variables, set it first.
4315 2010-06-19  Glenn Morris  <rgm@gnu.org>
4317         * descr-text.el (describe-char-unicode-data): Insert separating
4318         space when needed.  (Bug#6422)
4320         * progmodes/idlwave.el (idlwave-action-and-binding):
4321         Fix typo in 2009-12-03 change.  (Bug#6450)
4323 2010-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4325         * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
4326         handling for `lambda' (misunderstanding).
4328 2010-06-16  Jay Belanger  <jay.p.belanger@gmail.com>
4330         * calc/calc-poly.el (math-accum-factors): Make sure that
4331         constants aren't distributed after they are factored out.
4333 2010-06-16  Juri Linkov  <juri@jurta.org>
4335         * facemenu.el (list-colors-display): Call `pop-to-buffer' before
4336         `list-colors-print'.  (Bug#6332)
4338         * subr.el (read-quoted-char): Fix up last change (bug#6290).
4340 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4342         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
4343         specially, since it's a macro.  Fix up wrong hint passed to maybe-cons.
4345         * font-lock.el (font-lock-major-mode): Rename from
4346         font-lock-mode-major-mode to distinguish it from
4347         global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
4348         (font-lock-set-defaults):
4349         * font-core.el (font-lock-default-function): Adjust users.
4350         (font-lock-mode): Don't set it at all.
4352 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4354         * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
4356 2010-06-16  Glenn Morris  <rgm@gnu.org>
4358         * calendar/appt.el (appt-time-msg-list): Doc fix.
4359         (appt-check): Let-bind appt-warn-time.
4360         (appt-add): Make the 3rd argument optional.
4361         Simplify argument names.  Doc fix.  Check for integer WARNTIME.
4362         Only add WARNTIME to the output list if non-nil.
4364 2010-06-16  Ivan Kanis  <apple@kanis.eu>
4366         * calendar/appt.el (appt-check): Let the 3rd element of
4367         appt-time-msg-list specify the warning time.
4368         (appt-add): Add new argument with the warning time.  (Bug#5176)
4370 2010-06-16  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
4372         * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
4373         older than version 1.6.  (Bug#6361)
4375 2010-06-16  Helmut Eller  <eller.helmut@gmail.com>
4377         * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
4378         used by cl-do-arglist.  (Bug#6408)
4380 2010-06-16  Agustín Martín  <agustin.martin@hispalinux.es>
4382         * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
4383         portuguese casechars/not-casechars for missing 'çÇ'.
4384         Suggested by Rolando Pereira (bug#6434).
4386 2010-06-15  Juanma Barranquero  <lekktu@gmail.com>
4388         * facemenu.el (list-colors-sort): Doc fix.
4390 2010-06-15  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
4392         * progmodes/sql.el (sql-connect-mysql): Fix typo.
4394 2010-06-14  Juri Linkov  <juri@jurta.org>
4396         Add sort option `list-colors-sort'.  (Bug#6332)
4397         * facemenu.el (color-rgb-to-hsv): New function.
4398         (list-colors-sort): New defcustom.
4399         (list-colors-sort-key): New function.
4400         (list-colors-display): Doc fix.  Sort list according to the option
4401         `list-colors-sort'.
4402         (list-colors-print): Add HSV values to `help-echo' property of
4403         RGB strings.
4405 2010-06-14  Juri Linkov  <juri@jurta.org>
4407         * compare-w.el: Move to the "vc" subdirectory.
4409 2010-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4411         * image-mode.el (image-mode-map): Remap left-char and right-char.
4413         * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
4415 2010-06-12  Chong Yidong  <cyd@stupidchicken.com>
4417         * term/common-win.el (x-colors): Add all the color names defined
4418         in rgb.txt (Bug#6332).
4420         * facemenu.el (list-colors-print): Don't print extra names if it
4421         will overflow the window width.
4423         * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
4424         change (Bug#6343).
4426 2010-06-12  Eli Zaretskii  <eliz@gnu.org>
4428         * files.el (make-directory): Doc fix (bug#6396).
4430 2010-06-12  Michael Albinus  <michael.albinus@gmx.de>
4432         * net/tramp.el (tramp-remote-process-environment): Protect version
4433         string by apostroph.
4434         (tramp-shell-prompt-pattern): Do not use a shy group in case of
4435         XEmacs.
4436         (tramp-file-name-for-operation): Add `call-process-region'.
4437         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
4439         * net/tramp-compat.el (top): Do not autoload
4440         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
4441         only when `start-file-process' is not bound.
4442         (tramp-advice-file-expand-wildcards): Do not use
4443         `tramp-handle-file-remote-p'.
4444         (tramp-compat-make-temp-file): Handle the case, that
4445         `make-temp-file' has no third argument EXTENSION.
4447 2010-06-11  Juanma Barranquero  <lekktu@gmail.com>
4449         * makefile.w32-in (WINS_BASIC): Include new directory vc.
4451         * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
4453 2010-06-11  Juri Linkov  <juri@jurta.org>
4455         * finder.el (finder-known-keywords): Add keyword "vc"
4456         for version control.
4458         * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
4459         * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
4460         * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
4461         * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
4463 2010-06-11  Juri Linkov  <juri@jurta.org>
4465         Move version control related files to the "vc" subdirectory.
4466         * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
4467         * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
4468         * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
4469         * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
4470         * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
4471         * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
4472         * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
4473         * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
4474         Move files to the "vc" subdirectory.
4476 2010-06-11  Chong Yidong  <cyd@stupidchicken.com>
4478         * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
4479         (Bug#6367).
4481 2010-06-11  Stephen Eglen  <stephen@gnu.org>
4483         * shell.el: Bind `shell-resync-dirs' to M-RET.
4485 2010-06-10  Michael Albinus  <michael.albinus@gmx.de>
4487         * notifications.el: Move file from lisp/net, because it is
4488         supposed to talk locally to the user.
4490 2010-06-10  Julien Danjou  <julien@danjou.info>
4492         * net/notifications.el (notifications-on-action-signal)
4493         (notifications-on-closed-signal): Pass notification id as first
4494         argument to the callback functions.  Add docstrings.
4495         (notifications-notify): Fix docstring.
4497 2010-06-10  Glenn Morris  <rgm@gnu.org>
4499         * emacs-lisp/authors.el (authors-ignored-files)
4500         (authors-valid-file-names): Add some files.
4502 2010-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4504         * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
4505         merge conflict, giving preference to the emacs-23 version of the code.
4507 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4509         * emacs-lisp/advice.el (ad-compile-function):
4510         Define warning-suppress-types before we let-bind it (bug#6275).
4512         * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
4513         declare it, make it buffer-local and permanent-local (bug#6324).
4514         (vc-resynch-window): Adjust name.
4515         * vc-hooks.el (vc-find-file-hook): Adjust name.
4517 2010-06-09  Michael Albinus  <michael.albinus@gmx.de>
4519         * net/notifications.el (notifications-notify): Fix docstring.
4521 2010-06-09  Juanma Barranquero  <lekktu@gmail.com>
4523         Update to Unicode 6.0.0 beta.
4524         * international/charprop.el: Update copyright.
4525         * international/mule-cmds.el (ucs-names): Update character ranges.
4526         * international/uni-bidi.el:
4527         * international/uni-category.el:
4528         * international/uni-combining.el:
4529         * international/uni-comment.el:
4530         * international/uni-decimal.el:
4531         * international/uni-decomposition.el:
4532         * international/uni-digit.el:
4533         * international/uni-lowercase.el:
4534         * international/uni-mirrored.el:
4535         * international/uni-name.el:
4536         * international/uni-numeric.el:
4537         * international/uni-old-name.el:
4538         * international/uni-titlecase.el:
4539         * international/uni-uppercase.el: Regenerate.
4541 2010-06-09  Juanma Barranquero  <lekktu@gmail.com>
4543         * emacs-lisp/smie.el (comment-string-strip): Declare function.
4544         (smie-precs-precedence-table): Fix typo in docstring.
4546         * vc-mtn.el (log-edit-extract-headers): Declare function.
4548         * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
4550         * net/notifications.el (dbus-register-signal): Declare function.
4551         (notifications-notify): Fix typos and reflow docstring.
4553 2010-06-09  Dan Nicolaescu  <dann@ics.uci.edu>
4555         Improve VC create/retrieve tag/branch.
4556         * vc.el (vc-create-tag): Do not read the directory name for VCs
4557         with repository revision granularity.  Adjust the tag/branch
4558         prompt.  Reset VC properties.
4559         (vc-retrieve-tag): Do not read the directory name for VCs
4560         with repository revision granularity.  Reset VC properties.
4562 2010-06-09  Julien Danjou  <julien@danjou.info>
4564         * net/notifications.el: New file.
4566 2010-06-09  Dan Nicolaescu  <dann@ics.uci.edu>
4568         Add optional support for resetting VC properties.
4569         * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
4570         call vc-file-clearprops when true.
4571         (vc-resynch-buffer): Add new optional argument, pass it down.
4572         (vc-resynch-buffers-in-directory): Likewise.
4574         Improve support for special markup in the VC commit message.
4575         * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
4576         * vc-hg.el (vc-hg-checkin): Add support for Date:.
4577         * vc-git.el (vc-git-checkin):
4578         * vc-bzr.el (vc-bzr-checkin): Likewise.
4580 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4582         * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
4583         can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
4585 2010-06-07  Martin Pohlack  <mp26@os.inf.tu-dresden.de>
4587         * iimage.el: Remove images as soon as the underlying text is modified.
4588         (iimage-modification-hook): New function.
4589         (iimage-mode-buffer): Use it.
4591 2010-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4593         * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
4594         smie-indent-offset-after.  Add :prev case.  Make a bit more generic.
4595         (smie-indent-virtual): Remove `virtual' arg.  Update callers.
4596         (smie-indent-keyword): Add handling of open-paren keywords.
4597         (smie-indent-comment-continue): Don't assume comment-continue.
4599 2010-06-07  Martin Rudalics  <rudalics@gmx.at>
4601         * window.el (pop-to-buffer): Remove the conditional that
4602         compares new-window and old-window, so it will reselect
4603         the selected window unconditionally.
4604         http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
4606 2010-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4608         * emacs-lisp/smie.el (smie-indent-offset-after)
4609         (smie-indent-forward-token, smie-indent-backward-token): New functions.
4610         (smie-indent-after-keyword): Use them.
4611         (smie-indent-fixindent): Only applies to the indentation of the BOL.
4612         (smie-indent-keyword): Tweak the black magic.
4613         (smie-indent-comment-continue): Strip comment-continue before use.
4614         (smie-indent-functions): Indent comments before keywords.
4616 2010-06-06  Juri Linkov  <juri@jurta.org>
4618         * isearch.el (isearch-lazy-highlight-search): Fix looping
4619         by checking for empty match.  This syncs this loop with the
4620         similar loop in `isearch-search'.  (Bug#6362)
4622 2010-06-05  Juanma Barranquero  <lekktu@gmail.com>
4624         * net/dbus.el (dbus-register-method): Declare function.
4625         (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
4626         (dbus-introspect): Doc fix.
4627         (dbus-event-bus-name, dbus-introspect-get-interface)
4628         (dbus-introspect-get-argument): Reflow docstrings.
4630 2010-06-05  Dan Nicolaescu  <dann@ics.uci.edu>
4632         vc-log-incoming/vc-log-outgoing fixes for Git.
4633         * vc-git.el (vc-git-log-view-mode): Fix font lock for
4634         incoming/outgoing logs.
4635         (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
4636         instead of vc-git-compute-remote.
4637         (vc-git-compute-remote): Remove.
4639 2010-06-04  Chong Yidong  <cyd@stupidchicken.com>
4641         * term/common-win.el (x-colors): Add "dark green" and "dark
4642         turquoise" (Bug#6332).
4644 2010-06-04  Juri Linkov  <juri@jurta.org>
4646         * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
4647         Instead of setting `replace' to t and replacing the same string
4648         with itself, don't do certain actions when
4649         kill-do-not-save-duplicates is non-nil and string is equal to car
4650         of kill-ring: don't call menu-bar-update-yank-menu, don't push
4651         interprogram-paste strings to kill-ring, and don't push the input
4652         argument `string' to kill-ring.
4653         http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
4655 2010-06-04  Juanma Barranquero  <lekktu@gmail.com>
4657         * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
4659 2010-06-04  Michael Albinus  <michael.albinus@gmx.de>
4661         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
4662         (tramp-gvfs-handler-mounted-unmounted)
4663         (tramp-gvfs-connection-mounted-p): Handle default-location.
4665         * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
4666         move files to trash.
4668 2010-06-04  Juanma Barranquero  <lekktu@gmail.com>
4670         * international/mule-cmds.el (nonascii-insert-offset)
4671         (nonascii-translation-table): Add obsolescence information.
4673         * international/mule.el (make-translation-table-from-vector): Doc fix.
4675 2010-06-03  Glenn Morris  <rgm@gnu.org>
4677         * desktop.el (desktop-clear-preserve-buffers):
4678         Add "*Warnings*" buffer.  (Bug#6336)
4680 2010-06-03  Dan Nicolaescu  <dann@ics.uci.edu>
4682         vc-log-incoming/vc-log-outgoing improvements for Git.
4683         * vc-git.el (vc-git-log-outgoing): Use the same format as the
4684         short log.
4685         (vc-git-log-incoming): Likewise.  Run "git fetch" before the log command.
4687         Add bindings for vc-log-incoming and vc-log-outgoing.
4688         * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
4689         and vc-log-outgoing.
4690         * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
4691         and vc-log-outgoing.
4693 2010-06-03  Chong Yidong  <cyd@stupidchicken.com>
4695         * net/rcirc.el (rcirc-sort-nicknames): Remove.
4696         (rcirc-handler-366): Always sort nicknames.
4698 2010-06-03  Juanma Barranquero  <lekktu@gmail.com>
4700         * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
4702 2010-06-03  Chong Yidong  <cyd@stupidchicken.com>
4704         * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
4706 2010-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4708         * net/rcirc.el (rcirc-sort-nicknames): Change default.
4709         (rcirc-sort-nicknames-join): Avoid setq.
4711 2010-06-03  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
4713         * net/rcirc.el (rcirc-sort-nicknames): New custom.
4714         (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
4715         (rcirc-handler-366): Use them.
4717 2010-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4719         Split smie-indent-calculate into more manageable chunks.
4720         * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
4721         (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
4722         (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
4723         (smie-indent-exps): Extract from smie-indent-calculate.
4724         (smie-indent-functions): New var.
4725         (smie-indent-functions): Use them.
4727 2010-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4729         * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
4730         (smie-indent-calculate): Simplify and cleanup.
4732 2010-06-02  Michael Albinus  <michael.albinus@gmx.de>
4734         * net/tramp-gvfs.el (top): Require url-util.
4735         (tramp-gvfs-mount-point): Remove.
4736         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
4737         New defuns.
4738         (with-tramp-dbus-call-method): Format trace message.
4739         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
4740         Implement backup call, when operation on local files fails.
4741         Use progress reporter.  Flush properties of changed files.
4742         (tramp-gvfs-handle-make-directory): Make more traces.
4743         (tramp-gvfs-url-file-name): Hexify file name in url.
4744         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
4745         into account for the resulting file name.
4746         (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
4747         the answer is "no".  See `tramp-gvfs-maybe-open-connection'.
4748         (tramp-gvfs-handler-mounted-unmounted)
4749         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
4750         attribute "default_location".  Set "prefix" property.
4751         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
4752         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
4753         exists.  Raise an error, if not (due to a corresponding answer
4754         "no" in interactive questions, for example).
4756 2010-06-02  Dan Nicolaescu  <dann@ics.uci.edu>
4758         * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
4760 2010-06-01  Juanma Barranquero  <lekktu@gmail.com>
4762         * emacs-lisp/eldoc.el: Add completions for new commands left-* and
4763         right-*.  (Bug#6265)
4765 2010-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
4767         Add support for vc-log-incoming, improve vc-log-outgoing for Git.
4768         * vc-git.el (vc-git-compute-remote): New function.
4769         (vc-git-log-outgoing): Use it instead of hard coding a value.
4770         (vc-git-log-incoming): New function.
4772         Improve state updating for VC tag commands.
4773         * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
4774         to update the state of all buffers in the directory.
4776         * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
4778 2010-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4780         * vc-bzr.el (vc-bzr-revision-completion-table): Apply
4781         `file-directory-p' to the filename part rather than to the whole text.
4783 2010-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
4785         * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
4787 2010-05-31  Drew Adams  <drew.adams@oracle.com>
4789         * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
4791 2010-05-31  Juanma Barranquero  <lekktu@gmail.com>
4793         * subr.el (momentary-string-display): Just use read-event to read
4794         the exit event (Bug#6238).
4796 2010-05-30  Eli Zaretskii  <eliz@gnu.org>
4798         * international/mule.el (define-coding-system): Doc fix (bug#6313).
4800 2010-05-30  Juanma Barranquero  <lekktu@gmail.com>
4802         * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
4803         Suggested by Eli Zaretskii <eliz@gnu.org>.
4805 2010-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4807         * minibuffer.el (completion-file-name-table): Don't return a boundary
4808         past the end of `string' (bug#6299).
4809         (completion--file-name-table): Delegate to completion-file-name-table
4810         for the `boundaries' case.
4812 2010-05-30  Juanma Barranquero  <lekktu@gmail.com>
4814         * emulation/cua-base.el: Recognize `right-char' and `left-char' as
4815         movement commands.
4817         * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
4818         `path-separator', but maintain compatibility with Emacs 20.2.
4820 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
4822         * server.el (server-process-filter): Receive parent-id argument
4823         from emacsclient.
4824         (server-create-window-system-frame): New arg.  Pass parent-id as
4825         frame parameter.
4827 2010-05-29  Eli Zaretskii  <eliz@gnu.org>
4829         Bidi-sensitive word movement with arrow keys.
4830         * subr.el (right-arrow-command, left-arrow-command): Move to
4831         bindings.el.
4833         * bindings.el (right-char, left-char): Move from subr.el and
4834         rename from right-arrow-command and left-arrow-command.
4835         (right-word, left-word): New functions.
4836         (global-map) <right>: Bind to right-char.
4837         (global-map) <left>: Bind to left-char.
4838         (global-map) <C-right>: Bind to right-word.
4839         (global-map) <C-left>: Bind to left-word.
4841         * ls-lisp.el (ls-lisp-classify-file): New function.
4842         (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
4843         (ls-lisp-classify): Call ls-lisp-classify-file.
4844         (insert-directory): Remove blanks from switches.
4846 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
4848         * ansi-color.el: Delete unused escape sequences (Bug#6085).
4849         (ansi-color-drop-regexp): New constant.
4850         (ansi-color-apply, ansi-color-filter-region)
4851         (ansi-color-apply-on-region): Delete unrecognized control sequences.
4852         (ansi-color-apply): Build string list before calling concat.
4854 2010-05-28  Juri Linkov  <juri@jurta.org>
4856         * image-dired.el (image-dired-dired-toggle-marked-thumbs):
4857         Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
4858         (Bug#5270)
4860 2010-05-28  Michael Albinus  <michael.albinus@gmx.de>
4862         * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
4863         to ignored backtrace functions.
4864         (with-progress-reporter): Expand docstring.
4865         (tramp-handle-delete-file): Implement TRASH argument.
4866         (tramp-get-remote-trash): New defun.
4868 2010-05-28  Michael Albinus  <michael.albinus@gmx.de>
4870         * net/tramp-compat.el (tramp-compat-delete-file): Use
4871         `symbol-value' for backward compatibility.
4873         * net/tramp.el (tramp-handle-make-symbolic-link)
4874         (tramp-handle-load)
4875         (tramp-do-copy-or-rename-file-via-buffer)
4876         (tramp-do-copy-or-rename-file-directly)
4877         (tramp-do-copy-or-rename-file-out-of-band)
4878         (tramp-handle-process-file, tramp-handle-call-process-region)
4879         (tramp-handle-shell-command, tramp-handle-file-local-copy)
4880         (tramp-handle-insert-file-contents, tramp-handle-write-region)
4881         (tramp-delete-temp-file-function): Use `delete-file' instead
4882         of `tramp-compat-delete-file'.
4884         * net/tramp-fish.el (tramp-fish-handle-delete-directory)
4885         (tramp-fish-handle-make-symbolic-link)
4886         (tramp-fish-handle-process-file): Use `delete-file' instead
4887         of `tramp-compat-delete-file'.
4889         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
4890         `delete-file' instead of `tramp-compat-delete-file'.
4892         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
4893         (tramp-gvfs-handle-write-region): Use `delete-file' instead of
4894         `tramp-compat-delete-file'.
4896         * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
4897         `delete-file' instead of `tramp-compat-delete-file'.
4899         * net/tramp-smb.el (tramp-smb-handle-copy-file)
4900         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
4901         (tramp-smb-handle-write-region): Use `delete-file' instead of
4902         `tramp-compat-delete-file'.
4903         (tramp-smb-handle-delete-directory): Use 'trash as arg.
4905 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
4907         * dired.el (dired-delete-file): New arg TRASH.
4908         (dired-internal-do-deletions): New arg TRASH.  Use progress reporter.
4909         (dired-do-flagged-delete, dired-do-delete): Use trash.
4911         * speedbar.el (speedbar-item-delete): Allow trashing.
4913         * files.el (delete-directory): New arg TRASH.
4915         * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
4916         (ange-ftp-rename-remote-to-remote)
4917         (ange-ftp-rename-local-to-remote)
4918         (ange-ftp-rename-remote-to-local, ange-ftp-load)
4919         (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
4920         `delete-file'.
4921         (ange-ftp-delete-directory): Add optional arg to `delete-file', to
4922         allow trashing.
4924         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
4925         handle new TRASH arg of `delete-file'.
4927         * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
4928         (tramp-handle-make-symbolic-link, tramp-handle-load)
4929         (tramp-do-copy-or-rename-file-via-buffer)
4930         (tramp-do-copy-or-rename-file-directly)
4931         (tramp-do-copy-or-rename-file-out-of-band)
4932         (tramp-handle-process-file, tramp-handle-call-process-region)
4933         (tramp-handle-shell-command, tramp-handle-file-local-copy)
4934         (tramp-handle-insert-file-contents, tramp-handle-write-region)
4935         (tramp-delete-temp-file-function): Use null TRASH arg in
4936         tramp-compat-delete-file call.
4938         * net/tramp-fish.el (tramp-fish-handle-delete-directory)
4939         (tramp-fish-handle-delete-file)
4940         (tramp-fish-handle-make-symbolic-link)
4941         (tramp-fish-handle-process-file): Use null TRASH arg in
4942         `tramp-compat-delete-file' call.
4944         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
4945         arg in `tramp-compat-delete-file' call.
4947         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
4948         (tramp-gvfs-handle-write-region): Use null TRASH arg in
4949         `tramp-compat-delete-file' call.
4951         * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
4952         (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
4953         `tramp-compat-delete-file' call.
4955         * net/tramp-smb.el (tramp-smb-handle-copy-file)
4956         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
4957         (tramp-smb-handle-write-region): Use null TRASH arg in
4958         tramp-compat-delete-file call.
4959         (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
4960         (tramp-smb-handle-delete-file): Rename arg.
4962         * diff.el (diff-sentinel):
4963         * epg.el (epg--make-temp-file, epg-decrypt-string)
4964         (epg-verify-string, epg-sign-string, epg-encrypt-string):
4965         * jka-compr.el (jka-compr-partial-uncompress)
4966         (jka-compr-call-process, jka-compr-write-region):
4967         * server.el (server-sentinel): Remove optional arg from
4968         delete-file, reverting 2010-05-03 change.
4970 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
4972         * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
4973         font-lock-constant-face, not obsolete font-lock-reference-face.
4975 2010-05-27  Kenichi Handa  <handa@m17n.org>
4977         * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
4978         element of GSTRING is nil.
4980 2010-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4982         * emacs-lisp/smie.el (smie-forward-token-function)
4983         (smie-backward-token-function): New vars.
4984         (smie-backward-sexp, smie-forward-sexp)
4985         (smie-indent-hanging-p, smie-indent-calculate): Use them.
4986         (smie-default-backward-token): Rename from smie-backward-token and
4987         skip comments.
4988         (smie-default-forward-token): Rename from smie-forward-token and
4989         skip comments.
4990         (smie-next-sexp): Handle nil results from next-token.
4991         (smie-indent-calculate): Add a new case for special `fixindent' comments.
4993 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
4995         * progmodes/verilog-mode.el (verilog-type-font-keywords):
4996         Use font-lock-constant-face, not obsolete font-lock-reference-face.
4998 2010-05-27  Masatake YAMATO  <yamato@redhat.com>
5000         * htmlfontify.el (hfy-face-resolve-face): New function.
5001         (hfy-face-to-style): Use it (Bug#6279).
5003 2010-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5005         * progmodes/ada-xref.el (ada-gnat-parse-gpr):
5006         * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
5008 2010-05-26  Glenn Morris  <rgm@gnu.org>
5010         * emulation/edt.el (edt-load-keys): Use locate-library.
5012 2010-05-25  Chong Yidong  <cyd@stupidchicken.com>
5014         * log-edit.el (log-edit-strip-single-file-name): Default to nil.
5015         (log-edit-changelog-entries): Doc fix.
5016         (log-edit-changelog-insert-entries): Args changed.
5017         Rename relative filenames in ChangeLog entries.  Delete tabs.
5018         (log-edit-insert-changelog-entries): Reorganize return value of
5019         `log-edit-changelog-entries' to pass filenames to
5020         log-edit-changelog-insert-entries.
5022 2010-05-25  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5024         * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
5025         `image-dired-dired-insert-marked-thumbs' to
5026         `image-dired-dired-toggle-marked-thumbs'.
5028         * image-dired.el: Require cl when compiling.
5029         (image-dired-dired-toggle-marked-thumbs): Rename from
5030         `image-dired-dired-insert-marked-thumbs'.  Add ARG.  Doc fix.
5031         Use interactive spec "P".  Set LOCALP arg of `dired-get-filename'
5032         to 'no-dir.  Skip files whose names don't match
5033         `image-file-name-regexp'.  When file has a thumbnail overlay,
5034         delete it.  (Bug#5270)
5036 2010-05-25  Juri Linkov  <juri@jurta.org>
5038         * image-mode.el (image-mode): Add image-after-revert-hook to
5039         after-revert-hook.
5040         (image-after-revert-hook): New function.  (Bug#5669)
5042 2010-05-25  Juri Linkov  <juri@jurta.org>
5044         * image.el (image-animated-p): When delay between animated images
5045         is 0, set it to 10 (0.1 sec).  (Bug#6258)
5047 2010-05-25  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
5049         * net/tramp.el (tramp-handle-insert-directory): Don't use
5050         `forward-word', its default syntax could be changed.
5052 2010-05-25  Michael Albinus  <michael.albinus@gmx.de>
5054         * net/tramp.el (tramp-progress-reporter-update): New defun.
5055         (with-progress-reporter): Use it.
5056         (tramp-process-actions):
5057         * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
5058         current message, in order to let progress reporter continue
5059         afterwards.  (Bug#6257)
5061 2010-05-25  Glenn Morris  <rgm@gnu.org>
5063         * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
5064         Add :version.
5066 2010-05-25  Ryan Yeske  <rcyeske@gmail.com>
5068         * net/rcirc.el (rcirc-default-user-name): Change to "user".
5069         (rcirc-default-full-name): Change to "unknown".
5070         (rcirc-user-name-history): Add variable.
5072 2010-05-25  Ryan Yeske  <rcyeske@gmail.com>
5073             Jonathan Rockway  <jon@jrock.us>
5075         * net/rcirc.el (rcirc-server-alist): Add :pass.
5076         (rcirc): When prompting for connection parameters, also prompt for
5077         username and password.
5078         (rcirc-connect): Take a PASS argument.  If PASS is non-nil, send
5079         value to server when connecting.
5081 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5083         * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
5084         (smie-merge-prec2s): Pass the tables as separate args.
5085         (smie-bnf-precedence-table): Adjust call accordingly.
5086         (smie-prec2-levels): Set levels at the end.
5088         Replace Lisp calls to delete-backward-char by delete-char.
5089         * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
5090         * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
5091         * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
5092         * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
5093         * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
5094         * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
5095         * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
5096         * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
5097         * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
5098         * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
5099         * progmodes/ps-mode.el, progmodes/verilog-mode.el,
5100         * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
5101         * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
5102         * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
5103         delete-backward-char by calls to delete-char.
5105 2010-05-25  Kenichi Handa  <handa@m17n.org>
5107         * language/hebrew.el (hebrew-shape-gstring): New function.
5108         Register it in composition-function-table for all Hebrew combining
5109         characters.
5111 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5113         * epa.el (epa--select-keys): Don't explicitly delete the window since
5114         that can fail (e.g. sole window in frame).  Use dedication instead.
5116 2010-05-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
5118         * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
5120 2010-05-22  Chong Yidong  <cyd@stupidchicken.com>
5122         * image.el (image-refresh): Define as an alias for image-flush.
5124         * image-mode.el (image-toggle-display-image): Caller changed.
5126 2010-05-21  Juri Linkov  <juri@jurta.org>
5128         * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
5129         Remove "all" from grep-files-aliases.  Split grep-files-aliases by
5130         whitespace, call wildcard-to-regexp on substrings and concat them
5131         with "\\|".  (Bug#6114)
5133 2010-05-21  Alan Mackenzie  <acm@muc.de>
5135         * progmodes/cc-engine.el (c-parse-state-get-strategy):
5136         Replace parameter `here' with `here-' and `here-plus', which sandwich
5137         any pertinent CPP construct.
5138         (c-remove-stale-state-cache-backwards): Fix a bug which happens
5139         when doing (c-parse-state) in a CPP construct: Exclude any "new"
5140         CPP construct from taking part in the scanning.
5142 2010-05-21  Michael Albinus  <michael.albinus@gmx.de>
5144         * net/tramp.el (tramp-do-copy-or-rename-file)
5145         (tramp-handle-file-local-copy, tramp-maybe-open-connection):
5146         Tune `with-progress-reporter' messages.
5147         (tramp-handle-vc-registered):
5148         * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
5149         (tramp-fish-handle-insert-file-contents)
5150         (tramp-fish-maybe-open-connection):
5151         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
5152         * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
5153         (tramp-imap-handle-insert-file-contents)
5154         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
5156 2010-05-21  Juanma Barranquero  <lekktu@gmail.com>
5158         * add-log.el (change-log-font-lock-keywords):
5159         Highlight all authors in multi-author entries.
5161         * smerge-mode.el (smerge-refine-ignore-whitespace)
5162         (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
5163         Fix typos in docstrings.
5164         (smerge-resolve, smerge-refine-subst): Reflow docstrings.
5166 2010-05-21  Glenn Morris  <rgm@gnu.org>
5168         * progmodes/fortran.el (fortran-mode):
5169         * progmodes/f90.el (f90-mode): Derive from prog-mode.
5171         * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
5172         having a relative path in src/Makefile.in.
5174 2010-05-20  Kevin Ryde  <user42@zip.com.au>
5176         * help-mode.el (help-make-xrefs): For Info node links turn
5177         newlines into spaces.  Link node names with newlines are matched
5178         by help-xref-info-regexp and buttonized, this change ensures they
5179         can be followed successfully with RET.  (Bug#6206)
5181 2010-05-20  Juri Linkov  <juri@jurta.org>
5183         * locate.el (locate): Use pop-to-buffer instead of
5184         switch-to-buffer-other-window.  (Bug#6204)
5186 2010-05-20  Juri Linkov  <juri@jurta.org>
5188         * replace.el (replace-highlight): Fix lazy-highlighting
5189         for `M-s w str M-% str RET'.
5191 2009-12-15  Masatake YAMATO  <yamato@redhat.com>
5193         * isearch.el (isearch-yank-word-or-char): Pull next subword
5194         when `subword-mode' is activated.  (Bug#6220)
5196 2010-05-20  Mark A. Hershberger  <mah@everybody.org>
5198         * isearch.el (isearch-update-post-hook): New hook.
5199         (isearch-update): Use the new hook.  (Bug#6225)
5201 2010-05-20  Juri Linkov  <juri@jurta.org>
5203         * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
5204         [f1], [help], and (char-to-string help-char) instead of "\C-h".
5205         (Bug#6222)
5207 2010-05-20  Juri Linkov  <juri@jurta.org>
5209         * isearch.el (isearch-yank-string): Use isearch-process-search-string.
5210         (Bug#6223)
5212 2010-05-20  Juri Linkov  <juri@jurta.org>
5214         * dired-x.el (dired-jump, dired-jump-other-window): Add arg
5215         FILE-NAME to read from the minibuffer when called interactively
5216         with prefix argument instead of using buffer-file-name.
5217         http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
5219         * dired.el: Update autoloads.
5221 2010-05-20  Chong Yidong  <cyd@stupidchicken.com>
5223         * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
5224         nxml-finish-element, for consistency with SGML mode.
5226         * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
5227         octave-close-block.
5229 2010-05-20  Juanma Barranquero  <lekktu@gmail.com>
5231         * composite.el: Require cl when compiling.
5232         (reference-point-alist, compose-gstring-for-graphic)
5233         (compose-gstring-for-terminal): Fix typos in docstrings.
5235 2010-05-19  Juri Linkov  <juri@jurta.org>
5237         * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
5238         set-window-parameter.
5240 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
5242         * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
5243         where appropriate.
5244         (tramp-maybe-open-connection): Use it.
5246 2010-05-19  Eli Zaretskii  <eliz@gnu.org>
5248         * simple.el (move-end-of-line): Make sure we are at line beginning
5249         before backing up to end of previous line.
5251 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
5253         * password-cache.el (password-cache-remove): Fix docstring.
5255         * net/secrets.el: Autoload the widget functions.
5256         (secrets-search-items, secrets-create-item)
5257         (secrets-get-attributes, secrets-expand-item): Attributes will be
5258         stored on the password database without leading ":", as all other
5259         clients do as well.
5260         (secrets-mode): Fix docstring.
5261         (secrets-show-secrets): Provide it as autoloaded command only when
5262         D-Bus support is available.  Check existence of Secret Service API.
5264 2010-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5266         * indent.el (indent-region): Deactivate region (bug#6200).
5268 2010-05-19  Glenn Morris  <rgm@gnu.org>
5270         * vc-dir.el (vc-dir): Don't pop-up-windows.  (Bug#6204)
5272 2010-05-19  Kenichi Handa  <handa@m17n.org>
5274         * composite.el: Register compose-gstring-for-graphic in
5275         composition-function-table only for combining characters (Mn, Mc, Me).
5277 2010-05-18  Jay Belanger  <jay.p.belanger@gmail.com>
5279         * calc/calc-trail.el (calc-trail-isearch-forward)
5280         (calc-trail-isearch-backward): Ensure that the new window
5281         point is set correctly.
5283 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5285         * subr.el (read-quoted-char): Resolve modifiers after key
5286         remapping (bug#6212).
5288 2010-05-18  Michael Albinus  <michael.albinus@gmx.de>
5290         Add visualization code for secrets.
5291         * net/secrets.el (secrets-mode): New major mode.
5292         (secrets-show-secrets, secrets-show-collections)
5293         (secrets-expand-collection, secrets-expand-item)
5294         (secrets-tree-widget-after-toggle-function)
5295         (secrets-tree-widget-show-password): New defuns.
5297 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5299         * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
5300         (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
5301         handled in smie-next-sexp.
5302         (smie-indent-calculate): Provide a starting indentation (so the
5303         recursion is well-founded ;-).
5305         Fix handling of non-associative equal levels.
5306         * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
5307         when it's not needed.
5308         (smie-op-left, smie-op-right): New functions.
5309         (smie-next-sexp): New function, extracted from smie-backward-sexp.
5310         Better handle equal levels to distinguish the associative case from
5311         the "multi-keyword construct" case.
5312         (smie-backward-sexp, smie-forward-sexp): Use it.
5314 2010-05-18  Juanma Barranquero  <lekktu@gmail.com>
5316         * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
5318         * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
5319         (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
5321 2010-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5323         Provide a simple generic indentation engine and use it for Prolog.
5324         * emacs-lisp/smie.el: New file.
5325         * progmodes/prolog.el (prolog-smie-op-levels)
5326         (prolog-smie-indent-rules): New var.
5327         (prolog-mode-variables): Use them to configure SMIE.
5328         (prolog-indent-line, prolog-indent-level): Remove.
5330 2010-05-17  Jay Belanger  <jay.p.belanger@gmail.com>
5332         * calc/calc-vec.el (math-vector-avg): Put the vector elements in
5333         order before computing the averages.
5335 2010-05-16  Jay Belanger  <jay.p.belanger@gmail.com>
5337         * calc/calc-vec.el (calc-histogram):
5338         (calcFunc-histogram): Allow vectors as inputs.
5339         (math-vector-avg): New function.
5341         * calc/calc-ext.el (math-group-float): Have the number of digits
5342         being grouped depend on the radix (Bug#6189).
5344 2010-05-15  Ken Raeburn  <raeburn@raeburn.org>
5346         * version.el (emacs-copyright, emacs-version): Don't define here,
5347         now that emacs.c defines it.
5349 2010-05-15  Eli Zaretskii  <eliz@gnu.org>
5351         * international/mule-cmds.el (mule-menu-keymap): Fix definition of
5352         "Describe Language Environment" menu item.
5354         * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
5356         Bidi-sensitive movement with arrow keys.
5357         * subr.el (right-arrow-command, left-arrow-command): New functions.
5359         * bindings.el (global-map): Bind them to right and left arrow keys.
5361         Don't override standard definition of convert-standard-filename.
5362         * files.el (convert-standard-filename): Call
5363         w32-convert-standard-filename and dos-convert-standard-filename on
5364         the corresponding systems.
5366         * w32-fns.el (w32-convert-standard-filename): Rename from
5367         convert-standard-filename.  Doc fix.
5369         * dos-fns.el (dos-convert-standard-filename): Doc fix.
5370         (convert-standard-filename): Don't defalias.
5371         (register-name-alist, make-register, register-value)
5372         (set-register-value, intdos): Obsolete aliases for the
5373         corresponding dos-* functions and variables.
5374         (dos-intdos): Add a doc string.
5376 2010-05-15  Jay Belanger  <jay.p.belanger@gmail.com>
5378         * calc/calc-aent.el (math-read-token, math-find-user-tokens):
5379         * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
5380         (math-compose-tex-func):
5381         * calc/calccomp.el (math-compose-expr):
5382         * calc/calc-ext.el (math-format-flat-expr-fancy):
5383         * calc/calc-store.el (calc-read-var-name):
5384         * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
5386         * calc/calc.el (var-π, var-φ, var-γ): New variables.
5387         * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
5388         * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
5389         (math-standard-units): Add units.
5391 2010-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5393         * progmodes/asm-mode.el (asm-mode):
5394         * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
5396         * pcomplete.el (pcomplete-completions-at-point): New function,
5397         extracted from pcomplete-std-complete.
5398         (pcomplete-std-complete): Use it.
5400 2010-05-15  Glenn Morris  <rgm@gnu.org>
5402         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
5403         Remove references to CVS, RCS and Old directories.
5405 2010-05-14  Jay Belanger  <jay.p.belanger@gmail.com>
5407         * calc/calc-bin.el (math-format-twos-complement): Group digits when
5408         appropriate.
5410 2010-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5412         * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
5413         (sh-mode-syntax-table): Give it a default value instead.
5414         (sh-header-marker): Make buffer-local.
5415         (sh-mode): Move make-local-variable to the corresponding setq.
5416         (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
5417         Use complete-with-action.
5419         * simple.el (prog-mode): New (abstract) major mode.
5420         * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
5421         * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
5423 2010-05-14  Juanma Barranquero  <lekktu@gmail.com>
5425         * progmodes/sql.el (sql-oracle-program): Reflow docstring.
5426         (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
5427         (sql-add-product-keywords, sql-highlight-product, sql-set-product)
5428         (sql-make-alternate-buffer-name, sql-placeholders-filter)
5429         (sql-escape-newlines-filter, sql-input-sender)
5430         (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
5432 2010-05-13  Chong Yidong  <cyd@stupidchicken.com>
5434         Add TeX open-block and close-block keybindings to SGML, and vice versa.
5436         * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
5437         latex-open-block and C-c / to latex-close-block.
5439         * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
5440         and C-c C-e to sgml-close-tag.
5442 2010-05-13  Michael Albinus  <michael.albinus@gmx.de>
5444         * net/tramp.el (with-progress-reporter): Create reporter object
5445         only when the message would be displayed.  Handle nested calls.
5446         (tramp-handle-load, tramp-handle-file-local-copy)
5447         (tramp-handle-insert-file-contents, tramp-handle-write-region)
5448         (tramp-maybe-send-script, tramp-find-shell):
5449         Use `with-progress-reporter'.
5450         (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
5451         Fix message text.
5453         * net/tramp-smb.el (tramp-smb-handle-copy-file)
5454         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5455         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
5456         Use `with-progress-reporter'.
5458 2010-05-13  Agustín Martín  <agustin.martin@hispalinux.es>
5460         * textmodes/ispell.el (ispell-init-process): Do not kill ispell
5461         process everytime when spellchecking from the minibuffer (bug#6143).
5463 2010-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5465         * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
5467         * dos-fns.el: Add "dos-" prefix for namespace control.
5468         (convert-standard-filename): Define as alias for
5469         dos-convert-standard-filename but only if applicable.
5471 2010-05-12  Alan Mackenzie  <acm@muc.de>
5473         * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
5474         Push the mark at the start of these functions when appropriate.
5476 2010-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5478         * minibuffer.el (completion-cycle-threshold): New custom var.
5479         (completion--do-completion): Use it.
5480         (minibuffer-complete): Use cycling if appropriate.
5482 2010-05-11  Juanma Barranquero  <lekktu@gmail.com>
5484         * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
5485         buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
5487 2010-05-11  Juri Linkov  <juri@jurta.org>
5489         * scroll-all.el (scroll-all-check-to-scroll):
5490         Add `scroll-up-command' and `scroll-down-command' (bug#6164).
5492 2010-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5494         * iimage.el (iimage-mode-map): Move initialization into declaration.
5495         (iimage-mode-buffer): Use with-silent-modifications.
5496         Simplify calling convention.  Adjust callers.
5497         (iimage-mode): Don't run hook redundantly.
5499         * minibuffer.el (completion-pcm--pattern->regex):
5500         Fix last change (bug#6160).
5502 2010-05-10  Juri Linkov  <juri@jurta.org>
5504         Remove nodes visited during Isearch from the Info history.
5505         * info.el (Info-isearch-initial-history)
5506         (Info-isearch-initial-history-list): New variables.
5507         (Info-isearch-start): Record initial values of
5508         Info-isearch-initial-history and Info-isearch-initial-history-list.
5509         Add Info-isearch-end to isearch-mode-end-hook.
5510         (Info-isearch-end): New function.
5512 2010-05-10  Michael Albinus  <michael.albinus@gmx.de>
5514         * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
5515         format string, in order to work around a bug in pdksh.
5516         Reported by Gilles Pion <gpion@lfdj.com>.
5517         (tramp-handle-verify-visited-file-modtime): Do not send a command
5518         when the connection is not established.
5519         (tramp-handle-set-file-times): Simplify the check for utc.
5521 2010-05-10  Juanma Barranquero  <lekktu@gmail.com>
5523         Fix use of `filter-buffer-substring' (rework previous change).
5524         * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
5525         (cua-repeat-replace-region):
5526         * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
5527         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
5528         (cua-cut-region-to-global-mark): Use it.
5530 2010-05-09  Michael R. Mauger  <mmaug@yahoo.com>
5532         * progmodes/sql.el: Version 2.1.
5533         (sql-product-alist): Redesign structure of product info.
5534         (sql-product, sql-user, sql-server, sql-database): Safe variables.
5535         (sql-port, sql-port-history): New variables.
5536         (sql-interactive-product): New variable.
5537         (sql-send-terminator): New variable.
5538         (sql-imenu-generic-expression): Add "Types" imenu entry.
5539         (sql-oracle-login-params, sql-sqlite-login-params)
5540         (sql-mysql-login-params, sql-solid-login-params)
5541         (sql-sybase-login-params, sql-informix-login-params)
5542         (sql-ingres-login-params, sql-ms-login-params)
5543         (sql-postgres-login-params, sql-interbase-login-params)
5544         (sql-db2-login-params, sql-linter-login-params)
5545         (sql-oracle-scan-on): New variables.
5546         (sql-mode-map): Add C-c C-i to start interactive mode.
5547         (sql-mode-menu): Update existing menu entries.
5548         (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
5549         (sql-mode-oracle-font-lock-keywords)
5550         (sql-mode-postgres-font-lock-keywords)
5551         (sql-mode-ms-font-lock-keywords)
5552         (sql-mode-sybase-font-lock-keywords)
5553         (sql-mode-informix-font-lock-keywords)
5554         (sql-mode-interbase-font-lock-keywords)
5555         (sql-mode-ingres-font-lock-keywords)
5556         (sql-mode-solid-font-lock-keywords)
5557         (sql-mode-mysql-font-lock-keywords)
5558         (sql-mode-sqlite-font-lock-keywords)
5559         (sql-mode-db2-font-lock-keywords)
5560         (sql-mode-linter-font-lock-keywords): Update initialization to
5561         reduce run-time complexity.
5562         (sql-add-product, sql-del-product): New functions.
5563         (sql-set-product-feature, sql-get-product-feature): New functions.
5564         (sql-product-font-lock): Update product API.
5565         (sql-add-product-keywords): New function.
5566         (sql-highlight-product): Update product API.
5567         (sql-help-list-products): New function.
5568         (sql-help): Dynamically lists free and non-free products.
5569         (sql-get-login): Correct bug in handling history and added
5570         prompt for port.
5571         (sql-copy-column): Copy without properties.
5572         (sqli-input-sender): Apply filters to SQLi input.
5573         (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
5574         Implement as a filter.
5575         (sql-escape-newlines-filter): Implement as a filter.
5576         (sql-remove-tabs-filter): New function.
5577         (sql-send-magic-terminator): New function.
5578         (sql-send-string): Implement magic terminator.
5579         (sql-send-region): Use `sql-send-string'.
5580         (sql-interactive-mode): Use product API.
5581         (sql-product-interactive): Use product API.
5582         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
5583         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
5584         (sql-db2, sql-linter): Use `sql-product-interactive'.
5585         (sql-connect): New function.
5586         (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
5587         (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
5588         (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
5589         (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
5590         Use `sql-connect'.
5592 2010-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5594         * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
5595         New custom variable.
5596         (completion-pcm--string->pattern): Use it.
5597         (completion-pcm--pattern->regex, completion-pcm--pattern->string):
5598         Make it handle any symbol as `any'.
5599         (completion-pcm--merge-completions): Extract common suffix for the new
5600         `prefix' symbol as well.
5601         (completion-substring--all-completions): Use the new `prefix' symbol.
5603 2010-05-09  Michael Albinus  <michael.albinus@gmx.de>
5605         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
5606         not bound.
5607         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
5608         (tramp-compat-funcall): New defmacro.
5609         (tramp-compat-line-beginning-position)
5610         (tramp-compat-line-end-position)
5611         (tramp-compat-temporary-file-directory)
5612         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
5613         (tramp-compat-copy-file, tramp-compat-copy-directory)
5614         (tramp-compat-delete-file, tramp-compat-delete-directory)
5615         (tramp-compat-number-sequence, tramp-compat-process-running-p)
5616         * net/tramp.el (top, with-progress-reporter)
5617         (tramp-rfn-eshadow-setup-minibuffer)
5618         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
5619         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
5620         (tramp-completion-mode-p, tramp-check-for-regexp)
5621         (tramp-open-connection-setup-interactive-shell)
5622         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
5623         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
5624         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
5625         * net/tramp-cmds.el (tramp-cleanup-all-connections)
5626         (tramp-reporter-dump-variable, tramp-load-report-modules)
5627         (tramp-append-tramp-buffers)
5628         * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
5630         * net/tramp-imap.el (top): Autoload `epg-make-context'.
5632 2010-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5634         * progmodes/compile.el (compilation-buffer-modtime): Rename from
5635         buffer-modtime.  Adjust users.
5637 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
5639         * international/mule.el (auto-coding-alist): Only purecopy
5640         car of each item, not the whole list (Bug#6083).
5642 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
5644         * progmodes/js.el (js-mode): Make paragraph variables local before
5645         calling c-setup-paragraph-variables (Bug#6071).
5647 2010-05-08  Eli Zaretskii  <eliz@gnu.org>
5649         * composite.el (compose-region, reference-point-alist): Fix typos
5650         in the doc strings.
5652 2010-05-08  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
5654         * calc/calc-graph.el (calc-graph-plot): Use the proper form for
5655         gnuplot's "set" command.
5657 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
5659         * abbrev.el (last-abbrev-text): Doc fix.
5660         (abbrev-prefix-mark): Don't escape parenthesis.
5662 2010-05-08  Andreas Schwab  <schwab@linux-m68k.org>
5664         * composite.el (find-composition): Doc fix.
5666 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
5668         * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
5669         (sql-oracle-program, sql-sqlite-options)
5670         (sql-query-placeholders-and-send): Doc fixes.
5671         (sql-set-product, sql-interactive-mode): Reflow docstrings.
5672         (sql-imenu-generic-expression, sql-buffer)
5673         (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
5674         (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
5675         (sql-mode-sybase-font-lock-keywords)
5676         (sql-mode-informix-font-lock-keywords)
5677         (sql-mode-interbase-font-lock-keywords)
5678         (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
5679         (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
5680         (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
5681         (sql-product-feature, sql-highlight-product)
5682         (comint-line-beginning-position, sql-rename-buffer)
5683         (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
5684         (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
5685         (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
5686         Fix typos in docstrings.
5688 2010-05-08  Juri Linkov  <juri@jurta.org>
5690         * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
5691         property instead of `invisible' and `after-string' (bug#5998).
5693 2010-05-08  Juri Linkov  <juri@jurta.org>
5695         * image-mode.el (image-mode-as-text): Fix typo in docstring.
5697 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
5699         * filecache.el (file-cache-add-directory-list)
5700         (file-cache-add-directory-recursively): Fix typos in docstrings.
5702 2010-05-08  Kenichi Handa  <handa@m17n.org>
5704         * language/indian.el (gurmukhi-composable-pattern): Fix typo.
5705         (gujarati-composable-pattern): Fix typo.
5707 2010-05-08  Kenichi Handa  <handa@m17n.org>
5709         * language/indian.el (oriya-composable-pattern)
5710         (tamil-composable-pattern, malayalam-composable-pattern):
5711         Add two-part vowels to "v" (vowel sign).
5713 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
5715         * files.el (copy-directory): Handle symlinks (Bug#5982).
5717 2010-05-08  Dan Nicolaescu  <dann@ics.uci.edu>
5719         * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
5720         (vc-hg-working-revision): Likewise.  Use hg parents, not hg parent
5721         (Bug#5846).
5723 2010-05-08  Glenn Morris  <rgm@gnu.org>
5725         * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
5727         * minibuffer.el (completion-at-point): Doc fix.
5729 2010-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5731         * electric.el (Electric-command-loop): Minor tweak.
5733         * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
5734         better with dedicated windows.
5736 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
5738         * Version 23.2 released.
5740 2010-05-07  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
5741             Stefan Monnier  <monnier@iro.umontreal.ca>
5743         Highlight vendor specific properties.
5744         * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
5745         (css-proprietary-property): New face.
5746         (css-font-lock-keywords): Use them.
5748 2010-05-07  Eli Zaretskii  <eliz@gnu.org>
5750         * cus-start.el (all): Add native condition for tool-bar-* symbols.
5752 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5754         * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
5755         * files.el (auto-mode-alist): Remove redundant entries.
5757         * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
5758         * simple.el (auto-save-mode): Move from files.el.
5759         * minibuffer.el (completion--common-suffix): Fix copy&paste error.
5761 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
5763         * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
5765 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5767         * mail/binhex.el (binhex-decode-region-internal)
5768         * mail/uudecode.el (uudecode-decode-region-internal)
5769         * net/dns.el (dns-read-string-name, dns-write, dns-read)
5770         (dns-read-type, dns-query)
5771         * pgg-parse.el (pgg-parse-armor)
5772         * pgg.el (pgg-verify-region)
5773         * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
5774         XEmacs.
5776         * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
5778 2010-05-07  Juanma Barranquero  <lekktu@gmail.com>
5780         * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
5782         Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
5783         * emulation/cua-base.el (cua-repeat-replace-region):
5784         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
5785         (cua-cut-region-to-global-mark):
5786         Remove text properties with `set-text-properties'.
5788 2010-05-06  Michael Albinus  <michael.albinus@gmx.de>
5790         * net/tramp.el (top, with-progress-reporter):
5791         Use `symbol-function' inside `funcall'.
5793         * net/tramp-compat.el (tramp-compat-file-attributes)
5794         (tramp-compat-delete-file, tramp-compat-delete-directory):
5795         Handle only `wrong-number-of-arguments' error.
5797         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
5798         (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
5799         inside `funcall'.
5801 2010-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5803         * minibuffer.el (completion--sreverse, completion--common-suffix):
5804         New functions.
5805         (completion-pcm--merge-completions): Extract common suffix when safe.
5807         * emacs-lisp/easy-mmode.el (define-minor-mode):
5808         Make :variable more flexible.
5809         * files.el (auto-save-mode): Use it to define using define-minor-mode.
5811 2010-05-05  Juri Linkov  <juri@jurta.org>
5813         Add `slow' and `history' tags to the desktop data.
5815         * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
5816         (Info-virtual-files) [*Apropos*]: Add `slow' tag.
5817         (Info-finder-find-node): Require `finder.el' to be able
5818         to restore node from the desktop.
5819         (Info-desktop-buffer-misc-data): Save all nodes.  Save additional
5820         data `Info-history' and `slow' tag in the assoc list.
5821         (Info-restore-desktop-buffer): Don't restore nodes with the
5822         `slow' tag.  Restore `Info-history'.
5824 2010-05-05  Michael Albinus  <michael.albinus@gmx.de>
5826         Add FORCE argument to `delete-file'.
5828         * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
5829         forcing to delete the temporary file.
5830         (ange-ftp-delete-file): Add FORCE arg.
5831         (ange-ftp-rename-remote-to-remote)
5832         (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
5833         (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
5834         Force file deletion.
5836         * net/tramp-compat.el (tramp-compat-delete-file): New defun.
5838         * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
5839         (tramp-handle-make-symbolic-link, tramp-handle-load)
5840         (tramp-do-copy-or-rename-file-via-buffer)
5841         (tramp-do-copy-or-rename-file-directly)
5842         (tramp-do-copy-or-rename-file-out-of-band)
5843         (tramp-handle-process-file, tramp-handle-call-process-region)
5844         (tramp-handle-shell-command, tramp-handle-file-local-copy)
5845         (tramp-handle-insert-file-contents, tramp-handle-write-region)
5846         (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
5848         * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
5849         (tramp-fish-handle-make-symbolic-link)
5850         (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
5852         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
5853         Use `tramp-compat-delete-file'.
5855         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
5856         (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
5858         * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
5859         (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
5861         * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
5862         (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
5863         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
5864         `tramp-compat-delete-file'.
5866 2010-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5868         Minor cleanups.
5869         * subr.el (add-minor-mode): Use push.
5870         * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
5871         * emulation/edt.el (edt-select-mode): Simplify.
5873         Use define-minor-mode in more cases.
5874         * term/tvi970.el (tvi970-set-keypad-mode):
5875         * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
5876         (normal-erase-is-backspace-mode):
5877         * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
5878         (set-scroll-bar-mode-1): (Re)move to its sole caller.
5879         (get-scroll-bar-mode): New function.
5880         * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
5882         Use define-minor-mode for less obvious cases.
5883         * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
5884         * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
5885         * international/iso-ascii.el (iso-ascii-mode):
5886         * frame.el (auto-raise-mode, auto-lower-mode):
5887         * composite.el (global-auto-composition-mode): Use define-minor-mode.
5889 2010-05-04  Michael Albinus  <michael.albinus@gmx.de>
5891         * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
5892         in order to see error messages for failed logins.
5894 2010-05-03  Chong Yidong  <cyd@stupidchicken.com>
5896         * diff.el (diff-sentinel):
5898         * epg.el (epg--make-temp-file, epg-decrypt-string)
5899         (epg-verify-string, epg-sign-string, epg-encrypt-string):
5901         * jka-compr.el (jka-compr-partial-uncompress)
5902         (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
5904         * server.el (server-sentinel): Use delete-file's new FORCE arg
5905         (Bug#6070).
5907 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5909         Use define-minor-mode where applicable.
5910         * view.el (view-mode):
5911         * type-break.el (type-break-query-mode)
5912         (type-break-mode-line-message-mode):
5913         * textmodes/reftex.el (reftex-mode):
5914         * term/vt100.el (vt100-wide-mode):
5915         * tar-mode.el (tar-subfile-mode):
5916         * savehist.el (savehist-mode):
5917         * ibuf-ext.el (ibuffer-auto-mode):
5918         * composite.el (auto-composition-mode):
5919         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
5920         Use define-minor-mode.
5921         (vhdl-mode): Use static mode-line format.
5922         (vhdl-mode-line-update): Delete.
5923         (vhdl-create-mode-menu, vhdl-activate-customizations)
5924         (vhdl-hs-minor-mode): Don't bother calling it.
5926 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5928         * simple.el (with-wrapper-hook): Move.
5929         (buffer-substring-filters): Mark obsolete.
5930         (filter-buffer-substring-functions): New variable.
5931         (filter-buffer-substring): Use it.  Remove unused arg `noprops'.
5933 2010-05-01  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
5934             Michael Albinus  <michael.albinus@gmx.de>
5936         Implement compression for inline methods.
5938         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
5939         (tramp-copy-size-limit): Allow also nil.
5940         (tramp-inline-compress-commands): New defconst.
5941         (tramp-find-inline-compress, tramp-get-inline-compress)
5942         (tramp-get-inline-coding): New defuns.
5943         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
5944         replaced by `tramp-get-inline-coding'.
5945         (tramp-handle-file-local-copy, tramp-handle-write-region)
5946         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
5948 2010-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5950         * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
5951         Remove unused functions.
5953         * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
5954         Set find-tag-default-function as a variable rather than a property.
5956         * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
5957         * progmodes/etags.el (tags-completion-at-point-function):
5958         Remove left over interactive spec.  Add autoloading stub.
5959         (complete-tag): Use tags-completion-at-point-function.
5961 2010-04-30  Chong Yidong  <cyd@stupidchicken.com>
5963         * minibuffer.el (tags-completion-at-point-function): Fix return value.
5965 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
5967         * ido.el (ido-init-completion-maps): Remove C-v binding.
5968         (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
5970 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
5972         * minibuffer.el (tags-completion-at-point-function): New function.
5973         (completion-at-point-functions): Use it.
5975         * progmodes/etags.el (complete-tag): Revert last change.
5977 2010-04-29  Alan Mackenzie  <acm@muc.de>
5979         * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
5980         off-by-one error (in end of macro position).
5982 2010-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5984         * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
5985         firefox is absent.  Don't autoload.
5986         (browse-url-galeon-program): Don't autoload.
5988 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
5990         * bindings.el (complete-symbol): Move into minibuffer.el.
5992         * minibuffer.el (complete-tag): Move from etags.el.  If tags
5993         completion cannot be performed, return nil instead of signalling
5994         an error.
5995         (completion-at-point): Make it an alias for complete-symbol.
5996         (complete-symbol): Move from bindings.el, and replace with the
5997         body of completion-at-point.
5999         * progmodes/etags.el (complete-tag): Move to minibuffer.el.
6001 2010-04-28  Michael Albinus  <michael.albinus@gmx.de>
6003         * net/tramp.el (tramp-remote-selinux-p): New defun.
6004         (tramp-handle-file-selinux-context)
6005         (tramp-handle-set-file-selinux-context): Use it.
6007 2010-04-28  Sam Steingold  <sds@gnu.org>
6009         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
6010         `safe-local-variable' if the value is a string or a symbol with
6011         the property `bug-reference-url-format'.
6013 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
6015         * progmodes/bug-reference.el (bug-reference-url-format):
6016         Revert 2010-04-27 change due to security risk.
6018 2010-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6020         Make it possible to locally disable a globally enabled mode.
6021         * simple.el (fundamental-mode): Run fundamental-mode-hook.
6022         * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
6023         rather than kill-all-local-variables so it runs fundamental-mode-hook.
6024         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6025         Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
6026         that subsequent hooks get a chance to disable it.
6028 2010-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6030         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6031         Avoid re-enabling a minor mode after the user turned the minor mode
6032         off if MODE-enable-in-buffers is run twice (typically once from
6033         fundamental-mode's after-change-major-mode-hook and a second time from
6034         run-mode-hook's own after-change-major-mode-hook).
6036         * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
6038 2010-04-27  Sam Steingold  <sds@gnu.org>
6040         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
6041         `safe-local-variable' if the value is a string or a function, as
6042         documented and implemented on 2010-04-02.
6044 2010-04-27  Juanma Barranquero  <lekktu@gmail.com>
6046         * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
6047         when method is 'kill.
6049 2010-04-27  Agustín Martín  <agustin.martin@hispalinux.es>
6051         * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
6052         condition in default directory check.
6053         (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
6054         Kill ispell process when killing its associated buffer.
6056 2010-04-27  Jan Djärv  <jan.h.d@swipnet.se>
6058         * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
6059         but we aren't using it.
6061 2010-04-25  Jan Djärv  <jan.h.d@swipnet.se>
6063         * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
6064         checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
6066 2010-04-24  Glenn Morris  <rgm@gnu.org>
6068         * emacs-lisp/authors.el (authors-obsolete-files-regexps):
6069         Ignore VCS-ignore files, and deleted nextstep preferences files.
6070         (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
6071         (authors-ambiguous-files): New list.
6072         (authors-valid-file-names): Add some deleted files.
6073         (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
6074         (authors-disambiguate-file-name): New function.  (Bug#5501)
6075         (authors-canonical-file-name): Doc fix.
6076         Don't warn about obsolete files.
6077         (authors-canonical-file-name, authors-scan-el):
6078         Use authors-disambiguate-file-name.
6080         * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
6081         Add autoload cookies.
6082         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
6083         (generated-autoload-file): Set file-local value to "htmlfontify.el".
6084         * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
6085         They have definitions / compiler macros in cl.el.
6086         (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
6087         Replace manual autoloads with generated ones.
6088         (htmlfontify-unload-rgb-file): Remove autoload.
6089         * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
6091 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6093         * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
6094         (byte-compile-setq-default): Optimize for the
6095         single-var case and don't call byte-compile-form in this case to avoid
6096         inf-loop with byte-compile-set-default.
6098         * progmodes/compile.el (compilation-start): Abbreviate default directory.
6100 2010-04-23  Michael Albinus  <michael.albinus@gmx.de>
6102         Implement SELINUX backends.
6104         * net/tramp.el (tramp-file-name-handler-alist):
6105         Add `file-selinux-context' and `set-file-selinux-context'.
6106         (tramp-handle-file-selinux-context)
6107         (tramp-handle-set-file-selinux-context): New defuns.
6108         (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
6109         Handle PRESERVE-SELINUX-CONTEXT.
6111         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6112         Add `file-selinux-context' and `set-file-selinux-context'.
6113         (tramp-gvfs-handle-file-selinux-context)
6114         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
6115         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
6117         * net/ange-ftp.el (ange-ftp-copy-file):
6118         * net/tramp-fish.el (tramp-fish-handle-copy-file):
6119         * net/tramp-imap.el (tramp-imap-handle-copy-file):
6120         * net/tramp-smb.el (tramp-smb-handle-copy-file):
6121         Add PRESERVE-SELINUX-CONTEXT.
6123 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
6125         Synchronize with Tramp repository.
6127         * net/tramp.el (with-connection-property, tramp-completion-mode-p)
6128         (tramp-action-process-alive, tramp-action-out-of-band)
6129         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
6130         (tramp-exists-file-name-handler): Fix docstring.
6131         (with-progress-reporter): New defmacro.
6132         (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
6133         (tramp-maybe-open-connection): Use it.
6135 2010-04-22  Noah Lavine  <noah549@gmail.com>  (tiny change)
6137         Detect ssh 'ControlMaster' argument automatically in some cases.
6139         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
6140         (tramp-default-method): Use it.
6142 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
6144         * net/tramp.el (tramp-handle-copy-file): Add new optional
6145         parameter `preserve-selinux-context'.
6146         (tramp-file-name-for-operation): Add `set-file-selinux-context'.
6148 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
6150         * net/tramp.el (tramp-completion-handle-file-name-all-completions):
6151         Ensure, that non remote files are still checked.  Oops.
6153 2010-04-21  Michael Albinus  <michael.albinus@gmx.de>
6155         Fix Bug#5840.
6157         * icomplete.el (icomplete-completions): Use `non-essential'.
6159         * net/tramp.el (tramp-connectable-p): New defun.
6160         (tramp-handle-expand-file-name)
6161         (tramp-completion-handle-file-name-all-completions)
6162         (tramp-completion-handle-file-name-completion): Use it.
6164 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6166         * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
6168 2010-04-21  Jan Djärv  <jan.h.d@swipnet.se>
6170         * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
6172         * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
6174         * loadup.el: Load dynamic-setting.el if feature dynamic-setting
6175         is present.
6177         * info.el (info-tool-bar-map): Add labels.
6179         * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
6181         * cus-edit.el (custom-commands): Add labels for tool bar.
6182         (custom-buffer-create-internal, Custom-mode): Adjust for
6183         labels in custom-commands.
6185         * dynamic-setting.el: Renamed from font-setting.el.
6187 2010-04-21  John Wiegley  <jwiegley@gmail.com>
6189         * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
6190         toggles the use of virtual buffers.
6191         (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
6192         (ido-toggle-virtual-buffers): New function.
6194 2010-04-21  Juanma Barranquero  <lekktu@gmail.com>
6196         Use `define-derived-mode'; fix window selection; doc fixes.
6197         * play/tetris.el (tetris, tetris-update-speed-function)
6198         (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
6199         (tetris-move-left, tetris-move-right, tetris-rotate-prev)
6200         (tetris-rotate-next, tetris-end-game, tetris-start-game)
6201         (tetris-pause-game): Fix typos in docstrings.
6202         (tetris-mode-map, tetris-null-map):
6203         Move initialization into declaration.
6204         (tetris-mode): Define with `define-derived-mode';
6205         set show-trailing-whitespace to nil.
6206         (tetris): Prefer window already displaying the "*Tetris*" buffer.
6208 2010-04-21  Karel Klíč  <kklic@redhat.com>
6210         * files.el (backup-buffer): Handle SELinux context, and return it
6211         if a backup was made by renaming.
6212         (backup-buffer-copy): Set SELinux context to the target file.
6213         (basic-save-buffer): Set SELinux context of the newly written file.
6214         (basic-save-buffer-1): Now it also returns any SELinux context.
6215         (basic-save-buffer-2): Set SELinux context of the newly created file,
6216         and return it.
6217         * net/tramp.el (tramp-file-name-for-operation):
6218         Add file-selinux-context.
6220 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6222         Make the log-edit comments use RFC822 format throughout.
6224         * vc.el (vc-checkin, vc-modify-change-comment):
6225         Adjust to new vc-start/finish-logentry.
6226         (vc-find-conflicted-file): New command.
6227         (vc-transfer-file): Adjust to new vc-checkin.
6228         (vc-next-action): Improve scoping.
6230         * vc-hg.el (vc-hg-log-edit-mode): Remove.
6231         (vc-hg-checkin): Remove extra arg.  Use log-edit-extract-headers.
6233         * vc-git.el (vc-git-log-edit-mode): Remove.
6234         (vc-git-checkin): Remove extra arg.  Use log-edit-extract-headers.
6235         (vc-git-commits-coding-system): Rename from git-commits-coding-system.
6237         * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
6238         (vc-start-logentry): Remove argument `extra'.
6239         (vc-finish-logentry): Remove extra args.
6241         * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
6242         (vc-bzr-checkin): Remove extra arg.  Use log-edit-extract-headers.
6243         (vc-bzr-conflicted-files): New function.
6245         * log-edit.el (log-edit-extra-flags)
6246         (log-edit-before-checkin-process): Remove.
6247         (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
6248         (log-edit-headers-alist): New var.
6249         (log-edit-header-contents-regexp): New const.
6250         (log-edit-match-to-eoh): New function.
6251         (log-edit-font-lock-keywords): Use them.
6252         (log-edit): Insert a "Summary:" header as default.
6253         (log-edit-mode): Mark font-lock rules as case-insensitive.
6254         (log-edit-done): Cleanup headers.
6255         (log-view-process-buffer): Remove.
6256         (log-edit-extract-headers): New function to replace it.
6258 2010-04-20  Juanma Barranquero  <lekktu@gmail.com>
6260         * subr.el (default-direction-reversed): Remove obsolescence info.
6262 2010-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6264         * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
6265         windows/frames.
6267         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
6268         I.e. include text after point in the completion region.
6269         Also, return nil when we're not after/in a symbol.
6271         * international/mule-cmds.el (view-hello-file): Don't fiddle with the
6272         default enable-multibyte-characters.
6274 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6276         * international/mule.el: Help the user choose a valid coding-system.
6277         (read-buffer-file-coding-system): New function.
6278         (set-buffer-file-coding-system): Use it.  Prompt the user if the
6279         coding-system cannot encode all the chars.
6281         * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
6282         (vc-bzr-shelve-show, vc-bzr-shelve-apply)
6283         (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
6284         Don't use *vc-bzr-shelve*.
6286 2010-04-19  Dan Nicolaescu  <dann@ics.uci.edu>
6288         Fix the version number for added files.
6289         * vc-hg.el (vc-hg-working-revision): Check if the file is
6290         registered after hg parent fails (Bug#5961).
6292 2010-04-19  Glenn Morris  <rgm@gnu.org>
6294         * htmlfontify.el (htmlfontify-buffer)
6295         (htmlfontify-copy-and-link-dir): Autoload entry points.
6297 2010-04-19  Magnus Henoch  <magnus.henoch@gmail.com>
6299         * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
6300         name relative to the project root (Bug#5960).
6302 2010-04-19  Glenn Morris  <rgm@gnu.org>
6304         * vc-git.el (vc-git-print-log): Doc fix.
6306 2010-04-19  Óscar Fuentes  <ofv@wanadoo.es>
6308         * ido.el (ido-file-internal): Fix 2009-12-02 change.
6310 2010-04-19  Christoph  <cschol2112@googlemail.com>  (tiny change)
6312         * progmodes/grep.el (grep-compute-defaults): Fix handling of host
6313         default settings (Bug#5928).
6315 2010-04-19  Glenn Morris  <rgm@gnu.org>
6317         * progmodes/fortran.el (fortran-match-and-skip-declaration):
6318         New function.
6319         (fortran-font-lock-keywords-3): Use it.  (Bug#1385)
6321 2010-04-19  Kenichi Handa  <handa@m17n.org>
6323         * language/indian.el (malayalam-composable-pattern): Fix previous
6324         change (add U+0D4D "SIGN VIRAMA").
6325         (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
6326         (tamil-composable-pattern): Fix typo in the regexp.
6327         (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
6328         (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
6329         (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
6331 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
6333         * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
6334         paragraph-separate (Bug#5821).
6336 2010-04-19  Juri Linkov  <juri@jurta.org>
6338         Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
6340         * info.el (Info-find-node-2): Comment out code that skips
6341         breadcrumbs line.
6342         (Info-mouse-follow-link): New command.
6343         (Info-link-keymap): New keymap.
6344         (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
6345         Return a string with links instead of inserting breadcrumbs
6346         to the Info buffer.
6347         (Info-fontify-node): Comment out code that inserts breadcrumbs.
6348         Instead of putting the `invisible' text property over the Info
6349         header, make an overlay over the Info header with the `invisible'
6350         property and `after-string' set to the string returned by
6351         `Info-breadcrumbs'.
6353 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
6355         * help.el (help-window-setup-finish): Doc fix (Bug#5830).
6356         Reported by monkey@sandpframing.com.
6358 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6360         * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
6361         (tmm-get-keymap): Add key-binding shortcuts now that they're not
6362         available in the "keyseq cache" any more.
6364         * custom.el (defcustom): Add edebug spec.
6366 2010-04-18  Juri Linkov  <juri@jurta.org>
6368         Test for special mode-class in view-buffer instead of view-file (bug#5513).
6370         * view.el (view-file, view-buffer): Move test for special mode-class
6371         from view-file to view-buffer.
6373         * tar-mode.el (tar-extract): Turn if's into one cond
6374         like in arc-mode.el.
6376 2010-04-18  Juri Linkov  <juri@jurta.org>
6378         Add 7z archive format support (bug#5475).
6380         * arc-mode.el (archive-zip-extract): Try to find 7z executable.
6381         (archive-7z-extract): New defcustom.
6382         (archive-find-type): Add magic string for 7z.
6383         (archive-extract-by-stdout): Add new optional arg `stderr-file'.
6384         If `stderr-file' is non-nil, use `(t stderr-file)' for the
6385         `buffer' arg of `call-process'.
6386         (archive-zip-extract): Check `archive-zip-extract' for "7z" and
6387         call the function `archive-7z-extract' with the variable
6388         `archive-7z-extract' let-bound to `archive-zip-extract'.
6389         (archive-7z-summarize, archive-7z-extract): New functions.
6391         * international/mule.el (auto-coding-alist):
6392         * files.el (auto-mode-alist): Add 7z file extension.
6394 2010-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6396         * loadup.el: Setup hash-cons for pure data.
6398         Fix duplicate entries in cedet's loaddefs.el files.
6399         * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
6400         Should make most file-local generated-autoload-file unnecessary.
6401         (print-readably): Silence warnings.
6402         (autoload-find-destination): Take load-name as an arg to make sure
6403         it's the same as the one that will be in the file.
6404         (autoload-generate-file-autoloads): Adjust to above changes.
6405         Try to make the dataflow a bit simpler.
6407         * cvs-status.el (cvs-refontify): Remove unused.
6409 2010-04-18  Jay Belanger  <jay.p.belanger@gmail.com>
6411         * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
6413         * calc/calc-bin.el (calc-radix): Have the "O" option turn on
6414         twos-complement mode.
6416 2010-04-17  Jay Belanger  <jay.p.belanger@gmail.com>
6418         * calc/calc-ext.el (calc-init-extensions): Add keybinding for
6419         'calc-option'.  Add `calc-option-prefix-help' to calc-help autoloads.
6420         (calc-inverse): Add "Option" to message, as appropriate.
6421         (calc-hyperbolic): Add "Option" to message, as appropriate.
6422         (calc-option, calc-is-option): New functions.
6424         * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
6425         (calc-option-prefix-help): New function.
6427         * calc/calc-misc.el (calc-help): Add "Option" entry.
6429         * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
6430         (calc-option-flag): New variable.
6431         (calc-do): Set `calc-option-flag to nil.
6432         (calc-set-mode-line): Add "Opt " as appropriate.
6434 2010-04-16  Juri Linkov  <juri@jurta.org>
6436         Move scrolling commands from simple.el to window.el
6437         because their primitives are implemented in window.c.
6439         * simple.el (scroll-error-top-bottom)
6440         (scroll-up-command, scroll-down-command, scroll-up-line)
6441         (scroll-down-line, scroll-other-window-down)
6442         (beginning-of-buffer-other-window, end-of-buffer-other-window):
6443         * window.el (scroll-error-top-bottom)
6444         (scroll-up-command, scroll-down-command, scroll-up-line)
6445         (scroll-down-line, scroll-other-window-down)
6446         (beginning-of-buffer-other-window, end-of-buffer-other-window):
6447         Move from simple.el to window.el because their primitives are
6448         implemented in window.c.
6450 2010-04-16  Juri Linkov  <juri@jurta.org>
6452         * isearch.el (isearch-lookup-scroll-key): Check both
6453         `isearch-scroll' and `scroll-command' properties.
6454         (scroll-up, scroll-down): Remove `isearch-scroll' property.
6456         * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
6458         * simple.el (scroll-up-command, scroll-down-command)
6459         (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
6461 2010-04-15  Juri Linkov  <juri@jurta.org>
6463         * simple.el (scroll-up-command, scroll-down-command)
6464         (scroll-up-line, scroll-down-line): Put `scroll-command'
6465         property on the these symbols.  Remove them from
6466         `scroll-preserve-screen-position-commands'.
6468         * mwheel.el (mwheel-scroll): Put `scroll-command' and
6469         `isearch-scroll' properties on the `mwheel-scroll' symbol.
6470         Remove it from `scroll-preserve-screen-position-commands'.
6472         * isearch.el (isearch-allow-scroll): Doc fix.
6474 2010-04-15  Michael Albinus  <michael.albinus@gmx.de>
6476         * net/tramp.el (tramp-error-with-buffer): Don't show the
6477         connection buffer when we are in completion mode.
6478         (tramp-file-name-handler): Catch the error for some operations
6479         when we are in completion mode.  This gives the user the chance to
6480         correct the file name in the minibuffer.
6482 2010-04-15  Glenn Morris  <rgm@gnu.org>
6484         * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
6486 2010-04-15  Juanma Barranquero  <lekktu@gmail.com>
6488         Simplify by using `define-derived-mode'.
6489         * info.el (Info-mode):
6490         * calendar/todo-mode.el (todo-mode):
6491         * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
6492         (gomoku-mode-map): Move initialization into declaration.
6494 2010-04-14  Michael Albinus  <michael.albinus@gmx.de>
6496         Fix Bug#5840.
6497         * ido.el (ido-file-name-all-completions-1):
6498         * minibuffer.el (minibuffer-completion-help):
6499         * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
6501 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6503         * simple.el (non-essential): New var.
6505         Add a new field `location' to bookmarks for non-file bookmarks.
6506         * bookmark.el (bookmark-location): Use the new field, if present.
6507         (bookmark-insert-location): Undo last change, not needed any more.
6508         * man.el (Man-bookmark-make-record):
6509         * woman.el (woman-bookmark-make-record): Add `location' field.
6511 2010-04-14  Juri Linkov  <juri@jurta.org>
6513         * simple.el (scroll-error-top-bottom): New defcustom.
6514         (scroll-up-command, scroll-down-command): Use it.  Doc fix.
6516         * emulation/pc-select.el (pc-select-override-scroll-error):
6517         Obsolete in favor of `scroll-error-top-bottom'.
6519 2010-04-14  Juri Linkov  <juri@jurta.org>
6521         * tutorial.el (tutorial--default-keys): Rebind `C-v' to
6522         `scroll-up-command' and `M-v' to `scroll-down-command'.
6524         * emulation/cua-rect.el (cua--init-rectangles):
6525         * forms.el (forms--change-commands):
6526         * image-mode.el (image-mode-map):
6527         Remap scroll-down-command and scroll-up-command
6528         in addition to scroll-down and scroll-up.
6530 2010-04-14  Juri Linkov  <juri@jurta.org>
6532         * mwheel.el (scroll-preserve-screen-position-commands):
6533         Add mwheel-scroll to this list of commands.
6535         * simple.el (scroll-preserve-screen-position-commands):
6536         Add scroll-up-command, scroll-down-command, scroll-up-line,
6537         scroll-down-line to this list of commands.
6539 2010-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6541         * obsolete/complete.el: Move from lisp/complete.el.
6543         * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
6545         * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
6546         to the minor mode function now turns the mode ON unconditionally.
6548 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6550         * vc-dir.el (vc-dir-kill-line): New command.
6551         (vc-dir-mode-map): Bind it to C-k.
6553         * bookmark.el (bookmark-insert-location): Handle a nil filename.
6555         * woman.el: Add bookmark declarations to silence the compiler.
6556         (bookmark-prop-get): Use `man-args' rather than `filename' as a first
6557         step to compatibility between man and woman bookmarks.
6558         Adjust for Man-default-bookmark-title renaming.
6559         (woman-bookmark-jump): Adjust accordingly.  Don't forget to autoload.
6561         * man.el: Add bookmark declarations to silence the compiler.
6562         (Man-name-local-regexp): Make it match NAME as well.
6563         (Man-getpage-in-background): Return the buffer.
6564         (Man-notify-when-ready): Use `case'.
6565         (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
6566         Don't hardcode "NAME".  Simplify.
6567         (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
6568         Rename from Man-bookmark-make-record.
6569         (Man-bookmark-jump): Rename from man-bookmark-jump.  Simplify now that
6570         we have the actual man-args.  Use Man-getpage-in-background rather
6571         than `man' since the arg is already processed.  Let bookmark.el do the
6572         window handling.  Only wait for the relevant process.
6573         Don't forget to autoload.
6575         * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
6577 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6579         * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
6580         New functions.
6581         (woman-mode): Setup bookmark support.
6583         * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
6584         (man-bookmark-jump): New functions.
6585         (Man-mode): Setup bookmark support.
6587 2010-04-10  Jari Aalto  <jari.aalto@cante.net>
6589         * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
6590         recognize ssh-keygen prompt (Bug#2817).
6592 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
6594         * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
6596 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
6598         Synchronize with Tramp repository.
6600         * net/tramp.el (tramp-completion-function-alist)
6601         (tramp-file-name-regexp, tramp-chunksize)
6602         (tramp-local-coding-commands, tramp-remote-coding-commands):
6603         Fix docstring.
6604         (tramp-remote-process-environment): Use `format' instead of `concat'.
6605         (tramp-handle-directory-files-and-attributes)
6606         (tramp-get-remote-path): Use `copy-tree'.
6607         (tramp-handle-file-name-all-completions): Backward/ XEmacs
6608         compatibility: Use `completion-ignore-case' if
6609         `read-file-name-completion-ignore-case' does not exist.
6610         (tramp-do-copy-or-rename-file-directly): Do not use
6611         `tramp-handle-file-remote-p'.
6612         (tramp-do-copy-or-rename-file-out-of-band):
6613         Use `tramp-compat-delete-directory'.
6614         (tramp-do-copy-or-rename-file-out-of-band)
6615         (tramp-compute-multi-hops, tramp-maybe-open-connection):
6616         Use `format-spec-make'.
6617         (tramp-find-foreign-file-name-handler)
6618         (tramp-advice-make-auto-save-file-name)
6619         (tramp-set-auto-save-file-modes): Remove superfluous check for
6620         `stringp'.  This is done inside `tramp-tramp-file-p'.
6621         (tramp-debug-outline-regexp): New defconst.
6622         (tramp-get-debug-buffer): Use it.
6623         (tramp-check-for-regexp): Use (forward-line 1).
6624         (tramp-set-auto-save-file-modes): Adapt version check.
6626         * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
6627         Wrap call of `featurep' for 2nd argument.
6628         (tramp-compat-make-temp-file): Simplify fallback implementation.
6629         (tramp-compat-copy-tree): Remove function.
6630         (tramp-compat-delete-directory): Provide implementation for older
6631         Emacsen.
6633         * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
6634         Do not use `tramp-fish-handle-file-attributes.
6636         * net/trampver.el: Update release number.
6638 2010-04-10  Glenn Morris  <rgm@gnu.org>
6640         * progmodes/compile.el (compilation-save-buffers-predicate):
6641         Add missing :version tag.
6643 2010-04-09  Sam Steingold  <sds@gnu.org>
6645         * progmodes/compile.el (compilation-save-buffers-predicate):
6646         Remove the "autoload" cookie.
6648         * progmodes/bug-reference.el (turn-on-bug-reference-mode)
6649         (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
6650         and `bug-reference-prog-mode' can be used in hooks directly.
6652 2010-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
6654         Add --author support to git commit.
6655         * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
6656         (vc-git-log-edit-mode): New minor mode.
6657         (log-edit-mode, log-edit-extra-flags, log-edit-mode):
6658         New declarations.
6660 2010-04-09  Eric Raymond  <esr@snark.thyrsus.com>
6662         * vc-hooks.el, vc-git.el: Improve documentation comments.
6664 2010-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6666         Fix some of the problems in defsubst* (bug#5728).
6667         * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
6668         (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
6670 2010-04-07  Sam Steingold  <sds@gnu.org>
6672         * progmodes/compile.el (compilation-save-buffers-predicate):
6673         New custom variable.
6674         (compile, recompile): Pass it to `save-some-buffers'.
6676 2010-04-07  Jan Djärv  <jan.h.d@swipnet.se>
6678         * wid-edit.el (widget-choose): Move cursor to the second line of
6679         the buffer (Bug#5695).
6681 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
6683         Add new VC methods: vc-log-incoming and vc-log-outgoing.
6684         * vc.el (vc-print-log-setup-buttons): New function split out from
6685         vc-print-log-internal.
6686         (vc-log-internal-common): New function, a parametrized version of
6687         vc-print-log-internal.
6688         (vc-print-log-internal): Just call vc-log-internal-common with the
6689         right arguments.
6690         (vc-incoming-outgoing-internal):
6691         (vc-log-incoming, vc-log-outgoing): New functions.
6692         (vc-log-view-type): New permanent local variable.
6694         * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
6696         * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
6697         of the dynamic bound vc-short-log.
6698         (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
6700         * vc-git.el (vc-git-log-outgoing): New function.
6701         (vc-git-log-view-mode): Use vc-log-view-type instead
6702         of the dynamic bound vc-short-log.
6704         * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
6705         of the dynamic bound vc-short-log.  Highlight the tag.
6706         (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
6707         (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
6708         (vc-hg-incoming-mode): Remove.
6709         (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
6711 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
6713         Fix default-directory for vc-root-diff.
6714         * vc.el (vc-root-diff): Bind default-directory to the root
6715         directory for the diff command.
6717 2010-04-07  Michael McNamara  <mac@mail.brushroad.com>
6719         * progmodes/verilog-mode.el (verilog-forward-sexp):
6720         (verilog-calc-1): Support "disable fork" and "fork wait" multi
6721         word keywords, suggested by Steve Pearlmutter.
6722         (verilog-pretty-declarations): Support lineup of declarations in
6723         port lists.
6724         (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
6725         fix bug for /* / comments.
6726         (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
6727         Speed up and simplfy as this is never called with a bound.
6728         (verilog-pretty-declarations): Enhance to line up declarations
6729         inside a parameter list, suggested by Alan Morgan.
6730         (verilog-pretty-expr): Tune assignment regular expression match
6731         string for corner cases; also use markers instead of character
6732         number as indent changes the later.
6734 2010-04-07  Wilson Snyder  <wsnyder@wsnyder.org>
6736         * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
6737         as missing keyword.
6738         (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
6739         causing truncation of AUTOWIRE signals.  Reported by Bruce Tennant.
6740         (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
6741         AUTO_TEMPLATEs needing multiple array bits.  Suggested by Bruce
6742         Tennant.
6743         (verilog-keywords):
6744         (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
6745         1800-2009 keywords, including "global.".
6747 2010-04-06  John Wiegley  <jwiegley@gmail.com>
6749         * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
6750         appearing in buffer list (if a live buffer name matched a recentf
6751         file basename).  Should use uniquify to offer a real solution.
6753 2010-04-06  John Wiegley  <jwiegley@gmail.com>
6755         * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
6756         comment to code, and add a :version tag.
6757         (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
6759 2010-04-06  Juanma Barranquero  <lekktu@gmail.com>
6761         Enable recentf-mode if using virtual buffers.
6762         * ido.el (recentf-list): Declare for byte-compiler.
6763         (ido-virtual-buffers): Move up to silence byte-compiler.  Add docstring.
6764         (ido-make-buffer-list): Simplify.
6765         (ido-add-virtual-buffers-to-list): Simplify.  Enable recentf-mode.
6767 2010-04-05  Juri Linkov  <juri@jurta.org>
6769         Scrolling commands which scroll a line instead of full screen.
6770         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
6772         * simple.el (scroll-up-line, scroll-down-line): New commands.
6773         Put property isearch-scroll=t on them.
6775         * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
6776         Remove commands.
6778 2010-04-05  Juri Linkov  <juri@jurta.org>
6780         Scrolling commands which do not signal errors at top/bottom.
6781         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
6783         * simple.el (scroll-up-command, scroll-down-command): New commands.
6784         Put property isearch-scroll=t on them.
6786         * bindings.el (global-map): Rebind [prior] from `scroll-down' to
6787         `scroll-down-command' and [next] from `scroll-up' to
6788         `scroll-up-command'.
6790         * emulation/cua-base.el: Put property CUA=move on
6791         `scroll-up-command' and `scroll-down-command'.
6792         (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
6793         and `scroll-down-command' to `cua-scroll-down'.
6795 2010-04-05  Juanma Barranquero  <lekktu@gmail.com>
6797         * help.el (describe-mode): Return nil.
6799 2010-04-04  John Wiegley  <jwiegley@gmail.com>
6801         * ido.el (ido-use-virtual-buffers): New variable to indicate
6802         whether "virtual buffer" support is enabled for IDO.
6803         (ido-virtual): Face used to indicate virtual buffers in the list.
6804         (ido-buffer-internal): If a buffer is chosen, and no such buffer
6805         exists, but a virtual buffer of that name does (which would be why
6806         it was in the list), recreate the buffer by reopening the file.
6807         (ido-make-buffer-list): If virtual buffers are being used, call
6808         `ido-add-virtual-buffers-to-list' before the make list hook.
6809         (ido-virtual-buffers): New variable which contains a copy of the
6810         current contents of the `recentf-list', albeit pared down for the
6811         sake of speed, and with proper faces applied.
6812         (ido-add-virtual-buffers-to-list): Using the `recentf-list',
6813         create a list of "virtual buffers" to present to the user in
6814         addition to the currently open set.  Note that this logic could
6815         get rather slow if that list is too large.  With the default
6816         `recentf-max-saved-items' of 200, there is little speed penalty.
6818 2010-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6820         * font-lock.el: Require CL when compiling.
6821         (font-lock-turn-on-thing-lock): Use `case'.
6823 2010-04-03  Eli Zaretskii  <eliz@gnu.org>
6825         * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
6826         Zaretskii.
6828 2010-04-02  Juri Linkov  <juri@jurta.org>
6830         * ehelp.el (electric-help-orig-major-mode):
6831         New buffer-local variable.
6832         (electric-help-mode): Set it to original major-mode.  Doc fix.
6833         (with-electric-help): Use `electric-help-orig-major-mode' instead
6834         of (default-value 'major-mode).  Doc fix.
6835         http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
6837 2010-04-02  Sam Steingold  <sds@gnu.org>
6839         * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
6840         `vc-hg-command' with a list of flags.
6842         * progmodes/bug-reference.el (bug-reference-bug-regexp):
6843         Also accept "patch" and "RFE".
6844         (bug-reference-fontify): `bug-reference-url-format' can also be a
6845         function to be able to handle the bug kind.
6846         (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
6848 2010-04-02  Jan Djärv  <jan.h.d@swipnet.se>
6850         * tmm.el (tmm-get-keymap): Check with symbolp before passing
6851         value to fboundp, it may not be a symbol.
6853 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
6855         * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
6857 2010-03-31  Juri Linkov  <juri@jurta.org>
6859         * simple.el (next-line, previous-line): Re-throw a signal
6860         with `signal' instead of using `ding'.
6861         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
6863 2010-03-31  Juri Linkov  <juri@jurta.org>
6865         * simple.el (keyboard-escape-quit): Raise deselecting the active
6866         region higher than exiting the minibuffer.
6867         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
6869 2010-03-31  Juri Linkov  <juri@jurta.org>
6871         * image.el (image-animated-p): Use `image-metadata' instead of
6872         `image-extension-data'.  Get GIF extenstion data from metadata
6873         property `extension-data'.
6875 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
6877         * simple.el (append-to-buffer): Simplify.
6879 2010-03-31  Tomas Abrahamsson  <tab@lysator.liu.se>
6881         * textmodes/artist.el (artist-mode): Fix typo in docstring.
6882         Reported by Alex Schröder <kensanata@gmail.com>.  (Bug#5807)
6884 2010-03-31  Kenichi Handa  <handa@m17n.org>
6886         * language/sinhala.el (composition-function-table): Fix regexp for
6887         the new Unicode specification.
6889         * language/indian.el (devanagari-composable-pattern)
6890         (tamil-composable-pattern, kannada-composable-pattern)
6891         (malayalam-composable-pattern): Adjust for the new Unicode
6892         specification.
6893         (bengali-composable-pattern, gurmukhi-composable-pattern)
6894         (gujarati-composable-pattern, oriya-composable-pattern)
6895         (telugu-composable-pattern): New variables to cope with the new
6896         Unicode specification.  Use them in composition-function-table.
6898 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
6900         Make tmm-menubar work for the Buffers menu again (bug#5726).
6901         * tmm.el (tmm-prompt): Also handle keymap entries in the form of
6902         vectors rather than cons cells, as used in menu-bar-update-buffers.
6904 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
6906         * progmodes/js.el (js-auto-indent-flag, js-mode-map)
6907         (js-insert-and-indent): Revert 2009-08-15 change, restoring
6908         electric punctuation for "{}();,:" (Bug#5586).
6910         * mail/sendmail.el (mail-default-directory): Doc fix.
6912 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
6914         * mail/sendmail.el (mail-default-directory): Doc fix.
6916 2010-03-31  Eli Zaretskii  <eliz@gnu.org>
6918         * subr.el (version-regexp-alist, version-to-list)
6919         (version-list-<, version-list-=, version-list-<=)
6920         (version-list-not-zero, version<, version<=, version=): Doc fix.
6921         (Bug#5744).
6923 2010-02-31  Dan Nicolaescu  <dann@ics.uci.edu>
6925         * vc.el (vc-root-diff): Doc fix.
6927 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
6929         * vc.el (vc-print-log, vc-print-root-log): Doc fix.
6931         * simple.el (append-to-buffer): Fix last change.
6933 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
6935         * simple.el (append-to-buffer): Ensure that point is preserved if
6936         BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
6937         (Bug#5749)
6939 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
6941         * files.el (auto-mode-case-fold): Change default to t.
6943 2010-03-30  Juri Linkov  <juri@jurta.org>
6945         * dired-x.el (dired-omit-mode): Doc fix.
6947 2010-03-30  Juri Linkov  <juri@jurta.org>
6949         * replace.el (occur-accumulate-lines): Move occur-engine related
6950         functions `occur-accumulate-lines' and `occur-engine-add-prefix'
6951         to be located after `occur-engine'.
6953 2010-03-30  Juri Linkov  <juri@jurta.org>
6955         Make occur handle multi-line matches cleanly with context.
6956         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
6958         * replace.el (occur-accumulate-lines): Add optional arg `pt'.
6959         (occur-engine): Add local variables `ret', `prev-after-lines',
6960         `prev-lines'.  Use more arguments for `occur-context-lines'.
6961         Set first elem of its returned list to `data', and the second elem
6962         to `prev-after-lines'.  Don't print the separator line.
6963         In the end, print remaining context after-lines.
6964         (occur-context-lines): Add new arguments `begpt', `endpt',
6965         `lines', `prev-lines', `prev-after-lines'.  Rewrite to combine
6966         after-lines of the previous match with before-lines of the
6967         current match and not overlap them.  Return a list with two
6968         values: the output line and the list of context after-lines.
6970 2010-03-30  Juri Linkov  <juri@jurta.org>
6972         * replace.el (occur-accumulate-lines): Fix a bug where the first
6973         context line at the beginning of the buffer was missing.
6975 2010-03-30  Eli Zaretskii  <eliz@gnu.org>
6977         * files.el: Make bidi-display-reordering safe variable for boolean
6978         values.
6980 2010-03-29  Phil Hagelberg  <phil@evri.com>
6981             Chong Yidong  <cyd@stupidchicken.com>
6983         * subr.el: Extend progress reporters to perform "spinning".
6984         (progress-reporter-update, progress-reporter-do-update):
6985         Handle non-numeric value arguments.
6986         (progress-reporter--pulse-characters): New var.
6988 2010-03-28  Chong Yidong  <cyd@stupidchicken.com>
6990         * progmodes/compile.el (compilation-start): Fix regexp detection
6991         of initial cd command (Bug#5771).
6993 2010-03-28  Stefan Guath  <stefan@automata.se>  (tiny change)
6995         * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
6997 2010-03-27  Nick Roberts  <nickrob@snap.net.nz>
6999         Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
7000         * progmodes/gdb-mi.el: Restore.
7001         * progmodes/gdb-ui.el: Remove.
7002         * progmodes/gud.el: Re-accommodate for gdb-mi.el.
7004 2010-03-25  Glenn Morris  <rgm@gnu.org>
7006         * desktop.el (desktop-save-buffer-p): Don't mistakenly include
7007         all dired buffers, even tramp ones.  (Bug#5755)
7009 2010-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7011         Add "union tags" in mpc.el.
7012         * mpc.el: Remove backward compatibility code.
7013         (mpc-browser-tags): Change default.
7014         (mpc--find-memoize-union-tags): New var.
7015         (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
7016         (mpc-cmd-find): Handle the case where the playlist does not exist.
7017         Handle union-tags.
7018         (mpc-cmd-list): Use mpc-cmd-special-tag-p.  Handle union-tags.
7019         (mpc-cmd-add): Use mpc-cmd-flush.
7020         (mpc-tagbrowser-tag-name): New fun.
7021         (mpc-tagbrowser-buf): Use it.
7022         (mpc-songs-refresh): Use cond.  Move to point-min as a fallback.
7024 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7026         Misc cleanup.
7027         * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
7028         Use replace-regexp-in-string.
7029         (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
7030         (makefile-imake-mode-syntax-table): Move init into defvar.
7031         (makefile-mode): Use define-derived-mode.
7033         * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
7034         (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
7035         not be present any more.
7037 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
7039         * faces.el (set-face-attribute): Fix typo in docstring.
7040         (face-valid-attribute-values): Reflow docstring.
7042 2010-03-24  Glenn Morris  <rgm@gnu.org>
7044         * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
7046 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
7048         * indent.el (indent-for-tab-command): Doc fix.
7050 2010-03-24  Alan Mackenzie  <acm@muc.de>
7052         * progmodes/cc-engine.el (c-remove-stale-state-cache):
7053         Fix off-by-one error.  Fixes bug #5747.
7055 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
7057         * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
7058         (image-dired-read-comment): Doc fix.
7060         * json.el (json-object-type, json-array-type, json-key-type)
7061         (json-false, json-null, json-read-number):
7062         * minibuffer.el (completion-in-region-functions):
7063         * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
7064         (cal-tex-cursor-week):
7065         * emacs-lisp/trace.el (trace-function):
7066         * eshell/em-basic.el (eshell/printnl):
7067         * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
7068         (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
7069         * obsolete/levents.el (allocate-event, event-key, event-object)
7070         (event-point, event-process, event-timestamp, event-to-character)
7071         (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
7072         * textmodes/reftex-vars.el (reftex-index-macros-builtin)
7073         (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
7074         (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
7075         (reftex-highlight-selection): Fix typos in docstrings.
7077 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
7079         * minibuffer.el (completion-in-region-functions): Fix docstring typos.
7081 2010-03-24  Glenn Morris  <rgm@gnu.org>
7083         * mail/rmail.el (rmail-highlight-face): Restore option deleted
7084         2008-02-13 without comment; mark it obsolete.
7085         (rmail-highlight-headers): Use rmail-highlight-face once more.
7087 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
7089         * woman.el (woman2-process-escapes): Only consume the newline if
7090         the filler character is on a line by itself (Bug#5729).
7092 2010-03-24  Kenichi Handa  <handa@m17n.org>
7094         * language/indian.el (devanagari-composable-pattern): Add more
7095         consonants.
7097 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
7099         * net/trampver.el: Update release number.
7101 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
7103         * net/tramp.el (tramp-find-executable):
7104         Use `tramp-get-connection-buffer'.  Make the regexp for checking
7105         output of "wc -l" more robust.
7106         (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
7107         (tramp-open-connection-setup-interactive-shell): Remove workaround
7108         for OpenSolaris bug, it is not needed anymore.
7110 2010-03-24  Glenn Morris  <rgm@gnu.org>
7112         * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie.  (Bug#4427)
7114 2010-03-24  Wilson Snyder  <wsnyder@wsnyder.org>
7116         * files.el (auto-mode-alist): Accept more verilog file patterns.
7118 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7120         * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
7122 2010-03-24  Glenn Morris  <rgm@gnu.org>
7124         * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
7125         log-edit-before-checkin-process.
7127         * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
7129         * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
7131         * vc-dispatcher.el (vc-start-logentry): Doc fix.
7132         (log-view-process-buffer, log-edit-extra-flags): Declare.
7134         * log-edit.el (log-edit-before-checkin-process): Doc fix.
7136 2010-03-23  Sam Steingold  <sds@gnu.org>
7138         Fix bug#5620: recalculate all markers on compilation buffer
7139         modifications, not on file modifications.
7140         * progmodes/compile.el (buffer-modtime): New buffer-local variable:
7141         the buffer modification time, for buffers not associated with files.
7142         (compilation-mode): Create it.
7143         (compilation-filter): Update it.
7144         (compilation-next-error-function): Use it instead of
7145         `visited-file-modtime' for timestamp.
7147 2010-03-23  Juri Linkov  <juri@jurta.org>
7149         Implement Occur multi-line matches.
7150         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
7152         * replace.el (occur): Doc fix.
7153         (occur-engine): Set `begpt' to the beginning of the first line.
7154         Set `endpt' to the end of the last match line.  At first, count
7155         line numbers between `origpt' and `begpt'.  Split out code from
7156         `out-line' variable to new let-bindings `match-prefix' and
7157         `match-str'.  In `out-line' add non-numeric prefix to all
7158         non-first lines of multi-line matches.  Finally, count lines
7159         between `begpt' and `endpt' and add to `lines'.
7161 2010-03-23  Juri Linkov  <juri@jurta.org>
7163         * replace.el (occur-accumulate-lines, occur-engine):
7164         Use `occur-engine-line' instead of duplicate code.
7165         (occur-engine-line): New function created from duplicate code
7166         in `occur-accumulate-lines' and `occur-engine'.
7168         * replace.el (occur-engine-line): Add optional arg `keep-props'.
7169         (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
7171 2010-03-23  Juri Linkov  <juri@jurta.org>
7173         * finder.el: Remove TODO tasks.
7175         * info.el (Info-finder-find-node): Add node "all"
7176         with all package info.  Handle a list of multiple keywords
7177         separated by comma.
7178         (info-finder): In interactive use with a prefix argument,
7179         use `completing-read-multiple' to read a list of keywords
7180         separated by comma.
7182 2010-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7184         Add a new completion style `substring'.
7185         * minibuffer.el (completion-basic--pattern): New function.
7186         (completion-basic-try-completion, completion-basic-all-completions):
7187         Use it.
7188         (completion-substring--all-completions)
7189         (completion-substring-try-completion)
7190         (completion-substring-all-completions): New functions.
7191         (completion-styles-alist): New style `substring'.
7193 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7195         Get rid of .elc files after removal of the corresponding .el.
7196         * Makefile.in (compile-clean): New target.
7197         (compile-main): Use it.
7199 2010-03-22  Jan Djärv  <jan.h.d@swipnet.se>
7201         * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
7202         don't do make there.  When compiling with separate object dir, there
7203         is no Makefile there.
7205 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7207         Get rid of the ELCFILES abomination, again.
7208         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
7209         (all, compile): Don't call compile-last.
7210         (compile-main): Build the "elcfiles" list dynamically.
7211         (compile-targets): New (internal) target.
7213 2010-03-21  Andreas Schwab  <schwab@linux-m68k.org>
7215         * Makefile.in (top_srcdir): Define.
7216         (abs_top_builddir): Define.
7217         (srcdir): Don't append `/..'.
7218         (EMACS): Use ${abs_top_builddir}.
7219         (all, compile, compile-always, compile-last): Don't set emacswd.
7220         (update-subdirs, update-authors): Use $(top_srcdir) instead of
7221         $(srcdir).
7222         (lisp): Use $(srcdir) instead of @srcdir@.
7224 2010-03-21  Juri Linkov  <juri@jurta.org>
7226         Fix message of multi-line occur regexps and multi-buffer header lines.
7227         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
7229         * replace.el (occur-1): Don't display regexp if it is longer
7230         than window-width.  Use `query-replace-descr' to display regexp.
7231         (occur-engine): Don't display regexp in the buffer header for
7232         multi-buffer occur.  Display a separate header line with total
7233         match count and regexp for multi-buffer occur.
7234         Use `query-replace-descr' to display regexp.
7236 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
7238         * net/secrets.el: Fix parenthesis.
7239         (secrets-enabled): Fix parenthesis.
7241 2010-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7243         Use more relative file and directory names.
7244         * Makefile.in (EMACS): Arrange for it to work when we chdir.
7245         (setwins, setwins_almost, setwins_for_subdirs):
7246         Don't `cd'; output relative names.
7247         (all, compile, compile-always, compile-last): Set emacswd.
7248         (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
7249         Just cd to the lisp source dir so we can use relative file names.
7251         * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
7253 2010-03-20  Glenn Morris  <rgm@gnu.org>
7255         * textmodes/rst.el: Use faces for font-lock customization, and make the
7256         old -face variables obsolete.
7257         (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
7258         (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
7259         (rst-block-face, rst-external-face, rst-definition-face)
7260         (rst-directive-face, rst-comment-face, rst-emphasis1-face)
7261         (rst-emphasis2-face, rst-literal-face, rst-reference-face):
7262         Make obsolete.
7263         (rst-font-lock-keywords-function): Update for above changes.
7265 2010-03-20  Juri Linkov  <juri@jurta.org>
7267         * s-region.el:
7268         * obsolete/s-region.el: Move to obsolete.
7270 2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
7272         * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
7274 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
7276         * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
7278 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
7280         Add special markup processing for commit logs.
7281         * log-edit.el (log-edit-extra-flags): New variable.
7282         (log-edit): Add new argument MODE.  Use that mode when non-nil
7283         instead of the log-view-mode.
7284         (log-view-process-buffer): New function.
7286         * vc.el: Document that the checkin method takes optional
7287         arguments.  Document new backend specific method: log-view-mode.
7288         (vc-default-log-edit-mode): New function.
7289         (vc-checkin): Use a backend specific log-view-mode.
7290         Pass extra arguments to the checkin method.
7291         (vc-modify-change-comment): Pass a dummy extra argument.
7293         * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
7294         log-edit.
7295         (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
7296         (vc-finish-logentry): Process the log buffer before passing it
7297         down.  Pass log-edit-extra-flags.
7299         * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
7300         command.
7301         (log-edit-extra-flags, log-edit-before-checkin-process):
7302         New declarations.
7304         * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
7305         command.
7306         (log-edit-extra-flags, log-edit-before-checkin-process):
7307         New declarations.
7308         (vc-hg-log-edit-mode): New derived mode.
7310         * vc-arch.el (vc-arch-checkin):
7311         * vc-cvs.el (vc-cvs-checkin):
7312         * vc-git.el (vc-git-checkin):
7313         * vc-mtn.el (vc-mtn-checkin):
7314         * vc-rcs.el (vc-rcs-checkin):
7315         * vc-sccs.el (vc-sccs-checkin):
7316         * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
7318 2010-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7320         * outline.el (hide-sublevels): Don't hide trailing newline (and fix
7321         parent typo).
7323 2010-03-19  Glenn Morris  <rgm@gnu.org>
7325         * password-cache.el (password-cache, password-cache-expiry): Autoload.
7327 2010-03-18  Glenn Morris  <rgm@gnu.org>
7329         * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
7331         * replace.el (query-replace-history): Give it a doc string.
7332         (map-query-replace-regexp): Use query-replace-from-history-variable
7333         and query-replace-to-history-variable.
7335         * mail/hashcash.el (declare-function): Remove duplicate definition.
7337         * mail/emacsbug.el (report-emacs-bug-pretest-address):
7338         Make it an obsolete alias for report-emacs-bug-address.
7339         (message-strip-special-text-properties): Declare.
7340         (report-emacs-bug): Remove test for a pretest bug address.
7341         Combine message-mode-specific code.
7343         * mail/supercite.el: Don't require sendmail.
7344         (mh-in-header-p): Declare rather than using with-no-warnings.
7345         (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
7346         mail-header-end.  Don't bind mysterious variable `kill-lines-magic'.
7348         * calendar/cal-french.el: Convert to utf-8.
7350         * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
7351         Emacs scripts.
7353 2010-03-16  Michael Albinus  <michael.albinus@gmx.de>
7355         * net/secrets.el (secrets-enabled): New variable.  Use it instead
7356         of a subfeature.
7358 2010-03-15  Michael Albinus  <michael.albinus@gmx.de>
7360         * net/secrets.el (top): Register the D-Bus signals only when the
7361         service "org.freedesktop.secrets" can be pinged.
7362         Provide subfeature `enabled'.
7364 2010-03-14  Juri Linkov  <juri@jurta.org>
7366         Add finder unknown keywords.
7368         * finder.el (finder-unknown-keywords): New function.
7370         * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
7371         to create a Finder node with unknown keywords.
7373 2010-03-14  Juri Linkov  <juri@jurta.org>
7375         * finder.el (finder-compile-keywords): Replace `princ' with
7376         `prin1' on a list of symbols interned from keyword strings.
7378         * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
7379         a comma, then split keywords using a comma and optional whitespace.
7380         Otherwise, split by whitespace.
7382         * complete.el:
7383         * face-remap.el:
7384         * log-view.el:
7385         * net/hmac-def.el:
7386         * net/hmac-md5.el:
7387         * net/netrc.el:
7388         * progmodes/mixal-mode.el: Fix keywords.
7390 2010-03-13  Michael Albinus  <michael.albinus@gmx.de>
7392         * Makefile.in (ELCFILES): Add net/secrets.elc.
7394         * net/secrets.el: New file.
7396 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
7398         * facemenu.el (list-colors-display, list-colors-print): New arg
7399         callback.  Use it to allow selecting colors.
7401         * wid-edit.el (widget-image-insert): Insert image prop even if the
7402         current display is non-graphic.
7403         (widget-field-value-set): New fun.
7404         (editable-field): Use it.
7405         (widget-field-value-get): Clean up unused var.
7406         (widget-color-value-create, widget-color--choose-action):
7407         New funs.  Allow using list-colors-display to choose color.
7409 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
7411         * cus-edit.el: Resort topmost custom groups.
7412         (custom-buffer-sort-alphabetically): Default to t.
7413         (customize-apropos): Use apropos-parse-pattern.
7414         (custom-search-field): New var.
7415         (custom-buffer-create-internal): Add custom-apropos search field.
7416         (custom-add-parent-links): Don't display parent doc.
7417         (custom-group-value-create): Don't sort top-level custom group.
7418         (custom-magic-value-create): Show visibility button before option name.
7420         (custom-variable-state): New fun, from custom-variable-state-set.
7421         (custom-variable-state-set): Use it.
7422         (custom-group-value-create): Hide options with standard values
7423         using the :hidden-states property.  Use progress reporter.
7425         (custom-show): Simplify.
7426         (custom-visibility): Disable images by default.
7427         (custom-variable): New property :hidden-states.
7428         (custom-variable-value-create): Enable images for
7429         custom-visibility widgets.  Use :hidden-states property to
7430         determine initial visibility.
7432         * wid-edit.el (widget-image-find): Give images center ascent.
7433         (visibility): Add :on-image and :off-image properties.
7434         (widget-visibility-value-create): Use them.
7436 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
7438         * cus-edit.el (processes): Remove from development group.
7439         (oop, hypermedia): Delete group.
7440         (comm): Promote to top-level group.
7442         * net/browse-url.el (browse-url):
7443         * net/xesam.el (xesam):
7444         * net/tramp.el (tramp):
7445         * net/goto-addr.el (goto-address):
7446         * net/ange-ftp.el (ange-ftp): Put in comm group.
7448         * view.el (view): Remove from editing group.
7450         * uniquify.el (uniquify): Put in files group.
7452         * net/browse-url.el (browse-url):
7453         * ps-print.el (postscript): Put in external group.
7455         * cus-edit.el (outlines):
7456         * textmodes/text-mode.el (text-mode-hook):
7457         * textmodes/table.el (table):
7458         * textmodes/picture.el (picture):
7459         * outline.el (outlines): Put in wp group.
7461         * nxml/nxml-mode.el (nxml): Remove from wp group.
7463         * net/tramp-imap.el (tramp-imap): Put in tramp group.
7465         * mail/metamail.el (metamail): Remove from hypermedia group.
7467         * cus-edit.el (abbrev):
7468         * whitespace.el (whitespace):
7469         * vcursor.el (vcursor):
7470         * reveal.el (reveal):
7471         * hl-line.el (hl-line): Put in convenience group.
7473         * epg-config.el (epg): Put in data group.
7475         * emulation/pc-select.el (pc-select): Put in emulations group.
7477         * calculator.el (calculator): Put in applications group.
7479 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
7481         Add .dir-locals.el support for file-less buffers.
7482         * files.el (hack-local-variables): Split out code to apply local
7483         variable settings ...
7484         (hack-local-variables-apply): ... here.  New function.
7485         (hack-dir-local-variables): Use the default directory for when the
7486         buffer does not have an associated file.
7487         (hack-dir-local-variables-non-file-buffer): New function.
7488         * diff-mode.el (diff-mode):
7489         * vc-annotate.el (vc-annotate-mode):
7490         * vc-dir.el (vc-dir-mode):
7491         * log-edit.el (log-edit-mode):
7492         * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
7494 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
7496         Add support for shelving snapshots and for showing shelves.
7497         * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
7498         (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
7499         New functions.
7500         (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
7501         (vc-bzr-extra-menu-map): Map them.
7503 2010-03-11  Glenn Morris  <rgm@gnu.org>
7505         * cus-edit.el (customize-changed-options-previous-release):
7506         Bump to 23.1.
7508         * image.el (image-animate-max-time): Fix :version tag.
7510 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
7512         * Branch for 23.2.
7514 2010-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7516         * vc-git.el (vc-git-revision-table): Include remote branches.
7518 2010-03-10  Kim F. Storm  <storm@cua.dk>
7520         Animated image API.
7521         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
7523         * image.el (image-animate-max-time): New defcustom.
7524         (image-animated-types): New defconst.
7525         (create-animated-image, image-animate-timer)
7526         (image-animate-start, image-animate-stop, image-animate-timeout)
7527         (image-animated-p): New functions.
7529         * image-mode.el (image-toggle-display-image):
7530         Replace `create-image' with `create-animated-image'.
7532 2010-03-09  Miles Bader  <miles@gnu.org>
7534         * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
7535         instead of "format:"; this ensures that the output is
7536         newline-terminated.
7538 2010-03-08  Chong Yidong  <cyd@stupidchicken.com>
7540         * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
7541         that all errors are caught, and that the return value is always a
7542         list (Bug#5692).
7544 2010-03-08  Kenichi Handa  <handa@m17n.org>
7546         * language/misc-lang.el (windows-1256): New coding system.
7547         (cp1256): New alias of windows-1256 (bug#5690).
7549 2010-03-07  Andreas Schwab  <schwab@linux-m68k.org>
7551         * mail/rfc822.el (rfc822-addresses): Move catch clause down around
7552         call to rfc822-bad-address.  (Bug#5692)
7554 2010-03-07  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
7556         * vc-git.el (vc-git-annotate-extract-revision-at-line):
7557         Use vc-git-root as default directory for revision path (Bug#5657).
7559 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
7561         * calculator.el (calculator): Don't bind split-window-keep-point
7562         (Bug#5674).
7564 2010-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7566         * vc-git.el: Re-flow to fit into 80 columns.
7567         (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
7568         Remove spurious `quote' element in each case alternative.
7569         (vc-git-show-log-entry): Use prog1.
7570         (vc-git-after-dir-status-stage): Remove unused var `remaining'.
7572 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7574         * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
7576 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
7578         * macros.el (insert-kbd-macro): Look up keyboard macro using the
7579         definition, not the name (Bug#5481).
7581 2010-03-03  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
7583         * subr.el (momentary-string-display): Don't overwrite the MESSAGE
7584         argument with a local variable.  (Bug#5670)
7586 2010-03-02  Juri Linkov  <juri@jurta.org>
7588         * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
7590 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
7592         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
7593         error when FILENAME and NEWNAME are existing remote directories.
7595         * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
7596         parameter DIR-FLAG.
7598 2010-03-02  Glenn Morris  <rgm@gnu.org>
7600         * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
7601         of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
7603 2010-03-01  Kenichi Handa  <handa@m17n.org>
7605         * language/burmese.el (burmese-composable-pattern): Rename from
7606         myanmar-composable-pattern.
7608         * international/characters.el (script-list):
7609         * international/fontset.el (script-representative-chars):
7610         Change myanmar to burmese.
7611         (otf-script-alist): Likewise.
7612         (setup-default-fontset): Likewise.  Re-fix :otf spec.
7614 2010-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7616         * menu-bar.el (menu-bar-manuals-menu): Fix typo.
7618 2010-02-28  Jan Djärv  <jan.h.d@swipnet.se>
7620         * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
7622 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
7624         * net/tramp.el (tramp-handle-write-region): START can be a string.
7625         Take care in the checks.  Reported by Dan Davison
7626         <davison@stats.ox.ac.uk>.
7628 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
7630         * net/dbus.el (dbus-introspect, dbus-get-property)
7631         (dbus-set-property, dbus-get-all-properties):
7632         Use `dbus-call-method' when noninteractive.  (Bug#5645)
7634 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
7636         * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
7637         * emacs-lisp/elint.el (elint-add-required-env):
7638         * calendar/icalendar.el (icalendar--add-diary-entry):
7639         * calc/calcalg2.el (math-tracing-integral):
7640         * files.el (recover-session-finish): Use with-current-buffer
7641         instead of save-excursion.
7643 2010-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7645         Fix in-buffer completion when after-change-functions modify the buffer.
7646         * minibuffer.el (completion--replace): New function.
7647         (completion--do-completion): Use it and use relative movement.
7649 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
7651         * international/fontset.el (setup-default-fontset): Fix :otf spec.
7653 2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
7655         * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
7656         Allow the characters _<> in the stack entry (Bug#5653).
7658 2010-02-26  Kenichi Handa  <handa@m17n.org>
7660         * language/burmese.el: Fix entries in composition-function-table.
7661         (myanmar-composable-pattern): New variable.
7663         * international/fontset.el (setup-default-fontset): Add an entry
7664         for myanmar.
7666         * international/characters.el (script-list): Add Myanmar
7667         Extended-A.
7669 2010-02-26  Glenn Morris  <rgm@gnu.org>
7671         * custom.el (custom-initialize-delay): Doc fix.
7673         * mail/sendmail.el (send-mail-function): Autoload the call
7674         to custom-initialize-delay, not otherwise preserved in loaddefs.el.
7676 2010-02-24  Chong Yidong  <cyd@stupidchicken.com>
7678         * files.el (hack-local-variables-filter): For eval forms, also
7679         check safe-local-variable-p (Bug#5636).
7681 2010-02-22  Michael Albinus  <michael.albinus@gmx.de>
7683         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
7684         setting the modes by `ignore-errors'.  It might fail, for example
7685         if the file is not owned by the user but the group.
7686         (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
7688 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
7690         * files.el (directory-listing-before-filename-regexp): Use
7691         stricter matching for iso-style dates, to avoid false matches with
7692         date-like filenames (Bug#5597).
7694         * htmlfontify.el (htmlfontify): Doc fix.
7696         * eshell/eshell.el (eshell): Doc fix.
7698         * startup.el (fancy-about-screen): In mode-line, apply
7699         mode-line-buffer-id face only to the buffer name (Bug#5613).
7701 2010-02-20  Kevin Ryde  <user42@zip.com.au>
7703         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7704         In `watcom' anchor regexp to start of line, to avoid slowness
7705         (Bug#5599).
7707 2010-02-20  Eli Zaretskii  <eliz@gnu.org>
7709         * subr.el (remove-yank-excluded-properties): Explain in a comment
7710         why `category' property is removed.
7712 2010-02-19  Chong Yidong  <cyd@stupidchicken.com>
7714         * isearch.el (isearch-update-post-hook, isearch-update): Revert
7715         2010-02-17 change.
7717 2010-02-19  Ulf Jasper  <ulf.jasper@web.de>
7719         * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
7720         (icalendar--convert-weekly-to-ical)
7721         (icalendar--convert-yearly-to-ical)
7722         (icalendar--convert-block-to-ical)
7723         (icalendar--convert-cyclic-to-ical)
7724         (icalendar--convert-anniversary-to-ical): Take care of time
7725         specifications where hour has 1-digit only (Bug#5549).
7727 2010-02-19  Nick Roberts  <nickrob@snap.net.nz>
7729         * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
7730         of disassemble output in GDB 7.1.
7732 2010-02-19  Glenn Morris  <rgm@gnu.org>
7734         * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
7735         property.  (Bug#5593)
7737 2010-02-18  Sam Steingold  <sds@gnu.org>
7739         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
7741 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7743         Use abbreviated file names in bookmarks (bug#5591).
7744         * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
7745         calls to expand-file-name.
7746         (bookmark-relocate): Use abbreviated file names in bookmarks.
7747         (bookmark-load): Use abbreviated file names in messages.
7749 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
7751         * net/tramp.el (tramp-handle-directory-files): When FULL, do not
7752         expand "." and "..".  Reported by Thierry Volpiatto
7753         <thierry.volpiatto@gmail.com>.
7755 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
7757         * net/tramp.el (tramp-handle-insert-file-contents): Set always the
7758         permissions of the temporary file to "0600".  In case the remote
7759         file has no read permissions for the owner, there might be
7760         problems otherwise.  Reported by Ole Laursen <olau@iola.dk>.
7762 22010-02-18  Glenn Morris  <rgm@gnu.org>
7764         * emacs-lisp/authors.el (authors-renamed-files-alist):
7765         Add entries for INSTALL.CVS.
7767 2010-02-17  Mark A. Hershberger  <mah@everybody.org>
7769         * vc-bzr.el: Fix typo in Known Bugs section.
7771         * isearch.el (isearch-update-post-hook): New hook.
7772         (isearch-update): Use the new hook.
7774 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
7776         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
7777         Fix errors in copying directories.
7778         (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
7779         (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
7780         (tramp-handle-delete-file)
7781         (tramp-handle-dired-recursive-delete-directory)
7782         (tramp-handle-write-region): Flush also the cache for the upper
7783         directory.
7785 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
7787         * simple.el (save-interprogram-paste-before-kill): Doc fix.
7789         * cus-edit.el (hardware): Doc fix.
7791         * man.el (man): Add to external custom group.
7793         * delim-col.el (columns): Move to wp custom group.
7795         * doc-view.el (doc-view): Add to data custom group.
7797         * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
7799         * textmodes/flyspell.el (flyspell-word): Obey the offset specified
7800         by ispell-parse-output (Bug#5575).
7802 2010-02-16  Kenichi Handa  <handa@m17n.org>
7804         * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
7805         (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
7806         (skkdic-convert): Use `euc-japan' coding system for writing.
7808 2010-02-16  Glenn Morris  <rgm@gnu.org>
7810         * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
7811         tex-main-file before using it.  (Bug#5562)
7813 2010-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7815         * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
7816         warnings, since it is annoying for the user to see them each time he
7817         runs the code.
7819 2010-02-15  Michael Albinus  <michael.albinus@gmx.de>
7821         * net/tramp.el (tramp-process-actions, tramp-read-passwd):
7822         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
7823         instead of PROC for caching "first-password-request".  Otherwise,
7824         new processes would not profit from passwords already entered.
7826         * net/tramp-cache.el (tramp-dump-connection-properties):
7827         Don't save "first-password-request" property.
7829 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
7831         * outline.el (outline-head-from-level):
7832         * simple.el (with-wrapper-hook):
7833         * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
7834         (elint-defun, elint-buffer-env, elint-top-form-logged)
7835         (elint-unbound-variable):
7836         * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
7837         Fix typos in docstrings.
7839 2010-02-14  Michael Albinus  <michael.albinus@gmx.de>
7841         * files.el (insert-directory): When WILDCARD-REGEXP and
7842         FULL-DIRECTORY-P are nil, insert the file entry instead of the
7843         whole directory.  (Bug#5551)
7845         * net/ange-ftp.el (ange-ftp-insert-directory): Insert "  " for
7846         dired's alignment sanity.  (Bug#5516)
7848 2010-02-14  Juri Linkov  <juri@jurta.org>
7850         * man.el (Man-fontify-manpage, Man-cleanup-manpage):
7851         Remove remaining ^H with their preceding chars.  (Bug#5566)
7853 2010-02-13  Glenn Morris  <rgm@gnu.org>
7855         * simple.el (transpose-subr): Give it a doc-string.
7857         * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
7858         Doc fixes.
7860 2010-02-12  Juri Linkov  <juri@jurta.org>
7862         * arc-mode.el (archive-unique-fname): Make directories for nested
7863         archives.  (Bug#5540)
7865 2010-02-12  Juri Linkov  <juri@jurta.org>
7867         * ffap.el (dired-at-point): Fix docstring.  (Bug#5565)
7869 2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7871         * subr.el (copy-overlay): Handle deleted overlays.
7873         * man.el (Man-completion-table): Don't signal an error if we can't run
7874         manual-program (bug#4056).
7876 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
7878         * textmodes/artist.el (artist-mt): Fix typos in docstring.
7880 2010-02-10  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7882         * info.el (Info-bookmark-jump): Simplify.
7884         * bookmark.el (bookmark-handle-bookmark): Catch the right error.
7885         (bookmark-default-handler): Accept new bookmark field `buffer'.
7887 2010-02-10  Chong Yidong  <cyd@stupidchicken.com>
7889         * iswitchb.el (iswitchb-completions): Revert last change.
7891 2010-02-10  Michael Albinus  <michael.albinus@gmx.de>
7893         * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
7894         FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
7895         This prevents file names like "~/" being listed literally.
7897 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
7899         * term/xterm.el (xterm-maybe-set-dark-background-mode):
7900         Remove dead code.  (Bug#5546)
7902 2010-02-09  Chong Yidong  <cyd@stupidchicken.com>
7904         * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
7905         correctly (Bug#5548).
7907 2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
7909         * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
7910         (ada-adjust-case): Don't adjust case in hexadecimal number literals.
7912 2010-02-08  Kenichi Handa  <handa@m17n.org>
7914         * international/mule-util.el (with-coding-priority): Add autoload
7915         cookie for putting `lisp-indent-function'.
7917 2010-02-07  Glenn Morris  <rgm@gnu.org>
7919         * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
7920         Move F2003 named interfaces from keywords-2 to keywords-1, and
7921         use function-name-face rather than constant-face.
7922         Simplify "abstract interface" regexp.
7924 2010-02-07  Chong Yidong  <cyd@stupidchicken.com>
7926         * eshell/esh-util.el (eshell-file-attributes): New optional arg
7927         ID-FORMAT.  Pass it to `file-attributes'.
7929         * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
7931 2010-02-07  sj  <prime.wizard+emacs@gmail.com>  (tiny change)
7933         * faces.el (set-face-attribute): Allow calling
7934         internal-set-lisp-face-attribute with 'unspecified family and
7935         foundry argument (Bug#5536).
7937 2010-02-07  Glenn Morris  <rgm@gnu.org>
7939         * progmodes/f90.el (f90-font-lock-keywords-2)
7940         (f90-looking-at-type-like, f90-looking-at-program-block-end):
7941         Handle F2003 named interfaces.
7943 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
7945         * progmodes/cc-mode.el (c-common-init): Bind temporary variables
7946         beg and end before calling c-get-state-before-change-functions.
7948 2010-02-06  Dan Nicolaescu  <dann@ics.uci.edu>
7950         * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
7952 2010-02-05  Juri Linkov  <juri@jurta.org>
7954         * doc-view.el (doc-view-mode):
7955         * image-mode.el (image-mode): Put property mode-class=special.
7956         (Bug#4896)
7958 2010-02-05  Mark A. Hershberger  <mah@everybody.org>
7960         * vc-svn.el (vc-svn-revision-table): New function.
7962 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
7964         * net/ange-ftp.el (ange-ftp-insert-directory):
7965         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
7966         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
7967         Handle also directories.  (Bug#5478)
7969 2010-02-05  Glenn Morris  <rgm@gnu.org>
7971         * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
7973 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
7975         * startup.el (command-line-1): Convert options beginning with a
7976         single dash as well (Bug#5519).
7978 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7980         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
7981         * minibuffer.el (completion-initials-expand): Only check the presence
7982         of delims *within* the boundaries, since otherwise the / delim is
7983         always found for files.
7985         Fix up various corner case problems.
7986         * doc-view.el (doc-view-last-page-number): New function.
7987         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
7988         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
7989         (doc-view-kill-proc): Avoid inf-loop in freak cases.
7990         (doc-view-reconvert-doc): Use the new recursive delete-directory.
7991         (doc-view-convert-current-doc): Don't create the resolution.el file
7992         here any more.
7993         (doc-view-pdf/ps->png): Do it here instead.
7994         (doc-view-already-converted-p): Check that resolution.el is present.
7995         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
7996         windows that are not yet showing images.
7998 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
8000         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
8001         `dired-uncache' for every elemnt which is an absolute file name.
8003         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
8004         directory, handle its directory component.
8005         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
8006         function is called permanently and creates noise, otherwise.
8008         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
8009         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
8010         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
8012 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
8014         * macros.el (apply-macro-to-region-lines):
8015         Minor simplification.  (Bug#5485)
8017 2010-02-04  Glenn Morris  <rgm@gnu.org>
8019         * mail/rmail.el (rmail-show-message-1): Handle malformed
8020         quoted-printable text.  (Bug#5441)
8022         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
8024         * simple.el (visual-line-mode): Capitalize lighter.
8026 2010-02-03  John Wiegley  <jwiegley@gmail.com>
8028         * iswitchb.el (iswitchb-completions): Add bookmark files to the
8029         list of files considered for "virtual buffer" completions.
8031 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
8033         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
8034         also in case of (and (not full) (not wildcard)).  This is needed
8035         when dired is called with a list of files, which are not in
8036         `default-directory'.  (Bug#5478)
8038 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8040         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
8042 2010-02-02  Juri Linkov  <juri@jurta.org>
8044         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
8045         from unidiff to allow function-line after @@.
8047 2010-02-02  Juri Linkov  <juri@jurta.org>
8049         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
8050         '(RCS SCCS) with inverted condition.
8052 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
8054         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
8055         messages.
8057 2010-02-01  Juri Linkov  <juri@jurta.org>
8059         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
8060         compare with "pkunzip" and "pkzip" instead of only "pkzip".
8061         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
8062         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
8064 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8066         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
8067         (doc-view-revert-buffer): New command.
8068         (doc-view-mode-map): Use it.
8070 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
8072         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
8073         pending merge is detected.
8075 2010-01-31  Juri Linkov  <juri@jurta.org>
8077         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
8078         beginning of interactive spec like all other grep commands do.
8079         Put "all" in front of "gz".  (Bug#5260)
8081 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
8083         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
8085 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
8087         * dirtrack.el (dirtrack): Warn instead of signalling error if the
8088         regexp is incorrect (Bug#5476).
8090 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
8092         * net/tramp.el (tramp-handle-insert-directory): Handle also
8093         symlinks, when FILENAME is not in `default-directory'.
8095 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
8097         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
8098         FILE is not in `default-directory'.  (Bug#5478)
8100         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
8101         of SWITCHES.  Handle the case, FILENAME is not in
8102         `default-directory'.  (Bug#5478)
8103         (tramp-register-file-name-handlers): Add safe-magic property.
8105 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
8107         * arc-mode.el (archive-zip-extract): Quote the argument passed to
8108         unzip (Bug#5475).
8110 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
8112         * progmodes/flymake.el (flymake-allowed-file-name-masks)
8113         (flymake-master-make-header-init): Add other C++ filename masks.
8114         (flymake-find-possible-master-files)
8115         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
8117 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
8119         Fix some busybox annoyances.
8121         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
8122         not responding." string.
8123         (tramp-open-connection-setup-interactive-shell): Dump stty
8124         settings.  Enable "neveropen" arg for all `tramp-send-command'
8125         calls.  Handle "=" in variable values properly.
8126         (tramp-find-inline-encoding): Raise an error, when no encoding is
8127         found.
8128         (tramp-wait-for-output): Check, whether PROC buffer is available.
8129         Remove spurious " ^H" sequences, sent by busybox.
8130         (tramp-get-ls-command): Suppress coloring, if possible.
8132 2010-01-28  Glenn Morris  <rgm@gnu.org>
8134         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
8136         * log-edit.el (log-edit-strip-single-file-name): Add missing
8137         :safe, :group, and :version tags.
8139 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
8141         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
8142         buffers.  (Bug#5477)
8144 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
8146         * files.el (delete-directory): Handle moving to trash without
8147         first doing recursion (Bug#5436).
8149 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
8151         * vc-hooks.el (vc-path): Mark as obsolete.
8153 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
8155         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
8156         names too.
8158         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
8159         for the short log.
8160         (vc-bzr-log-view-mode): Adjust regexp for the above change.
8162 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
8164         * progmodes/python.el: Replace reference to obsolete c-subword-mode.
8166         * vc-bzr.el (vc-bzr-revision-table): New function.
8168 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
8170         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
8171         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
8173 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
8175         Remove support for adding --signoff on commit.
8176         Future support will use an incompatible generic mechanism.
8177         * vc-git.el (vc-git-add-signoff): Remove variable.
8178         (vc-git-toggle-signoff): Remove function.
8179         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
8181         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
8182         from xterm-set-background-mode.  Return t if the background mode
8183         was set.
8184         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
8185         earlier, call it again in case the background mode has changed.
8187 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
8189         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
8190         (Bug#3541).
8192 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
8194         * emacs-lisp/assoc.el (aelement): Doc fix.
8195         (aput, adelete, amake): Use lexical-let (Bug#5450).
8197 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
8199         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
8200         is the same as subprogram call, not declaration.  (Bug#5435).
8202 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
8204         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
8205         (tramp-smb-maybe-open-connection): Use it.
8207 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
8209         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
8211 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
8213         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
8214         just because we see "encoding: 8bit".
8215         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
8217 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
8219         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
8221 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
8223         * jka-compr.el (jka-compr-load): If load-file is not in
8224         load-history, try its file-truename version.  (bug#5447)
8226 2010-01-21  Alan Mackenzie  <acm@muc.de>
8228         Fix a situation where deletion of a cpp construct throws an error.
8229         * progmodes/cc-engine.el (c-invalidate-state-cache):
8230         Before invoking c-with-all-but-one-cpps-commented-out, check that the
8231         special cpp construct is still in the buffer.
8232         (c-parse-state): Record the special cpp with markers, not numbers.
8234 2010-01-21  Kenichi Handa  <handa@m17n.org>
8236         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
8237         process last-command-event, as it is now decoded first (Bug#5380).
8239 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
8241         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
8243 2010-01-20  Glenn Morris  <rgm@gnu.org>
8245         * indent.el (tab-always-indent): Fix custom-type.
8247 2010-01-19  Alan Mackenzie  <acm@muc.de>
8249         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
8250         buffer throws "args out of range".
8251         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
8252         playing the role of delimiter.
8254 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
8256         * progmodes/ada-mode.el: Fix bug#5400.
8257         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
8258         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
8259         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
8260         Improve comments in "is" portion.  Handle null procedure declaration.
8261         (ada-move-to-end): Improve doc string.
8263 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
8265         * ido.el (ido-cur-list): Initialize to nil.
8266         Remove obsolete information from commentary.
8267         (ido-choice-list): Initialize to nil.
8268         (ido-get-bufname): Reject minibuffers.
8269         (ido-make-buffer-list): If "default" is a nonexistent
8270         buffer, ignore it, as per the function's comment.
8271         (ido-kill-buffer-internal): New function.
8272         (ido-kill-buffer-at-head): Use it.
8273         (ido-visit-buffer): Likewise.
8275 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
8277         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
8279 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
8281         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
8282         Fix typos in chart titles.
8284         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
8285         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
8286         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
8287         (describe-class, eieio-describe-generic, describe-generic):
8288         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
8289         (eieio-speedbar-expand):
8290         * emulation/viper-cmd.el (viper-exec-form-in-vi)
8291         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
8292         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
8293         (viper-del-backward-char-in-replace, viper-backward-indent)
8294         (viper-brac-function, viper-register-to-point, viper-submit-report):
8295         * net/tramp.el (tramp-remote-coding-commands):
8296         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
8297         Fix typos in docstrings.
8299 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
8301         * mail/sendmail.el (mail-yank-original): Set the mark if the
8302         specified function for yanking does not do it.
8304 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
8306         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
8308         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
8309         resyncing a directory.
8311 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
8313         * progmodes/ada-mode.el: Fix bug#1920.
8314         (ada-ident-re): Delete ., allow multibyte characters.
8315         (ada-goto-label-re): New; matches goto labels.
8316         (ada-block-label-re): New; matches block labels.
8317         (ada-label-re): New; matches both.
8318         (ada-named-block-re): Deleted; callers changed to use
8319         `ada-block-label-re' instead.
8320         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
8321         Use `ada-block-label-re'.
8322         (ada-indent-on-previous-lines): Improve handling of goto labels.
8323         (ada-get-indent-block-start): Special-case block label.
8324         (ada-get-indent-label): Split into `ada-indent-block-label' and
8325         `ada-indent-goto-label'.
8326         (ada-goto-stmt-start, ada-goto-next-non-ws):
8327         Optionally ignore goto labels.
8328         (ada-goto-next-word): Simplify.
8329         (ada-indent-newline-indent-conditional): Insert newline before
8330         trying to fix indentation; doc fix.
8332 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
8334         * calc/calc.el (calc-command-flags): Give it an initial value.
8336 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
8338         * files.el (minibuffer-with-setup-hook):
8339         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
8340         (artist-key-draw-continously, artist-key-do-continously-continously)
8341         (artist-key-set-point-continously, artist-mouse-draw-continously):
8342         Fix typos in docstrings.
8344 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
8346         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
8347         return t (Bug#3898).
8349 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
8351         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
8352         can parse the output of the external commands (Bug#5279).
8354 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
8356         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
8358 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
8360         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
8362         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
8364         * startup.el (command-line): Remove unused --icon-type arg.
8365         Handle --display arg, passing it to command-line-1 (Bug#5392).
8367 2010-01-16  Mario Lang  <mlang@delysid.org>
8369         * emacs-lisp/chart.el (chart-translate-namezone):
8370         * textmodes/artist.el (artist-compute-popup-menu-table):
8371         Remove duplicated words in doc-strings.
8373 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
8375         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
8376         to mairix-search to suppress threading (Bug#5342).
8378 2010-01-15  Kenichi Handa  <handa@m17n.org>
8380         * international/mule-cmds.el (canonicalize-coding-system-name):
8381         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
8383 2010-01-15  Glenn Morris  <rgm@gnu.org>
8385         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
8387         * wid-edit.el (widget-keymap): Doc fix.
8389         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
8390         former seems to be more widely accepted by various svn versions.
8392 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
8394         * find-cmd.el (find-constituents):
8395         * vc-arch.el (vc-arch-root):
8396         * window.el (window-body-height, pop-up-frames):
8397         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
8398         * progmodes/ada-stmt.el (ada-if):
8399         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
8400         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
8401         (ispell-encoding8-command, ispell-aspell-supports-utf8)
8402         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
8404         * progmodes/flymake.el (flymake-post-syntax-check):
8405         Fix typo in error message.
8407 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
8409         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
8410         which is always a string.  (Bug#5313)
8412 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
8414         * progmodes/ada-xref.el (ada-default-prj-properties):
8415         Simplify previous change.
8417 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
8419         * progmodes/ada-xref.el (ada-default-prj-properties):
8420         Default ada_project_path to $ADA_PROJECT_PATH.
8422 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
8424         * progmodes/ada-mode.el (ada-create-keymap):
8425         Override `narrow-to-defun' with `ada-narrow-to-defun'.
8427 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
8429         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
8430         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
8431         (ada-get-current-indent, ada-imenu-generic-expression)
8432         (ada-which-function): Check for it.
8434 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
8436         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
8437         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
8439 2010-01-14  Glenn Morris  <rgm@gnu.org>
8441         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
8443 2010-01-14  Kenichi Handa  <handa@m17n.org>
8445         * composite.el (auto-composition-mode): Make it a buffer local
8446         variable (permanent-local).
8447         (auto-composition-function): Set the default value to
8448         auto-compose-chars.
8449         (auto-composition-mode): Make it a simple function, not a minor mode.
8450         (global-auto-composition-mode): Likewise.
8451         (turn-on-auto-composition-if-enabled): Delete it.
8453 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
8455         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
8457 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
8459         * files.el (copy-directory): Compute target for recursive
8460         directories with identical names.  (Bug#5343)
8462 2010-01-12  Glenn Morris  <rgm@gnu.org>
8464         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
8465         it to bug-gnu-emacs rather than emacs-pretest-bug.
8467 2010-01-11  Sam Steingold  <sds@gnu.org>
8469         * imenu.el (imenu-default-create-index-function): Detect infinite
8470         loops caused by imenu-prev-index-position-function.
8472 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
8474         * htmlfontify.el (htmlfontify-load-rgb-file)
8475         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
8476         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
8477         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
8478         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
8479         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
8480         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
8481         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
8482         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
8483         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
8484         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
8485         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
8486         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
8487         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
8488         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
8489         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
8490         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
8491         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
8492         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
8493         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
8494         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
8495         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
8496         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
8497         backslash-quoting from parentheses, etc.
8499 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
8501         * progmodes/js.el: Autoload javascript-mode alias.
8503 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
8505         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
8506         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
8507         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
8508         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
8509         Fix typos in docstrings.
8510         (ffap-url-regexp): Doc fix.
8511         (ffap-at-mouse): Fix typo in message.
8513 2010-01-11  Glenn Morris  <rgm@gnu.org>
8515         * version.el (emacs-copyright): Set copyright year to 2010.
8517 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8519         * format.el (format-annotate-function): Only set
8520         write-region-post-annotation-function after running to-fn so as not to
8521         affect nested write-region calls (bug#5273).
8523 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
8525         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
8526         wisent/python.el.
8528 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
8530         * man.el (Man-goto-section): Signal error if the section is not
8531         found (Bug#5317).
8533 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
8535         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
8536         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
8538 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
8540         * progmodes/compile.el: Don't treat compile-command as safe if
8541         compilation-read-command might be nil (Bug#4218).
8543 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
8545         * startup.el (command-line-1): Use orig-argi to check for ignored X and
8546         NS options.
8548 2010-01-08  Kenichi Handa  <handa@m17n.org>
8550         * international/fontset.el (build-default-fontset-data):
8551         Exclude characters in scripts kana, hangul, han, or cjk-misc.
8553 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
8555         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
8556         to `create-file-buffer' as it expects, not just a buffer name.
8557         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
8558         to help uniquify.  (Bug#3224)
8560 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
8562         * font-setting.el (font-setting-change-default-font): Use user-spec
8563         instead of name.
8565 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
8567         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
8569 2010-01-05  Tom Tromey  <tromey@redhat.com>
8571         * progmodes/python.el (python-font-lock-keywords):
8572         Handle qualified decorators (Bug#881).
8574 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
8576         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
8577         in a lightweight checkout.
8579 2010-01-05  Kenichi Handa  <handa@m17n.org>
8581         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
8583 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
8585         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
8587 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
8589         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
8590         checkouts.  (Bug#618)
8591         (vc-bzr-log-view-mode): Also highlight the author.
8592         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
8593         (vc-bzr-shelve-menu-map):
8594         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
8595         (vc-bzr-shelve-apply): Make prompt more explicit.
8597 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
8599         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
8600         They are valid characters in URL paths (rfc3986), and at least
8601         Firefox does not understand the encoded version (Bug#3166).
8603 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
8605         * progmodes/octave-mod.el (octave-end-keywords)
8606         (octave-block-begin-or-end-regexp, octave-block-match-alist):
8607         Add "end" keyword (Bug#3061).
8608         (octave-end-as-array-index-p): New function.
8609         (calculate-octave-indent): Use it.
8611 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
8613         * bookmark.el: Consistently put the text property on the bookmark name.
8614         (bookmark-bmenu-marks-width): Bump back to 2, to include
8615         annotation marks.
8616         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
8617         property on the bookmark name, instead of not putting it at all.
8618         (bookmark-bmenu-list): Fix where we put the text property.
8620 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
8622         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
8623         for showing buffer modified state (as added in the previous change).
8625 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
8627         * bookmark.el: Show modified state of bookmark buffer more accurately.
8628         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
8629         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
8630         (with-buffer-modified-unmodified): New macro.
8631         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
8632         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
8633         Use new macro to preserve the buffer modified state.
8635 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
8637         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
8638         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
8639         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
8640         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
8641         (bookmark-bmenu-rename, bookmark-bmenu-locate)
8642         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
8643         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
8645 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
8647         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
8648         Make the lines in the generated doc string shorter.  (Bug#4668)
8650 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
8652         * net/rcirc.el: Add follow-link binding (Bug#4738).
8654 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
8656         * Makefile.in (bzr-update): Rename from cvs-update.
8657         (cvs-update): New target for backward compatibility.
8659         * makefile.w32-in (bzr-update): Rename from cvs-update.
8660         (cvs-update): New target for backward compatibility.
8662 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
8664         * bookmark.el: Remove gratuitous gratitude.
8666 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
8668         * bookmark.el (bookmark-bmenu-any-marks): New function.
8669         (bookmark-bmenu-save): Clear buffer modification if no marks.
8671 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
8673         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
8674         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
8675         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
8676         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
8678         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
8679         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
8680         To: emacs-devel {_AT_} gnu.org
8681         Subject: bookmark.el bug report
8682         Date: Mon, 28 Dec 2009 14:19:16 +0800
8683         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
8685 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
8687         * bookmark.el: Improvements suggested by Drew Adams:
8688         (bookmark-bmenu-ensure-position): New name for
8689         `bookmark-bmenu-check-position'.  Just ensure the position,
8690         don't return any meaningful value.
8691         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
8692         New constants.
8694 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
8696         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
8697         (bookmark-yank-point, bookmark-bmenu-check-position):
8698         Fix typos in docstrings.
8699         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
8700         (bookmark-name-from-full-record, bookmark-get-position)
8701         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
8702         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
8703         Remove useless quoting of parenthesis, etc. in docstrings.
8705         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
8706         (ediff-append-custom-diff): Fix typo in error message.
8707         (ediff-meta-mark-equal-files): Fix typos in messages.
8709         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
8711         * net/imap-hash.el (imap-hash-make): Doc fix.
8712         (imap-hash-test): Fix typo in error message; reflow docstring.
8713         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
8714         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
8715         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
8716         Fix typos in docstrings.
8717         (imap-hash-open-connection): Fix typo in error message.
8719         * play/gomoku.el (gomoku): Fix typos in docstring.
8721         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
8722         (gdb-jsonify-buffer): Fix typos in docstring.
8723         (gdb-goto-breakpoint): Fix typo in error message.
8724         ("Display Other Windows"): Fix typo in help message.
8725         (gdb-speedbar-expand-node): Fix typo in question.
8727         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
8728         (idlwave-html-system-help-location, idlwave-html-help-location)
8729         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
8730         (idlwave-help-browser-generic-args, idlwave-help-directory)
8731         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
8732         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
8733         (idlwave-online-help, idlwave-help-html-link)
8734         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
8735         Fix typos in docstrings.
8736         (idlwave-help-with-source, idlwave-help-find-routine-definition):
8737         Reflow docstrings.
8738         (idlwave-help-assistant-start): Fix typo in error message.
8740         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
8741         (octave-electric-space): Fix typos in docstrings.
8743 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
8745         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
8747 2010-01-01  Juri Linkov  <juri@jurta.org>
8749         * comint.el (comint-input-ring-size): Make it a defcustom and
8750         increase the default to 500 (Bug#5148).
8752 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
8754         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
8755         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
8756         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
8758 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
8760         Show working revision correctly for mercurial.
8761         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
8762         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
8764 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
8766         Declare some functions for the byte-compiler.
8767         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
8768         (speedbar-timer-fn, speedbar-change-expand-button-char)
8769         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
8771 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
8773         This changeset reverts GDB Graphical Interface to use annotations.
8774         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
8776 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
8778         Make vc-dir work on subdirectories of the bzr root.
8779         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
8780         file names relative to it.
8781         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
8782         relative directory to vc-bzr-after-dir-status.
8784 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
8786         * font-lock.el (font-lock-refresh-defaults): New function, which
8787         can be used to let font-lock react to external changes in
8788         variables like font-lock-defaults and keywords.
8789         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
8791 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
8793         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
8795         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
8797 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
8799         Supersede color.diff settings in git log (bug#5211).
8801         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
8802         escape chars in its output when the user has color.diff set to `always'.
8803         This fix works on git 1.4.2 and newer (released on 2006-08-13).
8805 2009-12-26  Kevin Ryde  <user42@zip.com.au>
8807         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
8808         node.  Keep previous "Index" name to work with past coreutils too.
8810         * man.el (man): Revise docstring a bit to show -a and -l as
8811         examples.  Add -k description since support for it has otherwise
8812         been a secret.  (Further to bug#3717.)
8813         (Man-bgproc-sentinel): When "-k foo" produces no output show error
8814         "no matches" rather than "Can't find manpage", as the latter reads
8815         like -k was interpreted as a page name, which is not so.  (Bug#5431)
8817 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
8819         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
8820         switches.  Check also for //SUBDIRED// line.
8822 2009-12-25  Kenichi Handa  <handa@m17n.org>
8824         * language/indian.el (devanagari-composable-pattern): Fixed to
8825         handle ZWNJ and ZWJ.  Use it in composition-function-table for
8826         Devanagari.
8827         (malayalam-composable-pattern): Fix previous change.
8829 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8831         * ps-print.el (ps-face-attributes): It was not returning the
8832         attribute face for faces specified as string.  Reported by harven
8833         <harven@free.fr>.  (Bug#5254)
8834         (ps-print-version): New version 7.3.5.
8836 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
8838         * calendar/icalendar.el (icalendar--convert-tz-offset):
8839         Fix timezone names.
8840         (icalendar--convert-tz-offset): Fix the "last-day-problem".
8841         (icalendar--add-diary-entry): Remove the trailing blank that
8842         diary-make-entry inserts.
8844 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
8846         Make `file-expand-wildcards' work for remote files.
8848         * files.el (file-expand-wildcards): In case of remote files, check
8849         only local file name part for wildcards.  Provide feature 'files
8850         and subfeature 'remote-wildcards.  (Bug#5198)
8852         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
8853         if there is already an established connection.
8854         (tramp-advice-file-expand-wildcards): Remove it.
8856         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
8857         (tramp-advice-file-expand-wildcards): Move from tramp.el.
8858         Activate advice for older GNU Emacs versions.  (Bug#5237)
8860 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
8862         Some doc fixes (more needed).
8864         * find-cmd.el (find-constituents): Reflow docstring.
8865         (find-cmd, find-prune, find-command): Fix typos in docstrings.
8866         (find-generic): Doc fix.
8868 2009-12-17  Juri Linkov  <juri@jurta.org>
8870         Fix regression from 23.1 to allow multiple modes in Local Variables.
8872         * files.el (hack-local-variables-filter): While ignoring duplicates,
8873         don't take `mode' into account.
8874         (hack-local-variables-filter, hack-dir-local-variables):
8875         Don't remove duplicate `mode' from local-variables-alist (like `eval').
8877 2009-12-17  Juri Linkov  <juri@jurta.org>
8879         Make `dired-diff' safer.  (Bug#5225)
8881         * dired-aux.el (dired-diff): Signal an error when `file' equals to
8882         `current' or when `file' is a directory of the `current' file.
8884 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
8886         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
8887         unconditionally preloaded files.
8889 2009-12-16  Juri Linkov  <juri@jurta.org>
8891         Revert to old 23.1 logic of using the file at the mark as default.
8892         * dired-aux.el (dired-diff): Use the file at the mark as default
8893         if it's not the same as the current file, and the target dir is
8894         the current dir or the mark is active.  Add the current file
8895         as the arg of `dired-dwim-target-defaults'.  Use the default file
8896         in the prompt.  (Bug#5225)
8898 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
8900         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
8901         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
8902         (tramp-check-for-regexp): Check also, when an echoing shell stops
8903         to echo sent commands.
8905 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
8907         * Makefile.in: Revert last change (Bug#5191).
8909 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
8911         * vc-hg.el (vc-hg-print-log): Fix argument order.
8912         (vc-hg-working-revision): Make sure the command is executed in a
8913         known environment so that we can parse the output.  (Bug#4417)
8915 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
8917         * progmodes/python.el (python-symbol-completions): Remove text
8918         properties from symbol string before calling python-send-receive.
8920 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
8922         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
8923         when there are values for both file and line.  (Bug#5060)
8925 2009-12-14  Juri Linkov  <juri@jurta.org>
8927         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
8928         whitespace after the file name of the first line of unified format,
8929         because git-diff doesn't output whitespace and file modification time
8930         after the file name.
8932 2009-12-14  David Kastrup  <dak@gnu.org>
8934         * info.el (Info-hide-cookies-node): Before hiding a cookie,
8935         check if it already has the `display' property added by
8936         `Info-display-images-node', and not put the `invisible' property
8937         in this case.
8939 2009-12-13  Glenn Morris  <rgm@gnu.org>
8941         * mail/emacsbug.el (message-sort-headers): Define for compiler.
8942         (report-emacs-bug): In message-mode, sort manually before storing
8943         original report text.  (Bug#5178)
8944         Remove superfluous save-excursion.
8946 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
8948         * net/dbus.el (dbus-property-handler): Filter lambda forms out
8949         when responding to "GetAll" properties.
8951 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
8953         * simple.el (compose-mail): Remove mail-setup-with-from from
8954         customization checks.
8956 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
8958         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
8959         RAR archives created on Unix systems.
8961 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8963         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
8964         the varalias that was accidentally removed by the 2009-11-19 change
8965         (bug#5186).
8967 2009-12-12  Kenichi Handa  <handa@m17n.org>
8969         * language/indian.el (indian-compose-regexp): New function.
8970         (malayalam-composable-pattern): Fix the pattern.
8971         (composition-function-table): Set malayalam-composable-pattern for
8972         Malayalam characters.
8974 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
8976         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
8977         rather than down-mouse-1, based on follow-link conventions.
8979         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
8980         are compiled.
8982 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
8984         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
8985         (verilog-vmm-statement-re, verilog-ovm-statement-re)
8986         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
8987         (verilog-leap-to-head, verilog-backward-token):
8988         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
8990 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
8992         * progmodes/verilog-mode.el (verilog-auto-lineup)
8993         (verilog-nameable-item-re): Cleanup user-visible spelling and
8994         documentation errors.  One reported by Gary Delp.
8995         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
8996         (verilog-read-decls): Fix AUTOWIRE with types declared in a
8997         package, bug195.  Reported by Pierre-David Pfister.
8999 2009-12-11  Glenn Morris  <rgm@gnu.org>
9001         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
9003         * mail/emacsbug.el: No longer require sendmail.
9004         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
9005         (report-emacs-bug-orig-text): Doc fix.
9006         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
9007         New local variables, to adapt to different mail-user-agents.
9008         (report-emacs-bug): Fix test for a gnu.org address.
9009         Use overlays for emphasis, since font-lock defeats 'face property.
9010         Pretest bugs also end up at the newsgroup these days.
9011         Stop message-mode stripping text properties.
9012         Set and use the new buffer-local variables.
9013         (report-emacs-bug-hook): Add doc-string.
9014         Remove some unnecessary save-excursions and simplify.
9015         Use the appropriate hook and send-command.
9017         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
9018         capitalization of some menu entries.
9020 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
9022         * whitespace.el (whitespace-display-char-on):
9023         Ensure `buffer-display-table' is unique when two or more windows are
9024         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
9025         New version 12.1.
9027 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
9029         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
9030         characters in the Attribute field.
9032 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
9034         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
9036 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9038         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
9039         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9040         Disregard autoload-excludes.
9041         (update-directory-autoloads): Obey autoload-excludes here instead.
9042         But don't store its contents in no-autoloads and remove entries that
9043         refer to excludes files.
9045 2009-12-10  Glenn Morris  <rgm@gnu.org>
9047         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
9048         (expand-mail-aliases): Define for compiler.
9050         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
9051         Define for compiler.
9053         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
9054         appropriate for the mail-user-agent in use.
9056 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
9058         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
9060 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
9062         Fix short log parsing and fontification.
9063         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
9064         Fix fontification for the [merge] label.
9066 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
9068         Drop some properties to avoid surprises (bug#5002).
9069         * htmlfontify.el (hfy-ignored-properties): New defcustom.
9070         (hfy-fontify-buffer): Use it.
9072 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
9074         Minor cleanup.
9075         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
9076         Adjust all callers.
9077         (ffap-locate-file): Remove unused arg `dir-ok' and make other
9078         args compulsory.  Adjust callers.
9079         (ffap-gopher-at-point): Remove unused var `name'.
9081         Get rid of the ELCFILES abomination.
9082         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
9083         (compile-elcfiles): New phony target.
9084         (compile-main): Compute ELCFILES dynamically.
9085         (compile-clean): New target to remove left-over elc files.
9086         (compile, all): Use it.
9088 2009-12-09  Kenichi Handa  <handa@etlken>
9090         * international/mule-diag.el: Require help-mode instead of help-fns.
9092 2009-12-09  Kenichi Handa  <handa@m17n.org>
9094         * international/mule-cmds.el (ucs-names): Supply sufficiently
9095         fine ranges instead of pre-calculating accurate ranges.
9096         Iterate with bigger gc-cons-threshold.
9098 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
9100         Add support for stashing a snapshot of the current tree.
9101         * vc-git.el (vc-git-stash-snapshot): New function.
9102         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
9104 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
9106         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
9107         instead of `(beginning|end)-of-line'.
9109 2009-12-08  Glenn Morris  <rgm@gnu.org>
9111         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
9113         * Makefile.in (ELCFILES): Regenerate.
9115 2009-12-07  Juri Linkov  <juri@jurta.org>
9117         Don't lazy-highlight the comint output in history Isearch mode.
9119         * comint.el (comint-history-isearch-search): Instead of
9120         `comint-line-beginning-position', use `comint-after-pmark-p'
9121         to check if point if before the process mark, and go to
9122         `process-mark' in this case.
9124 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9126         * textmodes/tex-mode.el (latex-complete)
9127         (latex-indent-or-complete): Remove.
9128         (latex-mode): Set completion-at-point-functions instead.
9130         Provide a standard completion command and hook it into TAB.
9131         * minibuffer.el (completion-at-point-functions): New var.
9132         (completion-at-point): New command.
9133         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
9134         * progmodes/python.el (python-mode-map): Use completion-at-point.
9135         (python-completion-at-point): Rename from python-partial-symbol and
9136         adjust for use in completion-at-point-functions.
9137         (python-mode): Setup completion-at-point for Python completion.
9138         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
9139         extracted from lisp-complete-symbol.
9140         (lisp-complete-symbol): Use it.
9141         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
9142         setup completion-at-point for Elisp completion.
9143         (emacs-lisp-mode-map, lisp-interaction-mode-map):
9144         Use completion-at-point.
9145         * ielm.el (ielm-map): Use completion-at-point.
9146         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
9147         * progmodes/sym-comp.el: Move to...
9148         * obsolete/sym-comp.el: Move from progmodes.
9150 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
9152         Prevent save-buffer in Rmail buffers from using the coding-system
9153         of the current message, and from clobbering the encoding mnemonics
9154         in the mode line (Bug#4623).
9156         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
9157         flag, too.
9158         (rmail-message-encoding): New variable.
9159         (rmail-write-region-annotate): Record the encoding of the current
9160         message in rmail-message-encoding.
9161         (rmail-after-save-hook): New function, restores the encoding of
9162         the current message after the message collection is saved.
9164 2009-12-07  Juri Linkov  <juri@jurta.org>
9166         * progmodes/grep.el (grep-read-files): Use `completing-read'
9167         instead of `read-string'.  Set its `collection' arg to
9168         `read-file-name-internal'.  (Bug#4301)
9170 2009-12-07  Juri Linkov  <juri@jurta.org>
9172         Correctly restore original Isearch point.  (Bug#4994)
9174         * isearch.el (isearch-mode): Move `isearch-push-state' after
9175         `(run-hooks 'isearch-mode-hook)'.
9176         (isearch-cancel): When `isearch-push-state-function' is defined,
9177         let-bind `isearch-cmds' to the first state (the last element of
9178         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
9179         function and restores the original point).  Otherwise, move point
9180         to `isearch-opoint'.
9182 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9184         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
9185         chars that don't have names, so the table can be built much faster at
9186         run-time.
9188 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
9190         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
9191         change.  Suggested by David Kastrup.
9193         * simple.el (compose-mail): Check for incompatibilities and warn.
9194         (compose-mail-user-agent-warnings): New option.
9196 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
9198         Support showing a single log entry from vc-annotate.
9199         * vc.el (print-log): Add a new argument: START-REVISION.
9200         (vc-print-log-internal): Add a new optional argument and
9201         pass it to the backend.
9202         (vc-print-log, vc-print-root-log): Adjust callers.
9203         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
9204         buffer already displays the requested log entry, use it.
9205         Otherwise display only the log entry in question.
9206         * vc-svn.el (vc-svn-print-log):
9207         * vc-mtn.el (vc-mtn-print-log):
9208         * vc-hg.el (vc-hg-state):
9209         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
9210         (vc-git-show-log-entry): Return t on success.
9211         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
9212         (vc-bzr-show-log-entry): Return t on success.
9213         * vc-rcs.el (vc-rcs-print-log):
9214         * vc-sccs.el (vc-sccs-print-log):
9215         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
9217 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
9219         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
9220         Add menus to the meta mode.  (Bug#5043)
9222 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
9224         * ediff-init.el (ediff-event-key): Use event-to-character instead of
9225         event-key.
9227         * ediff.el (ediff-buffers-internal): Add unwind-protect.
9229 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
9231         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
9232         Berbain <raphael.berbain@gmail.com>.
9234         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
9235         characters.
9236         (tramp-initial-end-of-output): New defconst.
9237         (tramp-methods, tramp-find-shell)
9238         (tramp-open-connection-setup-interactive-shell)
9239         (tramp-maybe-open-connection): Use it.
9240         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
9241         existence of `#' and `$'.
9243         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
9244         `tramp-initial-end-of-output'.
9246 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
9248         Get the background mode from the terminal for xterm, and set
9249         faces accordingly.
9250         * term/xterm.el (xterm-set-background-mode): New function.
9251         (terminal-init-xterm): Use it in case xterm supports background
9252         color queries.  Recompute faces after getting the background
9253         color.
9255 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
9257         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
9258         number comment back on its own line, for easier parsing.
9260 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9262         Make it work for non-file buffers (bug#5102).
9263         * doc-view.el (doc-view-current-cache-dir):
9264         Use doc-view-buffer-file-name rather than buffer-file-name.
9265         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
9267 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
9269         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
9270         author field is too short.
9272 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
9274         * vc-git.el (vc-git-print-log): Handle a limit argument.
9275         Display the short log in graph form and with labels.
9276         (vc-git-log-view-mode): Handle labels.
9278         Make vc-revert change VC state from 'added to 'unregistered.
9279         * vc-git.el (vc-git-revert): Call git reset first.
9281 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
9283         * net/newst-backend.el, net/newst-plainview.el:
9284         * net/newst-reader.el, net/newst-ticker.el:
9285         * net/newst-treeview.el, net/newsticker.el:
9286         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
9288 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
9290         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
9292         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
9293         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
9294         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
9295         Update annotation regexp.
9297         * simple.el (beginning-of-visual-line): Constrain to field
9298         boundaries (Bug#5106).
9300 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
9302         * xml.el (xml-substitute-numeric-entities): Move
9303         newsticker--decode-numeric-entities in newst-backend.el to
9304         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
9305         * net/newst-backend.el (newsticker--parse-generic-feed)
9306         (newsticker--parse-generic-items)
9307         (newsticker--decode-numeric-entities): Move
9308         newsticker--decode-numeric-entities in newst-backend.el to
9309         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
9311 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
9313         * progmodes/js.el (js--js-not): Add null to the list of values.
9315 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
9317         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
9319 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9321         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
9322         delimiter if it is at the end of the current line.
9323         (bibtex-generate-url-list): Fix docstring.
9325 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9327         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
9328         minibuffer's content with itself.
9329         Fold the confirm-after-completion case into the `confirm' case.
9330         (completion-pcm-word-delimiters): Add : and / to the delimiters.
9332 2009-12-06  Kevin Ryde  <user42@zip.com.au>
9334         * ffap.el (ffap-rfc-path): Make this a defcustom since
9335         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
9337         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
9338         manuals, similar to existing setup for help-mode.  (Bug#3913.)
9340 2009-12-05  Juri Linkov  <juri@jurta.org>
9342         Save and restore dired buffer's point positions too.  (Bug#4880)
9344         * dired.el (dired-save-positions): Return in the first element
9345         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
9346         Doc fix.
9347         (dired-restore-positions): First restore buffer's position.
9348         While restoring window's positions, check if window still displays
9349         the original buffer.
9351 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
9353         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
9354         if possible.
9356         * shell.el (shell): Require ansi-color (Bug#5113).
9358         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
9360         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
9362 2009-12-05  Alan Mackenzie  <acm@muc.de>
9364         * progmodes/cc-mode.el (c-before-hack-hook)
9365         (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
9366         `c-file-style' to work again.  This reversion restores the current
9367         software to its state in Emacs 23.1.  (Bug#4146)
9369 2009-12-05  Kevin Ryde  <user42@zip.com.au>
9371         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
9372         comment-start-skip to comment-end-skip as comment (Bug#4781).
9374 2009-12-05  Juri Linkov  <juri@jurta.org>
9376         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
9377         for virtual nodes.  (Bug#4147)
9378         (Info-find-node-2): Set `Info-current-node-virtual' to nil
9379         when moving from a virtual node.
9380         (Info-mode-menu): Add `Info-virtual-index' to the menu.
9381         (Info-mode): Add `Info-virtual-index' to the docstring.
9383 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9385         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
9386         track of the buffer position of the end of a BibTeX entry as this
9387         position may change during reformatting.
9388         (bibtex-format-entry): Remove whitespace before processing
9389         numerical fields so that we recognize the latter properly.
9390         (bibtex-reformat): Do not use push which changes the global value
9391         of bibtex-entry-format.
9392         (bibtex-field-braces-alist, bibtex-field-strings-alist)
9393         (bibtex-field-re-init): Replace only space characters by regexp
9394         for whitespace.
9395         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
9396         (bibtex-initialize): Also update bibtex-strings.
9397         (bibtex-kill-field): Preserve white space at end of entry.
9398         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
9399         Update bibtex-reference-keys.
9401 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9403         * minibuffer.el (completion-pcm--merge-try): Also consider placing
9404         point after a star, if that's the only place where modifications can
9405         make progress.
9407 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
9409         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
9410         in docstrings.
9412 2009-12-04  Juri Linkov  <juri@jurta.org>
9414         * proced.el (proced): Call `(proced-update t)' to update process
9415         information instead of only running proced-post-display-hook.
9416         (proced-send-signal): Add a leading space to the buffer name
9417         " *Marked Processes*" to make this buffer ephemeral.
9419 2009-12-04  Juri Linkov  <juri@jurta.org>
9421         * dired.el (dired-auto-revert-buffer): New defcustom.
9422         (dired-internal-noselect): Use it.
9424 2009-12-04  Juri Linkov  <juri@jurta.org>
9426         Change roles of modes and functions in image-mode.el (Bug#5062).
9428         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
9429         in `auto-mode-alist'.
9430         (image-mode-previous-major-mode): New variable.
9431         (image-minor-mode-map): Rename from `image-mode-text-map'.
9432         (image-mode): Move graceful error-handling code from
9433         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
9434         (image-minor-mode): Remove all image-handling code.
9435         Replace `image-mode-text-map' with `image-minor-mode-map'.
9436         Check for `image-type' in mode-line format string.
9437         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
9438         (image-mode-as-text): New function with most code from
9439         `image-mode-maybe'.
9440         (image-toggle-display-text): Move code that removes image
9441         properties from `image-toggle-display' to here.
9442         (image-toggle-display-image): New function with code that adds
9443         image properties copied from `image-toggle-display'.
9444         (image-toggle-display): Remove most code with leaving only code
9445         that toggles between `image-mode-as-text' and `image-mode'.
9447 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
9449         * net/newst-treeview.el
9450         (newsticker--treeview-list-highlight-start): Restored call to
9451         save-excursion: Selected item was stuck.
9452         (newsticker--treeview-list-select): New.
9453         (newsticker--treeview-item-show-text)
9454         (newsticker--treeview-item-show)
9455         (newsticker--treeview-item-update): Use new
9456         newsticker-treeview-item-mode.
9457         (newsticker-treeview-update): Keep current item.
9458         (newsticker-treeview-next-new-or-immortal-item): Doc change.
9459         (newsticker--treeview-first-feed): Doc change.
9460         (newsticker-treeview-list-menu)
9461         (newsticker-treeview-item-menu): Added menu entries.
9462         (newsticker-treeview-item-mode): New.
9464         * net/newst-backend.el (newsticker-customize): Delete other
9465         windows.
9467 2009-12-04  Sam Steingold  <sds@gnu.org>
9469         * log-view.el (log-view-mode-map): "q" calls quit-window,
9470         like in all the other non-self-insert buffers.
9472 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9474         Minor cleanup.
9475         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
9476         key decoding rather than do it manually via last-input-event +
9477         ascii-character.
9478         (term-exec): Use delete-and-extract-region.
9479         (term-handle-ansi-terminal-messages): Remove unused var `end'.
9480         (term-process-pager): Remove unused var `i'.
9481         (term-dynamic-simple-complete): Make obsolete.
9482         (serial-update-config-menu): Remove unused vars `y' and `str'.
9483         (term-update-mode-line): Remove unused var `temp'.
9485 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
9487         Limit the number of log entries displayed by default.
9488         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
9489         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
9490         using a prefix argument.
9492 2009-12-03  Glenn Morris  <rgm@gnu.org>
9494         * progmodes/idlwave.el (class): Restore still useful declaration.
9496 2009-12-03  Alan Mackenzie  <acm@muc.de>
9498         Enhance `c-parse-state' to run efficiently in "brace deserts".
9500         * progmodes/cc-mode.el (c-basic-common-init):
9501         Call c-state-cache-init.
9502         (c-neutralize-syntax-in-and-mark-CPP): Rename from
9503         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
9504         placing `category' properties value 'c-cpp-delimiter at its boundaries.
9506         * progmodes/cc-langs.el (c-before-font-lock-function):
9507         c-extend-and-neutralize-syntax-in-CPP has been renamed
9508         c-neutralize-syntax-in-and-mark-CPP.
9510         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
9511         with `category' properties now, not `syntax-table' ones.
9513         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
9514         enhanced (but slower) version of c-end-of-macro that won't land
9515         inside a literal or on another awkward character.
9516         (c-state-cache-too-far, c-state-cache-start)
9517         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
9518         (c-state-nonlit-pos-cache-limit, c-state-point-min)
9519         (c-state-point-min-lit-type, c-state-point-min-lit-start)
9520         (c-state-min-scan-pos, c-state-brace-pair-desert)
9521         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
9522         buffer local variables.
9523         (c-state-literal-at, c-state-lit-beg)
9524         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
9525         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
9526         (c-state-cache-top-paren, c-state-cache-after-top-paren)
9527         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
9528         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
9529         (c-renarrow-state-cache)
9530         (c-append-lower-brace-pair-to-state-cache)
9531         (c-state-push-any-brace-pair, c-append-to-state-cache)
9532         (c-remove-stale-state-cache)
9533         (c-remove-stale-state-cache-backwards, c-state-cache-init)
9534         (c-invalidate-state-cache-1, c-parse-state-1)
9535         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
9536         (c-parse-state): Enhance and refactor.
9537         (c-debug-parse-state): Amend to deal with all the new variables.
9539         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
9540         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
9541         modify to use category text properties rather than syntax-table ones.
9542         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
9543         to switch off/on the syntactic paren property of C++ template
9544         delimiters using the category property.
9545         (c-with-<->-as-parens-suppressed): Macro to invoke code with
9546         template delims suppressed.
9547         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
9548         New constant/macros which apply category properties to the start
9549         and end of preprocessor constructs.
9550         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
9551         "comment out" the syntactic value of characters in preprocessor
9552         constructs.
9553         (c-with-cpps-commented-out)
9554         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
9555         with characters in all or all but one preprocessor constructs
9556         "commented out".
9558 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9560         * proced.el (proced-filter-alist): Use regexp-quote.
9562 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
9564         Cleanup.
9565         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
9566         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
9567         arguments.  Expand `default-directory'.
9569         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
9570         the benefit of returning an expanded localname.
9571         (tramp-tramp-file-p): Handle the case NAME is not a string.
9573 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
9575         Add support for bzr shelve/unshelve.
9576         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
9577         (vc-bzr-extra-menu-map): New variables.
9578         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
9579         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
9580         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
9581         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
9582         (vc-bzr-dir-extra-headers): Display shelves.
9584         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
9586 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9588         * textmodes/bibtex.el (bibtex-complete-internal):
9589         Use completion-in-region.
9590         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
9592 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
9594         Support applying stashes.  Improve UI.
9595         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
9596         (vc-git-stash-apply, vc-git-stash-pop)
9597         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
9598         (vc-git-stash-menu): New functions.
9599         (vc-git-stash-menu-map): New variable.
9600         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
9602 2009-12-03  Glenn Morris  <rgm@gnu.org>
9604         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
9605         (vc-print-log-internal): Fix previous change.
9606         (vc-revert): Correct pluralization.
9608 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9610         * progmodes/make-mode.el (makefile-special-targets-list): No need for
9611         it to be an alist any more.
9612         (makefile-complete): Use completion-in-region.
9614         * progmodes/octave-mod.el (octave-complete-symbol):
9615         Use completion-in-region.
9617         Misc cleanup.
9618         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
9619         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
9620         (idlwave-complete-class): Don't quote lambda.
9621         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
9622         (idlwave-mode-map): Move initialization into declaration.
9623         (idlwave-action-and-binding): Use backquotes.
9624         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
9625         Simplify.
9626         (idlwave-is-pointer-dereference): Remove unused var `pos'.
9627         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
9628         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
9629         `parts', and `all-parts'.
9630         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
9631         (idlwave-convert-xml-system-routine-info): Remove unused string
9632         `version-string'.
9633         (idlwave-display-user-catalog-widget): Use dolist.
9634         (idlwave-scanning-lib): Declare dynamically-scoped var.
9635         (idlwave-scan-library-catalogs): Remove unused var `flags'.
9636         (completion-highlight-first-word-only): Declare to silence bytecomp.
9637         (idlwave-popup-select): Tighten scope of `resp'.
9638         (idlwave-find-struct-tag): Remove unused var `beg'.
9639         (idlwave-after-load-rinfo-hook): Declare.
9640         (idlwave-sintern-class-info): Remove unused var `taglist'.
9641         (idlwave-find-class-definition): Remove unused var `list'.
9642         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
9643         (idlwave-what-module-find-class): Remove unused var `classes'.
9645 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
9647         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
9649 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9651         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
9652         buffers visited.  Remove redundant current-buffer-saving.
9654 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9656         Use completion-in-buffer and remove uses of dynamic scoping.
9657         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
9658         (pascal-buffer-to-use, pascal-flag): Don't declare.
9659         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
9660         (pascal-get-completion-decl, pascal-keyword-completion):
9661         Add `pascal-str' argument, save-excursion,
9662         return the found completions, and don't filter with pascal-pred.
9663         (pascal-completion-cache): New var.
9664         (pascal-completion): Don't switch buffer any more (it was never
9665         necessary).  Don't save-excursion any more (it's done by the called
9666         subroutines).  Use a cache to avoid redundant computations.
9667         Use complete-with-action rather than pascal-completion-response and
9668         let it apply the predicate as well.
9669         (pascal-complete-word): Use completion-in-buffer when
9670         pascal-toggle-completions is nil.
9671         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
9672         not used any more.
9673         (pascal-comp-defun): Don't change buffer any more.
9674         Use complete-with-action rather than pascal-completion-response and
9675         let it apply the predicate as well.
9676         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
9677         when neded.
9679 2009-12-02  Kenichi Handa  <handa@m17n.org>
9681         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
9682         shape for all Indic scripts.
9684 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9686         Use completion-in-buffer.
9687         * wid-edit.el (widget-field-text-end): New function.
9688         (widget-field-value-get): Use it.
9689         (widget-string-complete, widget-file-complete)
9690         (widget-color-complete): Use it and completion-in-region.
9691         (widget-complete): Don't narrow the buffer.
9693 2009-12-02  Glenn Morris  <rgm@gnu.org>
9695         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
9696         (rmail-select-summary): Use rmail-pop-to-buffer.
9697         * mail/rmailsum.el: Replace all pop-to-buffer calls with
9698         rmail-pop-to-buffer, to prevent horizontal splits.
9700         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
9701         save-excursion with save-current-buffer.
9702         Widen before searching.  (Bug#5093)
9703         (diary-list-sexp-entries): Remove superfluous save-excursion.
9705 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
9707         * woman.el (woman-make-bufname): Handle man-pages with "." in the
9708         name.  (Bug#5038)
9710 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
9712         * ido.el (ido-file-internal): Handle filenames at point that do
9713         not have a directory part.  (Bug#5049)
9715 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
9717         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
9718         (mpc-songs-jump-to, mpc-resume): Doc fixes.
9720 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
9722         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
9723         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
9724         any more.
9726 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9728         * comint.el (comint-insert-input): Ignore clicks to the right of
9729         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
9731         * vc.el (vc-print-log-internal): Don't wait for the process to
9732         terminate before setting up the major mode.
9734         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
9735         in case.
9737         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
9738         the last element.
9740         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
9742 2009-12-01  Glenn Morris  <rgm@gnu.org>
9744         * window.el (window--display-buffer-2): Fix previous changes.
9746 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
9748         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
9750 2009-12-01  Glenn Morris  <rgm@gnu.org>
9752         * Makefile.in (ELCFILES): Add mpc.elc.
9754 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9756         * mpc.el: New file.
9758 2009-12-01  Glenn Morris  <rgm@gnu.org>
9760         * window.el (window-to-use): Define for compiler.
9762         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
9763         consistent with others (no final period).
9765         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
9766         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
9768 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
9770         Make vc-print-log buttons work.
9771         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
9773 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
9775         * savehist.el (savehist-autosave-interval): Allow setting to nil
9776         through customize.  (Bug#5056)
9778 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
9780         Fix references to jit-lock properties.
9781         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
9782         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
9783         (perl-font-lock-special-syntactic-constructs):
9784         Quote jit-lock-defer-multiline property.
9786 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
9788         * vc-git.el (vc-git-registered): Call vc-git-root only once.
9790 2009-11-30  Juri Linkov  <juri@jurta.org>
9792         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
9793         value `buffer' of `multi-isearch-next-buffer-current-function'.
9794         Use `(current-buffer)' when `buffer' is nil.
9795         (multi-isearch-next-buffer-from-list): Don't fallback to
9796         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
9798 2009-11-30  Juri Linkov  <juri@jurta.org>
9800         * misearch.el (multi-isearch-read-buffers): Move canonicalization
9801         of buffers with `get-buffer' to `multi-isearch-buffers'.
9802         (multi-isearch-buffers, multi-isearch-buffers-regexp):
9803         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
9804         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
9805         FILES with `expand-file-name' converting relative file names
9806         to absolute.  Doc fix.  (Bug#4727)
9808 2009-11-30  Juri Linkov  <juri@jurta.org>
9810         * misearch.el (multi-isearch-read-buffers)
9811         (multi-isearch-read-matching-buffers): New functions.
9812         (multi-isearch-buffers, multi-isearch-buffers-regexp):
9813         Use them in the `interactive' spec.  Doc fix.
9814         (multi-isearch-read-files, multi-isearch-read-matching-files):
9815         New functions.
9816         (multi-isearch-files, multi-isearch-files-regexp):
9817         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
9819 2009-11-30  Juri Linkov  <juri@jurta.org>
9821         * doc-view.el (doc-view-continuous):
9822         Rename from `doc-view-continuous-mode'.
9823         (doc-view-menu): Move "Toggle display" to the top.
9824         Add submenu "Continuous" with radio buttons "Off"/"On"
9825         and "Save as Default".
9826         (doc-view-scroll-up-or-next-page)
9827         (doc-view-scroll-down-or-previous-page)
9828         (doc-view-next-line-or-next-page)
9829         (doc-view-previous-line-or-previous-page): Rename
9830         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
9832 2009-11-30  Juri Linkov  <juri@jurta.org>
9834         * comint.el (comint-mode-map): Rebind `M-r' from
9835         `comint-previous-matching-input' to
9836         `comint-history-isearch-backward-regexp'.
9837         Unbind `M-s' to allow global key binding `M-s'.
9838         Add menu items for `comint-history-isearch-backward' and
9839         `comint-history-isearch-backward-regexp'.  (Bug#3746)
9841 2009-11-30  Juri Linkov  <juri@jurta.org>
9843         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
9844         For def=recenter, replace `recenter' with `recenter-top-bottom'
9845         that is called with `this-command' and `last-command' let-bound
9846         to `recenter-top-bottom'.  When the last `def' was not `recenter',
9847         set `recenter-last-op' to nil.  (Bug#4981)
9849 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9851         Minor cleanup and simplification.
9852         * filecache.el (file-cache-add-directory)
9853         (file-cache-add-directory-recursively)
9854         (file-cache-add-from-file-cache-buffer)
9855         (file-cache-delete-file-regexp, file-cache-delete-directory)
9856         (file-cache-files-matching-internal, file-cache-display): Use dolist.
9857         (file-cache-temp-minibuffer-message): Delete function.
9858         (file-cache-minibuffer-complete): Use minibuffer-message instead.
9860         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
9861         Don't signal an error when bumping into EOB in tr, s, or y.
9863 2009-11-29  Juri Linkov  <juri@jurta.org>
9865         * startup.el (fancy-about-text): Fix wording of Guided Tour.
9866         (Bug#4960)
9868         * descr-text.el (describe-char-unidata-list): Use lowercase name
9869         for "Unicode name" like in other tags.
9871 2009-11-29  Juri Linkov  <juri@jurta.org>
9873         * ediff-util.el (ediff-minibuffer-with-setup-hook):
9874         New compatibility macro.
9875         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
9877 2009-11-29  Juri Linkov  <juri@jurta.org>
9879         Add defcustom to define the cycling order of `recenter-top-bottom'.
9880         (Bug#4981)
9882         * window.el (recenter-last-op): Doc fix.
9883         (recenter-positions): New defcustom.
9884         (recenter-top-bottom): Rewrite to use `recenter-positions'.
9885         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
9887 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
9889         Improve integration of Tramp and ange-ftp in eshell.
9891         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
9892         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
9893         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
9895         * eshell/esh-util.el (top): Require also Tramp when compiling.
9896         (eshell-directory-files-and-attributes): Check for FTP remote
9897         connection.
9898         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
9899         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
9900         (eshell-file-attributes): Handle ".".  Return `entry'.
9902         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
9903         (ange-ftp-directory-files-and-attributes)
9904         (ange-ftp-real-directory-files-and-attributes): New defuns.
9906         * net/tramp.el (tramp-maybe-open-connection): Open the remote
9907         shell with "exec" when possible.  This prevents trailing prompts
9908         in `start-file-process'.
9910 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9912         Try and remove assumptions about point-min==1.
9913         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
9914         (rng-compute-mode-line-string): Show the validation percentage in
9915         terms of the narrowed text, not the widened text.
9916         (rng-do-some-validation): Don't catch internal errors when debugging.
9917         (rng-first-error): Simplify.
9918         (rng-after-change-function): Remove work around.  AFAIK the bug has
9919         been fixed a while ago.
9921         * image-mode.el (image-minor-mode): Exit more gracefully when the image
9922         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
9924         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
9926         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
9927         `cd' doesn't always do it for us (bug#5067).
9929         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
9930         on 2009-10-25 as part of some other change (bug#5067).
9932 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9934         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
9935         `suspicious'.
9936         (byte-compile-warnings): Use byte-compile-warning-types.
9937         (byte-compile-save-excursion): Warn about use of set-buffer right
9938         after save-excursion.
9940         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
9941         the excursion as well.
9943 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
9945         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
9946         providing a Tramp related implementation of "su" and "sudo".
9947         (eshell-unix-initialize): Add "su" and "sudo".
9949 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
9951         * net/socks.el (socks-send-command): Convert binary request to
9952         unibyte before sending.  This fixes mishandling of some port
9953         numbers such as 129.
9955 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9957         * help.el (describe-bindings-internal): Remove `interactive'.
9959         * man.el (Man-completion-table): Trim a terminating "(".
9960         Remove the space between name page a section.
9961         Add the command's description on the `help-echo' property.
9962         Remove `process-connection-type' binding since it's unused by
9963         call-process.
9964         Provide completion for the "<section> <name>" format as well.
9965         (Man-default-man-entry): Remove spurious var shadowing the argument.
9967 2009-11-26  Kevin Ryde  <user42@zip.com.au>
9969         * log-view.el: Add "Keywords: tools", since its other keywords
9970         aren't in finder-known-keywords, and following vc.el.
9972         * sha1.el (sha1-string-external): default-directory "/" in case
9973         otherwise non-existent.  process-connection-type pipe for touch of
9974         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
9976 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9978         Misc coding convention cleanups.
9979         * htmlfontify.el (hfy-init-kludge-hook): Rename from
9980         hfy-init-kludge-hooks.
9981         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
9982         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
9983         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
9984         and push.
9985         (hfy-slant, hfy-weight): Use tables rather than code.
9986         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
9987         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
9988         (hfy-face-attr-for-class): Initialize `face-spec' directly.
9989         (hfy-face-to-css): Remove `nconc' with single arg.
9990         (hfy-p-to-face-lennart): Use `or'.
9991         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
9992         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
9993         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
9994         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
9995         (hfy-force-fontification): Use run-hooks.
9997 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
9999         Various minor fixes.
10000         * htmlfontify.el (hfy-default-header): Add toggle_invis since
10001         Javascript belongs in the header, not the body.
10002         (hfy-javascript): Remove.
10003         (hfy-fontify-buffer): Don't insert it any more.
10004         (hfy-face-at): Handle (face0 face1 face2) style face properties.
10005         Fix bug in invis handling when there were no invis props in a chunk.
10007 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10009         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
10011 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
10013         * finder.el (finder-mode-map): Add a menu.
10015 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
10017         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
10018         "unsigned" structs.
10020         (verilog-leap-to-head, verilog-backward-token): Handle "disable
10021         fork" statement better.
10023 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
10025         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
10026         (verilog-delete-auto, verilog-delete-empty-auto-pair)
10027         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
10028         Reported by Clay Douglass.
10030         (verilog-auto-inst, verilog-auto-star-safe)
10031         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
10032         Fix removing "// Interfaces" when saving .* expansions.  Reported by
10033         Pierre-David Pfister.
10035 2009-11-26  Glenn Morris  <rgm@gnu.org>
10037         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
10038         the scope.
10040 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
10042         * vc-annotate.el (vc-annotate-revision-previous-to-line):
10043         Really use previous revision.
10045 2009-11-25  Kevin Ryde  <user42@zip.com.au>
10047         * man.el (Man-completion-table): default-directory "/" in case
10048         doesn't otherwise exist.  process-environment COLUMNS=999 so as
10049         not to truncate long names.  process-connection-type pipe to avoid
10050         any chance of hitting the pseudo-tty TIOCGWINSZ.
10051         (man): completion-ignore-case t for friendliness and since man
10052         itself is case-insensitive on the command line.
10053         Further to Bug#3717.
10055         * arc-mode.el: Add "Keywords: files", so the details in its
10056         commentary can be reached from finder-by-keyword.
10057         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
10058         editing mode, but it's comms related and sgml-mode.el has "comm"
10059         on that basis too.
10060         * textmodes/bibtex-style.el: Add "Keywords: tex".
10061         * international/isearch-x.el, international/ja-dic-cnv.el:
10062         * international/ja-dic-utl.el, international/kkc.el:
10063         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
10065 2009-11-25  Juri Linkov  <juri@jurta.org>
10067         * man.el (Man-completion-table): Modify regexp to include
10068         section names to completion strings.  (Bug#3717)
10070 2009-11-25  Juri Linkov  <juri@jurta.org>
10072         Search recursively in gzipped files.  (Bug#4982)
10074         * progmodes/grep.el (grep-highlight-matches): Add new options
10075         `always' and `auto'.  Doc fix.
10076         (grep-process-setup): Check `grep-highlight-matches' for
10077         `auto-detect' to determine the need to compute grep defaults.
10078         Move Windows/DOS specific --colors settings handling
10079         to `grep-compute-defaults'.  Check `grep-highlight-matches'
10080         to get the value of "--color=".
10081         (grep-compute-defaults): Compute `grep-highlight-matches' when it
10082         has the value `auto-detect'.  Move Windows/DOS specific settings
10083         from `grep-process-setup'.
10084         (zrgrep): New command with alias `rzgrep'.
10086 2009-11-25  Juri Linkov  <juri@jurta.org>
10088         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
10089         to nil instead of switching off view-mode.  (Bug#4896)
10091 2009-11-25  Juri Linkov  <juri@jurta.org>
10093         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
10095         * mwheel.el (mwheel-scroll-up-function)
10096         (mwheel-scroll-down-function): New defvars.
10097         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
10098         `scroll-up', and `mwheel-scroll-down-function' instead of
10099         `scroll-down'.
10101         * doc-view.el (doc-view-scroll-up-or-next-page)
10102         (doc-view-scroll-down-or-previous-page): Add optional ARG.
10103         Use this ARG in the call to image-scroll-up/image-scroll-down.
10104         Change `interactive' spec to "P".  Goto next/previous page only
10105         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
10106         SPC/DEL case).  Doc fix.
10107         (doc-view-next-line-or-next-page)
10108         (doc-view-previous-line-or-previous-page): Rename arg to ARG
10109         for consistency.
10110         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
10111         `doc-view-scroll-up-or-next-page', and buffer-local
10112         `mwheel-scroll-down-function' to
10113         `doc-view-scroll-down-or-previous-page'.
10115 2009-11-25  Juri Linkov  <juri@jurta.org>
10117         Provide additional default values (directories at other Dired
10118         windows) via M-n in the minibuffer of some Dired commands.
10120         * dired-aux.el (dired-diff, dired-compare-directories)
10121         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
10122         `minibuffer-default' in `minibuffer-with-setup-hook'.
10123         (dired-dwim-target-directory): Find a window that displays Dired
10124         buffer instead of failing when the next window is not Dired.
10125         Use `get-window-with-predicate' to find for the next Dired window.
10126         (dired-dwim-target-defaults): New function.
10128         * ediff-util.el (ediff-read-file-name):
10129         Use `dired-dwim-target-defaults' to set `minibuffer-default'
10130         in `minibuffer-with-setup-hook'.
10132 2009-11-25  Juri Linkov  <juri@jurta.org>
10134         Provide additional default values (file name at point or at the
10135         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
10137         * minibuffer.el (read-file-name-defaults): New function.
10138         (read-file-name): Reset `minibuffer-default' to nil when
10139         it duplicates initial input `insdef'.
10140         Bind `minibuffer-default-add-function' to lambda that
10141         calls `read-file-name-defaults' in `minibuffer-selected-window'.
10142         (minibuffer-insert-file-name-at-point): New command.
10144         * files.el (file-name-at-point-functions): New defcustom.
10145         (find-file-default): Remove defvar.
10146         (find-file-read-args): Don't use `find-file-default'.
10147         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
10148         to `read-file-name'.
10149         (find-file-literally): Use `read-file-name' with
10150         `confirm-nonexistent-file-or-buffer'.
10152         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
10154         * dired.el (dired-read-dir-and-switches):
10155         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
10156         to `read-file-name'.
10157         (dired-file-name-at-point): New function.
10158         (dired-mode): Add hook `dired-file-name-at-point' to
10159         `file-name-at-point-functions'.
10161 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10163         Really make the *Completions* window soft-dedicated (bug#5030).
10164         * window.el (window--display-buffer-2): Add `dedicated' argument.
10165         (display-buffer): Pass it when needed so the dedicated flag is set
10166         after calling set-window-buffer, which would otherwise reset it.
10168 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10170         * progmodes/meta-mode.el (meta-complete-symbol):
10171         * progmodes/etags.el (complete-tag):
10172         * mail/mailabbrev.el (mail-abbrev-complete-alias):
10173         Use completion-in-region.
10175         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
10176         (dabbrev-completion): Use completion-in-region.
10177         (dabbrev--abbrev-at-point): Simplify regexp.
10179         * abbrev.el (abbrev--before-point): Use word-motion functions
10180         if :regexp is not specified (bug#5031).
10182         * subr.el (string-prefix-p): New function.
10184         * man.el (Man-completion-cache): New var.
10185         (Man-completion-table): Use it.
10187         * vc.el (vc-print-log-internal): Make `limit' optional for better
10188         compatibility (e.g. with vc-annotate.el).
10190 2009-11-24  Kevin Ryde  <user42@zip.com.au>
10192         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
10193         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
10195         * emacs-lisp/elint.el (elint-add-required-env): Better error message
10196         when .el source file not found or other error.
10198 2009-11-24  Markus Triska  <markus.triska@gmx.at>
10200         * linum.el (linum-update-window): Ignore intangible (bug#4996).
10202 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10204         Handle the [back] button properly (bug#4979).
10205         * descr-text.el (describe-text-properties): Add a `buffer' argument.
10206         Use help-setup-xref, help-buffer, and with-help-window.
10207         (describe-char): Add `buffer' argument.
10208         Pass proper command to help-setup-xref.  Don't meddle with
10209         help-xref-stack-item directly.
10210         (describe-text-category): Use with-help-window and help-buffer.
10212         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
10213         for the displayed buffer (bug#4887).
10215         * man.el (Man-completion-table): New function.
10216         (man): Use it.
10218 2009-11-24  David Reitter  <david.reitter@gmail.com>
10220         * vc-git.el (vc-git-registered): Use checkout directory (where
10221         .git is) rather than the file's directory and a relative path spec
10222         to work around a bug in git.
10224 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
10226         Improve handling of processes on remote hosts.
10228         * eshell/esh-util.el (eshell-path-env): New defvar.
10229         (eshell-parse-colon-path): New defun.
10230         (eshell-file-attributes): Use `eshell-parse-colon-path'.
10232         * eshell/esh-ext.el (eshell-search-path):
10233         Use `eshell-parse-colon-path'.
10234         (eshell-remote-command): Remove argument HANDLER.
10235         (eshell-external-command): Check for FTP remote connection.
10237         * eshell/esh-proc.el (eshell-gather-process-output):
10238         Use `file-truename', in order to start also symlinked files.
10239         Apply `start-file-process' instead of `start-process'.
10240         Shorten `command' to the local file name part.
10242         * eshell/em-cmpl.el (eshell-complete-commands-list):
10243         Use `eshell-parse-colon-path'.
10245         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
10247         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
10248         to `eshell-directory-change-hook'.
10250 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
10252         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
10253         because it could be enabled automatically if view-read-only is non-nil.
10255 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
10257         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
10258         made on 2009-11-22.
10260 2009-11-24  Glenn Morris  <rgm@gnu.org>
10262         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
10263         deleted variable bookmark-bmenu-bookmark-column.
10265 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10267         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
10269 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
10271         * net/browse-url.el (browse-url-filename-alist): On Windows, add
10272         two slashes to the "file:" prefix.
10273         (browse-url-file-url): De-munge Cygwin filenames before passing
10274         them to Windows browser.
10275         (browse-url-default-windows-browser): Use call-process.
10277 2009-11-23  Juri Linkov  <juri@jurta.org>
10279         Implement DocView Continuous mode.  (Bug#4896)
10280         * doc-view.el (doc-view-continuous-mode): New defcustom.
10281         (doc-view-mode-map): Bind C-n/<down> to
10282         `doc-view-next-line-or-next-page', C-p/<up> to
10283         `doc-view-previous-line-or-previous-page'.
10284         (doc-view-next-line-or-next-page)
10285         (doc-view-previous-line-or-previous-page): New commands.
10287 2009-11-23  Juri Linkov  <juri@jurta.org>
10289         Implement Isearch in comint input history.  (Bug#3746)
10290         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
10291         `isearch-mode-hook'.
10292         (comint-history-isearch): New defcustom.
10293         (comint-history-isearch-backward)
10294         (comint-history-isearch-backward-regexp): New commands.
10295         (comint-history-isearch-message-overlay): New buffer-local variable.
10296         (comint-history-isearch-setup, comint-history-isearch-end)
10297         (comint-goto-input, comint-history-isearch-search)
10298         (comint-history-isearch-message, comint-history-isearch-wrap)
10299         (comint-history-isearch-push-state)
10300         (comint-history-isearch-pop-state): New functions.
10302 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
10304         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
10305         return.
10306         (tramp-handle-make-symbolic-link)
10307         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
10308         Quote file names.
10309         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
10310         (tramp-handle-process-file): Use it.
10312 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10314         * window.el (move-to-window-line-last-op): Remove.
10315         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
10317 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
10319         Make M-r mirror the new cycling behavior of C-l.
10320         * window.el (move-to-window-line-last-op): New var.
10321         (move-to-window-line-top-bottom): New command.
10322         (global-map): Bind M-r move-to-window-line-top-bottom.
10324 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
10326         * dired-x.el (dired-guess-shell-alist-default):
10327         Support xz format.  (Bug#4953)
10329 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
10331         * emulation/viper-cmd.el: Use viper-last-command-char instead of
10332         last-command-char/last-command-event.
10333         (viper-prefix-arg-value): Do correct conversion of event-char for
10334         XEmacs.
10336         * emulation/viper-util.el, emulation/viper.el:
10337         Use viper-last-command-char instead of
10338         last-command-char/last-command-event.
10340         * ediff-init.el, ediff-mult.el, ediff-util.el:
10341         Replace last-command-char and last-command-event
10342         with (ediff-last-command-char) everywhere.
10344         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
10345         created in fundamental mode.
10347         * ediff.el (ediff-version): Revert the change of interactive-p to
10348         called-interactively-p.
10350 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
10352         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
10353         generation from word-movement command names.
10355 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
10357         * cus-start.el (all): Add native condition for font-use-system-font.
10359 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
10361         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
10362         Correct the patch from 2009-11-18.  (Bug#3910)
10364 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
10366         * progmodes/subword.el: Rename from lisp/subword.el.
10368         * subword.el: Rename to progmodes/subword.el.
10370         * Makefile.in (ELCFILES): Adapt to subword.el move.
10372 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10373             Stefan Monnier  <monnier@iro.umontreal.ca>
10375         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
10376         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
10377         (bookmark-bmenu-show-filenames): Use push.
10378         (bookmark-bmenu-hide-filenames): Use local var instead of
10379         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
10380         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
10381         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
10382         filenames now that the bookmark names are always available.
10384 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10386         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
10387         (bookmark-search-pattern): Move and leave unbound.
10388         (bookmark-bmenu-mode-map): Change binding.
10389         (bookmark-read-search-input): Simplify.
10390         Don't use text-char-description.  Don't error on non-char events.
10391         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
10392         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
10393         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
10394         Use a local var for the timer.
10395         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
10396         (i.e. bookmark-bmenu-search).
10398 2009-11-21  Glenn Morris  <rgm@gnu.org>
10400         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
10402 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
10404         * net/browse-url.el (browse-url-default-windows-browser):
10405         Use cygstart for cygwin.
10407 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
10409         * bookmark.el: Formatting and doc fixes only:
10410         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
10411         (bookmark-bmenu-search): Wrap to fit within 80 columns.
10412         Minor grammar and punctuation fixes in doc string.
10413         (bookmark-read-search-input): Adjust to fit within 80 columns.
10415 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
10417         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
10418         (c-backward-into-nomenclature): Adapt to subword renaming.
10420         * subword.el (subword-forward, subword-backward, subword-mark)
10421         (subword-kill, subword-backward-kill, subword-transpose)
10422         (subword-downcase, subword-upcase, subword-capitalize)
10423         (subword-forward-internal, subword-backward-internal):
10424         Rename from forward-subword, backward-subword, mark-subword,
10425         kill-subword, backward-kill-subword, transpose-subwords,
10426         downcase-subword, upcase-subword, capitalize-subword,
10427         forward-subword-internal, backward-subword-internal.
10429 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10431         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
10432         New options.
10433         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
10434         New vars.
10435         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
10436         (bookmark-bmenu-filter-alist-by-regexp)
10437         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
10438         (bookmark-bmenu-search): New command.
10439         (bookmark-bmenu-mode-map): Bind it.
10441 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
10443         * progmodes/cc-cmds.el: declare-functioned forward-subword and
10444         backward-subword to quit the byte-compiler.
10446         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
10448         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
10450         * progmodes/cc-cmds.el (c-update-modeline)
10451         (c-forward-into-nomenclature, c-backward-into-nomenclature):
10452         Refer to subword.el functions instead of cc-subword.el.
10454         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
10455         subword.el functions instead of cc-subword.el.
10457         * progmodes/cc-subword.el: Rename to subword.el.
10458         * subword.el: Rename from progmodes/cc-subword.el.
10459         (subword-mode-map): Rename from c-subword-mode-map.
10460         (subword-mode): Rename from c-subword-mode.
10461         (global-subword-mode): New global minor mode.
10462         (forward-subword): Rename from c-forward-subword.
10463         (backward-subword): Rename from c-backward-subword.
10464         (mark-subword): Rename from c-mark-subword.
10465         (kill-subword): Rename from c-kill-subword.
10466         (backward-kill-subword): Rename from c-backward-kill-subword.
10467         (transpose-subwords): Rename from c-tranpose-subword.
10468         (downcase-subword): Rename from c-downcase-subword.
10469         (capitalize-subword): Rename from c-capitalize-subword.
10470         (forward-subword-internal): Rename from c-forward-subword-internal.
10471         (backward-subword-internal): Rename from c-backward-subword-internal.
10473 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
10475         * vc.el (vc-deduce-fileset): Allow non-state changing operations
10476         from a dired buffer.
10477         (vc-dired-deduce-fileset): New function.
10478         (vc-root-diff, vc-print-root-log): Use it.
10480         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
10481         nil LIMIT argument to vc-print-log-internal.
10483 2009-11-20  Glenn Morris  <rgm@gnu.org>
10485         * Makefile.in (ELCFILES): Regenerate.
10487 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
10489         * calc/calc.el (calc-set-mode-line):
10490         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
10491         (math-format-number): Rename `math-format-complement-signed' to
10492         `math-format-twos-complement'.
10494         * calc/calc-bin.el (math-format-twos-complement): Rename from
10495         math-format-complement-signed.
10496         (calc-radix): Rename `calc-complement-signed-mode' to
10497         `calc-twos-complement-mode'.
10498         (calc-octal-radix, calc-hex-radix): Add an argument for
10499         two's complement.
10501         * calc/calc-embed.el (calc-embedded-mode-vars):
10502         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
10504         * calc/calc-ext.el (calc-init-extensions):
10505         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
10506         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
10508         * calc/calc-units.el (math-build-units-table-buffer):
10509         Let `calc-twos-complement-mode' be nil.
10511         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
10512         entries.
10514         * calc/calc-vec.el (calcFunc-vunpack):
10515         * calc/calc-aent.el (calc-do-calc-eval):
10516         * calc/calc-forms.el (math-format-date):
10517         * calc/calc-graph.el (calc-graph-plot):
10518         * calc/calc-math.el (math-use-emacs-fn):
10519         * calc/calccomp.el (math-compose-expr):
10520         Let `calc-twos-complement-mode' be nil.
10522 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10524         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
10525         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
10526         * minibuffer.el (completion-in-region-functions): New hook.
10527         (completion-in-region): New function.
10528         * emacs-lisp/lisp.el (lisp-complete-symbol):
10529         * pcomplete.el (pcomplete-std-complete): Use it.
10531 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10533         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
10534         (latex-complete-alist): New vars.
10535         (latex-string-prefix-p, latex-complete-bibtex-keys)
10536         (latex-complete-envnames, latex-complete-refkeys)
10537         (latex-complete-data): New functions.
10538         (latex-complete, latex-indent-or-complete): New commands.
10540         * window.el (display-buffer-mark-dedicated): New var.
10541         (display-buffer): Obey it.
10542         * minibuffer.el (minibuffer-completion-help): Use it.
10544         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
10546         * filecache.el (file-cache-add-file): Use push and cons.
10547         (file-cache-delete-file-regexp): Use push.
10548         (file-cache-complete): Use completion-in-region.
10550         * simple.el (with-wrapper-hook): Fix thinko.
10552         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
10553         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
10554         Use with-current-buffer and string-to-number.
10555         (hfy-fallback-colour-values): Use assoc-string.
10556         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
10557         (hfy-face-at): Remove unused var `found-face'.
10558         (hfy-compile-stylesheet): Remove unused var `css'.
10559         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
10560         and `orig-buffer'.
10561         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
10562         Use with-current-buffer.
10563         (hfy-text-p): Use expand-file-name and fewer setq.
10565 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
10567         * htmlfontify.el, hfy-cmap.el: New files.
10569 2009-11-19  Juri Linkov  <juri@jurta.org>
10571         * minibuffer.el (completions-format): New defcustom.
10572         (completion--insert-strings): Implement vertical format.
10574         * simple.el (switch-to-completions): Move point to the first
10575         completion when point was at the beginning of the buffer.
10577 2009-11-19  Juri Linkov  <juri@jurta.org>
10579         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
10581         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
10583 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
10585         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
10586         (mail-signature): Change default to t.
10587         (mail-from-style): Deprecate `system-default' value.
10588         (mail-insert-from-field): For default value of mail-from-style,
10589         default to `angles' unless `angles' needs quoting and `parens'
10590         does not.
10591         (mail-citation-prefix-regexp): Use citation regexp from
10592         message-mode.
10594 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
10596         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
10597         Set variables for computing the prompt for reading password.
10599 2009-11-19  Glenn Morris  <rgm@gnu.org>
10601         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
10603         * textmodes/flyspell.el (sgml-lexical-context): Declare.
10605         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
10606         (newsticker-treeview-listwindow-height): Fix custom type.
10608 2009-11-19  Kenichi Handa  <handa@m17n.org>
10610         * descr-text.el (describe-char-padded-string): Compose with TAB
10611         only if there's a font for CH.
10612         (describe-char): Fix the condition for detecting a trivial composition.
10614 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
10616         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
10617         more accurate version of the regexp.  (Bug#3910)
10619 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
10621         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
10623 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
10625         * font-setting.el (font-use-system-font): Declare for byte-compiler.
10626         (font-setting-change-default-font): Fix typo in docstring.
10628 2009-11-18  Alan Mackenzie  <acm@muc.de>
10630         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
10632 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
10634         * font-setting.el (font-use-system-font): Move ...
10636         * cus-start.el (all): ... to here.
10638 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
10640         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
10641         Don't set `ad-return-value' if `ad-do-it' doesn't.
10643         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
10644         modification time.
10646 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
10648         * menu-bar.el: Put "Use system font" in Option-menu.
10649         (menu-bar-options-save): Add font-use-system-font.
10651         * loadup.el: If feature system-font-setting or font-render-setting is
10652         there, load font-setting.
10654         * Makefile.in (ELCFILES): Add font-settings.el.
10655         * font-setting.el: New file.
10657 2009-11-17  Glenn Morris  <rgm@gnu.org>
10659         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
10661         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
10662         Preserve point in the list buffer.  (Bug#4939)
10663         Use point-at-eol.
10664         (newsticker--treeview-list-update-highlight)
10665         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
10667 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
10669         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
10670         Remove.
10672         * calc/calc-ext.el (calc-init-extensions): Remove references to
10673         symclip.
10675         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
10677         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
10678         * calc/calc-help.el (calc-b-prefix-help): Remove references to
10679         `calc-symclip'.
10681 2009-11-16  Kevin Ryde  <user42@zip.com.au>
10683         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
10684         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
10686         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
10687         (lm-keywords-list): Allow comma-only separator like "foo,bar".
10688         Ignore trailing spaces by omit-nulls to split-string (fixing
10689         regression from Emacs 21 due to the incompatible split-string
10690         change).  (Bug #4928.)
10692 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
10694         * vc.el (vc-log-show-limit): Default to 2000.
10695         (vc-print-log-internal): Insert buttons to request more entries
10696         when limiting the output.
10698         * vc-sccs.el (vc-sccs-print-log):
10699         * vc-rcs.el (vc-rcs-print-log):
10700         * vc-cvs.el (vc-cvs-print-log):
10701         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
10702         LIMIT is non-nil.
10704 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
10706         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
10707         error when `tramp-gvfs-dbus-event-vector' is set.
10708         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
10710 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10712         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
10714 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
10716         * net/dbus.el (dbus-unregister-service): New defun.
10717         (dbus-register-property): Register the handlers of
10718         "org.freedesktop.DBus.Properties" for SERVICE.
10719         (dbus-property-handler): Fix docstring.
10721 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10723         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
10724         Quote doc string reference in defvaralias as it is not in special form.
10725         (byte-compile-output-docform): Doc fix.
10727 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
10729         * calc/calc.el (math-2-word-size, math-half-2-word-size)
10730         (calc-complement-signed-mode): New variables.
10731         (calc-set-mode-line): Add indicator for twos-complements.
10732         (math-format-number): Format twos-complement notation.
10734         * calc/calc-bin.el (calc-word-size): Reset the variables
10735         `math-2-word-size' and `math-half-2-word-size'.
10736         (math-format-complement-signed, math-symclip, calcFunc-symclip)
10737         (calc-symclip): New functions.
10739         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
10741         * calc/calc-embed.el (calc-embedded-mode-vars):
10742         Add `calc-complement-signed-mode' to the list of modes.
10744         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
10745         (calc-b-oper-keys): Add `calc-symclip' to list.
10747         * calc/calc-ext.el (math-read-number-fancy): Read complement
10748         signed numbers.
10749         (calc-init-extensions): Add binding for `calc-symclip'.
10750         Add autoload for `calcFunc-symclip' and `calc-symclip'.
10752         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
10753         `calc-symclip'.
10754         (calc-modes-menu): Add item for twos complement mode.
10756         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
10758 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
10760         * register.el (jump-to-register, insert-register): Handle Semantic
10761         tags.  From commented-out advice in semantic/senator.el.
10763 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
10765         * vc.el (vc-log-show-limit): New variable.
10766         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
10767         when using a prefix argument.
10768         (vc-print-log-internal): Add new argument LIMIT.
10770         * vc-svn.el (vc-svn-print-log):
10771         * vc-mtn.el (vc-mtn-print-log):
10772         * vc-hg.el (vc-hg-print-log):
10773         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
10774         pass it to the log command when set.  Make the BUFFER argument
10775         non-optional.
10777         * vc-sccs.el (vc-sccs-print-log):
10778         * vc-rcs.el (vc-rcs-print-log):
10779         * vc-git.el (vc-git-print-log):
10780         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
10781         ignore it.  Make the BUFFER argument non-optional
10783         * bindings.el (mode-line-buffer-identification): Do not purecopy.
10785 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
10787         * dired.el (dired-mode-map): Move encryption items to "Operate"
10788         menu (Bug#4703).
10790         * strokes.el (strokes-update-window-configuration): Make strokes
10791         buffer current before erasing (Bug#4906).
10793 2009-11-15  Juri Linkov  <juri@jurta.org>
10795         * simple.el (set-mark-default-inactive): Add :type, :group
10796         and :version.  (Bug#4876)
10798 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
10800         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
10801         (archive-unique-fname): ... here.  (Bug#4929)
10803 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10805         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
10806         with a real fix.
10808         * novice.el (disabled-command-function): Add useful args.
10809         Setup the help buffer so that [back] works.
10810         Remove redundant call to help-mode.
10811         (disabled-command-function): Use `case'.
10812         (en/disable-command): New function extracted from enable-command.
10813         (enable-command, disable-command): Use it.
10815 2009-11-14  Glenn Morris  <rgm@gnu.org>
10817         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
10818         constants.  (Bug#4913)
10820         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
10822 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
10824         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
10825         defined in C that have no doc-strings.  (Bug#1063)
10827 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
10829         * cus-edit.el (data, files):
10830         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
10832 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
10834         * simple.el (shell-command): Doc fix (Bug#4891).
10836         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
10838 2009-11-14  Glenn Morris  <rgm@gnu.org>
10840         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
10841         statements for vc-diff, emerge-quit, and rmail-cease-edit.
10842         If they are already loaded, eval-after-load will do the right thing.
10844         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
10845         compiling.
10847         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
10849         * simple.el (x-selection-owner-p): Declare.
10850         (read-mail-command): Use custom radio type rather than choice.
10851         (completion-no-auto-exit): Doc fix.
10853         * custom.el (defgroup):
10854         * epg-config.el (epg): Doc fixes.
10856 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
10858         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
10859         * international/ccl.el (define-ccl-program): Do not purecopy the
10860         docstring, defconst does it anyway.
10862 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10864         * add-log.el (add-change-log-entry): Avoid displaying the changelog
10865         a second time.
10867         * x-dnd.el (x-dnd-maybe-call-test-function):
10868         * window.el (split-window-vertically):
10869         * whitespace.el (whitespace-help-on):
10870         * vc-rcs.el (vc-rcs-consult-headers):
10871         * userlock.el (ask-user-about-lock-help)
10872         (ask-user-about-supersession-help):
10873         * type-break.el (type-break-force-mode-line-update):
10874         * time-stamp.el (time-stamp-conv-warn):
10875         * terminal.el (te-set-output-log, te-more-break, te-filter)
10876         (te-sentinel, terminal-emulator):
10877         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
10878         (term-write-input-ring, term-check-source, term-start-output-log):
10879         (term-display-buffer-line, term-dynamic-list-completions):
10880         (term-ansi-make-term, serial-term):
10881         * subr.el (selective-display):
10882         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
10883         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
10884         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
10885         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
10886         (speedbar-remove-localized-speedbar-support)
10887         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
10888         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
10889         (speedbar-buffers-line-directory):
10890         * simple.el (shell-command-on-region, append-to-buffer)
10891         (prepend-to-buffer):
10892         * shadowfile.el (shadow-save-todo-file):
10893         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
10894         (scroll-bar-maybe-set-window-start):
10895         * sb-image.el (speedbar-image-dump):
10896         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
10897         (load-save-place-alist-from-file):
10898         * ps-samp.el (ps-print-message-from-summary):
10899         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
10900         (ps-background-image, ps-begin-job, ps-do-despool):
10901         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
10902         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
10903         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
10904         (pr-call-process, pr-file-list, pr-interface-save):
10905         * novice.el (disabled-command-function)
10906         (enable-command, disable-command):
10907         * mouse.el (mouse-buffer-menu-alist):
10908         * mouse-copy.el (mouse-kill-preserving-secondary):
10909         * macros.el (kbd-macro-query):
10910         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
10911         * informat.el (batch-info-validate):
10912         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
10913         * hippie-exp.el (try-expand-dabbrev-visible):
10914         * help-mode.el (help-make-xrefs):
10915         * help-fns.el (describe-variable):
10916         * generic-x.el (bat-generic-mode-run-as-comint):
10917         * finder.el (finder-mouse-select):
10918         * find-dired.el (find-dired-sentinel):
10919         * filesets.el (filesets-file-close):
10920         * files.el (list-directory):
10921         * faces.el (list-faces-display, describe-face):
10922         * facemenu.el (list-colors-display):
10923         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
10924         * epg.el (epg--process-filter, epg-cancel):
10925         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
10926         (epa--read-signature-type):
10927         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
10928         (emerge-file-names):
10929         * ehelp.el (electric-helpify):
10930         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
10931         * ediff-vers.el (rcs-ediff-view-revision):
10932         * ediff-util.el (ediff-setup):
10933         * ediff-mult.el (ediff-append-custom-diff):
10934         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
10935         (ediff-wordify):
10936         * echistory.el (Electric-command-history-redo-expression):
10937         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
10938         * disp-table.el (describe-display-table):
10939         * dired.el (dired-find-buffer-nocreate):
10940         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
10941         * dabbrev.el (dabbrev--same-major-mode-p):
10942         * chistory.el (list-command-history):
10943         * apropos.el (apropos-documentation):
10944         * allout.el (allout-obtain-passphrase):
10945         (allout-copy-exposed-to-buffer):
10946         (allout-verify-passphrase): Use with-current-buffer.
10948 2009-11-13  Glenn Morris  <rgm@gnu.org>
10950         * Makefile.in (ELCFILES): Regenerate.
10952 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
10954         * net/dbus.el (dbus-registered-objects-table): Rename from
10955         `dbus-registered-functions-table', because it contains also properties.
10956         (dbus-unregister-object): Unregister also properties.
10957         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
10958         Use a timeout of 500 msec, in order to not block.
10959         (dbus-register-property, dbus-property-handler): New defuns.
10961 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10963         * simple.el (minibuffer-default-add-completions): Drop deprecated
10964         4th arg.
10966 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
10968         * textmodes/artist.el (artist-mouse-choose-operation):
10969         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
10970         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
10971         (artist-compute-up-event-key): New function.
10972         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
10974 2009-11-13  Kenichi Handa  <handa@m17n.org>
10976         * language/japan-util.el: Make sure that the value of jisx0208
10977         property is jisx0208 character.
10979 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
10981         * international/mule.el (auto-coding-regexp-alist): Only purecopy
10982         car or each item, not the whole list.
10984 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10986         * minibuffer.el (minibuffer-completion-help):
10987         Use minibuffer-hide-completions.
10989 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
10991         * dired.el (dired-save-positions, dired-restore-positions): New funs.
10992         (dired-revert): Use them (bug#4880).
10994 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
10996         * tooltip.el (tooltip-frame-parameters): Undo previous change.
10998 2009-11-12  Juri Linkov  <juri@jurta.org>
11000         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
11001         New functions.
11002         (find-file-literally-at-point): Alias of `ffap-literally'.
11004 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
11006         * textmodes/ispell.el (ispell-skip-region-alist):
11007         * textmodes/css-mode.el (auto-mode-alist):
11008         * progmodes/compile.el (auto-mode-alist):
11009         * international/mule.el (ctext-non-standard-encodings-alist)
11010         (ctext-non-standard-encodings-regexp):
11011         * simple.el (shell-command-switch, text-read-only):
11012         * replace.el (occur-mode-map):
11013         * paths.el (rmail-file-name):
11014         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
11015         * find-file.el (ff-special-constructs):
11016         * files.el (file-name-handler-alist):
11017         * composite.el: Purecopy strings.
11019         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
11021 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
11023         * widget.el (define-widget): Purecopy the docstring.
11024         * international/mule-cmds.el (charset): Do not purecopy the
11025         docstring here, define-widget does it.
11027         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
11028         * textmodes/bibtex-style.el (auto-mode-alist):
11029         * progmodes/inf-lisp.el (inferior-lisp-prompt):
11030         * progmodes/compile.el (compile-command):
11031         * language/korea-util.el (default-korean-keyboard):
11032         * international/mule-conf.el (file-coding-system-alist):
11033         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
11034         * tooltip.el (tooltip-frame-parameters):
11035         * newcomment.el (comment-end, comment-padding):
11036         * dired.el (dired-trivial-filenames):
11037         * comint.el (comint-file-name-prefix): Purecopy initial values.
11039 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
11041         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
11042         (tramp-advice-minibuffer-electric-tilde): Unload advices via
11043         `tramp-unload'.
11044         (tramp-advice-make-auto-save-file-name)
11045         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
11046         after removing the advice.
11048 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
11050         * progmodes/grep.el (grep-regexp-alist):
11051         * international/mule-cmds.el (iso-2022-control-alist):
11052         * emacs-lisp/timer.el (timer-duration-words):
11053         * subr.el (version-separator, version-regexp-alist):
11054         * minibuffer.el (completion-styles-alist):
11055         * faces.el (face-attribute-name-alist, list-faces-sample-text):
11056         Change defvars to defconsts.
11058         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
11059         * loadup.el ("international/mule-conf"): Load the byte compiled version.
11060         * international/mule-conf.el: Allow to be byte compiled.
11062         * international/mule.el (define-charset): Purecopy props.
11063         (load-with-code-conversion): Purecopy doc string and file name.
11064         (put-charset-property): Purecopy strings.
11065         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
11067         * international/mule-cmds.el (register-input-method): Purecopy arguments.
11068         (define-char-code-property): Correctly purecopy the table.
11070         * international/ccl.el (define-ccl-program): Purecopy the docstring.
11072         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
11074         * subr.el (add-hook): Purecopy strings.
11075         (eval-after-load): Purecopy load-history-regexp and the form.
11077         * custom.el (custom-declare-group): Purecopy load-file-name.
11079         * subr.el (menu-bar-separator): New defconst.
11080         * net/eudc.el (eudc-tools-menu):
11081         * international/mule-cmds.el (set-coding-system-map)
11082         (mule-menu-keymap):
11083         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
11084         * vc-hooks.el (vc-menu-map):
11085         * replace.el (occur-mode-map):
11086         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
11087         (menu-bar-edit-menu, menu-bar-goto-menu)
11088         (menu-bar-custom-menu, menu-bar-showhide-menu)
11089         (menu-bar-options-menu, menu-bar-tools-menu)
11090         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
11091         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
11092         (menu-bar-help-menu):
11093         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
11094         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
11096         * term/x-win.el (x-gtk-stock-map):
11097         * progmodes/vera-mode.el (auto-mode-alist):
11098         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
11099         (inferior-lisp-program, inferior-lisp-load-command):
11100         * progmodes/hideshow.el (hs-special-modes-alist):
11101         * progmodes/gud.el (same-window-regexps):
11102         * progmodes/grep.el (grep-program, find-program, xargs-program):
11103         * net/telnet.el (same-window-regexps):
11104         * net/rlogin.el (same-window-regexps):
11105         * language/ethiopic.el (font-ccl-encoder-alist):
11106         * vc-sccs.el (vc-sccs-master-templates):
11107         * vc-rcs.el (vc-rcs-master-templates):
11108         * subr.el (cl-assertion-failed):
11109         * simple.el (next-error-overlay-arrow-position):
11110         * lpr.el (lpr-command):
11111         * locate.el (locate-ls-subdir-switches):
11112         * info.el (same-window-regexps, info)
11113         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
11114         * image-mode.el (image-mode, auto-mode-alist):
11115         * hippie-exp.el (hippie-expand-ignore-buffers):
11116         * format.el (format-alist):
11117         * find-dired.el (find-ls-subdir-switches, find-grep-options)
11118         (find-name-arg):
11119         * facemenu.el (facemenu-keybindings):
11120         * dired.el (dired-listing-switches, dired-chown-program):
11121         * diff.el (diff-switches, diff-command):
11122         * cus-edit.el (same-window-regexps):
11123         * bindings.el (mode-line-mule-info)
11124         (mode-line-buffer-identification): Purecopy strings.
11126 2009-11-11  Juri Linkov  <juri@jurta.org>
11128         * simple.el (dired-get-filename) <declare-function>:
11129         Tell the byte-compiler about dired-get-filename.
11130         (shell-command): In Dired mode, get filename from the current line
11131         as the default value.
11133 2009-11-10  Glenn Morris  <rgm@gnu.org>
11135         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
11136         * calendar/holidays.el, progmodes/cperl-mode.el:
11137         Update x-popup-menu declarations.
11139         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
11140         (list-load-path-shadows): Use dolist.
11141         (list-load-path-shadows): Use with-current-buffer.
11143 2009-11-10  Juri Linkov  <juri@jurta.org>
11145         * minibuffer.el (read-file-name): Support a list of default values
11146         in `default-filename'.  Use the first file name where only one
11147         element is required.  Doc fix.
11149 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
11151         * net/dbus.el (dbus-unregister-object): Release service, if no
11152         other method is registered for it.
11154 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
11156         * bookmark.el (bookmark-completing-read): Sort bookmark names if
11157         bookmark-sort-flag is non-nil (Bug#4653).
11159 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
11161         * emulation/cua-base.el: Add CUA property to some CC mode commands
11162         (Bug#4100).
11164 2009-11-08  Kevin Ryde  <user42@zip.com.au>
11166         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
11167         at end of sentence (Bug#4818).
11169 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
11171         * progmodes/compile.el (compilation-error-regexp-alist-alist):
11172         Handle "see declaration of" MSFT statements (Bug#4100).
11174 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
11176         * net/tramp.el (tramp-advice-make-auto-save-file-name)
11177         (tramp-advice-file-expand-wildcards): Unload via
11178         `ad-remove-advice'.
11180         * net/trampver.el: Update release number.
11182 2009-11-08  Kevin Ryde  <user42@zip.com.au>
11184         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
11185         `ad-do-it'.
11187 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
11189         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
11190         in order to keep context in SELinux.
11192 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
11194         * dired-aux.el (dired-query): Place cursor in echo area and allow
11195         C-g.
11197         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
11198         menu item if not on a directory (Bug#4701).
11200 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
11202         Sync with Tramp 2.1.17.
11204         * net/tramp.el (tramp-handle-copy-directory): Don't use
11205         `file-remote-p' (due to compatibility).
11207         * net/tramp-compat.el (tramp-compat-copy-directory)
11208         (tramp-compat-delete-directory): New defuns.
11210         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
11211         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
11212         `tramp-compat-delete-directory'.
11214         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
11215         (tramp-smb-handle-delete-directory): Use
11216         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
11218         * net/trampver.el: Update release number.
11220 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
11222         * tar-mode.el (tar-copy): Call write-region on the right buffer
11223         (Bug#4857).
11225         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
11226         by hand, if necessary (Bug#4878).
11228 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
11230         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
11231         align size column (Bug#4839).
11233         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
11234         statement.
11236 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
11238         * progmodes/ld-script.el (auto-mode-alist):
11239         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
11241         * cus-face.el (custom-declare-face): Purecopy face spec.
11243 2009-11-06  Kenichi Handa  <handa@m17n.org>
11245         * international/uni-bidi.el: Re-generated.
11246         * international/uni-category.el: Re-generated.
11247         * international/uni-combining.el: Re-generated.
11248         * international/uni-mirrored.el: Re-generated.
11250 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
11252         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
11253         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
11254         (tex-start-options, slitex-run-command, latex-run-command)
11255         (tex-run-command, tex-directory):
11256         * textmodes/ispell.el (ispell-html-skip-alists)
11257         (ispell-tex-skip-alists, ispell-tex-skip-alists):
11258         * textmodes/fill.el (adaptive-fill-first-line-regexp):
11259         (adaptive-fill-regexp):
11260         * textmodes/dns-mode.el (auto-mode-alist):
11261         * progmodes/python.el (interpreter-mode-alist):
11262         * progmodes/etags.el (tags-compression-info-list):
11263         * progmodes/etags.el (tags-file-name):
11264         * net/browse-url.el (browse-url-galeon-program)
11265         (browse-url-firefox-program):
11266         * mail/sendmail.el (mail-signature-file)
11267         (mail-citation-prefix-regexp):
11268         * international/mule-conf.el (eight-bit):
11269         * international/latexenc.el (latex-inputenc-coding-alist):
11270         * international/fontset.el (x-pixel-size-width-font-regexp):
11271         * emacs-lisp/warnings.el (warning-type-format):
11272         * emacs-lisp/trace.el (trace-buffer):
11273         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
11274         (emacs-lisp-mode-map):
11275         * calendar/holidays.el (holiday-solar-holidays)
11276         (holiday-bahai-holidays, holiday-islamic-holidays)
11277         (holiday-christian-holidays, holiday-hebrew-holidays)
11278         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
11279         (hebrew-holidays-1, holiday-oriental-holidays)
11280         (holiday-general-holidays):
11281         * x-dnd.el (x-dnd-known-types):
11282         * tool-bar.el (tool-bar):
11283         * startup.el (site-run-file):
11284         * shell.el (shell-dumb-shell-regexp):
11285         * rfn-eshadow.el (file-name-shadow-tty-properties)
11286         (file-name-shadow-properties):
11287         * paths.el (remote-shell-program, news-directory):
11288         * mouse.el ([C-down-mouse-3]):
11289         * menu-bar.el (menu-bar-tools-menu):
11290         * jka-cmpr-hook.el (jka-compr-load-suffixes)
11291         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
11292         (jka-compr-compression-info-list):
11293         * isearch.el (search-whitespace-regexp):
11294         * image-file.el (image-file-name-extensions):
11295         * find-dired.el (find-ls-option):
11296         * files.el (directory-listing-before-filename-regexp)
11297         (directory-free-space-args, insert-directory-program)
11298         (list-directory-brief-switches, magic-fallback-mode-alist)
11299         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
11300         (automount-dir-prefix):
11301         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
11302         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
11303         (face-font-registry-alternatives, face-font-registry-alternatives)
11304         (face-font-family-alternatives):
11305         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
11306         (facemenu-foreground-menu, facemenu-face-menu):
11307         * epa-hook.el (epa-file-name-regexp):
11308         * dnd.el (dnd-protocol-alist):
11309         * textmodes/rst.el (auto-mode-alist):
11310         * button.el (default-button): Purecopy strings.
11312 2009-11-06  Glenn Morris  <rgm@gnu.org>
11314         * Makefile.in (ELCFILES): Update.
11316 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11318         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
11319         * emacs-lisp/levents.el: Move to obsolete/levents.el.
11321         * nxml/xsd-regexp.el (xsdre-gen-categories):
11322         * nxml/xmltok.el (xmltok-parse-entity):
11323         * nxml/rng-parse.el (rng-parse-validate-file):
11324         * nxml/rng-maint.el (rng-format-manual)
11325         (rng-manual-output-force-new-line):
11326         * nxml/rng-loc.el (rng-save-schema-location-1):
11327         * nxml/rng-cmpct.el (rng-c-parse-file):
11328         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
11329         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
11331 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
11333         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
11334         Remove extra save-excursions and make-variable-buffer-local's.
11335         Suggested by Stefan Monnier.
11337         (verilog-getopt-file, verilog-module-inside-filename-p)
11338         (verilog-set-define): Merge GNU 1.35 and repair changes from
11339         switching to using with-current-buffer.
11341         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
11342         being treated as a number and confusing AUTORESET.
11343         Reported by Dan Dever.
11345         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
11346         Add verilog-auto-ignore-concat to fix backward compatibility with
11347         older verilog-modes.  Reported by Dan Katz.
11349         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
11350         containing closing anchors "...$".
11352         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
11353         Reported by Wade Smith.
11355         (verilog-batch-execute-func): Comment on function usage.
11357 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
11359         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
11360         for labels.
11362         (verilog-label-re, verilog-calc-1): Support proper indent of named
11363         asserts.
11365         (verilog-backward-token, verilog-basic-complete-re)
11366         (verilog-beg-of-statement, verilog-indent-re): Support proper
11367         indent of the assert statement at the beginning of a block of text.
11369         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
11370         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
11371         tokens as begins.
11373 2009-11-05  Glenn Morris  <rgm@gnu.org>
11375         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
11376         Emacs 19.  (Bug#1531)
11377         (byte-compile-fix-header): Update for the above change.
11378         Drop test for epoch::version.
11380         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
11381         * cus-dep.el (custom-make-dependencies):
11382         * finder.el (finder-compile-keywords):
11383         Use autoload-rubric's feature argument.
11385         * calendar/diary-lib.el (top-level): Make load behave more like require.
11387         * vc-git.el (vc-git-stash-map): Move definition before use.
11389 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
11391         * custom.el (custom-declare-group): Purecopy standard-value.
11392         (custom-declare-group): Purecopy custom-prefix.
11394         * international/mule.el (load-with-code-conversion):
11395         Call do-after-load-evaluation unconditionally.
11397         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
11399 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11401         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
11403 2009-11-04  Glenn Morris  <rgm@gnu.org>
11405         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
11406         (byte-compile-compatibility): Remove option.
11407         (byte-compile-close-variables, byte-compile-fix-header)
11408         (byte-compile-insert-header, byte-compile-output-docform)
11409         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
11410         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
11411         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
11412         (byte-compile-insert, byte-compile-defun):
11413         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
11414         (byte-defop-compiler19): Remove.
11415         Without byte-compile-compatibility, the 'emacs19-opcode property is not
11416         used by anything.  Replace all calls with byte-defop-compiler.
11418 2009-11-04  Juri Linkov  <juri@jurta.org>
11420         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
11421         (menu-bar-options-menu): Don't quote the `prop' arg of
11422         `menu-bar-make-mm-toggle'.
11424 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
11426         * calendar/calendar.el (cal-loaddefs):
11427         * calendar/diary-lib.el (diary-loaddefs):
11428         * calendar/holidays.el (hol-loaddefs):
11429         * eshell/esh-module.el (esh-groups): Load rather than require.
11431 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11433         * calendar/todo-mode.el (todo-add-category): Don't hardcode
11434         point-min==1.
11435         (todo-top-priorities): Only display-buffer when called interactively.
11436         (todo-item-start): Don't save excursion point.
11437         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
11438         (todo-insert-item-here, todo-file-item, todo-remove-item):
11439         Adjust uses of todo-item-start and todo-item-end.
11441         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
11442         (autoload-rubric): Don't use any more.
11444         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
11445         and only put a prop if it is non-nil.
11447 2009-11-03  Juri Linkov  <juri@jurta.org>
11449         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
11450         (menu-bar-options-menu): Fix list quoting (Bug#4429).
11452         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
11453         and "Menu" to make top-level menu item visually one unit (like
11454         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
11455         multi-word menu items).  Fix :help string for quit-window.
11457 2009-11-03  Glenn Morris  <rgm@gnu.org>
11459         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
11460         (byte-compile-file-form-define-abbrev-table)
11461         (byte-compile-file-form-custom-declare-variable)
11462         (byte-compile-variable-ref, byte-compile-defvar):
11463         Whether or not a warning is enabled should only affect whether we issue
11464         the warning, not whether or not we collect the relevant data.
11465         Eg warnings can be turned on and off throughout the course of a file.
11467         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
11468         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
11470 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11472         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
11473         * play/mpuz.el (mpuz-create-buffer):
11474         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
11475         (lm-print-y,s,noise, lm-print-w0, lm-init):
11476         * play/gomoku.el (gomoku-prompt-for-move):
11477         * play/fortune.el (fortune-in-buffer):
11478         * play/dissociate.el (dissociated-press):
11479         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
11480         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
11481         * mail/supercite.el (sc-eref-show):
11482         * mail/smtpmail.el (smtpmail-send-it):
11483         * mail/rmailsum.el (rmail-summary-next-labeled-message)
11484         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
11485         (rmail-summary-undelete-many, rmail-summary-rmail-update)
11486         (rmail-summary-goto-msg, rmail-summary-expunge)
11487         (rmail-summary-get-new-mail, rmail-summary-search-backward)
11488         (rmail-summary-add-label, rmail-summary-output-menu)
11489         (rmail-summary-output-body):
11490         * mail/rfc822.el (rfc822-addresses):
11491         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
11492         * mail/mailpost.el (post-mail-send-it):
11493         * mail/hashcash.el (hashcash-generate-payment):
11494         * mail/feedmail.el (feedmail-run-the-queue)
11495         (feedmail-queue-send-edit-prompt-help-first)
11496         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
11497         (feedmail-deduce-address-list):
11498         * eshell/esh-ext.el (eshell-remote-command):
11499         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
11500         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
11501         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
11502         (viper-save-string-in-file, viper-valid-marker):
11503         * emulation/viper-keym.el (viper-toggle-key):
11504         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
11505         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
11506         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
11507         * emulation/viper-cmd.el (viper-exec-form-in-vi)
11508         (viper-exec-form-in-emacs, viper-brac-function):
11509         * emulation/viper.el (viper-delocalize-var):
11510         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
11511         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
11512         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
11513         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
11514         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
11515         * emulation/edt.el (edt-electric-helpify):
11516         * emulation/cua-rect.el (cua--rectangle-aux-replace):
11517         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
11518         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
11519         (cua-indent-to-global-mark-column):
11520         * calendar/diary-lib.el (calendar-mark-1):
11521         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
11522         Use with-current-buffer.
11523         * emulation/viper.el (viper-delocalize-var): Use dolist.
11525 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
11527         * comint.el (comint-replace-by-expanded-history-before-point):
11528         Replace !! with the previous input string literally (Bug#1795).
11530 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
11532         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
11533         to be made up of whitespace.
11535 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
11537         * minibuffer.el (read-file-name): Don't use file dialogs for
11538         remote directories (Bug#99).
11540 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
11542         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
11544 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
11546         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
11547         instead of deleting the window or frame.
11549 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
11551         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
11552         Support face colors.
11554         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
11555         New function.  Support face colors (Bug#1168).
11556         (tex-common-initialization): Use it.
11558         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
11559         mode allows it (Bug#1168).
11561 2009-10-31  Juri Linkov  <juri@jurta.org>
11563         * facemenu.el (list-colors-display): Don't mark buffer as
11564         modified (Bug#3948).
11566 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
11568         * international/mule-diag.el (list-character-sets-1): Minor
11569         message fix (Bug#3526).
11571         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
11572         face property (Bug#4834).
11573         (etags-list-tags, etags-tags-apropos-additional)
11574         (etags-tags-apropos, tags-select-tags-table): Add follow-link
11575         property.
11577         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
11578         items.
11580 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11582         * textmodes/two-column.el (2C-split):
11583         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
11584         * textmodes/tex-mode.el (tex-set-buffer-directory):
11585         * textmodes/spell.el (spell-region, spell-string):
11586         * textmodes/reftex.el (reftex-erase-buffer):
11587         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
11588         * textmodes/reftex-toc.el (reftex-toc-promote-action):
11589         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
11590         (reftex-select-item):
11591         * textmodes/reftex-ref.el (reftex-label-info-update)
11592         (reftex-offer-label-menu):
11593         * textmodes/reftex-index.el (reftex-index-change-entry)
11594         (reftex-index-phrases-info):
11595         * textmodes/reftex-global.el (reftex-create-tags-file)
11596         (reftex-save-all-document-buffers, reftex-ensure-write-access):
11597         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
11598         (reftex-view-crossref-from-bibtex):
11599         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
11600         (reftex-extract-bib-entries-from-thebibliography)
11601         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
11602         * textmodes/refbib.el (r2b-capitalize-title):
11603         (r2b-convert-buffer, r2b-help):
11604         * textmodes/page-ext.el (pages-directory)
11605         (pages-directory-goto-with-mouse):
11606         * textmodes/bibtex.el (bibtex-validate-globally):
11607         * textmodes/bib-mode.el (bib-capitalize-title):
11608         * textmodes/artist.el (artist-clear-buffer, artist-system):
11609         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
11610         (local-set-scheme-interaction-buffer, xscheme-process-filter)
11611         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
11612         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
11613         (xscheme-send-control-g-interrupt, xscheme-start-process)
11614         (xscheme-process-sentinel, xscheme-cd):
11615         * progmodes/verilog-mode.el (verilog-read-always-signals)
11616         (verilog-set-define, verilog-getopt-file)
11617         (verilog-module-inside-filename-p):
11618         * progmodes/sh-script.el:
11619         * progmodes/python.el (python-pdbtrack-get-source-buffer)
11620         (python-pdbtrack-grub-for-buffer, python-execute-file):
11621         * progmodes/octave-inf.el (inferior-octave):
11622         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
11623         (idlwave-shell-compile-helper-routines, idlwave-set-local)
11624         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
11625         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
11626         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
11627         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
11628         (idlwave-shell-filter, idlwave-shell-examine-highlight)
11629         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
11630         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
11631         (idlwave-shell-examine-display, idlwave-shell-run-region)
11632         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
11633         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
11634         * progmodes/idlw-help.el (idlwave-help-get-special-help)
11635         (idlwave-help-get-help-buffer):
11636         * progmodes/gud.el (gud-basic-call, gud-find-class)
11637         (gud-tooltip-activate-mouse-motions-if-enabled):
11638         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
11639         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
11640         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
11641         (ebrowse-tags-next-file):
11642         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
11643         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
11644         (ebnf-eps-finish-and-write):
11645         * progmodes/cpp.el (cpp-edit-save):
11646         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
11647         * progmodes/cc-defs.el (c-emacs-features):
11648         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
11649         (antlr-directory-dependencies):
11650         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
11651         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
11652         (ada-find-any-references, ada-make-filename-from-adaname)
11653         (ada-make-body-gnatstub):
11654         * obsolete/rnews.el (news-list-news-groups):
11655         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
11656         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
11657         * net/rcirc.el (rcirc-debug):
11658         * net/newst-treeview.el (newsticker--treeview-list-add-item)
11659         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
11660         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
11661         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
11662         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
11663         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
11664         (newsticker--treeview-list-clear-highlight)
11665         (newsticker--treeview-list-update-highlight)
11666         (newsticker--treeview-list-highlight-start)
11667         (newsticker--treeview-tree-update-highlight)
11668         (newsticker--treeview-get-selected-item)
11669         (newsticker-treeview-mark-list-items-old)
11670         (newsticker--treeview-set-current-node):
11671         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
11672         * net/newst-backend.el (newsticker--get-news-by-funcall)
11673         (newsticker--get-news-by-wget, newsticker--image-get)
11674         (newsticker--image-sentinel):
11675         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
11676         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
11677         (eudc-ph-close-session):
11678         * net/eudc.el (eudc-save-options):
11679         * language/thai-word.el (thai-update-word-table):
11680         * language/japan-util.el (japanese-string-conversion):
11681         * international/titdic-cnv.el (tsang-quick-converter)
11682         (ziranma-converter, ctlau-converter):
11683         * international/mule-cmds.el (describe-language-environment):
11684         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
11685         (skkdic-convert-postfix, skkdic-convert-prefix):
11686         (skkdic-convert-okuri-nasi, skkdic-convert):
11687         * emacs-lisp/re-builder.el (reb-update-overlays):
11688         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
11689         * emacs-lisp/gulp.el (gulp-send-requests):
11690         * emacs-lisp/find-gc.el (trace-call-tree):
11691         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
11692         (eieio-describe-generic):
11693         * emacs-lisp/eieio-base.el (eieio-persistent-read):
11694         * emacs-lisp/edebug.el (edebug-outside-excursion):
11695         * emacs-lisp/debug.el (debugger-make-xrefs):
11696         * emacs-lisp/cust-print.el (custom-prin1-to-string):
11697         * emacs-lisp/chart.el (chart-new-buffer):
11698         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
11699         Use with-current-buffer.
11700         * textmodes/artist.el (artist-system): Don't call
11701         copy-sequence on a fresh string.
11702         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
11704 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
11706         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
11707         is no item to edit.  (Bug#4820)
11708         (todo-top-priorities): Restore point and restore narrowing in Todo
11709         buffer.  (Bug#4820)
11711 2009-10-31  Glenn Morris  <rgm@gnu.org>
11713         * net/ange-ftp.el (top-level): Don't require dired when compiling.
11714         (comint-last-output-start, comint-last-input-start)
11715         (comint-last-input-end): Don't defvar when compiling.
11716         (ange-ftp-process-file): Use bound-and-true-p.
11718         * pcmpl-rpm.el (top-level): Move provide statement to end.
11719         (pcmpl-rpm): Remove unused custom group.
11721         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
11723         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
11725         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
11726         (byte-compile-warnings): Add `constants' as an option.
11727         (byte-compile-callargs-warn, byte-compile-arglist-warn)
11728         (display-call-tree): Update for byte-compile-fdefinition possibly
11729         returning `(macro lambda ...)'.  (Bug#4778)
11730         (byte-compile-variable-ref, byte-compile-setq-default):
11731         Respect `constants' member of byte-compile-warnings.
11733 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11735         * vc-bzr.el (vc-bzr-revision-keywords): New var.
11736         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
11737         to "submit:".
11739 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
11741         * textmodes/ispell.el (ispell-skip-region-alist):
11742         * international/mule-conf.el (eight-bit):
11743         * international/fontset.el (font-encoding-alist):
11744         * startup.el (pure-space-overflow-message):
11745         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
11746         * paths.el (gnus-nntp-service, rmail-spool-directory)
11747         (term-file-prefix):
11748         * files.el (save-some-buffers-action-alist):
11749         * cmuscheme.el (same-window-buffer-names):
11750         * ielm.el (same-window-buffer-names):
11751         * shell.el (same-window-buffer-names):
11752         * mail/sendmail.el (same-window-buffer-names):
11753         * progmodes/inf-lisp.el (same-window-buffer-names):
11754         * bindings.el (mode-line-client)
11755         (mode-line-column-line-number-mode-map):
11756         * language/tibetan.el (tibetan-precomposition-rule-regexp)
11757         (tibetan-precomposed-regexp): Purecopy string arguments.
11759 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11761         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
11762         (calcDigit-nondigit):
11763         * calc/calc-yank.el (calc-copy-to-buffer):
11764         * calc/calc-units.el (calc-invalidate-units-table):
11765         * calc/calc-trail.el (calc-trail-yank):
11766         * calc/calc-store.el (calc-insert-variables):
11767         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
11768         * calc/calc-prog.el (calc-read-parse-table):
11769         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
11770         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
11771         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
11772         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
11773         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
11774         (calc-graph-name, calc-graph-find-command, calc-graph-view)
11775         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
11776         * calc/calc-ext.el (calc-realign):
11777         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
11778         (calc-embedded-finish-edit, calc-embedded-make-info)
11779         (calc-embedded-finish-command, calc-embedded-stack-change):
11780         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
11782         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
11783         shell-dynamic-complete-filename in preference to
11784         comint-dynamic-complete-filename.
11786         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
11787         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
11788         Don't consider whether the display supports colors.
11789         (bookmark-import-new-list): Use dolist.
11790         (bookmark-bmenu-mode-map): Move initialization into declaration.
11791         (bookmark-bmenu-list): Use dolist, simplify.
11792         (bookmark-show-all-annotations): Use save-selected-window and dolist.
11793         (menu-bar-final-items): Use push.
11795 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
11797         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
11798         it works on remote files.
11799         (vc-hg-diff): Don't pass any `--cwd' argument.
11801 2009-10-27  Kevin Ryde  <user42@zip.com.au>
11803         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
11804         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
11805         (Further to Bug#3921).
11807 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
11809         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
11810         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
11811         calling `tramp-imap-put-file'.  Add file size to the call.
11812         (tramp-imap-get-file-entries): Compute also user name, file size,
11813         and date.
11814         (tramp-imap-handle-insert-directory): Insert uid and gid.
11815         (tramp-imap-handle-file-attributes): Transform uid and gid
11816         according to `id-format'.
11817         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
11818         size in header X-Size.
11820 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
11822         * simple.el (transpose-subr): Give clearer error when the mark
11823         is not set.  (Bug#4807)
11825 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
11827         * net/tramp.el (tramp-perl-file-truename): New defconst.
11828         Perl code contributed by yary <not.com@gmail.com> (tiny change).
11829         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
11830         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
11831         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
11833         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
11834         Ignore `dired-call-process'.
11835         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
11837 2009-10-26  Julian Scheid  <julians37@gmail.com>
11839         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
11840         (tramp-get-remote-readlink): New defun.
11841         (tramp-handle-file-truename): Use it.
11842         (tramp-handle-file-exists-p): Check file-attributes cache, assume
11843         file exists if cache value present.
11844         (tramp-check-cached-permissions): New defun.
11845         (tramp-handle-file-readable-p): Use it.
11846         (tramp-handle-file-writable-p): Likewise.
11847         (tramp-handle-file-executable-p): Likewise.
11848         (tramp-handle-file-name-all-completions): Try using Perl to get
11849         partial completions.  When perl not available, combine `cd' and
11850         `ls' into single remote operation and use shell expansion to get
11851         partial remote directory contents.  Set `file-exists-p' cache for
11852         directory and any files returned by ls.  Change cache handling to
11853         support partial directory contents.  Use error message emitted by
11854         remote `cd' or Perl code for local tramp-error.
11855         (tramp-do-copy-or-rename-file-directly): Avoid separate
11856         tramp-send-command-and-check call.
11857         (tramp-handle-process-file): Merge three remote ops into one.
11858         Do not flush all caches when `process-file-side-effects' is set.
11859         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
11860         file-attributes shows uid/gid to be set already.
11862 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
11864         * textmodes/tex-mode.el (tex-dvi-view-command)
11865         (tex-show-queue-command, tex-open-quote):
11866         * progmodes/ruby-mode.el (auto-mode-alist)
11867         (interpreter-mode-alist): Purecopy strings.
11869         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
11871         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
11872         string for the hook, keymap and abbrev table.
11874         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
11876         * x-dnd.el (x-dnd-xdnd-to-action):
11877         * startup.el (fancy-startup-text, fancy-about-text): Change to
11878         defconst from defvar.
11880         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
11882         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
11883         Purecopy initialization strings.
11885         * mail/sendmail.el (mail-header-separator)
11886         (mail-personal-alias-file):
11887         * mail/rmail.el (rmail-default-dont-reply-to-names)
11888         (rmail-ignored-headers, rmail-retry-ignored-headers)
11889         (rmail-highlighted-headers, rmail-secondary-file-directory)
11890         (rmail-secondary-file-regexp):
11891         * files.el (null-device, file-name-invalid-regexp)
11892         (locate-dominating-stop-dir-regexp)
11893         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
11894         (interpreter-mode-alist): Use mapcar instead of mapc.
11896         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
11898         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
11899         (completion-ignored-extensions):
11900         (debug-ignored-errors): Purecopy strings.
11902 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11904         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
11905         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
11906         (pcomplete--here): Use push.
11908         * subr.el (all-completions): Declare the 4th arg obsolete.
11910 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11912         * pcomplete.el (pcomplete-unquote-argument-function): New var.
11913         (pcomplete-unquote-argument): New function.
11914         (pcomplete--common-suffix): Always pay attention to case.
11915         (pcomplete--table-subvert): Quote and unquote the text.
11916         (pcomplete--common-quoted-suffix): New function.
11917         (pcomplete-std-complete): Use it and pcomplete-begin.
11919         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
11920         we're inside a dedicated or minibuffer window.
11922 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
11924         * bookmark.el: Update documentation, especially documentation
11925         of `bookmark-alist' and of the bookmark file format.
11926         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
11928 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
11930         * mail/emacsbug.el (report-emacs-bug): Clarify that the
11931         keybindings apply to the mail buffer (Bug#4003).  Shrink help
11932         window to buffer.
11934         * whitespace.el (whitespace-mode, whitespace-newline-mode)
11935         (global-whitespace-mode, global-whitespace-newline-mode)
11936         (whitespace-toggle-options, global-whitespace-toggle-options):
11937         Doc fix (Bug#3660).
11939         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
11940         of xmltok-start before the end tag was inserted (Bug#2840).
11942         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
11943         patterns that are preceded by an open-paren (Bug#1320).
11945 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
11947         * files.el (delete-directory): Delete symlinks to directories with
11948         delete-file (Bug#4739).
11950 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
11952         * vc.el (vc-backend-for-registration): Rename from
11953         vc-get-backend-for-registration.  Update callers.
11955         * international/mule-cmds.el (set-language-info-alist):
11956         Purecopy lang-env.
11957         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
11958         (charset): Purecopy the name.
11959         (define-char-code-property): Purecopy string arguments.
11961         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
11962         Purecopy string arguments.
11964         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
11965         * ediff-hook.el (menu-bar-ediff-menu):
11966         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
11967         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
11969 2009-10-24  Glenn Morris  <rgm@gnu.org>
11971         * comint.el (comint-dynamic-list-completions):
11972         * term.el (term-dynamic-list-completions): Use choose-completion rather
11973         than obsolete alias mouse-choose-completion.
11975         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
11976         file-cache-choose-completion.
11977         (file-cache-choose-completion): Handle an optional event argument.
11978         (file-cache-mouse-choose-completion): Make it an obsolete alias.
11980         * progmodes/octave-mod.el (octave-complete-symbol):
11981         Use choose-completion if mouse-choose-completion is ever removed.
11983         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
11984         use.
11986         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
11987         compiler.
11989         * vc-hooks.el (vc-responsible-backend): Fix declaration.
11991 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11993         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
11994         Ignore `pred' now that we receive one.
11995         Handle test-completion specially.
11997 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
11999         * vc.el (vc-responsible-backend): Throw an error if not backend is
12000         found.  Remove the REGISTER argument.  Move the code dealing with
12001         REGISTER ...
12002         (vc-get-backend-for-registration): ... here.  New function.
12003         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
12004         of vc-responsible-backend, pass the file name instead of the
12005         directory name.
12007 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12009         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
12010         New funs.
12011         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
12012         (pcomplete-comint-setup): Don't modify a global var via
12013         accidental side-effects.
12014         (pcomplete-shell-setup): Adjust call accordingly.
12015         (pcomplete-parse-comint-arguments): Use push.
12017 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
12019         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
12020         Allow uncapitalized info node names (Bug#3921).
12022         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
12023         to the DEBUG file (Bug#3781).
12025 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
12027         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
12028         dictionary entry (Bug#4579).
12030 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
12032         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
12033         from `rfn-eshadow-update-overlay-hook' when unloading.
12034         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
12035         "rsyncc".  Adjust doc string.
12036         (tramp-temp-buffer-file-name): New buffer-local defvar.
12037         (tramp-handle-insert-file-contents, tramp-handle-write-region):
12038         Keep temporary file when indicated by method ("rsync" and
12039         "rsyncc").
12040         (tramp-handle-write-region): Handle APPEND.
12041         (tramp-delete-temp-file-function): New defun.  Added to
12042         `kill-buffer-hook'.
12044 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
12046         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
12048 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
12050         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
12051         (color-name-rgb-alist, tty-standard-colors)
12052         (tty-color-mode-alist): Change to defconst.
12054         * simple.el (mark-inactive): Purecopy message.
12056         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
12057         (global-map, yank-menu):
12058         * textmodes/ispell.el (ispell-menu-map):
12059         * net/eudc.el (eudc-tools-menu):
12060         * international/mule-cmds.el (describe-language-environment-map)
12061         (setup-language-environment-map, set-coding-system-map)
12062         (mule-menu-keymap):
12063         * vc-hooks.el (vc-menu-entry, vc-menu-map):
12064         * replace.el (occur-mode-map):
12065         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
12067 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
12069         * calc/calc.el (math-read-number, math-read-number-simple): Use
12070         `save-match-data'.
12072 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12074         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
12075         rather than fiddling with global-map bindings, since it should only
12076         affect per-terminal settings.
12077         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
12079         * minibuffer.el (completion-table-with-terminator): Allow to specify
12080         the terminator-regexp.
12082         * simple.el (switch-to-completions): Look for *Completions* in other
12083         frames as well.
12085         * pcomplete.el: Allow the use of completion-tables.
12086         (pcomplete-std-complete): New command.
12087         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
12088         (pcomplete--here): Use a function for `form' rather than an expression,
12089         so it can be byte-compiled.
12090         (pcomplete-here, pcomplete-here*): Adjust accordingly.
12091         Add edebug declaration.
12092         (pcomplete-show-completions): Remove unused var `curbuf'.
12093         (pcomplete-do-complete, pcomplete-stub):
12094         Don't assume `completions' is a list of strings any more.
12096 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
12098         * find-dired.el (find-name-arg): Fix typo in docstring.
12100 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12102         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
12103         (pcmpl-linux-fs-types): Same, and update to new modules layout.
12105         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
12106         pcomplete-entries.
12108         * comint.el (comint-read-input-ring, comint-write-input-ring)
12109         (comint-substitute-in-file-name)
12110         (comint-dynamic-complete-as-filename)
12111         (comint-dynamic-simple-complete)
12112         (comint-dynamic-list-filename-completions)
12113         (comint-dynamic-list-completions)
12114         (comint-redirect-results-list-from-process): Minor simplifications.
12116 2009-10-21  Kevin Ryde  <user42@zip.com.au>
12118         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
12119         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
12120         the first form.  And insert a blank line after ";;; Code" since
12121         that's usual style.  (Bug#4612)
12123         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
12125 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12127         * minibuffer.el (completion-table-with-terminator): Properly implement
12128         boundaries, in case `terminator' appears in the suffix.
12129         (completion--embedded-envvar-table): Don't return boundaries if
12130         there's no valid completion.  Simplify.
12131         (completion-file-name-table): New completion table extracted from
12132         completion--file-name-table.
12133         (completion--file-name-table): Use it.
12134         (read-file-name-predicate): Declare obsolete.
12135         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
12136         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
12137         completion-file-name-table, and use the `pred' argument.
12138         * files.el (locate-file-completion-table): Use the `pred' arg rather
12139         than read-file-name-predicate.
12140         (abbreviate-file-name): Use \` rather than ^ for BOS.
12142 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
12144         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
12145         vc-responsible-backend to register, it causes problems.
12147 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12149         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
12151 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
12153         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
12154         (tramp-smb-handle-file-attributes): Use it.
12155         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
12156         (tramp-smb-handle-insert-directory): Use `mapc' rather than
12157         `mapcar'.  Use `tramp-smb-get-stat-capability'.
12158         Add `dired-filename' text properties.
12159         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
12160         (tramp-smb-maybe-open-connection): Simplify check for smbclient
12161         version.
12163 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12165         * subr.el (read-key-delay): Reduce to 0.01.
12166         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
12167         (bug#4751).
12169 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
12171         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
12173         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
12174         (Info-menu): Remove unused vars `last' and `completions'.
12175         (Info-index-nodes): Remove unused var `node'.
12177         * info.el (Info-complete-menu-item): Use complete-with-action.
12179 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
12181         Make vc-annotate work through copies and renames.
12182         * vc-annotate.el (vc-annotate-extract-revision-at-line):
12183         Return the file name too.
12184         (vc-annotate-revision-at-line)
12185         (vc-annotate-find-revision-at-line)
12186         (vc-annotate-revision-previous-to-line)
12187         (vc-annotate-show-log-revision-at-line): Update to get the file
12188         name from vc-annotate-extract-revision-at-line.
12189         (vc-annotate-show-diff-revision-at-line-internal): Change the
12190         argument to mean whether to show a file diff or not.  Get the file
12191         name from vc-annotate-extract-revision-at-line.
12192         (vc-annotate-show-diff-revision-at-line):
12193         Update vc-annotate-show-diff-revision-at-line call.
12194         (vc-annotate-warp-revision): Add an optional file argument.
12196         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
12197         (vc-git-annotate-extract-revision-at-line): Also return the file
12198         name if found.
12200         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
12201         command.  Remove unused code.
12202         (vc-hg-annotate-re): Update to match --follow output.
12203         (vc-hg-annotate-extract-revision-at-line): Also return the file
12204         name if found.
12206         * vc.el: Update annotate-extract-revision-at-line documentation.
12208 2009-10-18  Kevin Ryde  <user42@zip.com.au>
12210         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
12211         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
12213         * net/browse-url.el (browse-url): Identify alist with "consp and
12214         not functionp" and let all other things go down the `apply' leg,
12215         as suggested by Stefan.  (Further to bug#4531.)
12217 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
12219         * minibuffer.el (read-file-name): Check for repeat before putting
12220         a default argument in file-name-history (Bug#4657).
12222         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
12223         read syntax (Bug#4737).
12225         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
12227 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
12229         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
12230         (html-tag-alist, html-tag-help): Add descriptions for undocumented
12231         entries and make note of obsolete tags.
12233 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
12235         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
12237 2009-10-18  Glenn Morris  <rgm@gnu.org>
12239         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
12240         grep, so that binary files (eg international/uni-bidi.el) can match.
12241         Remove test for "UnicodeData" files, since it is hopefully unnecessary
12242         now, and in any case the file header format has changed.
12244 2009-10-17  Glenn Morris  <rgm@gnu.org>
12246         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
12247         (flyspell-get-word, flyspell-large-region)
12248         (flyspell-auto-correct-previous-word): Doc/error message fixes.
12250 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
12252         * Makefile.in (ELCFILES): Add ede/shell.
12254 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
12256         * term/common-win.el (x-colors): Purecopy it.
12258 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12260         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
12261         permissive for when the buffer is empty.
12262         (tar-header-block-tokenize): Decode the username and groupname.
12263         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
12265 2009-10-17  Eric Ludlam  <zappo@gnu.org>
12267         * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
12268         contains multibyte characters, choose first applicable coding
12269         system automatically.
12271 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12273         * international/mule-cmds.el (select-safe-coding-system): If the file
12274         has a coding cookie, use it regardless of any other setting (bug#4712).
12276 2009-10-17  Glenn Morris  <rgm@gnu.org>
12278         * foldout.el (foldout-mouse-swallow-events):
12279         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
12281         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
12282         (dired-keep-marker-copy, dired-keep-marker-hardlink)
12283         (dired-keep-marker-symlink, dired-dwim-target)
12284         (dired-copy-preserve-time): Do not autoload these defcustoms.
12286         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
12287         messages from messing up the file coding.  (Bug#4623)
12289 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
12291         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
12292         if no match is found for the current dictionary.  (Bug#4578)
12294         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
12295         optional, since that is how it is documented, and this is often called
12296         with a nil argument.  (Bug#4577)
12297         (flyspell-external-point-words, flyspell-auto-correct-word)
12298         (flyspell-correct-word-before-point, flyspell-word-search-forward)
12299         (flyspell-word-search-backward): Remove nil argument in calls to
12300         flyspell-get-word, since it is not needed now.
12302 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
12304         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
12306 2009-10-16  Glenn Morris  <rgm@gnu.org>
12308         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
12310 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
12312         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
12313         (ange-ftp-file-size): New function.
12314         (ange-ftp-file-attributes): Use it.
12316 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
12318         * net/tramp-smb.el (tramp-smb-version): New defvar.
12319         (tramp-smb-maybe-open-connection): Use it, in order to avoid
12320         repeated checks.
12322 2009-10-16  Glenn Morris  <rgm@gnu.org>
12324         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
12325         Maybe copy some custom properties from old to new name.  (Bug#4706)
12327 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
12329         * subr.el (error, sit-for, start-process-shell-command)
12330         (start-file-process-shell-command): Set the calling convention
12331         after the function definition.
12333 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12335         * subr.el (error, sit-for, start-process-shell-command)
12336         (start-file-process-shell-command): Use the new
12337         set-advertised-calling-convention feature.
12339 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
12341         * international/ucs-normalize.el (ucs-normalize-version):
12342         Change to 1.2.
12343         (check-range): Adjust for Unicode 5.2.
12345 2009-10-15  Juri Linkov  <juri@jurta.org>
12347         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
12348         to the `menu-item' format.
12350 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
12352         * net/tramp.el (tramp-replace-environment-variables): Do not fail
12353         if the environment variable does not exist.
12355         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12356         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
12357         parameter.
12358         (tramp-smb-handle-add-name-to-file)
12359         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
12360         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
12361         (tramp-smb-handle-file-attributes)
12362         (tramp-smb-do-file-attributes-with-stat)
12363         (tramp-smb-handle-file-local-copy)
12364         (tramp-smb-handle-insert-directory)
12365         (tramp-smb-handle-make-directory)
12366         (tramp-smb-handle-make-directory-internal)
12367         (tramp-smb-handle-make-symbolic-link)
12368         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
12369         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
12370         (tramp-smb-maybe-open-connection): Apply the changed parameters.
12371         (tramp-smb-read-file-entry): Read Disk names in compressed format.
12372         Handle long file names.
12373         (tramp-smb-get-cifs-capabilities): Check, whether the connection
12374         process is running.
12375         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
12376         Read share names with "-g" option.
12378 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
12380         * net/rcirc.el (rcirc-view-log-file): New command.
12381         (rcirc-track-minor-mode-map): Remove C-c ` binding.
12382         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
12383         specified.
12385 2009-10-15  Glenn Morris  <rgm@gnu.org>
12387         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
12388         from the second command-line argument.
12389         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
12390         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
12391         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
12392         w32-batch-update-autoloads.
12393         * emacs-lisp/autoload.el (autoload-make-program): New variable.
12394         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
12396         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
12397         the headers cannot be located.  Simplify, subtracting superflous
12398         save-excursions.
12400 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12402         Replace completion-base-size by completion-base-position to fix bugs
12403         such as (bug#4699).
12404         * simple.el (completion-base-position): New var.
12405         (completion-base-size): Mark as obsolete.
12406         (choose-completion): Make it work for mouse events as well.
12407         Pass the new base-position to choose-completion-string.
12408         (choose-completion-guess-base-position): New function, extracted from
12409         choose-completion-delete-max-match.
12410         (choose-completion-delete-max-match): Use it.  Make obsolete.
12411         (choose-completion-string): Use the new base-position info.
12412         (completion-root-regexp): Delete.
12413         (completion-setup-function): Preserve completion-base-position.
12414         Eliminate obsolete base-size manipulation.
12415         * minibuffer.el (display-completion-list): Don't mess with base-size.
12416         (minibuffer-completion-help): Set completion-base-position instead.
12417         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
12418         choose-completion.
12419         * textmodes/bibtex.el (bibtex-complete):
12420         * emacs-lisp/crm.el (crm--choose-completion-string):
12421         Adjust to new calling convention.
12422         * complete.el (partial-completion-mode): Use minibufferp to avoid
12423         bumping into incompatible change to choose-completion-string-functions.
12424         * ido.el (ido-choose-completion-string): Make its calling convention
12425         more permissive.
12426         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
12427         base-size manipulation.
12428         (comint-dynamic-list-input-ring): Use dotimes and push.
12429         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
12430         fundamental-mode.  Use `or'.
12432 2009-10-14  Juri Linkov  <juri@jurta.org>
12434         * misearch.el (multi-isearch-next-buffer-from-list)
12435         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
12437 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12439         * Makefile.in (compile-onefile): Load `bytecomp' rather than
12440         `bytecomp.el'.
12442         * minibuffer.el (completion-pcm--merge-completions): Make sure the
12443         string we return is all made up of text from the completions rather
12444         than part from the completions and part from the input (bug#4219).
12446         * ido.el (ido-everywhere): Use define-minor-mode.
12448         * buff-menu.el (list-buffers, ctl-x-map):
12449         Mark the entry points with ;;;###autoload cookies.
12451 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
12453         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
12454         correctly in the detached head case.
12455         (vc-git-print-log): Remove unused binding.
12457         * vc.el (vc-responsible-backend): When a directory is passed for
12458         for registration create a VC repository if no backend is
12459         responsible for the directory argument.
12460         (vc-deduce-fileset): Tell vc-responsible-backend to register.
12462         * vc.el: Move comments about RCS and SCCS ...
12463         * vc-rcs.el:
12464         * vc-sccs.el: ... here, respectively.
12466 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12468         * minibuffer.el (completion--file-name-table): Return nil if there's
12469         no file completion, even if substitute-in-file-name changed
12470         the string (bug#4708).
12472 2009-10-13  Juri Linkov  <juri@jurta.org>
12474         * files-x.el (read-file-local-variable-value): Don't filter out
12475         minor modes from mode name completion (bug#4664).
12477 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
12479         * international/mule-cmds.el (ucs-names): Remove exclusion of
12480         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
12482 2009-10-13  Kenichi Handa  <handa@m17n.org>
12484         * international/uni-name.el: Regenerated.
12486 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
12488         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
12489         should be automatically buffer-local, but isn't.)
12491 2009-10-12  Sam Steingold  <sds@gnu.org>
12493         * progmodes/compile.el (compilation-next-error-function): Fix the
12494         timestamps if the buffer has been visited before.
12495         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
12496         non-anchored patterns, like the perl one (bug#3928).
12498 2009-10-12  Glenn Morris  <rgm@gnu.org>
12500         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
12501         Let-bind `size'.
12503 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
12505         * proced.el (proced-unload-function): New function.
12507         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
12508         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
12509         Doc fix.
12511         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
12513 2009-10-11  Juri Linkov  <juri@jurta.org>
12515         * files-x.el (read-file-local-variable-value):
12516         Provide default value only for bound variables (bug#4664).
12518 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
12520         * net/tramp.el (tramp-local-host-p): Function shall return nil for
12521         connection methods like smb.
12523         * net/tramp-cache.el (tramp-flush-connection-property): The hash
12524         can be empty.
12526         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12527         (tramp-smb-file-name-handler-alist): Add handlers for
12528         `add-name-to-file', `make-symbolic-link'.
12529         (tramp-smb-handle-add-name-to-file)
12530         (tramp-smb-do-file-attributes-with-stat)
12531         (tramp-smb-handle-make-symbolic-link)
12532         (tramp-smb-get-cifs-capabilities): New defuns.
12533         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
12534         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
12535         (tramp-smb-handle-file-local-copy)
12536         (tramp-smb-handle-make-directory-internal)
12537         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
12538         The file name syntax depends on cifs capabilities.
12539         (tramp-smb-handle-file-attributes):
12540         Call `tramp-smb-do-file-attributes-with-stat' if possible.
12541         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
12542         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
12544 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
12546         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
12547         (eieio-defclass): Apply deftype handler and setf-method properties
12548         directly.
12549         (eieio-add-new-slot): Avoid union function from cl library.
12550         (eieio--typep): New function.
12551         (eieio-perform-slot-validation): Use it.
12553 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
12555         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
12556         Update documentation to refer to the variables documented in r1.135.
12557         (Bug#4188)
12559 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
12561         * bookmark.el (Info-suffix-list): Remove this unused variable.
12562         (bookmark-current-point): Remove this obsolete variable.
12563         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
12564         Adjust for removal of bookmark-current-point.
12566         (bookmarks-already-loaded, bookmark-current-buffer)
12567         (bookmark-yank-point): Document.  (Bug#4188)
12569 2009-10-10  Glenn Morris  <rgm@gnu.org>
12571         * frame.el (frame-height): Doc fix.
12573         * calendar/calendar.el (calendar-split-width-threshold): New option.
12574         (calendar-basic-setup): Use calendar-split-width-threshold.
12576 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
12578         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
12579         Ideographic Supplement" range (U+1F200..U+1F2FF).
12581 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
12583         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
12584         since the list will have been rebuilt anyway.  (Bug#4349)
12586 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
12588         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
12589         (bookmark-bmenu-execute-deletions): Don't save here, as
12590         bookmark-delete will now do so if necessary.
12591         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
12592         (Bug#4348)
12594 2009-10-09  Glenn Morris  <rgm@gnu.org>
12596         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
12598 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
12600         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
12601         (bookmark-jump-other-window): Just invoke bookmark-jump with new
12602         argument now, so the two function's behaviors will match.  (Bug#3645)
12604 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
12606         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
12607         (tramp-file-name-real-host, tramp-file-name-port):
12608         Apply `save-match-data'.
12610         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
12611         case both directories are remote.
12612         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
12613         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
12615 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
12617         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
12619 2009-10-07  Glenn Morris  <rgm@gnu.org>
12621         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
12622         of concat.
12624 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12626         * files-x.el (read-file-local-variable): Include some
12627         non-user-variables in the completion table (bug#4664).
12629 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
12631         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
12632         message.
12634         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12635         (tramp-smb-file-name-handler-alist): Add handler for
12636         `copy-directory', `expand-file-name', `set-file-modes'.
12637         (tramp-smb-handle-copy-directory)
12638         (tramp-smb-handle-expand-file-name)
12639         (tramp-smb-handle-set-file-modes): New defuns.
12640         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
12641         (tramp-smb-handle-file-attributes): Simplify check for retrieving
12642         entry.
12643         (tramp-smb-handle-insert-directory): Don't flush the cache.
12644         (tramp-smb-maybe-open-connection): Check for samba client and
12645         server versions.
12647 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
12649         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
12650         to not error out of search for "^lisp=" fails.
12652 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
12654         * makefile.w32-in (WINS_UPDATES): New macro.
12655         (custom-deps, finder-data, autoloads): Use it.
12657 2009-10-07  Glenn Morris  <rgm@gnu.org>
12659         * Makefile.in (autoloads): Revert previous change.
12660         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
12661         the list of preloaded files passed on the command-line, get
12662         it from src/Makefile.
12664         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
12665         show the original buffer rather than a random one.
12667 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
12669         * help.el (describe-no-warranty): Place point in a slightly better
12670         position in the GPLv3 text.
12672 2009-10-06  Sam Steingold  <sds@gnu.org>
12674         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
12675         the comm attribute is present before calling regexp-quote.
12677 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
12679         * play/animate.el (animate-string): For good effect, make sure
12680         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
12682         * play/animate.el (animate-sequence, animate-birthday-present):
12683         * misc.el (butterfly): Don't set `indent-tabs-mode'.
12685 2009-10-06  Glenn Morris  <rgm@gnu.org>
12687         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
12689         * emacs-lisp/autoload.el (autoload-excludes): New variable.
12690         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
12691         (batch-update-autoloads): Process a string value of autoload-excludes,
12692         set during the build process.
12693         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
12695         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
12696         inside with-parsed...  macro so that `v' is defined.
12698         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
12699         * progmodes/fortran.el (fortran-end-of-block)
12700         (fortran-beginning-of-block):
12701         Also push mark in the macro case.
12703         * emerge.el (emerge-show-file-name):
12704         * calc/calc.el (calc-quit):
12705         * calc/calc-misc.el (calc-big-or-small):
12706         * calc/calc-graph.el (calc-graph-view):
12707         * calc/calc-ext.el (calc-reset):
12708         * calendar/calendar.el (calendar-basic-setup):
12709         Use window-full-height-p.
12711         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
12712         header we don't understand, don't insert another.  (Bug#4624)
12713         If changing mime charset, insert the new one in the right place.
12715 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
12717         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
12718         (cal-tex-cursor-month): Correctly increment the end date for diary and
12719         holiday listing.  (Bug#4626)
12721 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12723         * help-fns.el (describe-function-1): Don't burp if the function is not
12724         a symbol.
12726 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
12728         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
12729         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
12730         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
12731         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
12733         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
12734         (eieio-default-superclass): Reflow docstrings.
12735         (this, class-option-assoc, defclass, eieio-class-un-autoload)
12736         (eieio-unbind-method-implementations, defmethod)
12737         (eieio-validate-slot-value, eieio-validate-class-slot-value)
12738         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
12739         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
12740         (eieio-slot-originating-class-p, eieio-slot-name-index)
12741         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
12742         (constructor, initialize-instance, no-next-method, object-print)
12743         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
12744         Fix typos in docstrings.
12745         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
12746         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
12747         (next-method-p): Doc fixes.
12748         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
12749         Fix typos in error messages.
12750         (eieio-defmethod): Fix typo in description of generic method.
12752         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
12753         (eieio-persistent-save-interactive, slot-missing):
12754         Fix typos in docstrings.
12755         (eieio-instance-inheritor-slot-boundp): Doc fix.
12757         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
12758         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
12760         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
12761         (eieio-custom-object-apply-reset):
12762         Fix typos in docstrings and error messages.
12764         * emacs-lisp/eieio-datadebug.el (data-debug-show):
12765         Fix typo in docstring.
12767         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
12768         (eieio-browse-tree): Doc fix.
12769         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
12770         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
12771         Fix typos in docstrings.
12773         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
12774         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
12775         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
12776         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
12777         Reflow docstrings.
12779 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
12781         * vc-hg.el (log-view-vc-backend): Declare for compiler.
12782         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
12783         Set log-view-vc-backend so that diff can work.
12785         * log-view.el (log-view-diff): Use vc-diff-internal instead of
12786         vc-version-diff.
12787         (vc-diff-internal): Autoload this instead of vc-version-diff.
12789 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
12791         * simple.el (eval-expression): Doc fix.
12793         * progmodes/cwarn.el (cwarn-mode): Doc fix.
12795 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
12797         * files.el (directory-files-no-dot-files-regexp): New defconst.
12798         (delete-directory): Use it.
12799         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
12801         * net/tramp.el (tramp-verbose): Fix docstring.
12802         (tramp-methods): Add recursive option to `tramp-copy-args'.
12803         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
12804         "scp1_old", "scp2_old", "rsync", "rsyncc".
12805         (tramp-default-method): Check also for `auth-source-user-or-password'.
12806         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
12807         Add handler for `copy-directory'.
12808         (tramp-handle-copy-directory): New defun.
12809         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
12810         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
12811         Optimize sent command.
12813 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12815         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
12816         window if necessary.
12818         * calendar/calendar.el (calendar-basic-setup): Don't call
12819         switch-to-buffer in a dedicated window.
12821 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
12823         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
12824         don't do anything related to relocating, just return nil.
12825         (bookmark-error-no-filename): New error.
12826         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
12827         bookmark has no file.  Don't even attempt to handle things that
12828         are not files; the whole point of custom handlers is to keep that
12829         knowledge elsewhere anyway.  Tighten some comments.
12830         (bookmark-file-or-variation-thereof): Remove now-unused function.
12831         (bookmark-location): Doc string fix.
12832         (Bug#4250)
12834 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
12836         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
12837         don't use a file dialog, because they usually don't know how to read
12838         a directory target from the user.  (Bug#4230)
12839         Also, make sure the prompt can display directories as well as files.
12841 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
12843         * bookmark.el (bookmark-set, bookmark-buffer-name):
12844         Improve doc strings.  (Bug#1193)
12846 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
12848         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
12849         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
12850         (bookmark-get-annotation, bookmark-set-annotation)
12851         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
12852         (bookmark-set-position, bookmark-get-front-context-string)
12853         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
12854         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
12855         (bookmark-jump-other-window, bookmark-handle-bookmark)
12856         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
12857         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
12858         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
12859         Improve doc strings to say whether bookmark can be a string or
12860         a record or both, and make other consistency and clarity fixes.
12861         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
12862         (bookmark-default-annotation-text, bookmark-yank-word)
12863         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
12864         (bookmark-import-new-list, bookmark-maybe-rename)
12865         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
12866         (bookmark-bmenu-bookmark): Give these doc strings.
12867         (bookmark-bmenu-check-position): Give this a doc string, but also
12868         add a FIXME comment about how the function may be pointless.
12869         (bookmark-default-handler): Rework doc string and change a
12870         parameter name, to clarify that this takes a bookmark record
12871         not a bookmark name.
12872         (bookmark-set): Change a parameter name to indicate its meaning,
12873         and improve the doc string a bit.
12874         (Bug#4188)
12876 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
12878         * bookmark.el (bookmark-alist): Document the new `handler' element
12879         in the param alist.
12880         (bookmark-make-record-function): Adjust documentation for above.
12881         (Bug#4193)
12883 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
12885         * info.el (Info-bookmark-make-record): Document this function.
12886         (Info-bookmark-jump): Document with a doc string, not just a comment.
12887         (Bug#4203)
12889 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
12891         * files.el (copy-directory): New defun.
12893         * dired-aux.el (dired-copy-file-recursive): Use it.
12895 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
12897         * files-x.el (modify-dir-local-variable)
12898         (copy-dir-locals-to-file-locals-prop-line): Fix typos in
12899         docstrings.
12901         * recentf.el (recentf-unload-function): New function.
12903 2009-10-04  Glenn Morris  <rgm@gnu.org>
12905         * window.el (window-full-height-p): Add doc string.
12907 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
12909         * window.el (window-full-height-p): New function.  (Bug#4543)
12911 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
12913         * vc.el: Remove commented out code.
12914         (vc-derived-from-dir-mode): Remove, unused.
12915         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
12917 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
12919         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
12920         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
12921         there could be recursive loading when `default-directory' is a
12922         remote file name.  (Bug#4614)
12924 2009-10-03  Glenn Morris  <rgm@gnu.org>
12926         * calendar/calendar.el (calendar-basic-setup): Handle the case where
12927         the frame is wide.
12928         (calendar-generate-window): Test for shrinkability rather than width.
12930         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
12931         reusing existing buffers, in case we happen to visit two files with the
12932         same basename.  (Bug#4593)
12934 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
12936         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
12937         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
12938         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
12939         subdirs of cedet as well.
12940         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
12942 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12944         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
12945         Obey advertised-signature-table.
12947         * help-fns.el (help-function-arglist): Don't check
12948         advertised-signature-table.
12949         (describe-function-1): Do it here instead so it also applies to subrs.
12951 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
12953         * simple.el (start-file-process): Say in the doc-string, that file
12954         handlers might not support pty association, if PROGRAM is nil.
12956         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
12957         HOST and USER are strings.  They are nil, when there are
12958         incomplete entries in ~/.netrc, for example.
12959         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
12960         root directory ("device busy" error otherwise).
12962         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
12963         Flush file properties of created directory.
12965 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
12967         * makefile.w32-in (WINS_BASIC): Remove cedet.
12968         (WINS_CEDET): Add cedet.
12969         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
12971 2009-10-02  Kevin Ryde  <user42@zip.com.au>
12973         * net/browse-url.el (browse-url): Pass any symbol in
12974         browse-url-browser-function to `apply', since if you've mistakenly put
12975         an unbound symbol then the error is clearer.  (Bug#4531)
12977 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
12979         * allout.el (allout-init, allout-back-to-current-heading)
12980         (allout-beginning-of-current-entry, allout-ascend-to-depth)
12981         (allout-ascend, allout-up-current-level, allout-end-of-level)
12982         (allout-previous-visible-heading, allout-forward-current-level)
12983         (allout-backward-current-level, allout-show-children):
12984         * apropos.el (apropos-describe-plist):
12985         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
12986         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
12987         * completion.el (add-completion, add-permanent-completion):
12988         * descr-text.el (describe-text-category, describe-char):
12989         * desktop.el (desktop-lazy-abort):
12990         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
12991         * dired.el (dired-build-subdir-alist):
12992         * ediff.el (ediff-version):
12993         * elide-head.el (elide-head, elide-head-show):
12994         * emerge.el (emerge-version):
12995         * env.el (getenv):
12996         * face-remap.el (variable-pitch-mode):
12997         * faces.el (describe-face):
12998         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
12999         (dired-at-point):
13000         * files.el (find-file-existing, auto-save-mode):
13001         * font-lock.el (font-lock-fontify-buffer):
13002         * help-fns.el (describe-function, describe-variable)
13003         (describe-syntax, describe-categories):
13004         * help.el (view-lossage, describe-bindings, describe-key)
13005         (describe-mode):
13006         * hexl.el (hexl-current-address):
13007         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
13008         * info.el (Info-goto-emacs-key-command-node):
13009         * log-edit.el (log-edit-insert-cvs-template)
13010         (log-edit-insert-cvs-rcstemplate):
13011         * menu-bar.el (menu-bar-mode):
13012         * mouse.el (mouse-appearance-menu):
13013         * newcomment.el (comment-indent-new-line):
13014         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
13015         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
13016         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
13017         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
13018         * recentf.el (recentf-mode):
13019         * savehist.el (savehist-mode, savehist-save):
13020         * shadowfile.el (shadow-copy-files):
13021         * simple.el (kill-ring-save, next-line, previous-line)
13022         (normal-erase-is-backspace-mode):
13023         * strokes.el (strokes-update-window-configuration)
13024         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
13025         (strokes-xpm-for-stroke):
13026         * time.el (emacs-uptime, emacs-init-time):
13027         * tutorial.el (tutorial--describe-nonstandard-key)
13028         (tutorial--detailed-help):
13029         * type-break.el (type-break-mode)
13030         (type-break-mode-line-message-mode, type-break-query-mode)
13031         (type-break-guesstimate-keystroke-threshold):
13032         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
13033         * version.el (emacs-version):
13034         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
13035         * winner.el (winner-mode):
13036         * calendar/timeclock.el (timeclock-in, timeclock-out)
13037         (timeclock-status-string, timeclock-change)
13038         (timeclock-workday-remaining-string)
13039         (timeclock-workday-elapsed-string)
13040         (timeclock-when-to-leave-string):
13041         * calendar/todo-mode.el (todo-add-category):
13042         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
13043         * emacs-lisp/autoload.el (update-file-autoloads):
13044         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
13045         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
13046         (checkdoc-message-text, checkdoc-defun):
13047         * emacs-lisp/debug.el (debugger-list-functions):
13048         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
13049         * emacs-lisp/eieio-opt.el (eieio-describe-class)
13050         (eieio-describe-generic):
13051         * emacs-lisp/lisp-mnt.el (lm-synopsis):
13052         * emacs-lisp/shadow.el (list-load-path-shadows):
13053         * emulation/cua-base.el (cua-mode):
13054         * emulation/edt.el (edt-set-scroll-margins):
13055         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
13056         (tpu-toggle-regexp, tpu-toggle-search-direction)
13057         (tpu-toggle-rectangle, tpu-toggle-control-keys):
13058         * emulation/tpu-extras.el (tpu-set-scroll-margins):
13059         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
13060         (viper-set-parsing-style-toggling-macro)
13061         (viper-set-emacs-state-searchstyle-macros):
13062         * emulation/viper.el (viper-set-hooks):
13063         * eshell/esh-mode.el (eshell-truncate-buffer):
13064         * international/mule-cmds.el (prefer-coding-system)
13065         (describe-input-method, describe-language-environment):
13066         * international/mule-diag.el (list-character-sets)
13067         (describe-character-set, describe-coding-system)
13068         (describe-fontset, list-fontsets, list-input-methods):
13069         * mail/sendmail.el (mail-signature):
13070         * net/ange-ftp.el (ange-ftp-copy-file):
13071         * net/browse-url.el (browse-url):
13072         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
13073         * net/quickurl.el (quickurl-add-url):
13074         * net/rcirc.el (names, topic):
13075         * net/xesam.el (xesam-mode):
13076         * play/5x5.el (5x5-new-game):
13077         * play/yow.el (apropos-zippy):
13078         * progmodes/ada-mode.el (ada-mode-version):
13079         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
13080         (f90-end-of-block)
13081         (f90-beginning-of-block):
13082         * progmodes/fortran.el (fortran-end-of-block)
13083         (fortran-beginning-of-block):
13084         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
13085         * progmodes/python.el (python-describe-symbol, python-shell):
13086         * term/ns-win.el (ns-print-buffer):
13087         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
13088         * textmodes/flyspell.el (flyspell-mode-on):
13089         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
13090         (pages-directory-for-addresses):
13091         * textmodes/table.el (table-recognize-cell)
13092         (table-query-dimension, table-generate-source)
13093         (table-insert-sequence, table--warn-incompatibility):
13094         * textmodes/tex-mode.el (tex-validate-buffer):
13095         * textmodes/texinfmt.el (texinfmt-version)
13096         (texinfo-format-buffer):
13097         Use `called-interactively-p' instead of `interactive-p'.
13099 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
13101         * image-mode.el (image-toggle-display):
13102         * emacs-lisp/elp.el (elp-instrument-function):
13103         * emacs-lisp/advice.el (ad-make-advised-definition):
13104         * emacs-lisp/easy-mmode.el (define-minor-mode):
13105         * net/browse-url.el (browse-url-maybe-new-window):
13106         * progmodes/sh-script.el (sh-learn-buffer-indent):
13107         Pass new argument 'any to `called-interactively-p'.
13109 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
13111         * international/uni-bidi.el:
13112         * international/uni-category.el:
13113         * international/uni-combining.el:
13114         * international/uni-comment.el:
13115         * international/uni-decimal.el:
13116         * international/uni-decomposition.el:
13117         * international/uni-digit.el:
13118         * international/uni-lowercase.el:
13119         * international/uni-mirrored.el:
13120         * international/uni-name.el:
13121         * international/uni-numeric.el:
13122         * international/uni-old-name.el:
13123         * international/uni-titlecase.el:
13124         * international/uni-uppercase.el:
13125         Regenerate from Unicode 5.2.0 data.
13127 2009-10-01  Glenn Morris  <rgm@gnu.org>
13129         * Makefile.in (ELCFILES): Regenerate.
13131 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
13133         * subr.el (interactive-p): Mark obsolete.
13134         (called-interactively-p): Make the optional-ness of `kind' obsolete.
13135         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
13136         advertised-signature-table for subroutines as well.
13138         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
13139         (set-advertised-calling-convention): New function.
13140         (make-obsolete, define-obsolete-function-alias)
13141         (make-obsolete-variable, define-obsolete-variable-alias):
13142         Make the optional-ness of `when' obsolete.
13143         (define-obsolete-face-alias): Make `when' non-optional.
13144         * help-fns.el (help-function-arglist):
13145         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
13146         Use advertised-signature-table.
13148 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
13150         * files.el (delete-directory): New defun.  The original function
13151         in fileio.c has been renamed to `delete-directory-internal'.
13153         * dired.el (dired-delete-file): Call `delete-directory' with
13154         RECURSIVE parameter.
13156         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
13157         parameter RECURSIVE.  Implementation is missing.
13159         * net/tramp.el (tramp-handle-make-directory): Flush upper
13160         directory's file properties.
13161         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
13162         (tramp-handle-dired-recursive-delete-directory): Flush directory
13163         properties after the remove command only.
13165         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
13166         Handle optional parameter RECURSIVE.
13168         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
13169         Handle optional parameter RECURSIVE.
13171         * net/tramp-smb.el (tramp-smb-errors): Add error message for
13172         connection timeout.
13173         (tramp-smb-handle-delete-directory): Handle optional parameter
13174         RECURSIVE.
13176 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
13178         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
13179         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
13180         (byte-compile-defmacro): Use backquotes.
13182         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
13184         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
13185         has no associated file.
13186         (vc-resynch-buffer): Use vc-dir-buffers.
13188 2009-10-01  Glenn Morris  <rgm@gnu.org>
13190         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
13191         (chart-file-count):
13192         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
13193         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
13194         * emacs-lisp/eieio-opt.el (eieio-describe-class):
13195         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
13196         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
13197         (eieio-copy-parents-into-subclass, make-instance, class-children)
13198         (eieio-generic-form):
13200         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
13201         match-data.  (Bug#4555).
13203         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
13204         rather than parsing it as a regexp.  This relaxes the layout
13205         requirements and makes errors easier to detect.
13206         (check-declare-verify): Check file is regular.
13207         (check-declare-directory): Doc fix.
13208         * subr.el (declare-function): Doc fix.
13210         * ibuffer.el (ibuffer-format-qualifier):
13211         * isearch.el (hi-lock-regexp-okay):
13212         * calc/calc.el (math-zerop):
13213         * mail/uce.el (rmail-msgbeg, rmail-msgend):
13214         * term/w32-win.el (setup-default-fontset, set-fontset-font):
13215         Remove unused declarations.
13217 2009-09-30  Eric Ludlam  <zappo@gnu.org>
13219         * emacs-lisp/eieio.el (boolean-p): Delete.
13221 2009-09-30  Glenn Morris  <rgm@gnu.org>
13223         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
13225         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
13226         filename is not a string.
13228 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
13230         * files.el (safe-local-eval-forms): Fix typo.
13232 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13234         * vc-hooks.el (vc-dir-buffers): New var.
13235         (vc-state-refresh): New function.
13236         (vc-state): Use it.
13237         (vc-after-save): Always ask the backend to recompute the new state.
13238         Always call vc-dir if necessary, using vc-dir-buffers.
13239         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
13240         Use vc-dir-buffers.
13241         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
13242         (vc-dir-prepare-status-buffer, vc-dir-update)
13243         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
13244         Don't call expand-file-name on default-directory.
13246 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
13248         * speedbar.el (speedbar-item-delete):
13249         * calc/calc-prog.el (calc-kbd-if):
13250         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
13252         * epa.el (epa-key-list-mode-map):
13253         * hi-lock.el (hi-lock-menu): Fix typos in menus.
13255         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
13256         (hs-show-hook): Fix typo in docstring.
13258 2009-09-29  Glenn Morris  <rgm@gnu.org>
13260         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
13261         file-name-nondirectory call preventing location of cedet files.
13262         (check-declare-verify): Use literal search rather than re-search.
13263         Add basic defmethod and defclass, and define-overloadable-function.
13265         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13266         Use tramp-compat-file-attributes rather than nonexistent
13267         tramp-compat-handle-file-attributes.
13269         * Makefile.in (lisptagsfiles4): New.
13270         (AUTOGENEL): Add cedet loaddefs files.
13271         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
13272         (update-elclist, compile-always, backup-compiled-files)
13273         (bootstrap-clean): Add yet another directory level.
13274         (update-elclist): Use LC_COLLATE rather than COLLATE.
13275         (ELCFILES): Update, via `make update-elclist'.
13277 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
13279         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
13280         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
13281         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
13283 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
13285         * Makefile.in (lisptagsfiles3): Define.
13286         (TAGS, TAGS-LISP): Use it.
13287         (update-elclist): Add third directory level to look for elc files.
13288         (compile-always): Likewise.
13289         (backup-compiled-files): Likewise.
13290         (bootstrap-clean): Likewise.
13291         (ELCFILES): Update.
13293 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
13295         * Makefile.in (ELCFILES): Add CEDET files.
13297 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
13299         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
13301         * net/tramp.el (top): Require tramp-imap.
13303         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13304         Use `tramp-compat-handle-file-attributes'.
13306 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
13308         * net/tramp-imap.el: New package.
13310 2009-09-28  Eric Ludlam  <zappo@gnu.org>
13312         * emacs-lisp/chart.el:
13313         * emacs-lisp/eieio-base.el:
13314         * emacs-lisp/eieio-comp.el:
13315         * emacs-lisp/eieio-custom.el:
13316         * emacs-lisp/eieio-datadebug.el:
13317         * emacs-lisp/eieio-opt.el:
13318         * emacs-lisp/eieio-speedbar.el:
13319         * emacs-lisp/eieio.el: New files.
13321 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13323         * whitespace.el (whitespace-trailing-regexp)
13324         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
13325         Fix doc string.
13327 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
13329         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
13330         menu.
13332         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
13333         menu-bar-ediff-menu.
13335         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
13336         define-overloadable-function.
13338         * progmodes/autoconf.el: Provide autoconf as well, so that this
13339         file can be `require'd.
13341         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
13343         * emacs-lisp/autoload.el (generated-autoload-feature)
13344         (generated-autoload-load-name): New vars.
13345         (autoload-rubric, autoload-generate-file-autoloads): Use them.
13346         (make-autoload): Recognize define-overloadable-function and
13347         defclass forms (for EIEIO).
13349         * Makefile.in (update-subdirs): Exclude cedet directory.
13351 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
13353         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
13355         * faces.el: Default light-background background for region face to
13356         ns_selection_color under NS.
13358 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
13360         * net/imap-hash.el: New library, see NEWS.
13362         * Makefile.in (ELCFILES): Add imap-hash.el.
13364 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13366         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
13367         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
13368         * help-macro.el (make-help-screen): Avoid using an ambiguous function
13369         definition where the docstring could be taken for the return value.
13371 2009-09-26  Glenn Morris  <rgm@gnu.org>
13373         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
13374         Add option to only show images below a certain size.
13375         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
13376         save-excursion calls.
13378 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
13380         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
13381         subdirectories) and eieio.
13383 2009-09-26  Alan Mackenzie  <acm@muc.de>
13385         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
13386         buggy bracketing.  (Bug#4289)
13388         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
13389         character constants (as case labels).  (Bug#4289)
13391 2009-09-25  Juri Linkov  <juri@jurta.org>
13393         * files.el (safe-local-eval-forms): Allow time-stamp in
13394         before-save-hook (Bug#4554).
13396 2009-09-25  Drew Adams  <drew.adams@oracle.com>
13398         * menu-bar.el (list-buffers-directory): Doc fix.
13400 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13402         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
13403         Try and avoid copying twice the same paragraph.
13404         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
13405         Remove save-excursion.
13406         (log-edit-changelog-entry): Do it here instead.
13408 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
13410         * bs.el (bs--get-file-name): Use `list-buffers-directory'
13411         when available, instead of hardcoding mode names.  Doc fix.
13413         * menu-bar.el (list-buffers-directory): Add docstring.
13414         Make automatically buffer-local.
13416         * dired.el (dired-mode):
13417         * files.el (cd-absolute):
13418         * pcvs.el (cvs-temp-buffer):
13419         * pcvs-util.el (cvs-get-buffer-create):
13420         * shell.el (shell-mode):
13421         * vc-dir.el (vc-dir-mode):
13422         Don't make `list-buffers-directory' buffer local.
13424 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
13426         * comint.el (comint-exec, comint-run, make-comint):
13427         Doc fixes (Bug#4542).
13429 2009-09-25  Glenn Morris  <rgm@gnu.org>
13431         * mail/rmailmm.el (rmail-mime): New custom group.
13432         Move all defcustoms in this file into this group.
13433         (rmail-mime-media-type-handlers-alist): Revert previous change.
13434         (rmail-mime-show-images): New option.
13435         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
13436         references to it, since it wasn't actually used for anything.
13437         (rmail-mime-insert-image): New function.
13438         (rmail-mime-image): Use rmail-mime-insert-image.
13439         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
13440         obey the value of `rmail-mime-show-images' option.  Print the size of
13441         attachments.
13443 2009-09-25  David Engster  <deng@randomsample.de>
13445         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
13447 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13449         * whitespace.el: Does not highlight trailing spaces While point is
13450         at end of line.  Does not highligt spaces at beginning of buffer
13451         while point is at beginning of buffer.  Does not highlight spaces
13452         at end of buffer while point is at end of buffer.  (Bug#4177)
13453         New version 12.0.
13454         (whitespace-display-mappings): Adjust initialization.
13455         (whitespace-point, whitespace-font-lock-refontify): New vars.
13456         (whitespace-color-on, whitespace-color-off): Adjust code.
13457         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
13458         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
13459         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
13461 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
13463         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
13465         * textmodes/sgml-mode.el: Remove xml-mode alias.
13467         * files.el (auto-mode-alist, conf-mode-maybe)
13468         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
13470 2009-09-24  Alan Mackenzie  <acm@muc.de>
13472         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
13473         c-forward-conditionals, but it doesn't move point and doesn't set
13474         the mark.
13475         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
13476         (c-down-conditional-with-else, c-backward-conditional)
13477         (c-forward-conditional): Refactor to use c-scan-conditionals.
13479 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
13481         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
13482         (help-default-arg-highlight): Remove.
13483         (help-highlight-arg): New function.
13484         (help-do-arg-highlight): Use it.
13485         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
13487 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13489         * term.el (term-set-scroll-region, term-handle-ansi-escape):
13490         Undo last change, which didn't fix the problem and introduced others.
13492 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
13494         * progmodes/gdb-mi.el: Don't require speedbar.
13495         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
13497 2009-09-24  Glenn Morris  <rgm@gnu.org>
13499         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
13501         * term/ns-win.el (ns-reg-to-script): Define for compiler.
13503         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
13504         there is no newline after the final mime boundary.  (Bug#4539)
13505         Move markers on insertion so that any buttons inserted don't end up in
13506         the next part of a multipart message.
13507         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
13508         (rmail-mime-bulk-handler): Optionally handle images.
13509         (rmail-mime-image): New button action.
13510         (rmail-mime-image-handler): New function.
13511         (rmail-mime-mode): New mode.
13512         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
13514 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13516         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
13517         than just dropping elements from it (bug#4504).
13519         * term.el (term-set-scroll-region): Don't move cursor any more.
13520         (term-handle-ansi-escape): Call term-goto here instead.
13521         Suggested by Ivan Kanis <apple@kanis.eu>.
13523         * term.el: Require CL.
13524         (term-ansi-reset): New function.
13525         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
13526         (term-handle-colors-array): Simplify.
13528 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
13530         * allout.el (allout-overlay-interior-modification-handler)
13531         (allout-obtain-passphrase):
13532         * epa-file.el (epa-file-write-region):
13533         * ps-print.el (ps-begin-job):
13534         * vc-hooks.el (vc-toggle-read-only):
13535         * vc-rcs.el (vc-rcs-rollback):
13536         * vc-sccs.el (vc-sccs-rollback):
13537         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
13538         (vc-version-diff, vc-revert, vc-rollback):
13539         * wdired.el (wdired-check-kill-buffer):
13540         * emacs-lisp/authors.el (authors):
13541         * net/socks.el (socks-open-connection):
13542         * net/zeroconf.el (zeroconf-service-add-hook):
13543         * obsolete/vc-mcvs.el (vc-mcvs-register):
13544         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
13545         (gdb-select-frame):
13546         * progmodes/grep.el (lgrep, rgrep):
13547         * progmodes/idlw-help.el (idlwave-help-check-locations)
13548         (idlwave-help-html-link, idlwave-help-assistant-open-link):
13549         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
13550         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
13551         (reftex-toc-rename-label): Fix typos in error messages.
13553         * dired-aux.el (dired-do-shell-command): Reflow docstring.
13554         (dired-copy-how-to-fn): Doc fix.
13555         (dired-files-attributes, dired-read-shell-command):
13556         Fix typos in docstrings.
13558         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
13559         (dired-x-find-file-other-window): Reflow docstrings.
13560         (dired-omit-marker-char, dired-read-shell-command)
13561         (dired-x-submit-report): Fix typos in docstrings.
13563         * shell.el (shell-mode-hook):
13564         * view.el (View-scroll-line-forward):
13565         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
13566         Fix typos in docstrings.
13568         * net/dig.el (dig-invoke): Fix typo in docstring.
13569         (query-dig): Reflow docstring.
13571         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
13572         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
13573         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
13574         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
13575         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
13576         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
13577         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
13578         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
13579         (idlwave-completion-map, idlwave-current-indent)
13580         (idlwave-custom-ampersand-surround, idlwave-customize)
13581         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
13582         (idlwave-define-abbrev, idlwave-determine-class-special)
13583         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
13584         (idlwave-end-block-reg, idlwave-end-of-statement)
13585         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
13586         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
13587         (idlwave-explicit-class-listed, idlwave-file-header)
13588         (idlwave-fill-paragraph, idlwave-find-class-definition)
13589         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
13590         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
13591         (idlwave-in-quote, idlwave-indent-action-table)
13592         (idlwave-indent-expand-table, idlwave-indent-line)
13593         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
13594         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
13595         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
13596         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
13597         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
13598         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
13599         (idlwave-outlawed-buffers, idlwave-popup-select)
13600         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
13601         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
13602         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
13603         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
13604         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
13605         (idlwave-statement-type, idlwave-struct-skip)
13606         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
13607         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
13608         (idlwave-what-module-find-class): Fix typos in docstrings.
13609         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
13610         (idlwave-calculate-cont-indent, idlwave-expand-equal)
13611         (idlwave-find-module, idlwave-find-structure-definition)
13612         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
13613         (idlwave-list-load-path-shadows, idlwave-next-statement)
13614         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
13615         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
13616         (idlwave-template): Reflow docstrings.
13618         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
13619         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
13620         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
13621         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
13622         (idlwave-shell-display-line, idlwave-shell-display-wframe)
13623         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
13624         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
13625         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
13626         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
13627         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
13628         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
13629         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
13630         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
13631         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
13632         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
13633         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
13634         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
13635         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
13636         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
13637         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
13638         Fix typos in docstrings.
13639         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
13640         (idlwave-shell-hide-output, idlwave-shell-mode)
13641         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
13642         Reflow docstrings.
13644         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
13646 2009-09-24  Ivan Kanis  <apple@kanis.eu>
13648         * term.el (term-bold-attribute): New var.
13649         (term-handle-colors-array): Use it.
13651 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
13653         * progmodes/gdb-mi.el (gdb-version): New variable.
13654         (gdb-non-stop-handler): Set gdb-version.
13655         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
13656         Condition "--thread" option on gdb-version.
13657         (gdb-invalidate-threads): Remove unused argument.
13659 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13661         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
13662         to looking-back to avoid ridiculous slow down in large files (bug#4511).
13664 2009-09-23  Glenn Morris  <rgm@gnu.org>
13666         * mail/rmail.el (rmail-reply): Don't try to add a References header when
13667         replying to mail without References or Message-Id.  (Bug#4525)
13669 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
13671         * term/ns-win.el (ns-reg-to-script): New variable.
13673 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
13675         * epg.el (epg-wait-for-status): Preserve existing 'error results.
13677 2009-09-22  Sam Steingold  <sds@gnu.org>
13679         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
13680         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
13681         to 1 because hg returns status 1 when nothing is found.
13682         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
13684 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13686         * textmodes/fill.el: Convert to utf-8 encoding.
13687         (fill-french-nobreak-p): Remove redundant » and « inherited from our
13688         pre-Unicode days.
13690         * add-log.el (change-log-fill-forward-paragraph): New function.
13691         (change-log-mode): Use it so fill-region DTRT.
13692         Set fill-indent-according-to-mode here rather than in
13693         change-log-fill-paragraph.
13694         (change-log-fill-paragraph): Remove.
13696 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
13698         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
13699         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
13701 2009-09-22  Glenn Morris  <rgm@gnu.org>
13703         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
13704         the scroll-bar scroll the calendar window rather than the buffer.
13706         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
13707         commands that move point (as opposed to scrolling).
13709         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
13711         * emacs-lisp/elint.el (elint): New custom group.
13712         (elint-log-buffer): Make it a defcustom.
13713         (elint-scan-preloaded, elint-ignored-warnings)
13714         (elint-directory-skip-re): New options.
13715         (elint-builtin-variables): Doc fix.
13716         (elint-preloaded-env): New variable.
13717         (elint-unknown-builtin-args): Add an entry for encode-time.
13718         (elint-extra-errors): Make it a variable rather than a constant.
13719         (elint-preloaded-skip-re): New constant.
13720         (elint-directory): Skip files matching elint-directory-skip-re.
13721         (elint-features): New variable, local to linted buffers.
13722         (elint-update-env): Initialize elint-features.  Possibly add
13723         elint-preloaded-env to the buffer's environment.
13724         (elint-get-top-forms): Bind elint-current-pos, for log messages.
13725         Skip quoted forms.
13726         (elint-init-form): New function, extracted from elint-init-env.
13727         Make non-list forms a warning rather than an error.
13728         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
13729         easy-menu-define, put that adds an error-condition, and provide.
13730         When requiring cl, also require cl-macs.  Really require cl, to handle
13731         some cl macros.  Store required libraries in the list elint-features,
13732         so as not to re-load them.  Treat cc-require like require.
13733         (elint-init-env): Call elint-init-form to do the work.
13734         Handle eval-and-compile and such like.
13735         (elint-add-required-env): Do not clear messages.
13736         (elint-special-forms): Add handlers for function, defalias, if, when,
13737         unless, and, or.
13738         (elint-form): Add optional argument to ignore elint-special-forms,
13739         useful to prevent recursive calls from handlers.  Doc fix.
13740         Respect elint-ignored-warnings.
13741         (elint-form): Respect elint-ignored-warnings.
13742         (elint-bound-variable, elint-bound-function): New variables.
13743         (elint-unbound-variable): Respect elint-bound-variable.
13744         (elint-get-args): Respect elint-bound-function.
13745         (elint-check-cond-form): Add some simple handling for (f)boundp and
13746         featurep tests.
13747         (elint-check-defalias-form): New handler.
13748         (elint-check-let-form): Make an empty let a warning rather than an
13749         error.
13750         (elint-check-setq-form): Make an empty setq a warning rather than an
13751         error.  Respect elint-ignored-warnings.
13752         (elint-check-defvar-form): Accept null doc-strings.
13753         (elint-check-conditional-form): New handler.  Does some simple-minded
13754         checking of featurep and (f)boundp tests.
13755         (elint-put-function-args): New function.
13756         (elint-initialize): Use elint-scan-doc-file rather than
13757         elint-find-builtin-variables.  Use elint-put-function-args.
13758         Possibly scan preloaded-file-list.
13759         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
13760         extend to handle functions as well.
13762 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
13764         * linum.el (linum-delete-overlays, linum-update-window):
13765         Do not modify the right margin.  (Bug#3971)
13767 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
13769         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
13770         nxml-mode instead of xml-mode.
13772 2009-09-21  Kevin Ryde  <user42@zip.com.au>
13774         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
13776 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13778         * net/dig.el (dig-mode): Use define-derived-mode.
13780 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
13782         * vc-dispatcher.el (vc-do-command): Return the process object in
13783         the asynchronous case.  Use when instead of if.  Do not run
13784         vc-exec-after to display a message if not enabled.  (Bug#4463)
13786         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
13787         properties to the stash strings.
13788         (vc-git-stash-list): Return a list of strings.
13789         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
13790         (vc-git-stash-show-at-point): New functions.
13791         (vc-git-stash-map): New keymap.
13793         * register.el (ctl-x-r-map): Define the keys here instead of
13794         using autoload.
13796 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
13798         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
13799         list, to workaround performance problem (bug#4485).
13801 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
13803         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
13805 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
13807         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
13808         Document that this option is not recommended to use.
13810 2009-09-19  Glenn Morris  <rgm@gnu.org>
13812         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
13813         variable `var'.
13815         * calc/calc-alg.el (var):
13816         * calc/calcalg2.el (var): Define for compiler.
13818 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
13820         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
13821         Doc fix (Bug#3932).
13823         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
13825         * time-stamp.el (time-stamp-month-dd-yyyy)
13826         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
13827         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
13828         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
13829         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
13830         Remove functions that have been obsolete since 1995 (Bug#4436).
13832         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
13833         indent buffer only if called interactively (Bug#4452).
13835 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
13836             Eli Zaretskii  <eliz@gnu.org>
13838         This fixes bug#4197 (merged to bug#865, though not identical).
13839         * server.el (server-auth-dir): Add docstring note about FAT32.
13840         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
13841         but warn against using them.
13843 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
13845         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
13846         older GDB where there is no has_more field.
13848 2009-09-19  Glenn Morris  <rgm@gnu.org>
13850         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
13852 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
13854         * files.el (auto-mode-alist): Change default for XML files to nXML
13855         mode (Bug#4169).
13857 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
13859         * server.el (server-ensure-safe-dir): Pass 'integer
13860         to `file-attributes', as suggested.
13862 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
13864         * dired-aux.el (dired-query-alist): Remove spurious backslash.
13865         (dired-query): Use read-key.
13867 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
13869         * cus-start.el (ns-use-qd-smoothing): Remove.
13871 2009-09-18  Glenn Morris  <rgm@gnu.org>
13873         * allout.el (top-level): Remove unnecessary progn.
13875         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
13877         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
13878         definition of abbrev table.
13880         * speedbar.el (speedbar-track-mouse):
13881         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
13882         * net/eudc.el (eudc-expand-inline):
13883         * net/newst-backend.el (newsticker--cache-read-feed):
13884         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
13885         condition-case handlers.
13887 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
13889         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
13890         (gdb-var-list): Add an element for has_more field.
13891         (gdb-non-stop-handler): Enable pretty printing for STL containers.
13892         (gdb-var-create-handler, gdb-var-list-children-handler-1)
13893         (gdb-var-update-handler-1): Parse output of dynamic variable
13894         objects (STL containers).
13895         (gdb-var-delete-1): Pass var1 as an explicit second argument.
13896         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
13898         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
13899         gdb-var-list.
13900         (gud-speedbar-buttons): Make node expandable if expression "has more"
13901         children.
13903 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
13905         * startup.el (emacs-quick-startup): Remove variable and all uses.
13906         (command-line): Set `inhibit-x-resources' instead.
13907         (command-line-1): Use `inhibit-x-resources' instead.
13909 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
13911         * subr.el: Fix last change to avoid using the `unless' macro,
13912         which breaks bootstrapping.
13914 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13916         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
13917         extended definitions, in case we reload subr.el after having
13918         loaded CL.
13919         (eval-next-after-load): Mark as obsolete.
13921 2009-09-17  Juri Linkov  <juri@jurta.org>
13923         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
13924         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
13925         (menu-bar-showhide-menu, menu-bar-tools-menu)
13926         (menu-bar-describe-menu, menu-bar-help-menu)
13927         (minibuffer-local-completion-map, minibuffer-local-map):
13928         Fix list quoting.
13930 2009-09-17  Glenn Morris  <rgm@gnu.org>
13932         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
13933         arguments, whether or not it has a handler.
13935         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
13937         * simple.el (hard-newline): Give it a doc-string.
13939         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
13940         (lisp-mode-syntax-table): Give them doc-strings.
13942 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
13944         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
13945         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
13946         (menu-bar-options-menu, menu-bar-showhide-menu)
13947         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
13948         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
13949         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
13950         (menu-bar-options-menu, menu-bar-tools-menu)
13951         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
13952         (menu-bar-help-menu):
13953         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
13954         string arguments.
13956         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
13957         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
13958         calls for the menu names and :help.
13960 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13962         * mouse.el (minor-mode-menu-from-indicator): Pay attention
13963         to :minor-mode-function (bug#4455).
13965 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
13967         * startup.el (command-line): Initialize the window-system after
13968         processing the command-line.
13970         * textmodes/page.el (what-page): Make sure we don't inf-loop if
13971         page-delimiter matches the empty string.
13973 2009-09-16  Glenn Morris  <rgm@gnu.org>
13975         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
13976         byte-compile-not-obsolete-var.  It's a list now.
13977         (byte-compile-not-obsolete-funcs): New variable.
13978         (byte-compile-warn-obsolete): Don't warn about functions if they are in
13979         byte-compile-not-obsolete-funcs.
13980         (byte-compile-variable-ref, byte-compile-defvar): Update for
13981         byte-compile-not-obsolete-vars name-change and list nature.
13982         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
13983         and variables behind (f)boundp tests.
13984         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
13986 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
13988         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
13990 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13992         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
13993         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
13994         Don't autoload.
13996 2009-09-15  Stephen Eglen  <stephen@gnu.org>
13998         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
13999         the virtual-buffers, use the name of the buffer specified by
14000         find-file-noselect, as the match may be a symlink.  (This was a
14001         problem if the target and the symlink had different names.)
14003 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14005         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
14007         * desktop.el (desktop-path): Check user-emacs-directory.
14009         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
14011         * loadup.el: Use after-load-functions to GC after loading each file.
14012         Remove the explicit GC calls that used to be sprinkled around.
14014         * subr.el (after-load-functions): New hook.
14015         (do-after-load-evaluation): Run it.  Use string-match-p to detect
14016         `obsolete' packages, rather than painfully extracting the relevant
14017         directory name.
14019 2009-09-15  Glenn Morris  <rgm@gnu.org>
14021         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
14022         free variable `doc'.
14024         * dired.el (dired-mode-map): Add menu entry for async shell command.
14026         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
14027         variables, also consider the .elc files, since the .el files are
14028         normally gzipped (subsequent code locates the .el.gz from the .elc).
14030         * calc/calc-prog.el (arglist): Define for compiler.
14032         * calendar/diary-lib.el (diary-display-function): Change the default to
14033         fancy display.
14034         (body): Define for compiler.
14036         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
14037         (byte-compile-file-form, byte-compile-lambda)
14038         (byte-compile-top-level-body, byte-compile-form)
14039         (byte-compile-variable-ref, byte-compile-setq)
14040         (byte-compile-setq-default, byte-compile-body)
14041         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
14042         (batch-byte-compile): Give some more local variables with common names
14043         a "bytecomp-" prefix to avoid masking warnings about free variables.
14045         * startup.el (command-line-1): Give local variables with common names a
14046         distinguishing prefix, so as not to hide free variable warnings during
14047         bootstrap.
14049         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
14050         clever and add a suffix to make a unique name, just let the user decide
14051         whether or not to overwrite it.  If the input is a directory, write the
14052         default filename to that directory.  (Bug#4388)
14053         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
14054         is a filename-as-a-directory.
14056 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14058         * textmodes/page.el (what-page): Don't move to beginning of line.
14059         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
14061 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
14063         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
14065 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
14067         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
14068         * help.el (help-for-help-internal): Add purecopy calls for text.
14070         * vc.el (top): print-log method now takes an optional SHORTLOG
14071         argument.  Add a new method: root.
14072         (vc-root-diff, vc-print-root-log): New functions.
14073         (vc-log-short-style): New variable.
14074         (vc-print-log-internal): Add support for showing short logs.
14076         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
14077         vc-print-root-log and vc-print-root-diff.
14079         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
14080         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
14081         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
14082         short logs.
14084         * vc-cvs.el (vc-cvs-print-log):
14085         * vc-mtn.el (vc-mtn-print-log):
14086         * vc-rcs.el (vc-rcs-print-log):
14087         * vc-sccs.el (vc-sccs-print-log):
14088         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
14089         that is ignored for now.
14091         * vc-mtn.el (vc-mtn-annotate-command):
14092         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
14094 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14096         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
14097         to function-key-map, and give them ascii-character property.
14098         * term/x-win.el (x-alternatives-map):
14099         * term/ns-win.el (ns-alternatives-map):
14100         * term/internal.el (msdos-key-remapping-map):
14101         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
14103 2009-09-14  Glenn Morris  <rgm@gnu.org>
14105         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
14106         temp-buffers (2009-09-12).
14108 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14110         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
14111         the new read-key function.
14113 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
14115         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
14116         is defined (Bug#4405).
14118 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
14120         * recentf.el (recentf-cleanup): Use a hash table to find
14121         duplicates (Bug#4407).
14123 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
14125         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
14126         kp-0 to ascii equivalents (Bug#4325).
14128 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
14130         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
14132         * eshell/em-hist.el:
14133         * eshell/em-dirs.el (eshell-complete-user-reference):
14134         Declare pcomplete functions and variables to avoid compiler warnings.
14136 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
14138         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
14139         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
14140         * eshell/em-alias.el (eshell-aliases-file):
14141         * eshell/em-hist.el (eshell-history-file-name):
14142         Use expand-file-name instead of concat to make file names (Bug#4308).
14144 2009-09-13  Glenn Morris  <rgm@gnu.org>
14146         * ediff-merg.el (ediff-do-merge):
14147         * filesets.el (filesets-run-cmd):
14148         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
14149         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
14150         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
14151         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
14152         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
14153         Replace empty `let's with `progn'.
14155 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14157         * mail/sendmail.el (send-mail-function):
14158         * tooltip.el (tooltip-mode):
14159         * simple.el (transient-mark-mode):
14160         * rfn-eshadow.el (file-name-shadow-mode):
14161         * frame.el (blink-cursor-mode):
14162         * font-core.el (global-font-lock-mode):
14163         * files.el (temporary-file-directory)
14164         (small-temporary-file-directory, auto-save-file-name-transforms):
14165         * epa-hook.el (auto-encryption-mode):
14166         * composite.el (global-auto-composition-mode):
14167         Use custom-initialize-delay.
14168         * startup.el (command-line): Don't explicitly call
14169         custom-reevaluate-setting for all the above vars.
14170         * custom.el (custom-initialize-safe-set)
14171         (custom-initialize-safe-default): Delete.
14173 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14175         * term/x-win.el (x-initialize-window-system):
14176         * term/w32-win.el (w32-initialize-window-system):
14177         * term/ns-win.el (ns-initialize-window-system): Don't call
14178         mouse-wheel-mode since it's enabled globally by default already.
14180         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
14181         actually define the variable, but only silences the byte-compiler.
14182         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
14183         before looking it up.
14184         (mouse-wheel-scroll-amount): Also reset the bindings if this value
14185         is changed.
14187 2009-09-12  Glenn Morris  <rgm@gnu.org>
14189         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
14190         1000.
14191         (elint-add-required-env): Don't beep on error.
14192         (elint-forms): In case of error, return ENV unchanged.
14193         (elint-init-env): Skip non-list forms.
14194         (elint-log): Handle unknown file positions.
14196 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
14198         * epg.el (epg-make-context): Add autoload cookie.
14199         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
14200         (epg-decrypt-string, epg-start-verify, epg-verify-file)
14201         (epg-verify-string, epg-start-sign, epg-sign-file)
14202         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
14203         (epg-encrypt-string, epg-start-export-keys)
14204         (epg-export-keys-to-file, epg-export-keys-to-string)
14205         (epg-start-import-keys, epg-import-keys-from-file)
14206         (epg-import-keys-from-string, epg-start-receive-keys)
14207         (epg-receive-keys, epg-import-keys-from-server)
14208         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
14209         (epg-sign-keys, epg-start-generate-key)
14210         (epg-generate-key-from-file, epg-generate-key-from-string):
14211         Remove autoload cookie.
14213 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
14215         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
14216         reevaluation of trash-directory.
14218         * mwheel.el: Fix last change.
14219         (mouse-wheel-mode): New defvar.
14220         (mouse-wheel-mode): Remove autoload cookie.
14222 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14224         * mwheel.el (mwheel-installed-bindings): New var.
14225         (mouse-wheel-mode): Use it, so as to make sure we really remove all
14226         the bindings we set last time.  Use custom-initialize-delay.
14227         * loadup.el: Load mwheel after term/*-win.el.
14228         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
14229         and mouse-wheel-up-event now that their first evaluation is done
14230         sufficiently late to be correct.
14232         * startup.el (tutorial-directory): Make it a defcustom.
14233         Use custom-initialize-delay rather than eval-at-startup to set it.
14234         * image.el (image-load-path): Make it a defcustom.
14235         Use custom-initialize-delay rather than eval-at-startup to set it.
14236         * subr.el (eval-at-startup): Remove.
14237         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
14239         * subr.el (do-after-load-evaluation): Warn the user after loading an
14240         obsolete package.
14242 2009-09-12  Glenn Morris  <rgm@gnu.org>
14244         * proced.el (proced-mark-alt): Remove alias.
14245         (proced-mode-map): Remove proced-mark-alt.
14247         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
14248         Elint file and directory.  Remove initialization entry.
14250         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
14251         commands.
14252         (elint-current-buffer): Set mode-line-process.
14253         (elint-init-env): Handle define-derived-mode.
14254         Fix declare-function with unspecified arglist.  Guard against odd
14255         defalias statements (eg iso-insert's 8859-1-map).
14256         (elint-add-required-env): Use a temp buffer.
14257         (elint-form): Just print the function/macro name, not the whole form.
14258         Return env unchanged if we fail to parse a macro.
14259         (elint-forms): Guard against parse errors.
14260         (elint-output): New function, to handle batch mode.
14261         (elint-log-message): Add optional argument.  Use elint-output.
14262         (elint-set-mode-line): New function.
14264 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
14266         * emacs-lisp/elp.el (elp-not-profilable): Add more
14267         functions (Bug#4233).
14269 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
14271         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
14272         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
14274 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
14276         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
14277         (gdb-var-list-children): Use json parsing.
14279 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
14281         * progmodes/js.el (js--proper-indentation): Handle the case where
14282         char-before is null.  Reported by Deniz Dogan.
14284 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
14286         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
14288 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
14290         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
14291         (epg-digest-algorithm-alist): Add SHA224.
14292         (epg-context-set-passphrase-callback)
14293         (epg-context-set-progress-callback): Add description about
14294         callback function.
14296 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14298         * custom.el (custom-delayed-init-variables): New var.
14299         (custom-initialize-delay): New function.
14300         * startup.el (command-line): "Re"evaluate all vars in
14301         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
14302         explicitly any more.
14303         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
14304         to avoid creating a ~/.emacs.d at build-time (bug#4347).
14306         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
14308 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
14310         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
14311         (gdb-var-update-handler): Use json parsing.
14313 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
14315         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
14316         decode annotated text, regardless of language environment.  (Bug#2741)
14318 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14320         * Makefile.in (autoloads): Make rmail.el writable as well.
14322 2009-09-11  Glenn Morris  <rgm@gnu.org>
14324         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
14325         loaddefs.el.
14326         * dired.el: Regenerate with extracted autoloads.
14327         * Makefile.in (autoloads): Make dired.el writable.
14329         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
14330         * ibuffer.el: Regenerate with extracted autoloads.
14331         * Makefile.in (autoloads): Make ibuffer.el writable.
14333         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
14334         * version.el (emacs-copyright, emacs-major-version)
14335         (emacs-minor-version): Reformat doc-strings for make-docfile.
14337         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
14338         functions and variables, since they must be stuff specific to some other
14339         platform.
14340         (apropos-print): Make mouse-click message less specific about button.
14342         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
14343         that records where a macro was defined.
14344         * help-fns.el (describe-function-1): Mention if a function has a
14345         compiler-macro.
14346         * help-mode.el (help-function-cmacro): New button.
14348         * locate.el (top-level): Always require dired.
14349         (locate-mode-map): Initialize inside the defvar.
14351         * net/ange-ftp.el (dired-compress-file): Declare.
14352         (ange-ftp-dired-compress-file): Add doc string.
14354         * term/ns-win.el (x-display-name, x-setup-function-keys):
14355         Unify doc-strings with X versions.
14357 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14359         * emulation/crisp.el (crisp-mode-map): Move initialization
14360         into declaration.
14361         (crisp-mode): Use define-minor-mode.
14363         * progmodes/xscheme.el (xscheme-evaluation-commands):
14364         Put a :advertised-binding property rather than using
14365         advertised-xscheme-send-previous-expression.
14366         (advertised-xscheme-send-previous-expression): Declare obsolete.
14367         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
14368         `advertised-undo'.
14369         (crisp-mode): Add corresponding bindings to
14370         undo's :advertised-binding instead.
14371         * dired.el (dired-mode-map): Put a :advertised-binding property rather
14372         than using dired-advertised-find-file.
14373         (dired-advertised-find-file):
14374         * simple.el (advertised-undo):
14375         * wid-edit.el (advertised-widget-backward): Declare obsolete.
14376         (widget-keymap): Put a :advertised-binding property rather
14377         than using advertised-widget-backward.
14378         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
14379         than using advertised-undo.
14380         * tutorial.el (tutorial--default-keys): Adjust accordingly.
14382 2009-09-10  Simon South  <ssouth@slowcomputing.org>
14384         * progmodes/delphi.el (delphi-tab): Indent region when Transient
14385         Mark mode is enabled and region is active; otherwise indent or
14386         insert TAB as usual.
14387         (delphi-mode): Update description of TAB-key binding.
14389 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14391         * subr.el (define-key-rebound-commands): Mark obsolete.
14392         * startup.el (precompute-menubar-bindings): Remove.
14393         (normal-top-level): Remove obsolete code that tried to precompute
14394         menubar bindings.
14395         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
14396         define-key-rebound-commands and precompute-menubar-bindings.
14398 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
14400         * net/imap.el (imap-interactive-login): Better messages.
14401         (imap-open): Fix bug with renamed buffer on reconnect.
14402         (imap-authenticate): Add buffer-local imap-last-authenticator variable
14403         for easier debugging and cleaner code.  On successful (guessed based on
14404         server capabilities) secondary authentication, set imap-state
14405         correctly.
14406         (imap-last-authenticator): Define imap-last-authenticator as a variable
14407         to avoid warnings.
14409 2009-09-10  Glenn Morris  <rgm@gnu.org>
14411         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
14413         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
14414         (byte-compile-file-form-autoload): Don't warn about unknown functions
14415         where the autoload statement comes after the use.
14416         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
14417         that any handlers inside the body (eg require) are in turn respected.
14419         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
14420         effects.
14422         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
14423         and syntax and abbrev tables basic docs, if they don't have any.
14425         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
14427         * international/mule-cmds.el (top-level): Require cl when compiling.
14428         (view-hello-file): Use default-value rather than
14429         default-enable-multibyte-characters.
14431         * progmodes/fortran.el: Move all safe and risky properties into the
14432         defcustoms.
14434         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
14435         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
14436         * mail/undigest.el:
14437         Put autoloads in rmail.el rather than loaddefs.el.
14438         * mail/rmail.el: Regenerate with extracted autoloads.
14440         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
14441         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
14443 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
14445         Reported in thread for Bug#4375.
14446         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
14447         "-data-evaluate-expression" instead of print.
14448         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
14449         (gdb-tooltip-print): Parse output from above MI command.
14450         (gdb): Revert 2009-08-11 change.  User should detach inferior
14451         manually.
14453         Remove the word "separate" from IO functions as inferior
14454         output is now never displayed in the GUD buffer.
14456 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
14458         * startup.el (command-line-normalize-file-name): On Windows and
14459         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
14461 2009-09-10  Juri Linkov  <juri@jurta.org>
14463         * isearch.el (isearch-text-char-description): Propertize escape
14464         character sequences with the `escape-glyph' face.  (Bug#4344)
14466         * simple.el (shell-command): Set asynchronous process filter to
14467         `comint-output-filter'.  (Bug#4343)
14469         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
14470         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
14471         the list.  Move "asm" to the bottom.
14472         (grep-find-ignored-directories): Add `choice' with nil value
14473         to empty the list easily.
14474         (grep-find-ignored-files): New option.
14475         (grep-files-history): Set to nil by default instead of '("ch" "el").
14476         (grep-compute-defaults): Add "<X>" to `grep-template'.
14477         (grep-read-files): Bind new local variables `default-alias' and
14478         `default-extension'.  Use a list of default values for the file prompt.
14479         (lgrep): Add `--exclude=' command line options composed from
14480         `grep-find-ignored-files'.
14481         (rgrep): Add `-name' command line options composed from
14482         `grep-find-ignored-files'.  (Bug#4301)
14484 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
14486         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
14487         (bug#4368).
14489 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14491         * calendar/time-date.el (autoload):
14492         Expand define-obsolete-function-alias into defalias and make-obsolete
14493         for old Emacsen that Gnus supports.
14494         (with-no-warnings): Define it for old Emacsen.
14495         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
14496         is available.
14497         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
14498         float-time is available; suppress compile warning for time-to-seconds.
14500 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
14502         * net/imap.el (imap-message-map): Docstring fix.
14504 2009-09-09  Glenn Morris  <rgm@gnu.org>
14506         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
14507         line numbers too.  (Bug#4374)
14509 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14511         * smerge-mode.el (smerge-remove-props, smerge-refine):
14512         Use with-silent-modifications (bug#4342).
14514         * subr.el (with-silent-modifications): New macro.
14516 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
14518         * files.el (top-level): Require `cl' when compiling.
14520 2009-09-07  Glenn Morris  <rgm@gnu.org>
14522         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
14524         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
14525         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
14527 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
14529         * vc-git.el (vc-git-annotate-command): Use separator to parse
14530         arguments correctly.
14532 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
14534         * proced.el (proced-mode): Doc fix.
14536 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
14538         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
14539         lstat fails.
14540         (tramp-do-file-attributes-with-ls): Check for file existence at
14541         remote end.
14542         (tramp-do-file-attributes-with-stat): Likewise.
14543         (tramp-convert-file-attributes): Return nil when attr is nil.
14545 2009-09-05  Glenn Morris  <rgm@gnu.org>
14547         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
14548         properties to this button.
14549         (diary-fancy-display): Don't extend the button to the final newline.
14550         (diary-fancy-display-mode): Continue to define "q" as a local key.
14552         * calendar/cal-china.el (holiday-chinese): Make it slightly more
14553         efficient.
14555         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
14557         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
14558         (byte-compile-dest-file-function): New option.
14559         (byte-compile-dest-file): Doc fix.
14560         Obey byte-compile-dest-file-function.
14561         (byte-compile-cl-file-p): New function.
14562         (byte-compile-eval): Only suppress noruntime warnings about cl functions
14563         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
14564         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
14565         than for file being previously loaded.
14566         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
14567         (byte-compile-file-form-require): Handle the case where requiring a file
14568         indirectly causes CL to be loaded.
14570 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
14572         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
14573         before killing the old buffer, since by the time `kill-buffer' is
14574         run so many buffer variables have been set to nil that it may not
14575         behave as expected.  (Bug#4061)
14577 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
14579         * files.el (find-alternate-file): If the old buffer is modified
14580         and visiting a file, behave similarly to `kill-buffer' when
14581         killing it, thus reverting to the pre-1.878 behavior; see
14582         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
14583         for discussion.  Also, consult `buffer-file-name' as a variable
14584         not as a function, for consistency with the rest of the code.
14586 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
14588         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
14589         also when adding a new directory.
14591         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
14592         defun.
14594 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
14596         * files.el (locate-file-completion-table): Make it provide boundary
14597         information, so partial-completion works better.
14599 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
14601         * mail/footnote.el (Footnote-text-under-cursor):
14602         Check footnote-text-marker-alist before using it (bug#4324).
14604 2009-09-04  Glenn Morris  <rgm@gnu.org>
14606         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
14607         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
14608         * play/solitaire.el, play/tetris.el:
14609         Remove leading * from defcustom and defface docs.
14611         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
14612         necessary.
14613         (diary-fancy-overriding-map): New variable.
14614         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
14615         Use view-mode.
14617         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
14618         goto-line.
14620 2009-09-03  Glenn Morris  <rgm@gnu.org>
14622         * arc-mode.el (archive-mode):
14623         * dos-fns.el (set-default-process-coding-system):
14624         * man.el (Man-getpage-in-background):
14625         * menu-bar.el (menu-bar-describe-menu):
14626         * server.el (server-process-filter):
14627         * startup.el (command-line):
14628         * tar-mode.el (tar-header-block-tokenize, tar-extract):
14629         * w32-fns.el (set-default-process-coding-system):
14630         * x-dnd.el (x-dnd-handle-file-name):
14631         * international/mule-cmds.el (mule-menu-keymap)
14632         (set-default-coding-systems, language-info-alist, set-language-info)
14633         (set-language-environment, standard-display-european-internal)
14634         (set-locale-environment):
14635         * international/mule-diag.el (mule-diag):
14636         * mail/emacsbug.el (report-emacs-bug):
14637         * mail/rmail.el (rmail-mode):
14638         * mail/sendmail.el (mail-setup):
14639         Use default-value rather than default-enable-multibyte-characters.
14641         * progmodes/f90.el: Move all safe properties into the defcustoms.
14642         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
14644         * calendar/appt.el (appt-check):
14645         * calendar/diary-lib.el (diary-set-header, diary-live-p)
14646         (diary-check-diary-file, diary-list-entries)
14647         (diary-include-other-diary-files, diary-simple-display)
14648         (diary-fancy-display, diary-print-entries)
14649         (diary-mark-included-diary-files, diary-make-entry):
14650         Don't call substitute-in-file-name on diary-file.
14652 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
14653             Stefan Monnier  <monnier@iro.umontreal.ca>
14655         * mail/footnote.el (footnote-prefix): Make it a defcustom.
14656         (footnote-mode-map): Move initialization into the declaration.
14657         (footnote-minor-mode-map): Define it rather than changing global-map.
14658         (footnote-mode): Use define-minor-mode.
14660 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
14662         * net/tramp.el (tramp-handle-file-attributes-with-ls)
14663         (tramp-do-file-attributes-with-perl)
14664         (tramp-do-file-attributes-with-stat): Rename from
14665         `tramp-handle-file-attributes-with-*'.
14666         (tramp-handle-file-attributes): Use them.
14667         (tramp-do-directory-files-and-attributes-with-perl)
14668         (tramp-do-directory-files-and-attributes-with-stat): Rename from
14669         `tramp-handle-directory-files-and-attributes-with-*'.
14670         (tramp-handle-directory-files-and-attributes): Use them.
14671         (tramp-method-out-of-band-p): Additional parameter SIZE.
14672         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
14673         (tramp-handle-write-region): Use it.
14674         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
14675         (tramp-handle-vc-registered): Check, whether the first run did
14676         return files to be tested.
14677         (tramp-advice-make-auto-save-file-name): Do not call directly
14678         `tramp-handle-make-auto-save-file-name', because this would bypass
14679         the locking mechanism.
14681         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
14682         (file-remote-p, process-file, start-file-process, set-file-times)
14683         (tramp-compat-file-attributes): Compatibility functions shall not
14684         call directly `tramp-handle-*', because this would bypass the
14685         locking mechanism.
14686         (tramp-compat-number-sequence): New defun.
14688 2009-09-02  Glenn Morris  <rgm@gnu.org>
14690         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
14691         alias for float-time.
14692         (time-to-number-of-days): In Emacs, use float-time.
14693         * net/newst-backend.el (time-add): Suppress warnings from compat
14694         function.
14695         * time.el (emacs-uptime, emacs-init-time):
14696         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
14697         Use float-time rather than time-to-seconds.
14699         * minibuffer.el (completion-initials-expand): Fix typo.
14701         * faces.el (modeline, modeline-inactive, modeline-highlight)
14702         (modeline-buffer-id):
14703         * info.el (info-menu-5): Mark these face aliases as obsolete.
14705 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
14707         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
14708         space ...
14709         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
14710         no "--thread" option.
14711         (gdb-stopped): Don't print "Switched to thread" message when it is
14712         unchanged.
14714 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14716         * minibuffer.el (completion-try-completion)
14717         (completion-all-completions): Remove ill-defined (and
14718         mistakenly installed and luckily never used nor documented)
14719         `completion-styles' property.
14720         (completion-initials-expand, completion-initials-all-completions)
14721         (completion-initials-try-completion): New functions.
14722         (completion-styles-alist): Add doc to each entry.
14723         Add new `initials' entry.
14725 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
14727         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
14728         MI command -var-evaluate-expression.
14729         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
14730         and tweak for case of string child.
14731         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
14733 2009-09-01  Glenn Morris  <rgm@gnu.org>
14735         * add-log.el (change-log-date-face, change-log-name-face)
14736         (change-log-email-face, change-log-file-face, change-log-list-face)
14737         (change-log-conditionals-face, change-log-function-face)
14738         (change-log-acknowledgement-face):
14739         * cus-edit.el (custom-invalid-face, custom-rogue-face)
14740         (custom-modified-face, custom-set-face, custom-changed-face)
14741         (custom-saved-face, custom-button-face, custom-button-pressed-face)
14742         (custom-documentation-face, custom-state-face, custom-comment-face)
14743         (custom-comment-tag-face, custom-variable-tag-face)
14744         (custom-variable-button-face, custom-face-tag-face)
14745         (custom-group-tag-face-1, custom-group-tag-face):
14746         * diff-mode.el (diff-header-face, diff-file-header-face)
14747         (diff-index-face, diff-hunk-header-face, diff-removed-face)
14748         (diff-added-face, diff-changed-face, diff-function-face)
14749         (diff-context-face, diff-nonexistent-face):
14750         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
14751         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
14752         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
14753         (Info-title-4-face):
14754         * isearch.el (isearch-lazy-highlight-face):
14755         * log-view.el (log-view-file-face, log-view-message-face):
14756         * paren.el (show-paren-match-face, show-paren-mismatch-face):
14757         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
14758         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
14759         (cvs-msg-face):
14760         * smerge-mode.el (smerge-mine-face, smerge-other-face)
14761         (smerge-base-face, smerge-markers-face):
14762         * wid-edit.el (widget-documentation-face, widget-button-face)
14763         (widget-field-face, widget-single-line-field-face)
14764         (widget-inactive-face, widget-button-pressed-face):
14765         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
14766         (woman-addition-face):
14767         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
14768         (eshell-ls-executable-face, eshell-ls-readonly-face)
14769         (eshell-ls-unreadable-face, eshell-ls-special-face)
14770         (eshell-ls-missing-face, eshell-ls-archive-face)
14771         (eshell-ls-backup-face, eshell-ls-product-face)
14772         (eshell-ls-clutter-face):
14773         * eshell/em-prompt.el (eshell-prompt-face):
14774         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
14775         * obsolete/old-whitespace.el (whitespace-highlight-face):
14776         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
14777         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
14778         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
14779         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
14780         (antlr-font-lock-literal-face):
14781         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
14782         (ebrowse-root-class-face, ebrowse-file-name-face)
14783         (ebrowse-default-face, ebrowse-member-attribute-face)
14784         (ebrowse-member-class-face, ebrowse-progress-face):
14785         * progmodes/make-mode.el (makefile-space-face):
14786         * progmodes/sh-script.el (sh-heredoc-face):
14787         * textmodes/flyspell.el (flyspell-incorrect-face)
14788         (flyspell-duplicate-face):
14789         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
14790         * textmodes/texinfo.el (texinfo-heading-face):
14791         Mark face aliases with "-face" suffix as obsolete.
14793         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
14794         compiler.
14796         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
14797         (eudc-bob-sound-menu): Use defvar rather than defconst, since
14798         easy-menu-define wants to modify these.
14800         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
14802         * net/browse-url.el (browse-url-file-url):
14803         * term/internal.el (dos-codepage-setup):
14804         Use default-value rather than default-enable-multibyte-characters.
14806         * progmodes/etags.el (etags-goto-tag-location):
14807         * progmodes/flymake.el (flymake-highlight-line)
14808         (flymake-goto-file-and-line, flymake-goto-line):
14809         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
14810         (gdb-goto-breakpoint):
14811         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
14812         * progmodes/python.el (python-find-function)
14813         (python-pdbtrack-track-stack-file):
14814         * progmodes/verilog-mode.el (verilog-surelint-off):
14815         * term/ns-win.el (ns-open-file-select-line):
14816         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
14817         Use forward-line rather than goto-line.
14819         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
14820         * textmodes/reftex-index.el (reftex-display-index):
14821         * textmodes/reftex-ref.el (reftex-offer-label-menu):
14822         * textmodes/reftex-toc.el (reftex-toc):
14823         Remove unnecessary bindings of default-major-mode (all are followed by
14824         major-mode check and possible mode switch).
14826 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
14828         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14829         Handle watchpoints (bug#4282).
14830         (def-gdb-thread-buffer-command): Enable thread to be selected by
14831         clicking without selecting threads buffer first.
14832         (gdb-current-context-command): Use selected frame so that "up",
14833         "down" etc work in the GUD buffer.
14834         (gdb-update): Find selected frame before rendering stack buffer.
14835         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
14837 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
14839         * progmodes/sym-comp.el (displayed-completions): Remove.
14840         (symbol-complete): Use minibuffer-complete.
14842 2009-08-31  Glenn Morris  <rgm@gnu.org>
14844         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
14846         * apropos.el (apropos-symbols-internal):
14847         Handle (obsolete) face aliases.
14849         * faces.el (describe-face): Adjust the output format to be more like
14850         describe-variable, and to mention (obsolete) face aliases.
14851         Adjust the whitespace so that help-setup-xref works.
14853         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
14854         * calendar/diary-lib.el (diary-button-face):
14855         Mark these face aliases as obsolete.
14857         * calendar/calendar.el (calendar-today): Doc fix.
14859 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
14861         * progmodes/gdb-mi.el (gdb-control-all-threads)
14862         (gdb-control-current-thread): Force tool bar update.
14863         (gdb-non-stop-handler): New function.
14864         (gdb-init-1): Use it to test if non-stop mode is supported.
14865         Remove unused gdbmi buffer type.
14867 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
14869         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
14870         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
14872 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
14874         * comint.el (comint-exec-1): Check command is non-null first.
14875         Part of gdb-mi.el change (2009-08-28).
14877 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14879         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
14881 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
14883         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
14884         instead of `dolist' to avoid a recursive require when bootstrapping.
14886 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14888         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
14890         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
14892         * net/imap.el (imap-send-command): Simplify.
14893         (imap-wait-for-tag): point-max -> buffer-size.
14895         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
14897         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
14898         with constant argument.
14900         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
14902         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
14904         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
14905         Change default, since most of our files don't have a history.
14906         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
14907         the user.
14909         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
14910         Add comint-run.
14912         * calc/calc.el: Improve commenting convention.
14913         (calc-digit-map, toplevel): Simplify.
14915         * comint.el (comint-insert-input): Be careful to only set point if we
14916         don't delegate to some other command.
14918         * proced.el (proced-signal-list): Make it an alist.
14919         (proced-grammar-alist): Capitalize names.
14920         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
14921         Disable undo manually and make it read-only.
14922         Use completion-annotate-function.
14924         * minibuffer.el (minibuffer-message): If the current buffer is not
14925         a minibuffer, insert the message in the echo area rather than at the
14926         end of the buffer.
14927         (completion-annotate-function): New variable.
14928         (minibuffer-completion-help): Use it.
14929         (completion--embedded-envvar-table): Environment vars are
14930         always case-sensitive.
14932 2009-08-30  Glenn Morris  <rgm@gnu.org>
14934         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
14935         from fortran-current-defun.
14936         (fortran-beginning-of-subprogram): Be more precise about finding the
14937         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
14938         (fortran-end-of-subprogram): Simplify.
14939         (fortran-current-defun): Use fortran-start-prog-re.
14941 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
14943         * subr.el (do-after-load-evaluation): Simplify.
14945 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
14947         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
14949         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
14950         (vc-rcs-print-log): Use it.
14952         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
14954 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14956         * paths.el (abbrev-file-name): Move to abbrev.el.
14957         * abbrev.el (abbrev-file-name): Move from paths.el.
14958         Obey user-emacs-directory.
14959         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
14960         user-emacs-directory.
14961         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
14962         abbrev-file-name and calc-settings-file any more.
14963         * startup.el (command-line): Recompute abbrev-file-name and
14964         abbreviated-home-dir.
14965         (normal-no-mouse-startup-screen): Improve the generic code and get rid
14966         of the special code for when C-h bindings haven't been changed.
14967         (display-startup-echo-area-message): Use with-current-buffer.
14968         (command-line-1): Use a list of strings, rather than a list of lists
14969         of strings for longopts.
14971         * files.el (get-free-disk-space): Use / for default-directory.
14973         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
14974         Use with-current-buffer.
14976         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
14977         Recognize immutable variables like most-positive-fixnum.
14978         (byte-compile-setq-default): Check and warn if trying to assign
14979         to an immutable variable, or a non-variable.
14981         * progmodes/cc-vars.el (c-comment-continuation-stars):
14982         * progmodes/cc-engine.el (c-looking-at-bos):
14983         * progmodes/cc-cmds.el (c-toggle-auto-state)
14984         (c-forward-into-nomenclature, c-backward-into-nomenclature)
14985         (c-comment-line-break-function): Add version of obsolescence.
14987 2009-08-28  Juri Linkov  <juri@jurta.org>
14989         * files.el (magic-fallback-mode-alist): Add ZIP magic number
14990         associated with `archive-mode'.
14992         * image.el (image-type-header-regexps): Use only JPEG magic number
14993         to determine JPEG images, and don't use `image-jpeg-p' because
14994         Emacs can display non-JFIF non-Exif JPEG images.
14996 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
14998         * arc-mode.el (archive-mode):
14999         * emacs-lisp/re-builder.el (re-builder-unload-function):
15000         Protect against the default value of `major-mode' being nil.
15002 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
15004         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
15005         Fix typos in docstrings.
15007         * progmodes/js.el (js--macro-decl-re): Doc fix.
15008         (js--plain-method-re, js--split-name): Refloc docstring.
15009         (js--class-styles, js--make-merged-item, js--splice-into-items):
15010         Fix typos in docstrings; reflow docstrings.
15011         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
15012         (js--variable-decl-matcher, js--inside-pitem-p)
15013         (js--parse-state-at-point, js--get-all-known-symbols)
15014         (js--symbol-history, js-find-symbol, js--js-references)
15015         (js--moz-interactor, js--js-encode-value, js--read-tab):
15016         Fix typos in docstrings.
15018 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15020         * textmodes/reftex.el (reftex-get-file-buffer-force):
15021         * progmodes/verilog-mode.el (verilog-batch-execute-func):
15022         * emulation/viper.el (viper-go-away, viper-set-hooks):
15023         * emacs-lisp/re-builder.el (re-builder-unload-function):
15024         * emacs-lisp/bytecomp.el (byte-compile-file):
15025         * ses.el (ses-unload-function):
15026         * hexl.el (hexl-find-file):
15027         * files.el (normal-mode):
15028         * ehelp.el (with-electric-help):
15029         * autoinsert.el (auto-insert-alist):
15030         * arc-mode.el (archive-mode):
15031         Use (default-value 'major-mode) instead of default-major-mode.
15033         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
15034         * international/mule.el (load-with-code-conversion):
15035         * emacs-lisp/debug.el (debug):
15036         * ediff-vers.el (ediff-rcs-get-output-buffer):
15037         * dired.el (dired-internal-noselect): Don't let-bind
15038         default-major-mode around code that doesn't use it.
15039         E.g. buffer creation via get-buffer-create doesn't use it.
15041 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
15043         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
15044         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
15045         when writing the temp file.  Otherwise, epa-file gets confused.
15046         (tramp-register-file-name-handlers): Make it a defun.  Move also
15047         `epa-file-handler' to the front of `file-name-handler-alist'.
15049 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15051         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
15052         start right after a ^M.
15053         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
15054         (tramp-completion-file-name-regexp-separate)
15055         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
15056         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
15057         Don't modify last-coding-system-used by accident.
15058         (tramp-completion-file-name-handler): Apply the checks here,
15059         instead during registration.
15060         (tramp-register-file-name-handlers): Renamed from
15061         `tramp-register-file-name-handler'.  Register both
15062         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
15063         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
15065 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
15067         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
15068         Remove variable ...
15069         (gdb-init-1, gdb-display-separate-io-buffer)
15070         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
15071         references to it.
15072         (gdb-inferior-io-mode): Use make-comint-in-buffer.
15073         (gdb-inferior-filter): Use comint-output-filter to stop
15074         echoing and remove ^M characters.
15076 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15078         * emulation/viper-init.el (viper-restore-cursor-type):
15079         * emulation/cua-base.el (cua--update-indications):
15080         Replace default-cursor-type with (default-value 'cursor-type).
15082         * mail/sendmail.el (mail-recover-1):
15083         * international/mule-diag.el (describe-current-coding-system-briefly)
15084         (describe-current-coding-system):
15085         * international/mule-cmds.el (select-safe-coding-system)
15086         (select-message-coding-system)
15087         (set-language-environment-coding-systems, set-locale-environment):
15088         * hexl.el (hexl-insert-multibyte-char):
15089         * dos-w32.el (find-buffer-file-type-coding-system):
15090         * simple.el (what-cursor-position):
15091         Replace uses of default-buffer-file-coding-system
15092         with (default-value 'buffer-file-coding-system).
15094         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
15095         Replace uses of default-cursor-in-non-selected-windows
15096         with (default-value 'cursor-in-non-selected-windows).
15097         Use with-current-buffer.
15099         * mail/feedmail.el: Use CL macros.
15100         (feedmail-run-the-queue, feedmail-send-it-immediately):
15101         * dos-w32.el (find-buffer-file-type): Replace uses of
15102         default-buffer-file-type with (default-value 'buffer-file-type).
15104 2009-08-28  Glenn Morris  <rgm@gnu.org>
15106         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
15107         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
15108         Use default-value of major-mode rather than default-major-mode.
15110 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
15112         * Makefile.in (update-elcfiles): Report left over elc files.
15114         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
15115         expand-file-name and with-current-buffer.
15116         (mail-get-names, mail-directory): Use with-current-buffer.
15118         * vc.el (vc-read-revision): New function.
15119         (vc-version-diff, vc-merge): Use it.
15121 2009-08-27  Sam Steingold  <sds@gnu.org>
15123         * simple.el (kill-do-not-save-duplicates): New user option.
15124         (kill-new): When it is non-nil, and the new string is the same as
15125         the latest kill, set replace to t to avoid duplicates in kill-ring.
15127 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
15129         * net/tramp.el (tramp-handle-process-file): Do not flush all
15130         caches when `process-file-side-effects' is set.
15131         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
15132         instead of `tramp-find-file-exists-command'.
15133         Unset `process-file-side-effects'.
15135 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
15137         * net/tramp.el (tramp-methods): New method "rsyncc".
15138         (top): Add completion function for "rsyncc".
15139         (tramp-message-show-message): New defvar.
15140         (tramp-message, tramp-error): Use it.
15141         (tramp-do-copy-or-rename-file-directly): Extend check for direct
15142         remote copying.
15143         (tramp-do-copy-or-rename-file-out-of-band): Handle new
15144         `tramp-methods' entry `copy-env' of "rsyncc".
15145         (tramp-vc-registered-read-file-names): New defconst.
15146         (tramp-vc-registered-file-names): New defvar.
15147         (tramp-handle-vc-registered): Implement optimization strategy.
15148         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
15149         (tramp-vc-file-name-handler): New defun.
15150         (tramp-get-ls-command, tramp-get-test-command)
15151         (tramp-get-file-exists-command, tramp-get-remote-ln)
15152         (tramp-get-remote-perl, tramp-get-remote-stat)
15153         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
15155         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
15156         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
15157         timestamps.
15158         (tramp-get-file-property): Check for timestamps in
15159         `tramp-cache-inhibit-cache'.
15160         (tramp-set-file-property): Write timestamp.
15162 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
15164         * language/japan-util.el (japanese-symbol-table): Add entries for
15165         cp932-2-byte.
15167         * international/characters.el: Add category `j' to cp932-2-byte.
15169 2009-08-27  Kenichi Handa  <handa@m17n.org>
15171         * international/fontset.el (build-default-fontset-data): New macro.
15172         (setup-default-fontset): Use build-default-fontset-data for CJK,
15173         tibetan, ethiopic, and ipa.
15175 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
15177         * cus-start.el (default-major-mode): Customize `major-mode' instead.
15178         (enable-multibyte-characters): Not customizable any more.
15180         * subr.el (default-mode-line-format, default-header-line-format)
15181         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
15182         (default-direction-reversed, default-truncate-lines)
15183         (default-left-margin, default-tab-width, default-case-fold-search)
15184         (default-left-margin-width, default-right-margin-width)
15185         (default-left-fringe-width, default-right-fringe-width)
15186         (default-fringes-outside-margins, default-scroll-bar-width)
15187         (default-vertical-scroll-bar, default-indicate-empty-lines)
15188         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
15189         (default-fringe-cursor-alist, default-scroll-up-aggressively)
15190         (default-scroll-down-aggressively, default-fill-column)
15191         (default-cursor-type, default-buffer-file-type)
15192         (default-cursor-in-non-selected-windows)
15193         (default-buffer-file-coding-system, default-major-mode)
15194         (default-enable-multibyte-characters): Mark as obsolete.
15196 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
15198         * vc-dir.el (vc-dir-update): Remove debug helper.
15200         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
15202 2009-08-26  Sam Steingold  <sds@gnu.org>
15204         * simple.el (save-interprogram-paste-before-kill): New user option.
15205         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
15206         save the interprogram-paste into kill-ring before overriding it
15207         with the Emacs kill.
15209 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
15211         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
15212         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
15213         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
15214         and move to vc-rcs.el.
15215         (vc-default-next-revision): Rename to vc-rcs-next-revision and
15216         move to vc-rcs.el.
15217         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
15218         (vc-rcs-update-changelog): Remove.
15219         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
15220         and move to vc-rcs.el.
15222         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
15223         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
15224         renaming.
15225         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
15226         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
15227         vc.el, renamed to be RCS specific.
15229         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
15230         New functions.
15231         (vc-cvs-update-changelog): Move here from vc.el.
15233         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
15234         New functions.
15236 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
15238         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
15240 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
15242         * vc-git.el (vc-git-register): Use "git add" for directories.
15243         (vc-git-stash, vc-git-stash-show): New functions.
15244         (vc-git-extra-menu-map): Bind them.
15246         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
15247         directory correctly in case the item is a directory itself.
15249         * vc.el: Document the desired behavior for reverted files in the
15250         `added' state.
15251         (vc-default-prettify-state-info): Remove function, unused.
15253         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
15255 2009-08-26  Glenn Morris  <rgm@gnu.org>
15257         * bindings.el (standard-mode-line-format): Reposition dashes in
15258         which-func entry.  (Bug#4217)
15260         * files.el (enable-local-variables, enable-local-eval)
15261         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
15262         the defcustoms.
15263         (auto-mode-alist, ignored-local-variables)
15264         (save-some-buffers-action-alist): Move risky declarations to the
15265         definitions.
15266         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
15267         (font-lock-defaults, format-alist, imenu--index-alist)
15268         (imenu-generic-expression, input-method-alist, minor-mode-alist)
15269         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
15270         (mode-line-modified, mode-line-mule-info, mode-line-position)
15271         (mode-line-process, mode-line-remote, outline-level)
15272         (parse-time-rules, rmail-output-file-alist)
15273         (special-display-buffer-names, vc-mode):
15274         Move risky declarations to the relevant files.
15275         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
15276         (mode-line-modified, mode-line-process, mode-line-position)
15277         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
15278         * font-core.el (font-lock-defaults):
15279         * format.el (format-alist):
15280         * vc-hooks.el (vc-mode):
15281         * window.el (special-display-buffer-names):
15282         * international/mule-cmds.el (input-method-alist):
15283         Define riskiness here (dumped file) rather than in files.el.
15284         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
15285         * imenu.el (imenu-generic-expression, imenu--index-alist):
15286         * outline.el (outline-level):
15287         * time.el (display-time-string):
15288         * calendar/parse-time.el (parse-time-rules):
15289         * mail/rmailout.el (rmail-output-file-alist):
15290         Autoload riskiness here, rather than placing in files.el.
15292 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
15294         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
15296 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
15298         * simple.el (process-file-side-effects): New defvar.
15300         * dired-aux.el (dired-show-file-type):
15301         * vc.el (vc-diff-internal):
15302         * vc-arch.el (vc-arch-diff):
15303         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
15304         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
15305         * vc-git.el (vc-git-registered, vc-git-working-revision)
15306         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
15307         (vc-git--empty-db-p):
15308         * vc-hooks.el (vc-user-login-name):
15309         * vc-svn.el (vc-svn-registered, vc-svn-state)
15310         (vc-svn-dir-extra-headers, vc-svn-find-revision):
15311         * progmodes/grep.el (grep-probe): Let-bind
15312         `process-file-side-effects' with nil.
15314         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
15316         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
15317         daemon.  Replace ping by checking for running service for bluez
15318         and zeroconf.  (Bug#4239)
15320 2009-08-25  Kevin Ryde  <user42@zip.com.au>
15322         * net/dig.el (dig): Add autoload cookie.
15324 2009-08-25  Glenn Morris  <rgm@gnu.org>
15326         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
15327         load-history for absolute file-names.
15328         (byte-compile-file-form-require): Warn about use of the cl package.
15330         * format.el (format-alist): Doc fix.
15332         * play/bubbles.el (top-level): Don't require cl at run-time.
15334         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
15335         run-time cl).
15337 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
15339         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
15340         from cl package.
15341         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
15343 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
15345         * calc/calc-alg.el (math-trig-rewrite)
15346         (math-hyperbolic-trig-rewrite): New functions.
15347         (calc-simplify): Simplify trig functions when asked.
15349 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
15351         * diff-mode.el (diff-find-source-location): Avoid goto-line.
15353 2009-08-24  Kenichi Handa  <handa@m17n.org>
15355         * language/ind-util.el (mapthread): Delete it.
15356         (combinatorial): New function.
15357         (indian--puthash-cv): Use combinatorial instead of mapthread.
15359 2009-08-22  Kevin Ryde  <user42@zip.com.au>
15361         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
15362         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
15363         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
15364         Clarify docstring that the value is strings not symbols.
15365         (checkdoc-list-of-strings-p): New function.
15367 2009-08-22  Glenn Morris  <rgm@gnu.org>
15369         * files.el (auto-mode-alist):
15370         * hippie-exp.el (he-concat-directory-file-name):
15371         * lpr.el (lpr-windows-system, printer-name):
15372         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
15373         * ps-print.el (ps-windows-system):
15374         * startup.el (command-line):
15375         * emulation/viper-ex.el (viper-glob-function):
15376         * international/mule-cmds.el (set-language-environment-coding-systems):
15377         * net/ange-ftp.el (ange-ftp-write-region):
15378         * obsolete/fast-lock.el (fast-lock-cache-name):
15379         Remove code for defunct system-types emx, macos, mswindows, next-mach,
15380         unisoft-unix, vax-vms, win32, w32.
15382         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
15383         given name if the pattern is not more specific.
15385         * calendar/lunar.el (lunar-phase-names): New option.
15386         (lunar-phase): Doc fix.
15387         (lunar-cycles-per-year): New constant.
15388         (lunar-index): New function.
15389         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
15390         (lunar-phase-name): Use lunar-phase-names.
15391         (calendar-lunar-phases): Use format.
15392         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
15394         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
15395         Copy imenu-example--name-and-position function here for own use.
15396         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
15398         * bs.el (bs--redisplay):
15399         * cus-edit.el (custom-redraw):
15400         * ibuffer.el (ibuffer-bury-buffer):
15401         * server.el (server-goto-line-column):
15402         * startup.el (command-line-1):
15403         * strokes.el (strokes-xpm-for-stroke):
15404         * term.el (term-display-buffer-line):
15405         * view.el (View-goto-line):
15406         * calc/calc.el (calc-do, calc-trail-buffer):
15407         * play/gamegrid.el (gamegrid-add-score-insecure):
15408         * progmodes/ada-mode.el (ada-compile-goto-error):
15409         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
15410         (ebrowse-select-1st-to-9nth):
15411         * progmodes/cperl-mode.el (cperl-time-fontification):
15412         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
15413         * progmodes/gud.el (gud-display-line):
15414         (idlwave-shell-display-line):
15415         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
15416         * progmodes/make-mode.el (makefile-browser-toggle):
15417         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
15418         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
15419         * textmodes/picture.el (picture-draw-rectangle):
15420         * textmodes/reftex-index.el (reftex-index-goto-letter):
15421         (reftex-select-jump-to-previous):
15422         * textmodes/reftex-sel.el (reftex-find-start-point)
15423         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
15424         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
15425         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
15426         * textmodes/tex-mode.el (tex-compilation-parse-errors):
15427         * textmodes/two-column.el (2C-associated-buffer):
15428         Use forward-line rather than goto-line.
15430         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
15431         goto-line.
15433         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
15434         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
15435         (quick-check-list-to-regexp): Declare.
15437         * progmodes/make-mode.el (makefile-browser-insert-selection):
15438         Use goto-char rather than goto-line.
15440         * progmodes/prolog.el (compilation-error-regexp-alist)
15441         (compilation-forget-errors): Declare.
15443 2009-08-22  Juri Linkov  <juri@jurta.org>
15445         * progmodes/grep.el (lgrep, rgrep): At the beginning
15446         set `dir' to `default-directory' unless `dir' is a non-nil
15447         readable directory.  (Bug#4052)
15448         (lgrep, rgrep): Change a weird way to report an error
15449         from using `read-string' to using `error'.
15450         Instead of using interactive arguments in the function body,
15451         add new argument `confirm'.
15453 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
15455         * textmodes/remember.el (remember-buffer):
15456         * progmodes/cperl-mode.el (cperl-vc-header-alist):
15457         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
15458         (icalendar-extract-ical-from-buffer):
15459         * net/newst-treeview.el (newsticker-groups-filename):
15460         * net/newst-backend.el (newsticker-cache-filename):
15461         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
15462         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
15463         (speedbar-add-ignored-path-regexp, speedbar-line-path)
15464         (speedbar-buffers-line-path, speedbar-path-line)
15465         (speedbar-buffers-line-path):
15466         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
15467         (epg-sign-keys):
15468         * epa.el (epa-display-verify-result):
15469         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
15471 2009-08-21  Glenn Morris  <rgm@gnu.org>
15473         * progmodes/js.el (inferior-moz-process): Fix declaration.
15475         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
15477         * obsolete/rnewspost.el (news-mail-reply):
15478         Use goto-char rather than goto-line.
15480         * term/ns-win.el (ns-open-file-select-line):
15481         Use line-beginning-position rather than goto-line.
15483         * apropos.el (apropos-command):
15484         * ehelp.el (electric-helpify):
15485         * printing.el (pr-show-setup):
15486         * strokes.el (strokes-help):
15487         * tutorial.el (tutorial--describe-nonstandard-key)
15488         (tutorial--detailed-help):
15489         * woman.el (woman-mini-help, woman-display-extended-fonts):
15490         * calc/calc-help.el (calc-describe-key):
15491         * emulation/edt.el (edt-electric-helpify):
15492         * international/mule-diag.el (mule-diag):
15493         * play/yow.el (apropos-zippy):
15494         * progmodes/python.el (python-describe-symbol):
15495         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
15496         * textmodes/table.el (*table--cell-describe-mode)
15497         (*table--cell-describe-bindings):
15498         Use help-print-return-message rather than the now obsolete alias.
15500         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
15501         (calendar-cursor-to-visible-date):
15502         * play/5x5.el (5x5-position-cursor):
15503         * play/decipher.el (decipher):
15504         * play/gomoku.el (gomoku-goto-xy):
15505         * play/landmark.el (lm-goto-xy):
15506         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
15507         (mpuz-paint-digit):
15508         Use forward-line, not goto-line.
15510         * mail/rmail.el (rmail-obsolete): Delete custom group.
15511         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
15512         (rmail-remote-password, rmail-remote-password-required):
15513         Remove unneeded :set-after and :set properties.
15515 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
15517         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
15519 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
15521         * loadup.el: Remove leftover macos code.
15523         * vc-git.el (vc-git-annotate-command): Run asynchronously.
15524         Explicitly pass the date format to git blame so that user local
15525         so that the output format can be parsed.
15527 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
15529         * net/dbus.el (top): Don't check for (getenv
15530         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
15532 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
15534         * log-edit.el (log-edit-strip-single-file-name): New var.
15535         (log-edit-insert-changelog): Use it.  Bug#3571
15537 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15539         * subr.el (read-passwd): Use read-key so keypad keys work as well.
15540         Bug#3287
15542         * help.el (help-print-return-message): Rename from
15543         print-help-return-message.
15545         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
15546         cvs-mode-map parent hack.
15547         (log-view-mode): Derive from special-mode.
15549         * linum.el (linum-mode): window-size-change-functions is redundant.
15550         Adapt to new window-configuration-change-hook behavior.
15551         (linum-after-size, linum-after-config): Remove.
15553         * imenu.el (imenu-example--name-and-position)
15554         (imenu-example--lisp-extract-index-name)
15555         (imenu-example--create-lisp-index, imenu-example--create-c-index):
15556         Mark as obsolete.
15558         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
15559         (inferior-prolog-mode): Use it.
15560         (inferior-prolog-load-file): Reset list of errors.
15562 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
15564         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
15566         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
15568 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
15570         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
15571         is running already.
15573 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15575         * subr.el (listify-key-sequence-1): Use normal syntax since those
15576         integers are nowadays always represented by the same (positive) number
15577         on all platforms.
15578         (read-key-empty-map): New const.
15579         (read-key-delay): New var.
15580         (read-key): New function.
15581         (force-mode-line-update): Use with-current-buffer.
15582         (locate-user-emacs-file): Don't forget to abbreviate the file name.
15583         (start-process-shell-command, start-file-process-shell-command):
15584         Discourage the use of command-args.
15586 2009-08-19  Glenn Morris  <rgm@gnu.org>
15588         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
15590 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15592         * simple.el (choose-completion-string): Don't rely on
15593         minibuffer-completing-file-name and ad-hoc checks to decide whether
15594         to continue completion or not.
15596         * minibuffer.el (minibuffer-hide-completions): New function.
15597         (completion--do-completion): Use it.
15598         (completions-annotations): New face.
15599         (completion--insert-strings): Use it.
15600         (completion-pcm--delim-wild-regex): Add docstring.
15601         (completion-pcm--string->pattern): Add support for 0-width delimiters
15602         in completion-pcm--delim-wild-regex.
15604 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
15606         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
15607         Remove unused var `buffer-modified-p'.
15609         * minibuffer.el (completion--do-completion): Move point for the #b001
15610         case as well (bug#4176).
15611         (minibuffer-complete, minibuffer-complete-word): Don't move point.
15613 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
15615         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
15616         and :session buses.
15618 2009-08-18  Kenichi Handa  <handa@m17n.org>
15620         * international/ucs-normalize.el (ucs-normalize-version):
15621         Change to 1.1.
15622         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
15623         (utf-8-hfs): Make it perform normalization on encoding too.
15625         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
15626         (sentence-end-without-space): Delete duplicated chars.
15627         (sentence-end-base): Likewise.
15629         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
15630         (html-mode): Delete duplicated chars from sentence-end-base.
15632         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
15633         (texinfo-mode): Delete duplicated chars from sentence-end-base.
15635 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
15637         * files.el (hack-one-local-variable): If the mode function is for
15638         a minor mode, pass it an argument (Bug#4148).
15640 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
15642         * net/tramp.el (tramp-register-completion-file-name-handler):
15643         Check also for (member 'partial-completion completion-styles).
15645 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
15647         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
15648         abbrev (Bug#3943).
15650 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
15652         * progmodes/cperl-mode.el: Merge upstream 6.2.
15653         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
15654         (cperl-forward-re): Check cperl-brace-recursing.
15655         (cperl-highlight-charclass): New function.
15656         (cperl-find-pods-heres): Use it.
15657         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
15658         (cperl-beautify-regexp-piece): Fix column calculation.
15659         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
15660         (cperl-beautify-level): Don't process entire regexp.
15661         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
15662         calling man.
15663         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
15664         (cperl-init-faces): Build a list in the normal way.
15666 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
15668         * calendar/parse-time.el (parse-time-string-chars): Save match
15669         data.
15671 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
15673         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
15674         (sql-product): Use it.
15675         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
15676         (sql-set-product): Add completion.
15677         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
15678         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
15679         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
15680         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
15681         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
15682         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
15683         (sql-highlight-db2-keywords): Remove.
15684         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
15685         (sql-highlight-product): Use derived-mode-p.
15686         (sql-set-sqli-buffer): Use with-current-buffer.
15687         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
15688         Simplify.
15690         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
15692         * term.el: Fix commenting convention, turn comments into docstrings.
15694 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
15696         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
15698 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
15700         * calendar/parse-time.el (parse-time-string-chars): Compute using
15701         character classes, to handle non-ascii characters (Bug#3190).
15703 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
15705         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
15706         another heredoc if the user adds another < (Bug#3226).
15708         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
15709         Don't initialize based on window-system (Bug#4124).
15711         * facemenu.el (facemenu-read-color): Use a completion function
15712         that accepts any defined color, such as RGB triplets (Bug#3677).
15714         * files.el (get-free-disk-space): Change fallback default
15715         directory to /.  Expand DIR argument before switching to fallback.
15716         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
15718 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
15720         * files.el (load-library): Doc fix.
15722 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
15724         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
15725         (viper-if-string): Redefine C-s in the minibuffer to insert the last
15726         incremental search string.
15728         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
15729         XEmacs.
15731         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
15732         (ediff-merge-region-is-non-clash)
15733         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
15734         Also check if the job is really a merge job.
15736         * ediff.el (ediff-current-file): New function.
15738 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
15740         * progmodes/js.el: Edit docstrings throughout to follow Emacs
15741         conventions.
15742         (js-insert-and-indent): Delete function.
15743         (js-mode-map): Don't bind keys to js-insert-and-indent.
15744         (js-beginning-of-defun): Rename from js--beginning-of-defun.
15745         (js-end-of-defun): Rename from js--end-of-defun.
15746         (js-auto-indent-flag): Delete variable.
15748 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
15750         * progmodes/js.el: Remove proclaim statement.
15751         Defvar which-func-imenu-joiner-function to silence compiler.
15753         * files.el (auto-mode-alist): Use js-mode for .js files.
15755         * progmodes/js2-mode.el: Remove file.
15757         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
15759         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
15761         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
15763 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
15764             Karl Landstrom  <karl.landstrom@brgeight.se>
15766         * progmodes/js.el: New file.
15768 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
15770         * timezone.el (timezone-parse-date): Add ability to understand ISO
15771         basic format (minimal separators) dates in addition to the
15772         already-supported extended format dates.
15774 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
15776         * international/ucs-normalize.el: Add a `coding' file variable.
15778         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
15780 2009-08-14  Sam Steingold  <sds@gnu.org>
15782         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
15784 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
15786         * faces.el (help-argument-name): Define it here instead of
15787         help-fns.el, because in daemon mode help-fns.el may be loaded when
15788         faces are still uninitialized (Bug#1078).
15790         * help-fns.el (help-argument-name): Move defface to faces.el.
15792 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
15794         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
15795         create buffer with a pty but no process so that GDB can make the
15796         inferior the controlling process.
15798 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
15800         * international/ucs-normalize.el: New file.
15802 2009-08-13  Richard Stallman  <rms@gnu.org>
15804         * mail/rmail.el (rmail-get-attr-names):
15805         Accept an attribute header that is too short.
15807         * mail/rmail.el (rmail-forget-messages):
15808         Ignore nil elt in rmail-message-vector.  Use dotimes.
15810         * progmodes/compile.el (compilation-goto-locus):
15811         Use next-error-move-function.
15813         * simple.el (next-error-move-function): New variable.
15815 2009-08-12  Juri Linkov  <juri@jurta.org>
15817         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
15818         always non-nil.  (Bug#4052)
15820         * replace.el (read-regexp): Return empty string when
15821         `default-value' is nil.
15822         (keep-lines-read-args): Don't use empty string as the
15823         default value for `read-regexp'.  (Bug#2495)
15825 2009-08-12  Juri Linkov  <juri@jurta.org>
15827         * international/mule-cmds.el (ucs-insert): Change arguments
15828         from `arg' to `character', `count', `inherit' to be the same
15829         as in `insert-char'.  Doc fix.  (Bug#4039)
15831         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
15833 2009-08-12  Juri Linkov  <juri@jurta.org>
15835         * files-x.el: New file.
15837         * files.el: Move code that deals with adding/deleting
15838         file/directory-local variables to files-x.el.
15840         * Makefile.in (ELCFILES): Add files-x.elc.
15842 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
15844         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
15845         to use `goto-line'.
15846         (gdb-place-breakpoints, gdb-get-location): Rewritten without
15847         `goto-line'.
15848         (gdb-invalidate-disassembly): Do not refresh upon receiving
15849         'update signal.  Instead, update all disassembly buffers only after
15850         threads list.
15851         (gdb): Send -target-detach when buffer is killed (Bug#3794).
15852         (gdb-starting): Moved -data-list-register-names...
15853         (gdb-stopped): ...here so it's sent when first thread stops.
15854         (gdb-registers-handler-custom): Do nothing if register names are
15855         unknown yet.
15857         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
15858         from `gdb-mi.el' to avoid extra tangling.
15860         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
15861         change which breaks `gud-def' definitions used in `gdb'.
15862         (gdb-update-gud-running): No extra fuss for updating frame number.
15864 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15866         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
15867         (describe-language-environment-map, setup-language-environment-map)
15868         (set-coding-system-map): Move initialization into declaration.
15869         (set-language-info-alist): Last arg to define-key-after can be skipped.
15871         * international/quail.el (quail-completion-1): Simplify.
15872         (quail-define-rules): Use slightly more compact code.
15873         (quail-insert-decode-map): Propertize keys, compact columns.
15875         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15876         Add goto-line.
15878 2009-08-10  Miles Bader  <miles@gnu.org>
15880         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
15881         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
15882         (js2-instance-member, js2-private-member, js2-private-function-call)
15883         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
15884         (js2-magic-paren, js2-external-variable):
15885         Remove "-face" suffix from face names.
15886         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
15887         (js2-highlight-undeclared-vars, js2-peek-token)
15888         (js2-parse-function-params, js2-mode-show-errors)
15889         (js2-mode-show-warnings, js2-make-magic-delimiter)
15890         (js2-mode-highlight-magic-parens): Update to use new face names.
15892 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
15894         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
15895         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
15897 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
15899         * subr.el: Provide hashtable-print-readable.
15901         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
15902         hs-c-like-adjust-block-beginning.
15903         (hs-hide-block-at-point): Stop hiding at the beginning of
15904         hs-block-end-regexp (Bug#700).
15906 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
15908         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
15909         a macro.
15910         (gdb-registers-handler-custom): Do not fail when register names
15911         are unavailable.
15913 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
15915         * progmodes/gdb-mi.el (gdb-control-all-threads)
15916         (gdb-control-current-thread): Interactive setters for
15917         `gdb-gud-control-all-threads' to use in menu.
15918         (gdb-show-run-p): Show «Go» when process is not active.
15919         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
15920         gud/thread.xpm and gud/all.xpm.
15922 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
15924         * net/net-utils.el (net-utils-font-lock-keywords): New var.
15925         (nslookup-font-lock-keywords): Make it a variable.
15926         (net-utils-mode): New mode for viewing diagnostic network output.
15927         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
15928         (net-utils-run-simple): New function.
15929         (ifconfig, iwconfig, netstat, arp, route): Use it.
15931 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
15933         * progmodes/gdb-mi.el (gdb-read-memory-custom)
15934         (gdb-memory-set-address, def-gdb-set-positive-number)
15935         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
15936         after changing settings.
15937         (gdb-invalidate-disassembly): Update when first shown.
15938         (gdb-edit-locals-value): Fixed.
15939         (gdb-registers-handler-custom): Print registers in right order and
15940         allow changing register values (only for current thread yet).
15941         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
15942         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
15943         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
15944         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
15945         info in mode name.
15946         (gdb-registers-mode-map): TAB to switch to locals.
15948 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
15950         * mail/rmail.el (rmail-add-mbox-headers)
15951         (rmail-set-message-counters-counter): Search for
15952         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
15954 2009-08-08  Glenn Morris  <rgm@gnu.org>
15956         * Makefile.in (ELCFILES): Update.
15958 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
15960         * mail/sendmail.el (mail-yank-original): Set
15961         buffer-file-coding-system from the one used by the message whose
15962         text is yanked.
15964         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
15965         to "windows" when "pgnuplot" is used.
15966         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
15967         call accept-process-output if "pgnuplot" is used.
15968         (calc-graph-init): Don't send -display and -geometry to
15969         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
15970         running "pgnuplot -V" with shell-command-to-string.
15972         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
15973         the default.
15975 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
15977         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
15978         org/org-latex.elc.
15980 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
15982         * vc-dispatcher.el (vc-resynch-window): Update comment.
15984         * term.el (term-handle-ansi-escape): Add comments with the
15985         terminfo capabilities implemented.
15987 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
15989         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
15990         (gdb-var-create-handler): Rewritten using JSON parser.
15991         (gdb-propertize-header): Moved earlier.
15992         (gdb-set-header): Removed to avoid duplication.
15993         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
15994         Refresh disassembly buffers only after threads list have been
15995         update.
15996         (gdb-threads-header, gdb-registers-header): Per-buffer header line
15997         variables.
15999 2009-08-04  Juri Linkov  <juri@jurta.org>
16001         * files.el: Commands to add/delete file/directory-local variables.
16002         (read-file-local-variable, read-file-local-variable-value)
16003         (read-file-local-variable-mode, modify-file-local-variable)
16004         (modify-file-local-variable-prop-line)
16005         (modify-dir-local-variable): New functions.
16006         (add-file-local-variable, delete-file-local-variable)
16007         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
16008         (add-dir-local-variable, delete-dir-local-variable)
16009         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
16010         (copy-dir-locals-to-file-locals-prop-line): New commands.
16012 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
16014         * abbrev.el (insert-abbrev-table-description): Prettify output.
16015         Suggested by Karl Chen.
16017 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
16019         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
16020         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
16021         (gdb-overlay-arrow-position, gdb-thread-position)
16022         (gdb-disassembly-position): Declare variables.
16023         (gdb-wait-for-pending): Function now.
16024         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
16025         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
16026         compilation goes smoothly.
16027         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
16028         (gdb-non-stop-setting): New customization setting which replaces
16029         `gdb-non-stop' so changing it doesn't break active GDB session.
16030         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
16031         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
16032         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
16033         (gdb-show-threads-by-default): New customization options.
16034         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
16035         routines.
16036         (gdb-get-buffer-create): Send buffers update signal when they are
16037         created.
16038         (gdb-invalidate-locals, gdb-invalidate-registers)
16039         (gdb-invalidate-breakpoints)
16040         (gdb-invalidate-threads, gdb-invalidate-disassembly)
16041         (gdb-invalidate-memory): Accept update signal.
16042         (gdb-current-context-command): Use --frame option.
16043         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
16044         Implement `gdb-frame-number' selection logic.
16045         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
16046         whether to show GUD toolbar buttons.
16047         (gdb-thread-exited): Unselect current thread when it exits.
16048         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
16049         (gdb-mark-line): Routine which sets overlay arrow or inverses
16050         video on fringeless displays.
16051         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
16052         to build aligned columns of data in GDB buffers and set text
16053         properties line-by-line.
16054         (gdb-invalidate-breakpoints)
16055         (gdb-breakpoints-list-handler-custom)
16056         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
16057         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
16058         (gdb-registers-handler-custom): Align data columns.
16059         (gdb-locals-handler-custom): Now prints data like in variable
16060         declarations.
16061         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
16062         Removed confusing buttons.
16063         (gdb-invalidate-threads): Append --frame.
16064         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
16065         between breakpoints/threads buffers.
16066         (gdb-set-window-buffer): Now can ignore dedicated windows.
16067         (gdb-propertize-header): Use `gdb-set-window-buffer'.
16068         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
16069         (def-gdb-thread-buffer-gud-command): Replaces
16070         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
16071         for fine thread control.
16072         (gdb-preempt-existing-or-display-buffer): New function used to
16073         display bound buffers without breaking window layout.
16074         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
16075         (gdb-select-frame): New version of `gdb-frames-select' which now
16076         sets `gdb-frame-number' so commands may use --frame option instead
16077         of inner debugger state.
16078         (gdb-frame-handler): Do not set `gdb-frame-number'.
16079         (gdb-threads-mode-map): Select threads with mouse.
16081         * progmodes/gud.el (gdb-gud-context-call): Declare function to
16082         avoid compilation warning.
16083         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
16084         `gdb-show-stop-p`.
16086         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
16087         Argument `key' renamed to `buffer-type'.
16088         (gdb-current-context-buffer-name): Do not add thread info to
16089         buffer name when no thread is selected.
16090         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
16091         command (bug 3794).
16092         (gdb-thread-selected): Handle `=thread-selected' notification.
16093         (gdb-wait-for-pending): New macro to deal with congestion problems.
16094         (gdb-breakpoints-list-handler-custom): Don't fail on pending
16095         breakpoints.
16096         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
16097         This fixes problem similar to one described in bug 3947.
16098         (gud-menu-map): More menu items.
16099         (gdb-init-1): Reset `gdb-thread-number' to nil.
16101         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
16102         non-stop settings.
16104         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
16105         (gdb-current-context-command): Do not append --thread if
16106         `gdb-thread-number' is nil.
16107         (gdb-running-threads-count, gdb-stopped-threads-count): New
16108         variables.
16109         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
16110         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
16111         customization options.
16112         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
16113         GUD commands.
16114         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
16115         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
16116         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
16117         set `gdb-thread-number' and update `gud-running' properly.
16118         (gdb-running): Update threads list when new threads appear.
16119         (gdb-stopped): Support non-stop operation and new thread switching
16120         logic.
16121         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
16122         (gdb-json-partial-output): New set of JSON routines.
16123         (def-gdb-auto-update-trigger): New `signal-list' optional
16124         argument.
16125         (gdb-thread-list-handler-custom): Update `gud-running',
16126         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
16127         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
16128         (gdb-continue-thread, gdb-step-thread): New commands for fine
16129         thread execution control.
16130         (gud-menu-map): New menu items to switch non-stop options.
16131         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
16132         (gdb-send): Mimic RET properly (bug 3794).
16134         * progmodes/gdb-mi.el (gdb-rules-name-maker)
16135         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
16136         gdb-buffer-rules.
16137         (def-gdb-auto-update-handler): New nopreserve optional argument.
16138         (gdb-stack-list-frames-custom): Print stack from top to bottom.
16140         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
16141         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
16142         (gdb-parent-mode): New mode to derive other GDB modes from.
16143         (gdb-display-disassembly-for-thread)
16144         (gdb-frame-disassembly-for-thread): New commands for threads
16145         buffer.
16147         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
16148         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
16149         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
16150         (gdb-update): We now store all GDB buffers in a list so that they
16151         can be updated by traversing a list instead of calling invalidate
16152         triggers explicitly.
16153         (def-gdb-trigger-and-handler): New macro to define trigger-handler
16154         pair for GDB buffer.
16155         (gdb-stack-buffer-name): Add thread information.
16156         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
16157         handle pending triggers.
16158         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
16159         (def-gdb-thread-buffer-simple-command)
16160         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
16161         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
16162         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
16163         New commands which show buffers bound to thread.
16164         (gdb-stack-list-locals-regexp): Removed unused regexp.
16166         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
16167         (gdb-locals-buffer-name, gdb-registers-buffer-name)
16168         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
16169         to (gud-comint-buffer) in *-buffer-name functions
16170         because (gdb-get-target-string) already does that.
16171         (gdb-locals-handler-custom, gdb-registers-handler-custom)
16172         (gdb-changed-registers-handler): Rewritten without regexps.
16174         * progmodes/gdb-mi.el: Basic thread selection support.
16175         (gdb-thread-number): New variable.
16176         (gdb-current-context-command): New macro which adds --thread
16177         option to command.
16178         (gdb-threads-mode-map): Select thread with SPC.
16179         (gdb-thread-list-handler-custom): Mark current thread with overlay
16180         arrow.  Synchronize GDB thread and Emacs thread.
16181         (gdb-select-thread): New command which selects current thread.
16182         (gdb-invalidate-frames, gdb-invalidate-locals)
16183         (gdb-invalidate-registers): Use --thread option.
16185 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
16187         * net/tramp.el (top): Make check for tramp-gvfs loading more
16188         robust.  (Bug#3977)
16189         (tramp-handle-insert-file-contents): `unwind-protect' must be
16190         inside `with-parsed-tramp-file-name'.
16192         * net/tramp-gvfs.el (top): Remove superfluous message when loading
16193         fails.
16195 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
16197         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
16198         directory if CLASSPATH is not set.
16200 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
16202         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
16203         New defconst.
16204         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
16206 2009-08-02  Kevin Ryde  <user42@zip.com.au>
16208         * net/newst-backend.el (newsticker--raw-url-list-defaults):
16209         Update freshmeat link.  Delete newsforge.com as it seems gone.
16211 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
16213         * select.el (x-set-selection): Doc fix (Bug#4021).
16215         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
16217         * help-fns.el (describe-variable): Treat list return values from
16218         dir-locals-find-file properly (Bug#4005).
16220 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
16222         * net/tramp.el (tramp-debug-message): Print also microseconds.
16224 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
16226         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
16227         or END is non-nil.
16228         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
16229         (tramp-get-debug-buffer): Change `outline-regexp' according to new
16230         format.
16232         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
16233         (tramp-get-file-property): Use it.
16235         * autorevert.el (auto-revert-handler): Allow
16236         `auto-revert-tail-mode' for remote files.
16238 2009-08-02  Jason Rumney  <jasonr@gnu.org>
16240         * minibuffer.el (read-file-name): Treat confirm options to
16241         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
16243 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
16245         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
16246         (font-lock-variable-name-face, font-lock-constant-face): Darken
16247         the colors for light backgrounds.
16249 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
16251         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
16252         month names.  (Bug#3987)
16254 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
16256         * simple.el (line-move-finish): Pass whole number to
16257         line-move-to-column.
16258         (line-move-visual): Perform hscroll to the recorded position.
16260 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
16262         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
16264 2009-07-29  Alan Mackenzie  <acm@muc.de>
16266         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
16268 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
16270         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
16271         (gdb-place-breakpoints): Use full path when setting breakpoints.
16273 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
16275         * calc/calc.el (calc-mode-map): Add keybinding for
16276         `calc-transpose-lines'.
16278 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
16280         * calc/calc-misc.el (calc-transpose-lines): New function.
16282 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
16284         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
16285         Simplify check for out-of-band methods.
16286         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
16287         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
16289 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
16291         * vc-git.el (vc-git-checkin): Fix typo.
16293 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
16295         * progmodes/js2-mode.el: New file.
16297 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
16299         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
16300         (gud-menu-map): Adjust tooltip accordingly.
16302 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
16304         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
16305         (vc-bzr-log-view-mode): Adjust log-view-file-re.
16307         * add-log.el (change-log-mode-map): Add a menu.
16309 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
16311         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
16312         function returns nil.
16313         (dbus-handle-event): Handle special return value :ignore.
16314         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
16316 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
16318         * view.el (view-mode-enable): Don't define Helper-return-blurb if
16319         it's not needed.
16321 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
16323         Fix Bug#3888:
16325         * w32-vars.el (x-select-enable-clipboard): Doc fix.
16327         * term/pc-win.el (x-display-name, x-colors)
16328         (x-select-enable-clipboard, x-select-text): Doc fix.
16330         * term/common-win.el (x-display-name, x-colors): Doc fix.
16332         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
16333         (xw-defined-colors): Doc fix.
16335         * w32-fns.el (x-select-text, x-setup-function-keys)
16336         (x-get-selection, x-set-selection): Doc fix.
16338         * term/x-win.el (x-select-text, x-setup-function-keys)
16339         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
16341         * select.el (x-set-selection): Doc fix.
16343 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
16345         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
16346         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
16347         "IsNSSSupportAvailable" method is not available.  Reported by
16348         Steve Youngs <steve@sxemacs.org>.
16350 2009-07-24  Kenichi Handa  <handa@m17n.org>
16352         * international/characters.el: Fix setting of category ?C, ?|, ?K,
16353         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
16354         (build-unicode-category-table): Fix range checks.
16356 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
16358         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
16359         the buffer we try to sync is current when calling
16360         vc-resynch-buffer.
16362         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
16363         not show up to date files.
16365 2009-07-24  Glenn Morris  <rgm@gnu.org>
16367         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
16368         Add autoload cookies.  If necessary, initialize.
16369         (elint-log): Handle non-file buffers.
16370         (elint-initialize): Add optional argument to reinitialize.
16371         (elint-find-builtin-variables): Save excursion.
16373 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
16375         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
16376         for Lint.
16378 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
16380         * vc.el (vc-print-log-internal): New function, split out from ...
16381         (vc-print-log): ... here.
16382         (vc-dir-move-to-goal-column): Declare.
16384         * vc-git.el (vc-git-add-signoff): New variable.
16385         (vc-git-checkin): Use it.
16386         (vc-git-toggle-signoff): New function.
16387         (vc-git-extra-menu-map): Bind it to menu.
16388         (vc-git--run-command-string): Accept a nil FILE argument.
16389         (vc-git-stash-list): New function.
16390         (vc-git-dir-extra-headers): Use it.
16392 2009-07-23  Glenn Morris  <rgm@gnu.org>
16394         * help-fns.el (describe-variable): Describe ignored and risky local
16395         variables in a similar way to that in which we describe safe ones.
16397         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
16398         (byte-compile-output-file-form, byte-compile-output-docform)
16399         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
16400         Give some more local variables with common names a "bytecomp-" prefix,
16401         so as not to shadow things during compilation.
16402         * emacs-lisp/cl-macs.el (load-time-value)
16403         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
16404         `outbuffer' to `bytecomp-outbuffer'.
16406         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
16407         since the next two variables cover them automatically now.
16408         (elint-builtin-variables, elint-autoloaded-variables): New.
16409         (elint-unknown-builtin-args): Remove all members, since they can be
16410         parsed automatically now.
16411         (elint-extra-errors): New.
16412         (elint-env-add-env, elint-env-add-macro): Use cadr.
16413         (elint-current-buffer): Use or.  Change final message.
16414         (elint-get-top-forms): Use line-end-position.
16415         (elint-init-env): Use cadr.  Handle autoload, declare-function,
16416         and defalias.
16417         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
16418         (regexp-assoc): Remove unused function.
16419         (elint-top-form): Set elint-current-pos, to record the start of the
16420         top-level form, for compilation-mode.
16421         (elint-form): Trap errors in macro expansion.  Use dolist.
16422         (elint-unbound-variable): Use elint-builtin-variables and
16423         elint-autoloaded-variables.
16424         (elint-get-args): Use cadr, or.
16425         (elint-check-cond-form): Use dolist, cadr.
16426         (elint-check-condition-case-form): Doc fix.  Use cadr.
16427         Use elint-extra-errors.
16428         (elint-log): New function.
16429         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
16430         Distinguish errors and warnings.
16431         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
16432         Use a bytecomp-style format.
16433         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
16434         (elint-get-log-buffer): Use compilation mode.  Disable undo.
16435         Don't truncate lines.
16436         (elint-initialize): Set builtin and autoloaded variable lists.
16437         Only process elint-unknown-builtin-args if non-nil.
16438         (elint-find-builtin-variables, elint-find-autoloaded-variables):
16439         New functions.
16440         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
16442 2009-07-22  Kevin Ryde  <user42@zip.com.au>
16444         * net/newst-backend.el (newsticker--parse-atom-1.0)
16445         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
16446         (newsticker--parse-rss-1.0):
16447         * progmodes/idlwave.el (idlwave-mode):
16448         * progmodes/idlw-shell.el (idlwave-shell-mode):
16449         * progmodes/vera-mode.el (vera-mode):
16450         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
16451         * progmodes/vhdl-mode.el (vhdl-mode):
16452         * textmodes/table.el (table-generate-source)
16453         (table--warn-incompatibility):
16454         Hyperlink urls in docstrings with URL `...'.
16456 2009-07-22  Glenn Morris  <rgm@gnu.org>
16458         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
16459         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
16460         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
16461         Remove leading * from defcustom docs.
16463         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
16465         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
16466         defcustom doc.
16467         (list-load-path-shadows): Optionally, just return shadows as a string.
16469         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
16471 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
16473         * mail/rmailedit.el (rmail-edit-mode): Use
16474         auto-save-include-big-deletions.
16476         * mail/rmail.el (rmail-variables): Use
16477         auto-save-include-big-deletions.
16479         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
16480         changes.
16482 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
16484         * calc/calc.el (calc-undo-length): New variable.
16485         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
16487 2009-07-21  Richard Stallman  <rms@gnu.org>
16489         * files.el (auto-save-mode): Handle buffer-save-size = -2
16490         for toggling mode.
16492 2009-07-21  Glenn Morris  <rgm@gnu.org>
16494         * textmodes/ispell.el (ispell-looking-back): Update declaration.
16496         * calendar/todo-mode.el (calendar-current-date): Update declaration.
16498         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
16499         silence compiler.  Instead...
16500         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
16501         (ps-print-ensure-fontified): Update for above function name changes.
16503         * printing.el (pr-mh-get-msg-num, pr-mh-show)
16504         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
16505         silence compiler.  Instead...
16506         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
16507         (mh-show-buffer): Only define for compiler.
16508         (pr-mh-current-message): Update for above function name changes.
16510         * files.el (abort-if-file-too-large): Explicitly pass `filename'
16511         as an argument.
16512         (find-file-noselect, insert-file-1): Update for above change.
16514         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
16516         * mail/mailclient.el (mailclient-send-it): Fix message.
16518         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
16519         (edebug-eval): Check cl-debug-env is bound.
16520         (print-level, print-circle): Don't redefine built-in variables.
16522         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
16523         (custom-print-vectors): Remove old comments from doc.
16525         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
16526         (emerge-version): Make the variable an obsolete alias for the
16527         emacs-version variable.  Make the function obsolete.
16528         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
16529         Emerge options, rather than merging in into the main Options menu.
16530         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
16531         and auto advance modes.  Disable edit/fast items when not relevant.
16533 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
16535         * term/vt420.el (terminal-init-vt420): Fix typo.
16537 2009-07-20  Sam Steingold  <sds@gnu.org>
16539         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
16540         variable (removed from compile.el on 2004-03-11).
16542 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
16544         * files.el (hack-local-variables-filter): Fix last change.
16546 2009-07-19  Juri Linkov  <juri@jurta.org>
16548         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
16549         (dir-local-variables-alist): New buffer-local variable.
16550         (hack-local-variables-filter): If variable is not dir-local,
16551         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
16552         because file-local overrides dir-local.
16553         (c-postprocess-file-styles) <declare-function>:
16554         Remove obsolete declaration.
16555         (hack-dir-local-variables): Add dir-local variable/value pair to
16556         `dir-local-variables-alist' and remove duplicates.  Doc fix.
16558         * help-fns.el (describe-variable): Add information about
16559         file-local and dir-local variables.
16561 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
16563         * files.el (hack-local-variables-filter): Rewrite.
16565 2009-07-19  Glenn Morris  <rgm@gnu.org>
16567         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
16568         Silence compiler by only defining on XEmacs.
16570         * international/mule.el (auto-coding-regexp-alist): Only match
16571         BABYL... at the start of buffer, not of lines.  (Bug#3790)
16573         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
16574         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
16575         (cal-menu-context-mouse-menu): Doc fix.
16577         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
16579         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
16581 2009-07-18  Juri Linkov  <juri@jurta.org>
16583         * info.el: Virtual Info keyword finder.
16584         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
16585         (Info-finder-file): New variable.
16586         (Info-finder-find-file): New function.
16587         (finder-known-keywords, finder-package-info)
16588         (find-library-name, lm-commentary): Use defvar and
16589         declare-function to silence compiler warnings.
16590         (Info-finder-find-node): New function.
16591         (info-finder): New command.
16593         * subr.el (process-kill-buffer-query-function): New function.
16594         (add-hook)<kill-buffer-query-functions>: Add hook
16595         `process-kill-buffer-query-function'.
16597 2009-07-18  Alan Mackenzie  <acm@muc.de>
16599         * progmodes/cc-mode.el (c-before-hack-hook)
16600         (c-postprocess-file-styles): Give invocation of `c-set-style'
16601         DONT-OVERRIDE parameter of t.  Already set style variables will
16602         thus not be overridden by style settings given by `c-file-syle'.
16604         * files.el (hack-local-variables-filter): Remove entries with
16605         duplicate keys from `file-local-variables-alist'.
16607 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
16609         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
16610         x-set-selection if display-selections-p returns nil for the
16611         current frame.
16613 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
16615         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
16617 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
16619         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
16620         Accept nil in addition to a regexp.
16621         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
16622         Accept nil in addition to a regexp.
16623         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
16624         buffers that have an associated file.  Handle nil values of
16625         desktop-buffers-not-to-save and desktop-files-not-to-save.
16626         (Bug#3833)
16628         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
16629         (x-disown-selection-internal): New functions.
16631 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
16633         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
16634         warning.
16635         (gdb-breakpoints-header): Move forward to avoid compiler warning.
16636         (gdb-make-header-line-mouse-map): Remove duplicate definition.
16638 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
16640         * simple.el (set-mark): Revert last change.
16642 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
16644         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
16645         rendering of pngs is not possible instead of messaging a long
16646         description.
16648 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
16650         * w32-fns.el (x-selection-owner-p): New function.
16652         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
16653         (mouse-yank-at-click, mouse-yank-primary): If
16654         select-active-regions is non-nil, deactivate the mark before
16655         insertion.
16657         * simple.el (deactivate-mark, set-mark): Only save selection if we
16658         own it.
16660 2009-07-17  Kenichi Handa  <handa@m17n.org>
16662         * case-table.el (describe-buffer-case-table): Fix for the case
16663         that KEY is a cons.
16665 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
16667         * vc-rcs.el (vc-rcs-find-file-hook):
16668         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
16670 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
16672         * net/tramp.el (tramp-wait-for-output): Handle the case when
16673         commands do not return a newline but a null byte before the shell
16674         prompt.  (Bug#3858)
16676 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
16678         * term/ns-win.el (ns-set-alpha): Don't declare.
16679         (ns-set-background-alpha): Remove function.
16681 2009-07-16  Kevin Ryde  <user42@zip.com.au>
16683         * emacs-lisp/copyright.el (copyright-update): Save match-data across
16684         y-or-n-p, for safety.
16686 2009-07-16  Richard Stallman  <rms@gnu.org>
16688         * files.el (auto-save-mode): If buffer-saved-size is -2,
16689         don't clobber it.
16691         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
16692         (rmail-retry-ignored-headers): Add more uninteresting fields.
16694 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
16696         * net/rcirc.el (rcirc): Use history variables.
16697         (rcirc-server-name-history, rcirc-nick-name-history)
16698         (rcirc-server-port-history): New variables.
16700 2009-07-15  Kenichi Handa  <handa@m17n.org>
16702         * international/mule-cmds.el (set-language-environment-charset):
16703         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
16704         ignore them.
16706         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
16707         Delete unibyte-display.
16709 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
16711         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
16713 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
16715         * simple.el (deactivate-mark): Optional argument FORCE.
16716         (set-mark): Use deactivate-mark.
16718         * info.el (Info-search): No need to check transient-mark-mode
16719         before calling deactivate-mark.
16721         * select.el (x-set-selection): Doc fix.
16722         (x-valid-simple-selection-p): Allow buffer values.
16723         (xselect--selection-bounds): Handle buffer values.  Suggested by
16724         David De La Harpe Golden.
16726         * mouse.el (mouse-set-region, mouse-drag-track): Call
16727         copy-region-as-kill before setting the mark, to let
16728         select-active-regions work.
16730 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
16732         * simple.el (deactivate-mark): If select-active-regions is
16733         non-nil, copy the selection data into a string.
16734         (activate-mark): If select-active-regions is non-nil, set the
16735         selection to the current buffer.
16736         (set-mark): Update selection if select-active-regions is non-nil.
16738         * select.el (x-valid-simple-selection-p): Allow buffer values.
16740 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
16742         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
16743         and more featureful message-mode.
16745 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
16747         * select.el (x-set-selection): Doc fix.
16748         (x-valid-simple-selection-p): Disallow selection data consisting
16749         of a list or cons of integers, since that is not used.
16750         (xselect--selection-bounds, xselect--int-to-cons): New functions.
16751         (xselect-convert-to-string, xselect-convert-to-length)
16752         (xselect-convert-to-filename, xselect-convert-to-charpos)
16753         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
16755 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
16757         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
16758         output in -break-info command (Emacs bug #3794).
16760 2009-07-14  Glenn Morris  <rgm@gnu.org>
16762         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
16763         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
16764         (edebug-print-length, edebug-print-level, edebug-print-circle)
16765         (edebug-sit-for-seconds, edebug-view-outside)
16766         (edebug-bounce-point, edebug-set-global-break-condition)
16767         (edebug-Go-nonstop-mode, edebug-trace-mode)
16768         (edebug-Trace-fast-mode, edebug-continue-mode)
16769         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
16770         (edebug-visit-eval-list): Doc fixes.
16772         * subr.el (def-edebug-spec): Doc fix.
16774 2009-07-14  Kenichi Handa  <handa@m17n.org>
16776         * international/characters.el: Fix setting of category ?C.
16778 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
16780         * term/ns-win.el (x-select-font): defalias x-select-font to
16781         ns-popup-font-panel instead of generate-fontset-menu.
16783 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
16785         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
16787 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
16789         * arc-mode.el (archive-find-type): Allow for a PK00 string before
16790         the PK\003\004 header (Bug#3770).
16792 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
16794         * pcomplete.el (pcomplete-comint-setup): Check for
16795         shell-dynamic-complete-filename too.
16797 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
16799         * simple.el (temporary-goal-column): Change the value for
16800         line-move-visual to a cons cell.
16801         (line-move-visual): Record or set the window hscroll, if
16802         necessary (Bug#3494).
16803         (line-move-1): Handle cons value of temporary-goal-column.
16805 2009-07-11  Kenichi Handa  <handa@m17n.org>
16807         * international/mule-diag.el (describe-character-set): Don't show
16808         width.
16810 2009-07-10  Sam Steingold  <sds@gnu.org>
16812         * progmodes/compile.el (compilation-mode-font-lock-keywords):
16813         Omake sometimes indents the errors it prints, so allow all
16814         regexps to start with spaces.
16816 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
16818         * cus-edit.el (customize-changed-options-previous-release):
16819         Bump value to 22.1.  (Bug#3804)
16821 2009-07-08  Sam Steingold  <sds@gnu.org>
16823         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
16824         to be a cons cell (test . ignored-directory) to selectively ignore
16825         some directories depending on the location of the search.
16827 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
16829         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
16830         remote user is root, on the local host.
16831         (tramp-local-host-p): Either the local user or the remote user
16832         must be root.  (Bug#3771)
16834 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
16836         * progmodes/gdb-mi.el (gdb): Remove description of
16837         gdb-use-separate-io-buffer.
16838         (menu): Don't allow toggling of or enable
16839         gdb-use-separate-io-buffer from menubar.
16841 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
16843         * mail/unrmail.el (unrmail): Make sure the message ends with two
16844         newlines (Bug#3769).
16846 2009-07-08  Glenn Morris  <rgm@gnu.org>
16848         * calendar/calendar.el (calendar-current-date): Rework previous change.
16850 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
16852         * calendar/calendar.el (calendar-current-date):
16853         Add an optional argument giving an offset from today.
16855 2009-07-08  Glenn Morris  <rgm@gnu.org>
16857         * tutorial.el (tutorial--describe-nonstandard-key):
16858         Adjust the message for when a key has been unbound.
16859         (help-with-tutorial): Hide the arch-tag.
16861 2009-07-08  Kenichi Handa  <handa@m17n.org>
16863         * international/fontset.el (setup-default-fontset): For each
16864         script, append (not set) font-specs.
16866         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
16867         docstring.
16869 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
16871         * progmodes/gdb-mi.el (gdb-init-1): Move sending
16872         -data-list-register-names to ...
16873         (gdb-starting): ... here because GDB 7.0 requires execution to
16874         have started when using this MI command.
16875         (gdb-set-header): New function to distinguish select and
16876         unselected tabs in gdb buffers.
16877         (gdb-propertize-header): New macro that uses gdb-set-header.
16878         (gdb-breakpoints-header, gdb-locals-header): Use it.
16879         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
16881 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
16883         * Makefile.in (ELCFILES): Remove fadr.elc.
16885 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
16887         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
16888         may contain frame information, so `string-match' should be used.
16889         (gdb-update): Disassembly is invalidated through
16890         `gdb-get-selected-frame'.
16891         (gdb-pad-string): New function to pad string with spaces.
16892         (gdb-invalidate-disassembly): Invalidate only if the buffer
16893         exists.
16894         (gdb-disassembly-handler-custom): Column alignment.
16895         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
16896         placing new ones.
16897         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
16898         end of line, too.
16899         (gdb-frame-handler): Match convention to for disassembly buffer
16900         mode name.
16901         (gdb-stack-list-frames-handler): Rewritten without regexps.
16902         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
16903         not highlight breakpoints without line information.
16904         (gdb-input): Add trailing newline to command.
16906         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
16907         buffer properly.
16908         (gdb-breakpoints-list-handler-custom): Replacement for
16909         `gdb-break-list-handler'.  Using real parser instead of regexps
16910         now.
16911         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
16912         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
16913         to place breakpoints.
16914         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
16915         functions.
16916         (gdb-disassembly-handler-custom): Show overlay arrow.
16917         (gdb-disassembly-place-breakpoints): Show breakpoints in
16918         disassembly buffer.
16919         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
16920         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
16921         instead of parsing breakpoints buffer.  Fixed old menu references
16922         in `gud-menu-map'.
16924         * fadr.el: Remove.
16926         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
16927         (gdb-memory-address): New variable which holds top address of
16928         memory page shown in memory buffer.
16929         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
16930         customization variables.
16931         New functions:
16932         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
16933         display the memory buffer.
16934         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
16935         buffer display parameters.
16936         (def-gdb-memory-format, gdb-memory-format-binary)
16937         (gdb-memory-format-octal, gdb-memory-format-unsigned)
16938         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
16939         Functions for setting memory buffer format.
16940         (gdb-memory-unit-word, gdb-memory-unit-halfword)
16941         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
16942         unit size used in memory buffer.
16943         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
16944         to next/previous page of memory buffer.
16945         Now using (bindat-get-field) instead of fadr functions.
16947 2009-07-07  Sam Steingold  <sds@gnu.org>
16949         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
16950         non-top-level files.
16952 2009-07-07  Kenichi Handa  <handa@m17n.org>
16954         * international/mule-cmds.el (reset-language-environment): Put
16955         the highset priority to the charset iso-8859-1.
16957 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
16959         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
16960         to the end of the line when locating the block (Bug#700).
16962 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
16964         * net/tramp.el (tramp-handle-write-region): Flush file properties
16965         in case of short track.
16967 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
16969         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
16970         Coded custom representation of verilog error regular expressions
16971         to work with Emacs-22's new format.
16972         (verilog-error-regexp-xemacs-alist): Coded custom representation
16973         of verilog error regular expressions to work with XEmacs format.
16974         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
16975         error recognition into XEmacs.
16976         (verilog-error-regexp-add-emacs): Hook routine to install verilog
16977         error recognition into Emacs-22.
16979 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
16981         * woman.el: Remove stand-alone closing parentheses.
16982         (woman-file-name, woman2-format-paragraphs)
16983         (woman-leave-blank-lines): Code cleanup.
16984         (woman-use-own-frame): Change default to nil.
16985         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
16986         defaults to inherit from default faces.
16987         (woman2-process-escapes): Consume the newline after a stand-alone
16988         filler character (Bug#3651).
16990 2009-07-06  Glenn Morris  <rgm@gnu.org>
16992         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
16993         (top-level): Move provide to the end.
16994         (ffap): Remove defunct URL from custom group.
16996         * subr.el (eval-after-load): Doc fix.
16998 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
17000         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
17001         `calc-embedded-word' is called twice.
17003 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17005         * files.el (find-alternate-file-other-window, find-alternate-file):
17006         Obey confirm-nonexistent-file-or-buffer.
17008 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
17010         * dired-aux.el (dired-show-file-type): Handle remote files.
17012 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
17014         * desktop.el (desktop-globals-to-save):
17015         Add file-name-history (Bug#2750).
17017 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
17019         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
17021 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
17023         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
17024         property on entire argument since this is what eshell-lisp-command
17025         expects.
17027 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
17029         * net/tramp-gvfs.el (tramp-gvfs-methods)
17030         (tramp-gvfs-zeroconf-domain)
17031         (tramp-bluez-discover-devices-timeout): Add version flag.
17032         (tramp-gvfs-handler-mounted-unmounted)
17033         (tramp-gvfs-connection-mounted-p): Polish handling of
17034         incompatibilities between GVFS 0.2 and 1.0.
17036 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
17038         * cus-start.el (all): Add make-pointer-invisible.
17040 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
17042         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
17043         formatted correctly.
17045 2009-07-02  Juri Linkov  <juri@jurta.org>
17047         * info.el: Virtual Info files and nodes.
17048         (Info-virtual-files, Info-virtual-nodes): New variables.
17049         (Info-current-node-virtual): New variable.
17050         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
17051         New functions.
17052         (Info-file-supports-index-cookies): Use Info-virtual-file-p
17053         to check for a virtual file instead of checking a fixed list
17054         of node names.
17055         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
17056         instead of ad-hoc processing of "dir" and (apropos history toc).
17057         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
17058         instead of ad-hoc processing of "dir" and (apropos history toc).
17059         Reread a file when moving from a virtual node.
17060         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
17061         (Info-directory-toc-nodes, Info-directory-find-file)
17062         (Info-directory-find-node): New functions.
17063         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
17064         (Info-history): Move part of code to
17065         `Info-history-find-node'.
17066         (Info-history-toc-nodes, Info-history-find-file)
17067         (Info-history-find-node): New functions.
17068         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
17069         (Info-toc): Move part of code to `Info-toc-find-node'.
17070         (Info-toc-find-node): New function.
17071         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
17072         the current Info file name to references because now the node
17073         "*TOC*" belongs to the same Info manual.
17074         (Info-toc-build): Rename from `Info-build-toc'.
17075         (Info-toc-nodes): Rename input argument `file' to `filename'.
17076         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
17077         instead of ad-hoc processing of ("dir" apropos history toc).
17078         (Info-index-nodes): Use Info-virtual-file-p
17079         to check for a virtual file instead of checking a fixed list
17080         of node names.
17081         (Info-index-node): Add check for `Info-current-node-virtual'.
17082         Raise `save-match-data' higher up the tree to contain
17083         `search-forward' too (bug fix).
17084         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
17085         (Info-virtual-index-nodes): New variable.
17086         (Info-virtual-index-find-node, Info-virtual-index): New functions.
17087         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
17088         (Info-apropos-file, Info-apropos-nodes): New variables.
17089         (Info-apropos-toc-nodes, Info-apropos-find-file)
17090         (Info-apropos-find-node, Info-apropos-matches): New functions.
17091         (info-apropos): Move part of code to `Info-apropos-find-node' and
17092         `Info-apropos-matches'.
17093         (Info-mode-map): Bind "I" to `Info-virtual-index'.
17094         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
17095         for a virtual file instead of checking a fixed list of node names.
17097         * simple.el (async-shell-command): New command.
17099         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
17101         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
17102         instead of `mount-info'.
17104 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
17106         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
17107         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
17109 2009-07-02  Kenichi Handa  <handa@m17n.org>
17111         * international/mule.el (set-keyboard-coding-system): Force *-unix
17112         coding-system to avoid eol conversion.
17114 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
17116         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
17117         Add handler for `process-file', `shell-command' and
17118         `start-file-process'.
17119         (tramp-gvfs-handle-shell-command)
17120         (tramp-gvfs-handle-start-file-process)
17121         (tramp-gvfs-handle-process-file): New defuns.
17122         (tramp-synce-list-devices): Simplify check for existence of property.
17124 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
17126         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
17128 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
17130         * language/korean.el (set-language-info-alist): Add korean-cp949,
17131         cp949 to spec.
17133 2009-07-01  Kenichi Handa  <handa@m17n.org>
17135         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
17137         * international/encoded-kb.el: Deleted.
17139         * international/mule.el (set-keyboard-coding-system): Perform the
17140         necessary setup here instead of calling encoded-kbd-setup-display.
17142 2009-07-01  Glenn Morris  <rgm@gnu.org>
17144         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
17146 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
17148         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
17150 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
17152         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
17153         Handle also the 'rename case, when setting file modes.  (Bug#3712)
17154         (tramp-default-file-modes): Remove execute permissions.
17156         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
17157         (top): Add a default for "synce" in `tramp-default-user-alist'.
17158         Add completion function for "synce" method.
17159         (tramp-hal-service, tramp-hal-path-manager)
17160         (tramp-hal-interface-manager, tramp-hal-interface-device):
17161         New defconst.
17162         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
17163         (tramp-synce-list-devices, tramp-synce-parse-device-names):
17164         New defuns.
17166         * net/trampver.el: Update release number.
17168 2009-06-30  Kenichi Handa  <handa@m17n.org>
17170         * international/fontset.el (setup-default-fontset): Add CJK fonts
17171         for symbols and the other miscellaneous characters.
17173         * language/korea-util.el (setup-korean-environment-internal):
17174         Make char-width-table suitable for Korean environments.
17175         (exit-korean-environment): Cancel above.
17177         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
17178         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
17179         setup-function to make char-width-table suitable for respective
17180         environments, and an exit-function to cancel that.
17182         * language/japan-util.el (setup-japanese-environment-internal):
17183         Call use-cjk-char-width-table with arg `ja_JP'.
17185         * international/characters.el (cjk-char-width-table): Delete it.
17186         (cjk-char-width-table-list): New variable.
17187         (use-cjk-char-width-table): New arg local-name.
17188         (use-default-char-width-table): Fix for the case that Emacs is
17189         already using the default char-width-table.
17191 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
17193         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
17194         modes mandatory.  (Bug#3712)
17196 2009-06-29  Alan Mackenzie  <acm@muc.de>
17198         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
17199         correction between the visible width of TABs and their number of bytes.
17201 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
17203         * server.el (server-buffer-done): Prevent kill-buffer from
17204         prompting by clearing the buffer modification flag (Bug#3696).
17206 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
17208         * progmodes/verilog-mode.el (verilog-beg-of-statement)
17209         (verilog-endcomment-reason-re): Support unique case and priority case.
17210         (verilog-basic-complete-re): Support localparam lineup.
17211         (verilog-beg-of-statement-1): Fix for robustness, unique case.
17212         (verilog-set-auto-endcomments): Fix for unique case, always_comb
17213         commenting.
17214         (verilog-leap-to-case-head): Now support *nested* unique &
17215         priority case statements.
17216         (verilog-auto-lineup): Make just declarations the default (as it
17217         had been).
17218         (verilog-leap-to-case-head): Support priority/unique case statements.
17219         (verilog-auto-lineup): Rework to give users radio buttons to
17220         select the various styles of automatic lineup.
17221         (verilog-error-regexp-alist): Rework to support the XEmacs style
17222         of error regular expressions from compilers, lint tools &
17223         simulators.  Note that GNU Emacs has made it impossible for a mode
17224         to load such things.
17225         (electric-verilog-terminate-line, verilog-indent-declaration)
17226         (verilog-auto-wiure): Rework for radio button selection of
17227         auto-lineup selection of specification of auto lineup.
17228         (verilog-beg-of-statement-1): Redesign to support proper operation
17229         in additional code, based on testing with auto-lineup.
17230         (verilog-calculate-indent, assignments & declarations)
17231         (verilog-backward-token): Enhance to support auto-lineup of
17232         assignments & declarations.
17233         (verilog-in-directive-p, verilog-at-struct-p): New function for
17234         easy test of whether we are.
17235         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
17236         to support safe execution at almost anyline.
17237         (verilog-calc-1): Properly support indenting deep inside generate
17238         blocks.
17239         (verilog-init-font): Remove definition & use of verilog-init-font,
17240         as it is redundant with font-lock-defaults.
17241         (verilog-mode): Alter the definition of verilog-font-lock-defaults
17242         to avoid circular calls if syntax-ppss is a function (as is the
17243         case now in 22.x GNU Emacs) as that function would sometimes call
17244         itself, leading to (nearly) infinite recursion.
17245         (verilog-ovm-begin-re, verilog-ovm-end-re)
17246         (verilog-ovm-statement-re, verilog-leap-to-head)
17247         (verilog-backward-token): Add support for OVM macros.  Some are
17248         complete statements, and others open and close scopes like begin
17249         and end.
17250         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
17251         (verilog-defun-level-generate-only-re): Really fix the defun-list
17252         compilation issue.
17253         (verilog-calc-1, verilog-beg-of-statement): Enhance support for
17254         coverpoint, constraint and cross statements.
17255         (verilog-defun-level-list, verilog-generate-defun-level-list)
17256         (verilog-all-defun-level-list): Redo these specifications - it is
17257         too hard to support eval-when compile aggregation of lists also
17258         built at when-compile time.
17259         (verilog-defun-level-list): Place defconsts of variables used in
17260         building regular expressions which are built in eval-when-compile
17261         bodies in the same eval-when-compile body to facilitate compile
17262         without load.
17263         (verilog-beg-block-re-ordered): Support indenting
17264         virtual/protected tasks and functions.
17265         (verilog-defun-level-list, verilog-in-generate-region-p)
17266         (verilog-backward-ws&directives, verilog-calc-1): Speed up
17267         indentation of some module items (generate items).
17268         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
17269         across virtual/protected tasks and functions.
17271 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
17273         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
17274         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
17275         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
17276         in concatenations.  Reported by Yishay Belkind.
17277         (verilog-auto-ascii-enum): Support one-hot state machines in
17278         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
17279         (verilog-auto-inst, verilog-auto-inst-port): Include interface
17280         modport in AUTOINST and add vl-modport for users.  Reported by
17281         David Rogoff.
17282         (verilog-auto-inout-module, verilog-auto-inst)
17283         (verilog-decls-get-interfaces, verilog-insert-definition)
17284         (verilog-insert-one-definition, verilog-read-decls)
17285         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
17286         (verilog-sig-modport, verilog-signals-combine-bus)
17287         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
17288         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
17289         Suggested by David Rogoff.
17290         (verilog-repair-open-comma): Fix non-insertion of comma when
17291         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
17292         (verilog-make-width-expression): Simplify [A-1:0] expression
17293         widths to just {A{1'b0}}.
17294         (verilog-mode): Cleanup checkdoc warnings.
17295         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
17296         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
17297         inputs/outputs or data type.  Suggested by Vasu Kandadi.
17298         (next-error-last-buffer): Fix byte-compiler warning.
17299         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
17300         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
17301         or shell command text during AUTO expansion.  Suggested by Tad Truex.
17302         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
17303         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
17304         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
17305         in AUTOINOUT.  Reported by Matthew Lovell.
17306         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
17307         causing use of <= assignments.  Reported by Alex Reed.
17308         (verilog-read-decls): Fix triand, trior, wand, wor to be
17309         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
17310         (verilog-extended-complete-re): Support import "DPI-C" functions.
17311         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
17312         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
17313         (verilog-insert-date, verilog-insert-year)
17314         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
17315         Windows systems.  Reported by Michael Potts.
17316         (verilog-read-module-name): Fix AUTOINST when the child module
17317         declaration's name is a tick define.  Reported by Elliot Mednick.
17318         (verilog-read-decls): Fix V2K parameter bit subscripts getting
17319         passed to next parameter's definition.  Reported by Bruce T.
17320         (verilog-read-decls): Fix detecting "parameter int" when using
17321         AUTOINSTPARAM.  Reported by Bruce T.
17322         (verilog-goto-defun): Fix goto not finding modules unless first
17323         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
17324         (verilog-mode): Expand -f flag arguments on entry to mode so
17325         verilog-goto-defun will work.  Reported by Lawrence Butcher.
17326         (verilog-getopt): Expand environment variables in -f file
17327         arguments.  Suggested by Lawrence Butcher.
17328         (verilog-set-define): Fix "Symbol's value as variable is void"
17329         when reading enumerations.
17330         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
17331         Suggested by Stephen Peltan.
17332         (verilog-read-defines): Fix reading of enumerations in include
17333         files.  Reported by Steve Peltan.
17335 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
17337         * files.el (trash-directory): Fix defcustom type.
17339 2009-06-28  Juri Linkov  <juri@jurta.org>
17341         * help-fns.el (describe-function-1): Correctly locate adviced
17342         functions in hyperlink (Bug#2438).
17344 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
17346         * files.el (trash-directory): Change default to nil.
17347         (move-file-to-trash): If trash-directory is nil and
17348         system-move-file-to-trash is unbound, perform freedesktop-style
17349         trashing.
17351 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
17353         * files.el (move-file-to-trash): Add freedesktop trash
17354         support (Bug#973).
17356 2009-06-28  Glenn Morris  <rgm@gnu.org>
17358         * autorevert.el (global-auto-revert-non-file-buffers)
17359         (global-auto-revert-mode): Doc fixes.
17361 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
17363         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
17365 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
17367         * faces.el (x-handle-named-frame-geometry): Ensure that we have
17368         opened an X connection before calling x-get-resource (Bug#3194).
17370         * play/doctor.el: Remove reference to obsolete website.
17371         (make-doctor-variables): Correct grammar mistake (Bug#2633).
17373 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
17375         Remove find-file-not-found-hook VC method.  (Bug#2757)
17376         * vc-hooks.el (vc-file-not-found-hook)
17377         (vc-default-find-file-not-found-hook): Remove functions.
17378         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
17379         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
17380         * vc.el:
17381         * vc-hg.el:
17382         * vc-git.el: Do not mention find-file-not-found-hook VC method.
17384 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
17386         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
17387         compatibility function for `looking-back'.
17389         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
17390         Use `ispell-looking-back'.
17392 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
17394         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
17395         rather than `filename'.
17397 2009-06-23  Miles Bader  <miles@gnu.org>
17399         * face-remap.el (text-scale-set): New function.
17401 2009-06-23  Glenn Morris  <rgm@gnu.org>
17403         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
17405         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
17407         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
17409         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
17411         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
17412         Simplify Persian conditionals.
17414         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
17415         variable `filename'.
17417         * comint.el (comint-insert-input): Doc fix.
17419         * Makefile.in (ELCFILES): Fix typo in previous change.
17421 2009-06-23  Miles Bader  <miles@gnu.org>
17423         * cus-start.el: Add entry for `recenter-redisplay'.
17425 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
17427         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
17428         Add an optional argument for the backend, use it instead of
17429         calling vc-backend.
17430         (vc-mode-line): Add an optional argument for the backend.
17431         Pass the backend to vc-state and vc-working-revision.  Move code for
17432         special handling for vc-state being a buffer to ...
17434         * vc-rcs.el (vc-rcs-find-file-hook):
17435         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
17437         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
17438         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
17439         vc-stay-local-p and vc-mode-line calls.
17441         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
17442         (vc-cvs-diff, vc-cvs-annotate-command)
17443         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
17444         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
17445         vc-mode-line calls.
17447         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
17448         direct comparison.
17449         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
17450         backend when calling vc-mode-line.
17451         (vc-register): Do not create a closure for calling the vc register
17452         function, call it directly.
17454 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
17456         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
17457         to make it obvious item can be clicked.
17459         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
17461 2009-06-23  Kenichi Handa  <handa@m17n.org>
17463         * language/korea-util.el (korean-key-bindings): Change the binding
17464         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
17465         same command.
17467 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
17469         Sync with Tramp 2.1.16.
17471         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
17473         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
17474         when a loading of a package fails.  Completion function for rsync
17475         is `tramp-completion-function-alist-ssh'.
17476         (all): Replace all calls of `split-string' and
17477         `tramp-split-string' by `tramp-compat-split-string'.
17478         (tramp-default-method): Use `tramp-compat-process-running-p'.
17479         (tramp-default-proxies-alist): Allow also Lisp forms.
17480         (tramp-remote-path): Add choice "Private Directories".
17481         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
17482         (tramp-domain-regexp): Allow also "-", "_" and ".".
17483         (tramp-end-of-output): Remove newlines, and add "$" at the end.
17484         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
17485         (tramp-debug-message): Insert header line in debug buffer.
17486         (tramp-handle-directory-files-and-attributes-with-stat):
17487         Care about filenames with spaces, or starting with "-".
17488         (tramp-handle-dired-uncache): New defun.
17489         (tramp-handle-insert-directory): Don't flush the directory from
17490         cache, this is handled by `dired-uncache' now.
17491         (tramp-handle-insert-file-contents): Improve error handling.
17492         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
17493         Quote `tramp-end-of-output'.
17494         (tramp-action-password): Improve trace message.
17495         (tramp-check-for-regexp): Both echoes must be present, before removing.
17496         (tramp-open-connection-setup-interactive-shell): Trace coding system.
17497         (tramp-compute-multi-hops): Eval cons cells of
17498         `tramp-default-proxies-alist'.
17499         (tramp-maybe-open-connection): Use the same command pattern for
17500         first hop and further hops.
17501         (tramp-wait-for-output): Remove handling of newlines.
17502         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
17503         (tramp-split-string): Remove function.  It is handled in
17504         tramp-compat now.
17506         * net/tramp-cmds.el (tramp-bug):
17507         Recommend `tramp-cleanup-all-connections' in the bug mail.
17509         * net/tramp-compat.el (tramp-compat-split-string)
17510         (tramp-compat-process-running-p): New defuns.
17512         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
17513         for `dired-uncache'.
17515         * net/tramp-gvfs.el: New package.
17517         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
17518         Add handler for `dired-uncache'.
17519         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
17521         * net/trampver.el: Update release number.  Make version check fit
17522         for SXEmacs 22.
17524 2009-06-22  Jim Meyering  <meyering@redhat.com>
17526         Automatically handle .xz suffix (XZ-compressed files), too.
17527         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
17528         XZ is the successor to LZMA: <http://tukaani.org/xz/>
17530 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
17531             Nick Roberts  <nickrob@snap.net.nz>
17533         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
17534         repository (http://sphinx.net.ru/hg/gdb-mi/).
17536 2009-06-22  Glenn Morris  <rgm@gnu.org>
17538         * files.el (dir-locals-collect-mode-variables): Allow for any number of
17539         `mode' and `eval' entries.  (Bug#3430)
17541         * Makefile.in (ELCFILES): Add fadr.elc.
17543         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
17544         differing behavior of \n and ^ in strings.  (Bug#3385)
17546         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
17548         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
17549         property.
17550         (lisp-indent-function): Make it a defcustom.
17552 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
17554         * progmodes/gdb-ui.el: Replace with ...
17555         * progmodes/gdb-mi.el: ... this file.
17556         * progmodes/gud.el: Modify for gdb-mi.el.
17558 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
17560         * fadr.el: New file.
17562 See ChangeLog.14 for earlier changes.
17564 ;; Local Variables:
17565 ;; coding: utf-8
17566 ;; End:
17568   Copyright (C) 2009, 2010  Free Software Foundation, Inc.
17570   This file is part of GNU Emacs.
17572   GNU Emacs is free software: you can redistribute it and/or modify
17573   it under the terms of the GNU General Public License as published by
17574   the Free Software Foundation, either version 3 of the License, or
17575   (at your option) any later version.
17577   GNU Emacs is distributed in the hope that it will be useful,
17578   but WITHOUT ANY WARRANTY; without even the implied warranty of
17579   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17580   GNU General Public License for more details.
17582   You should have received a copy of the GNU General Public License
17583   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.