make-dist: Don't distribute src/buildobj.h.
[emacs.git] / lisp / ChangeLog
blob95a8287f005963323f3e9e0ed76978d3d220aaa7
1 2010-10-08  Glenn Morris  <rgm@gnu.org>
3         * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
5         * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
6         (shadows-compare-text-p): Make it an obsolete alias for...
7         (load-path-shadows-compare-text): ... new name.
8         (find-emacs-lisp-shadows): Update for above name change.
9         (load-path-shadows-same-file-or-nonexistent): New name for the old
10         shadow-same-file-or-nonexistent.
12 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
14         * minibuffer.el (completion--some, completion--do-completion)
15         (minibuffer-complete-and-exit, minibuffer-completion-help)
16         (completion-basic-try-completion)
17         (completion-basic-all-completions)
18         (completion-pcm--find-all-completions): Use lexical-let to
19         avoid some false matches in variable completion (Bug#7056)
21 2010-10-03  Olof Ohlsson Sax  <olof.ohlsson.sax@gmail.com>  (tiny change)
23         * vc-svn.el (vc-svn-merge-news): Use --non-interactive.  (Bug#7152)
25 2010-10-03  Leo  <sdl.web@gmail.com>
27         * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
28         return non-nil if the file exists (Bug#7090).
30 2010-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
32         * minibuffer.el (completion--replace):
33         Better preserve markers (bug#7138).
35 2010-09-29  Juanma Barranquero  <lekktu@gmail.com>
37         * server.el (server-process-filter): Doc fix.
39 2010-09-27  Drew Adams  <drew.adams@oracle.com>
41         * dired.el (dired-save-positions): Doc fix.  (Bug#7119)
43 2010-09-27  Andreas Schwab  <schwab@linux-m68k.org>
45         * Makefile.in (ELCFILES): Update.
47         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
48         Avoid infinite recursion on erroneous lambda form.  (Bug#7114)
50 2010-09-27  Kenichi Handa  <handa@m17n.org>
52         * tar-mode.el (tar-header-block-tokenize): Decode filenames in
53         "ustar" format.
55 2010-09-27  Kenichi Handa  <handa@m17n.org>
57         * international/mule.el (define-coding-system): Docstring fixed.
59         * international/mule-diag.el (describe-character-set): Use princ
60         with proper print-length and print-level instead of insert.
62 2010-09-26  Juanma Barranquero  <lekktu@gmail.com>
64         * window.el (walk-windows): Doc fix (bug#7105).
66 2010-09-23  Glenn Morris  <rgm@gnu.org>
68         * isearch.el (isearch-lazy-highlight-cleanup)
69         (isearch-lazy-highlight-initial-delay)
70         (isearch-lazy-highlight-interval)
71         (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
72         * net/net-utils.el (ipconfig-program-options):
73         Move aliases to options before the associated definitions.
75 2010-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
77         * newcomment.el (comment-normalize-vars): Better test validity of
78         comment-end-skip.
80 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
82         * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
83         (float-e): New name for `e'.
84         (degrees-to-radians, radians-to-degrees):
85         * calendar/solar.el (solar-longitude):
86         * calculator.el (calculator-registers, calculator-funcall):
87         * textmodes/artist.el (artist-spray-random-points):
88         * play/bubbles.el (bubbles--initialize-images): Use new names.
90 2010-09-19  Eric M. Ludlam  <zappo@gnu.org>
92         Update to CEDET 1.0's version of EIEIO.
94         * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
95         New function.
96         (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
97         (eieio-default-eval-maybe): Eval val instead of unquoting only.
98         (class-precedence-list): If class is nil, return nil.
99         (eieio-generic-call): If class of first input arg is nil, don't
100         look up static methods, and do check for primary methods.
101         (initialize-instance): See if the default needs to be evaluated
102         during the constructor.
103         (eieio-perform-slot-validation-for-default): Don't do the check
104         for values that will eventually be evaluated.
105         (eieio-eval-default-p): New function.
106         (eieio-default-eval-maybe): Use it.
108 2010-07-03  Jan Moringen  <jan.moringen@uni-bielefeld.de>
110         * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
111         method-invocation-order.
112         (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
113         (eieio-class-precedence-dfs): Compute class precedence list using
114         dfs algorithm.
115         (eieio-class-precedence-bfs): Compute class precedence list using
116         bfs algorithm.
117         (eieio-class-precedence-c3): Compute class precedence list using
118         c3 algorithm.
119         (class-precedence-list): New function.
120         (eieiomt-method-list, eieiomt-sym-optimize): Use it.
121         (inconsistent-class-hierarchy): New error symbol.
122         (call-next-method): Stow the replacement argument list for future
123         call-next-method invocations.
125 2010-09-15  Glenn Morris  <rgm@gnu.org>
127         * calendar/appt.el (appt-check): If not displaying the diary,
128         use (diary 1) to only get the entries we need.
129         (appt-make-list): Sort diary-list-entries, if we cannot guarantee
130         that it is in day order.  (Bug#7019)
132         * calendar/appt.el (appt-check): Rather than showing the diary,
133         just turn off invisible display, and only if needed.
135         * calendar/diary-lib.el (diary-list-entries): Doc fix.  (Bug#7019)
137 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
139         * emacs-lisp/byte-run.el (set-advertised-calling-convention):
140         Add `when' argument.  Update callers.
142         * subr.el (unintern): Declare the obarray arg mandatory.
144 2010-09-14  Glenn Morris  <rgm@gnu.org>
146         * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
147         Doc fixes.
149         * calendar/diary-lib.el (diary-included-files): New variable.
150         (diary-list-entries): Maybe initialize diary-included-files.
151         (diary-include-other-diary-files): Append to diary-included-files.
152         * calendar/appt.el (appt-update-list): Also check the members of
153         diary-included-files.  (Bug#6999)
154         (appt-check): Doc fix.
156 2010-09-12  David Reitter  <david.reitter@gmail.com>
158         * simple.el (line-move-visual): Do not truncate goal column to
159         integer size.  (Bug#7020)
161 2010-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
163         * repeat.el (repeat): Allow repeating when the last event is a click.
164         Suggested by Drew Adams (bug#6256).
166 2010-09-11  Sascha Wilde  <wilde@sha-bang.de>
168         * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
169         Replace setting HGRCPATH to "" by some less invasive --config options.
171 2010-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
173         * font-lock.el (font-lock-beginning-of-syntax-function):
174         Mark as obsolete.
176 2010-09-10  Glenn Morris  <rgm@gnu.org>
178         * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
179         and tool-bar modes.  (Bug#6211)
180         (menu-bar-mode): Move setting of standard-value after the
181         minor-mode definition, otherwise it seems to have no effect.
183 2010-09-08  Masatake YAMATO  <yamato@redhat.com>
185         * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
186         Fix typo.  (Bug#6976)
188 2010-09-06  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
190         * whitespace.el: Allow cleaning up blanks without blank
191         visualization (Bug#6651).  Adjust help window for
192         whitespace-toggle-options (Bug#6479).  Allow to use fill-column
193         instead of whitespace-line-column (from EmacsWiki).  New version 13.1.
194         (whitespace-style): Add new value 'face.  Adjust docstring.
195         (whitespace-space, whitespace-hspace, whitespace-tab):
196         Adjust foreground property face.
197         (whitespace-line-column): Adjust docstring and type declaration.
198         (whitespace-style-value-list, whitespace-toggle-option-alist)
199         (whitespace-help-text): Adjust const initialization.
200         (whitespace-toggle-options, global-whitespace-toggle-options):
201         Adjust docstring.
202         (whitespace-display-window, whitespace-interactive-char)
203         (whitespace-style-face-p, whitespace-color-on): Adjust code.
204         (whitespace-help-scroll): New fun.
206 2010-09-05  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
208         * files.el (directory-abbrev-alist): Use \` as default regexp.
210         * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
211         chars like - or ] (bug#6984).
212         (rx-any-condense-range): Explode 2-char ranges.
214 2010-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
216         * textmodes/bibtex.el:
217         * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
219 2010-09-02  Glenn Morris  <rgm@gnu.org>
221         * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
223 2010-08-31  Kenichi Handa  <handa@m17n.org>
225         * international/mule-cmds.el (standard-display-european-internal):
226         Setup standard-display-table for 8-bit characters by storing 8-bit
227         characters in the element vector.
229         * disp-table.el (standard-display-8bit):
230         Setup standard-display-table for 8-bit characters by storing 8-bit
231         characters in the element vector.
232         (standard-display-european): Likewise.
234 2010-08-26  Michael Albinus  <michael.albinus@gmx.de>
236         Sync with Tramp 2.1.19.
238         * net/tramp-cmds.el (tramp-cleanup-all-connections)
239         (tramp-reporter-dump-variable, tramp-load-report-modules)
240         (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
241         (tramp-bug): Recommend setting of `tramp-verbose' to 9.
243         * net/tramp-compat.el (top): Do not autoload
244         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
245         only when `start-file-process' is not bound.
246         (byte-compile-not-obsolete-vars): Define if not bound.
247         (tramp-compat-funcall): New defmacro.
248         (tramp-compat-line-beginning-position)
249         (tramp-compat-line-end-position)
250         (tramp-compat-temporary-file-directory)
251         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
252         (tramp-compat-copy-file, tramp-compat-copy-directory)
253         (tramp-compat-delete-file, tramp-compat-delete-directory)
254         (tramp-compat-number-sequence, tramp-compat-process-running-p):
255         Use it.
256         (tramp-advice-file-expand-wildcards): Do not use
257         `tramp-handle-file-remote-p'.
258         (tramp-compat-make-temp-file): Simplify fallback implementation.
259         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
260         (tramp-compat-copy-tree): Remove function.
261         (tramp-compat-delete-file): New defun.
262         (tramp-compat-delete-directory): Provide implementation for older
263         Emacsen.
264         (tramp-compat-file-attributes): Handle only
265         `wrong-number-of-arguments' error.
267         * net/tramp-fish.el (tramp-fish-handle-copy-file):
268         Add PRESERVE_SELINUX_CONTEXT.
269         (tramp-fish-handle-delete-file): Add TRASH arg.
270         (tramp-fish-handle-directory-files-and-attributes):
271         Do not use `tramp-fish-handle-file-attributes.
272         (tramp-fish-handle-file-local-copy)
273         (tramp-fish-handle-insert-file-contents)
274         (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
276         * net/tramp-gvfs.el (top): Require url-util.
277         (tramp-gvfs-mount-point): Remove.
278         (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
279         and `set-file-selinux-context'.
280         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
281         (tramp-gvfs-handle-file-selinux-context)
282         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
283         (with-tramp-dbus-call-method): Format trace message.
284         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
285         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
286         Implement backup call, when operation on local files fails.
287         Use progress reporter.  Flush properties of changed files.
288         (tramp-gvfs-handle-delete-file): Add TRASH arg.
289         Use `tramp-compat-delete-file'.
290         (tramp-gvfs-handle-expand-file-name): Expand "~/".
291         (tramp-gvfs-handle-make-directory): Make more traces.
292         (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
293         (tramp-gvfs-url-file-name): Hexify file name in url.
294         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
295         into account for the resulting file name.
296         (tramp-gvfs-handler-askquestion): Preserve current message, in
297         order to let progress reporter continue afterwards.  (Bug#6257)
298         Return dummy mountpoint, when the answer is "no".
299         See `tramp-gvfs-maybe-open-connection'.
300         (tramp-gvfs-handler-mounted-unmounted)
301         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
302         attribute "default_location".  Set "prefix" property.
303         Handle default-location.
304         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
305         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
306         exists.  Raise an error, if not (due to a corresponding answer
307         "no" in interactive questions, for example).
308         Use `tramp-compat-funcall'.
310         * net/tramp-imap.el (top): Autoload `epg-make-context'.
311         (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
312         (tramp-imap-do-copy-or-rename-file)
313         (tramp-imap-handle-insert-file-contents)
314         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
315         (tramp-imap-handle-delete-file): Add TRASH arg.
317         * net/tramp-smb.el (tramp-smb-handle-copy-file):
318         Add PRESERVE-SELINUX-CONTEXT.
319         (tramp-smb-handle-copy-file)
320         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
321         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
322         Use `with-progress-reporter'.
323         (tramp-smb-handle-delete-file): Add TRASH arg.
325         * net/tramp.el (tramp-methods): Move hostname to the end in all
326         ssh `tramp-login-args'.  Add `tramp-async-args' attribute where
327         appropriate.
328         (tramp-verbose): Describe verbose level 9.
329         (tramp-completion-function-alist)
330         (tramp-file-name-regexp, tramp-chunksize)
331         (tramp-local-coding-commands, tramp-remote-coding-commands)
332         (with-connection-property, tramp-completion-mode-p)
333         (tramp-action-process-alive, tramp-action-out-of-band)
334         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
335         (tramp-exists-file-name-handler): Fix docstring.
336         (tramp-remote-process-environment): Use `format' instead of
337         `concat'.  Protect version string by apostroph.
338         (tramp-shell-prompt-pattern): Do not use a shy group in case of
339         XEmacs.
340         (tramp-file-name-regexp-unified)
341         (tramp-completion-file-name-regexp-unified): On W32 systems, do
342         not regard the volume letter as remote filename.  (Bug#5447)
343         (tramp-perl-file-attributes)
344         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
345         (tramp-vc-registered-read-file-names): Read input as
346         here-document, otherwise the command could exceed maximum length
347         of command line.
348         (tramp-file-name-handler-alist): Add `file-selinux-context' and
349         `set-file-selinux-context'.
350         (tramp-debug-message): Add `tramp-compat-funcall' to ignored
351         backtrace functions.
352         (tramp-error-with-buffer): Don't show the connection buffer when
353         we are in completion mode.
354         (tramp-progress-reporter-update, tramp-remote-selinux-p)
355         (tramp-handle-file-selinux-context)
356         (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
357         (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
358         New defuns.
359         (with-progress-reporter): New defmacro.
360         (tramp-debug-outline-regexp): New defconst.
361         (top, tramp-rfn-eshadow-setup-minibuffer)
362         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
363         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
364         (tramp-completion-mode-p, tramp-check-for-regexp)
365         (tramp-open-connection-setup-interactive-shell)
366         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
367         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
368         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
369         Use `tramp-compat-funcall'.
370         (tramp-handle-make-symbolic-link): Flush file properties.
371         (tramp-handle-load, tramp-handle-file-local-copy)
372         (tramp-handle-insert-file-contents, tramp-handle-write-region)
373         (tramp-handle-vc-registered, tramp-maybe-send-script)
374         (tramp-find-shell): Use `with-progress-reporter'.
375         (tramp-do-file-attributes-with-stat): Add space in format string,
376         in order to work around a bug in pdksh.  Reported by Gilles Pion
377         <gpion@lfdj.com>.
378         (tramp-handle-verify-visited-file-modtime): Do not send a command
379         when the connection is not established.
380         (tramp-handle-set-file-times): Simplify the check for utc.
381         (tramp-handle-directory-files-and-attributes)
382         (tramp-get-remote-path): Use `copy-tree'.
383         (tramp-completion-handle-file-name-all-completions): Ensure, that
384         non remote files are still checked.  Oops.
385         (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
386         Handle PRESERVE-SELINUX-CONTEXT.
387         (tramp-do-copy-or-rename-file): Add progress reporter.
388         (tramp-do-copy-or-rename-file-directly): Do not use
389         `tramp-handle-file-remote-p'.
390         (tramp-do-copy-or-rename-file-out-of-band):
391         Use `tramp-compat-delete-directory'.
392         (tramp-do-copy-or-rename-file-out-of-band)
393         (tramp-compute-multi-hops, tramp-maybe-open-connection):
394         Use `format-spec-make'.
395         (tramp-handle-delete-file): Add TRASH arg.
396         (tramp-handle-dired-uncache): Flush directory cache, not only file
397         cache.
398         (tramp-handle-expand-file-name)
399         (tramp-completion-handle-file-name-all-completions)
400         (tramp-completion-handle-file-name-completion):
401         Use `tramp-connectable-p'.
402         (tramp-handle-start-file-process): Set connection property "vec".
403         Use it, in order to invalidate file caches.  Check only for
404         `remote-tty' process property.
405         Implement tty setting.  (Bug#4604, Bug#6360)
406         (tramp-file-name-for-operation): Add `call-process-region' and
407         `set-file-selinux-context'.
408         (tramp-find-foreign-file-name-handler)
409         (tramp-advice-make-auto-save-file-name)
410         (tramp-set-auto-save-file-modes): Remove superfluous check for
411         `stringp'.  This is done inside `tramp-tramp-file-p'.
412         (tramp-file-name-handler): Trace 'quit.  Catch the error for some
413         operations when we are in completion mode.  This gives the user
414         the chance to correct the file name in the minibuffer.
415         (tramp-completion-mode-p): Use `non-essential'.
416         (tramp-handle-file-name-all-completions): Backward/ XEmacs
417         compatibility: Use `completion-ignore-case' if
418         `read-file-name-completion-ignore-case' does not exist.
419         (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
420         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
421         `tramp-open-shell'.
422         (tramp-action-password): Hide password prompt before next run.
423         (tramp-process-actions): Widen connection buffer for the trace.
424         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
425         process property.  Trace stty settings if `tramp-verbose' >= 9.
426         Apply workaround for IRIX64 bug.  Move argument of last
427         `tramp-send-command' where it belongs to.
428         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
429         front of `login-args'.
430         (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
431         on "/dev/null" instead of "/".
432         (tramp-get-ls-command-with-dired): Make test for "--dired"
433         stronger.
434         (tramp-set-auto-save-file-modes): Adapt version check.
435         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
436         (tramp-handle-process-file): Call the program in a subshell, in
437         order to preserve working directory.
438         (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
439         `tramp-remote-sh' from `tramp-methods'.
440         (tramp-get-ls-command): Make test for "--color=never" stronger.
441         (tramp-check-for-regexp): Use (forward-line 1).
443         * net/trampver.el: Update release number.
445 2010-08-26  Magnus Henoch  <magnus.henoch@gmail.com>
447         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
448         empty argument to gvfs-copy.
450 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
452         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
453         handle new TRASH arg of `delete-file'.
455 2010-08-26  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
457         * net/tramp.el (tramp-handle-insert-directory): Don't use
458         `forward-word', its default syntax could be changed.
460 2010-08-26  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
461             Michael Albinus  <michael.albinus@gmx.de>
463         Implement compression for inline methods.
465         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
466         (tramp-copy-size-limit): Allow also nil.
467         (tramp-inline-compress-commands): New defconst.
468         (tramp-find-inline-compress, tramp-get-inline-compress)
469         (tramp-get-inline-coding): New defuns.
470         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
471         replaced by `tramp-get-inline-coding'.
472         (tramp-handle-file-local-copy, tramp-handle-write-region)
473         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
475 2010-08-26  Noah Lavine  <noah549@gmail.com>  (tiny change)
477         Detect ssh 'ControlMaster' argument automatically in some cases.
479         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
480         (tramp-default-method): Use it.
482 2010-08-26  Karel Klíč  <kklic@redhat.com>
484         * net/tramp.el (tramp-file-name-for-operation):
485         Add file-selinux-context.
487 2010-08-26  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
489         * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
491 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
493         * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
494         (Bug#6907).
496 2010-08-23  Chris Foote <chris@foote.com.au>  (tiny change)
498         * progmodes/python.el (python-block-pairs): Allow use of "finally"
499         with "else" (Bug#3991).
501 2010-08-22  Leo  <sdl.web@gmail.com>
503         * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
504         (ignore, bright, dim, keyword): Split list of nicknames before
505         passing to rcirc-add-or-remove (Bug#6894).
507 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
509         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
511 2010-08-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
513         * whitespace.el: Fix slow cursor movement (Bug#6172).  Reported by
514         Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
515         New version 13.0.
516         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
517         Adjust initialization.
518         (whitespace-bob-marker, whitespace-eob-marker)
519         (whitespace-buffer-changed): New vars.
520         (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
521         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
522         (whitespace-post-command-hook, whitespace-display-char-on):
523         Adjust code.
524         (whitespace-looking-back, whitespace-buffer-changed): New funs.
525         (whitespace-space-regexp, whitespace-tab-regexp): Eliminate funs.
527 2010-08-21  Leo  <sdl.web@gmail.com>
529         Fix buffer-list rename&refresh after killing a buffer in ido.
530         * lisp/ido.el: Revert Óscar's.
531         (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
532         Remember the buffers at head, rather than their name.
533         * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
535 2010-08-21  Kirk Kelsey  <kirk.kelsey@0x4b.net>  (tiny change)
536             Stefan Monnier  <monnier@iro.umontreal.ca>
538         * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
539         extra backslash added to each line (bug#6890).
541 2010-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
543         * subr.el (read-key): Don't echo keystrokes (bug#6883).
545 2010-08-21  Glenn Morris  <rgm@gnu.org>
547         * menu-bar.el (menu-bar-games-menu): Add landmark.
549 2010-08-20  Glenn Morris  <rgm@gnu.org>
551         * align.el (align-regexp): Make group and spacing arguments
552         use the interactive defaults when non-interactive.  (Bug#6698)
554         * mail/rmail.el (rmail-forward): Replace mail-text-start with its
555         expansion, so as not to need sendmail.
556         (mail-text-start): Remove declaration.
557         (rmail-retry-failure): Require sendmail.
559 2010-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
561         * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
563 2010-08-18  Michael Albinus  <michael.albinus@gmx.de>
565         * progmodes/flymake.el (flymake-start-syntax-check-process):
566         Use `start-file-process' in order to let it run also on remote hosts.
568 2010-08-18  Kenichi Handa  <handa@m17n.org>
570         * files.el: Add `word-wrap' as safe local variable.
572 2010-08-18  Glenn Morris  <rgm@gnu.org>
574         * woman.el (woman-translate): Case matters.  (Bug#6849)
576 2010-08-14  Chong Yidong  <cyd@stupidchicken.com>
578         * simple.el (kill-region): Doc fix (Bug#6787).
580 2010-08-14  Glenn Morris  <rgm@gnu.org>
582         * calendar/diary-lib.el (diary-header-line-format):
583         Fit it to the window, not the frame.
585 2010-08-11  Andreas Schwab  <schwab@linux-m68k.org>
587         * subr.el (ignore-errors): Add debug declaration.
589 2010-08-09  Geoff Gole  <geoffgole@gmail.com>  (tiny change)
591         * whitespace.el (whitespace-color-off): Remove post-command-hook
592         locally.
594 2010-08-08  Johan Bockgård  <bojohan@gnu.org>
596         * replace.el (replace-highlight): Bind isearch-forward and
597         isearch-error, ensuring that highlighting is updated if the user
598         switches the search direction (Bug#6808).
600         * isearch.el (isearch-lazy-highlight-forward): New var.
601         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
602         (isearch-lazy-highlight-update): Use it.
604 2010-08-06  Kenichi Handa  <handa@m17n.org>
606         * international/mule.el (define-charset): Store NAME as :base property.
607         (ctext-non-standard-encodings-table): Pay attention to charset aliases.
608         (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
609         current priority.  Force using the designation of the specific
610         charset by adding `charset' text property.  Improve the whole
611         algorithm.
613 2010-08-05  Juanma Barranquero  <lekktu@gmail.com>
615         * emulation/pc-select.el (pc-selection-mode-hook)
616         (copy-region-as-kill-nomark, beginning-of-buffer-mark)
617         (pc-selection-mode): Fix typos in docstrings.
619 2010-08-04  Kenichi Handa  <handa@m17n.org>
621         * language/cyrillic.el: Don't add "microsoft-cp1251" to
622         ctext-non-standard-encodings-alist here.
624         * international/mule.el (ctext-non-standard-encodings-alist):
625         Add "koi8-r" and "microsoft-cp1251".
626         (ctext-standard-encodings): New variable.
627         (ctext-non-standard-encodings-table): List only elements for
628         non-standard encodings.
629         (ctext-pre-write-conversion): Adjust for the above change.
630         Check ctext-standard-encodings.
632         * international/mule-conf.el (compound-text): Doc fix.
633         (ctext-no-compositions): Doc fix.
634         (compound-text-with-extensions): Doc fix.
636 2010-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
638         * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
640 2010-08-03  Juanma Barranquero  <lekktu@gmail.com>
642         * progmodes/which-func.el (which-func-format): Split help-echo text
643         into lines, like other mode-line tooltips.
645         * server.el (server-start): When using TCP sockets, force IPv4
646         and use a literal 127.0.0.1 for localhost.  (Related to bug#6781.)
648 2010-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
650         * bindings.el (complete-symbol): Run completion-at-point as a fallback.
652 2010-08-02  Juanma Barranquero  <lekktu@gmail.com>
654         * term.el (term-delimiter-argument-list): Reflow docstring.
655         (term-read-input-ring, term-write-input-ring, term-send-input)
656         (term-bol, term-erase-in-display, serial-supported-or-barf):
657         Fix typos in docstrings.
659 2010-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
661         * bindings.el (function-key-map): Add a S-tab => backtab fallback.
663 2010-08-01  Juanma Barranquero  <lekktu@gmail.com>
665         * dabbrev.el (dabbrev-completion): Fix typo in docstring.
667 2010-08-01  MON KEY  <monkey@sandpframing.com>  (tiny change)
669         * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
670         Fix typo in docstring (bug#6747).
672 2010-07-30  Leo  <sdl.web@gmail.com>
674         * eshell/esh-io.el (eshell-get-target): Better detection of
675         read-only file (Bug#6762).
677 2010-07-30  Juanma Barranquero  <lekktu@gmail.com>
679         * align.el (align-default-spacing): Doc fix.
680         (align-region-heuristic, align-regexp): Fix typos in docstrings.
682 2010-07-23  Juanma Barranquero  <lekktu@gmail.com>
684         * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
686 2010-07-19  Juanma Barranquero  <lekktu@gmail.com>
688         * time.el (display-time-day-and-date): Remove spurious * in docstring.
689         (display-time-world-buffer-name, display-time-world-mode-map):
690         Fix typos in docstrings.
692 2010-07-17  Shyam Karanatt  <shyam@swathanthran.in>  (tiny change)
694         * image-mode.el (image-display-size): New function.
695         (image-forward-hscroll, image-next-line, image-eol, image-eob)
696         (image-mode-fit-frame): Use it (Bug#6639).
698 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
700         * dired.el (dired-buffers-for-dir): Handle list values of
701         dired-directory (Bug#6636).
703 2010-07-16  Reiner Steib  <Reiner.Steib@gmx.de>
705         * vc.el (vc-coding-system-inherit-eol): New defvar.
706         (vc-coding-system-for-diff): Use it to decide whether to inherit
707         from the file the EOL format for reading the diffs of that file.
708         (Bug#4451)
710 2010-07-16  Eli Zaretskii  <eliz@gnu.org>
712         * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
713         unibyte, so compressed attachments are not compressed again.
715 2010-07-14  Jan Djärv  <jan.h.d@swipnet.se>
717         * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
718         now that unicode is used (Bug#6594).
720 2010-07-14  Chong Yidong  <cyd@stupidchicken.com>
722         * simple.el (push-mark-command): Set the selection if
723         select-active-regions is non-nil.
725 2010-07-10  Glenn Morris  <rgm@gnu.org>
727         * calendar/calendar.el (calendar-week-end-day): New function.
728         * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
729         Respect calendar-week-start-day.  (Bug#6606)
730         (cal-tex-insert-day-names, cal-tex-insert-blank-days)
731         (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
732         (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
733         respect calendar-week-start-day.
735 2010-07-10  Chong Yidong  <cyd@stupidchicken.com>
737         * simple.el (use-region-p): Doc fix (Bug#6607).
739 2010-07-07  Christoph Scholtes  <cschol2112@gmail.com>
741         * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
742         builtins (BufferError, BytesWarning, WindowsError; callables
743         bin, bytearray, bytes, format, memoryview, next, print; __package__).
745 2010-07-07  Glenn Morris  <rgm@gnu.org>
747         * play/zone.el (zone-fall-through-ws): Fix next-line ->
748         forward-line fallout.
750 2010-07-06  Chong Yidong  <cyd@stupidchicken.com>
752         * mouse.el (mouse-appearance-menu): Add docstring.
754         * help.el (describe-key): Print up-event using key-description.
756 2010-07-03  Michael Albinus  <michael.albinus@gmx.de>
758         * net/zeroconf.el (zeroconf-resolve-service)
759         (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
760         (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
762 2010-07-03  Jan Moringen  <jan.moringen@uni-bielefeld.de>
764         * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
766 2010-06-30  Dan Nicolaescu  <dann@ics.uci.edu>
768         Avoid displaying files with a nil state in vc-dir.
769         * vc-dir.el (vc-dir-update): Obey the noinsert argument in all
770         cases that cause insertion.
771         (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
772         with a nil state.
774 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
776         * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
778 2010-06-29  Leo  <sdl.web@gmail.com>
780         * emacs-lisp/rx.el (rx): Doc fix.  (Bug#6537)
782 2010-06-27  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
784         * generic-x.el (bat-generic-mode): Fix regexp for command line
785         switches (Bug#5719).
787 2010-06-27  Masatake YAMATO  <yamato@redhat.com>
789         * htmlfontify.el (hfy-face-attr-for-class): Use append instead
790         of nconc to avoid pure storage error (Bug#6239).
792 2010-06-27  Christoph  <cschol2112@googlemail.com>  (tiny change)
794         * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
795         (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
796         bindings of bookmark-automatically-show-annotations (Bug#6515).
798 2010-06-25  Eli Zaretskii  <eliz@gnu.org>
800         * arc-mode.el (archive-zip-extract): Don't quote the file name on
801         MS-Windows and MS-DOS.  (Bug#6467, Bug#6144)
803 2010-06-24  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
805         * comint.el (make-comint, make-comint-in-buffer): Mention return
806         value in the docstrings.  (Bug#6498)
808 2010-06-24  Yoni Rabkin  <yoni@rabkins.net>
810         * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
811         since it is not present when using some non-default switches.
813 2010-06-23  Karl Fogel  <kfogel@red-bean.com>
815         * simple.el (compose-mail): Fix doc string to refer to
816         `compose-mail-user-agent-warnings', instead of to the
817         nonexistent `compose-mail-check-user-agent'.
819 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
821         Fix vc-annotate for renamed files when using Git.
822         * vc-git.el (vc-git-find-revision): Deal with empty results from
823         ls-files.  Doe not pass the object as a file name to cat-file, it
824         is not a file name.
825         (vc-git-annotate-command): Pass the file name using -- to avoid
826         ambiguity with the revision.
827         (vc-git-previous-revision): Pass a relative file name.
829 2010-06-22  Glenn Morris  <rgm@gnu.org>
831         * progmodes/js.el (js-mode-map): Use standard capitalization and
832         ellipses for menu entries.
834         * wid-edit.el (widget-complete): Doc fix.
836 2010-06-22  Jürgen Hötzel  <juergen@hoetzel.info>  (tiny change)
838         * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
840 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
842         Fix annotating other revisions for renamed files in vc-annotate.
843         * vc-annotate.el (vc-annotate): Add an optional argument for the
844         VC backend.  Use it when non-nil.
845         (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.  (Bug#6487)
847         Fix vc-annotate-show-changeset-diff-revision-at-line for git.
848         * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
849         Do not pass the file name to the 'previous-revision call when we
850         don't want a file diff.  (Bug#6489)
852 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
854         Fix finding revisions for renamed files in vc-annotate.
855         * vc.el (vc-find-revision): Add an optional argument for
856         the VC backend.  Use it when non-nil.
857         * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
858         backend to vc-find-revision.  (Bug#6487)
860 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
862         Fix reading file names in Git annotate buffers.
863         * vc-git.el (vc-git-annotate-extract-revision-at-line):
864         Remove trailing whitespace.  Suggested by Eric Hanchrow.  (Bug#6481)
866 2010-06-20  Alan Mackenzie  <acm@muc.de>
868         * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
869         in file local variables, set it first.
871 2010-06-19  Glenn Morris  <rgm@gnu.org>
873         * descr-text.el (describe-char-unicode-data): Insert separating
874         space when needed.  (Bug#6422)
876         * progmodes/idlwave.el (idlwave-action-and-binding):
877         Fix typo in 2009-12-03 change.  (Bug#6450)
879 2010-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
881         * subr.el (read-quoted-char): Fix up last change (bug#6290).
883 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
885         * font-lock.el (font-lock-major-mode): Rename from
886         font-lock-mode-major-mode to distinguish it from
887         global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
888         (font-lock-set-defaults):
889         * font-core.el (font-lock-default-function): Adjust users.
890         (font-lock-mode): Don't set it at all.
892 2010-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
894         * vc-annotate.el (vc-annotate): Use vc-read-revision.
896 2010-06-15  Glenn Morris  <rgm@gnu.org>
898         * calendar/appt.el (appt-time-msg-list): Doc fix.
899         (appt-check): Let-bind appt-warn-time.
900         (appt-add): Make the 3rd argument optional.
901         Simplify argument names.  Doc fix.  Check for integer WARNTIME.
902         Only add WARNTIME to the output list if non-nil.
904 2010-06-15  Ivan Kanis  <apple@kanis.eu>
906         * calendar/appt.el (appt-check): Let the 3rd element of
907         appt-time-msg-list specify the warning time.
908         (appt-add): Add new argument with the warning time.  (Bug#5176)
910 2010-06-12  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
912         * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
913         older than version 1.6.  (Bug#6361)
915 2010-06-12  Helmut Eller  <eller.helmut@gmail.com>
917         * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
918         used by cl-do-arglist.  (Bug#6408)
920 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
922         * emacs-lisp/advice.el (ad-compile-function):
923         Define warning-suppress-types before we let-bind it (bug#6275).
925         * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
926         declare it, make it buffer-local and permanent-local (bug#6324).
927         (vc-resynch-window): Adjust name.
928         * vc-hooks.el (vc-find-file-hook): Adjust name.
930 2010-06-07  Jonathan Rockway  <jon@jrock.us>
932         * net/rcirc.el: Add support for password authentication.
933         (rcirc-server-alist): Add :password keyword.
934         (rcirc): Ask for a password, or get it from the server's alist.
935         (rcirc-connect): Add password argument.  Pass it to server.
937 2010-06-05  Juanma Barranquero  <lekktu@gmail.com>
939         * net/dbus.el (dbus-register-method): Declare function.
940         (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
941         (dbus-introspect): Doc fix.
942         (dbus-event-bus-name, dbus-introspect-get-interface)
943         (dbus-introspect-get-argument): Reflow docstrings.
945 2010-06-04  Chong Yidong  <cyd@stupidchicken.com>
947         * term/common-win.el (x-colors): Add "dark green" and "dark
948         turquoise" (Bug#6332).
950 2010-06-03  Glenn Morris  <rgm@gnu.org>
952         * desktop.el (desktop-clear-preserve-buffers):
953         Add "*Warnings*" buffer.  (Bug#6336)
955 2010-06-02  Dan Nicolaescu  <dann@ics.uci.edu>
957         * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
959 2010-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
961         * vc-bzr.el (vc-bzr-revision-completion-table): Apply
962         `file-directory-p' to the filename part rather than to the whole text.
964 2010-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
966         * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
968 2010-05-31  Drew Adams  <drew.adams@oracle.com>
970         * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
972 2010-05-31  Juanma Barranquero  <lekktu@gmail.com>
974         * subr.el (momentary-string-display): Just use read-event to read
975         the exit event (Bug#6238).
977 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
979         * ansi-color.el: Delete unused escape sequences (Bug#6085).
980         (ansi-color-drop-regexp): New constant.
981         (ansi-color-apply, ansi-color-filter-region)
982         (ansi-color-apply-on-region): Delete unrecognized control sequences.
983         (ansi-color-apply): Build string list before calling concat.
985 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
987         * progmodes/verilog-mode.el (verilog-type-font-keywords):
988         Use font-lock-constant-face, not obsolete font-lock-reference-face.
990 2010-05-27  Masatake YAMATO  <yamato@redhat.com>
992         * htmlfontify.el (hfy-face-resolve-face): New function.
993         (hfy-face-to-style): Use it (Bug#6279).
995 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
997         * epa.el (epa--select-keys): Don't explicitly delete the window since
998         that can fail (e.g. sole window in frame).  Use dedication instead.
1000 2010-05-19  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
1002         * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
1004 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1006         * subr.el (read-quoted-char): Resolve modifiers after key
1007         remapping (bug#6212).
1009 2010-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1011         * tmm.el (tmm-prompt): Don't try to precompute bindings.
1012         (tmm-get-keymap): Compute shortcuts (bug#6171).
1014 2010-05-10  Glenn Morris  <rgm@gnu.org>
1016         * desktop.el (desktop-save-buffer-p): Don't mistakenly include
1017         all dired buffers, even tramp ones.  (Bug#5755)  [Backport from trunk]
1019 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
1021         * Version 23.2 released.
1023 2010-05-03  Chong Yidong  <cyd@stupidchicken.com>
1025         * international/mule.el (auto-coding-alist):  Only purecopy
1026         car of each item, not the whole list (Bug#6083).
1028 2010-05-02  Chong Yidong  <cyd@stupidchicken.com>
1030         * progmodes/js.el (js-mode): Make paragraph variables local before
1031         calling c-setup-paragraph-variables (Bug#6071).
1033 2010-05-01  Eli Zaretskii  <eliz@gnu.org>
1035         * composite.el (compose-region, reference-point-alist): Fix typos
1036         in the doc strings.
1038 2010-04-28  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
1040         * calc/calc-graph.el (calc-graph-plot): Use the proper form for
1041         gnuplot's "set" command.
1043 2010-04-26  Juanma Barranquero  <lekktu@gmail.com>
1045         * abbrev.el (last-abbrev-text): Doc fix.
1046         (abbrev-prefix-mark): Don't escape parenthesis.
1048 2010-04-24  Andreas Schwab  <schwab@linux-m68k.org>
1050         * composite.el (find-composition): Doc fix.
1052 2010-04-24  Juanma Barranquero  <lekktu@gmail.com>
1054         * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
1055         (sql-oracle-program, sql-sqlite-options)
1056         (sql-query-placeholders-and-send): Doc fixes.
1057         (sql-set-product, sql-interactive-mode): Reflow docstrings.
1058         (sql-imenu-generic-expression, sql-buffer)
1059         (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
1060         (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
1061         (sql-mode-sybase-font-lock-keywords)
1062         (sql-mode-informix-font-lock-keywords)
1063         (sql-mode-interbase-font-lock-keywords)
1064         (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
1065         (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
1066         (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
1067         (sql-product-feature, sql-highlight-product)
1068         (comint-line-beginning-position, sql-rename-buffer)
1069         (sql-toggle-pop-to-buffer-after-send-region)
1070         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
1071         (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
1072         Fix typos in docstrings.
1074 2010-04-23  Juri Linkov  <juri@jurta.org>
1076         * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
1077         property instead of `invisible' and `after-string' (bug#5998).
1079 2010-04-23  Juri Linkov  <juri@jurta.org>
1081         * image-mode.el (image-mode-as-text): Fix typo in docstring.
1083 2010-04-23  Juanma Barranquero  <lekktu@gmail.com>
1085         * filecache.el (file-cache-add-directory-list)
1086         (file-cache-add-directory-recursively): Fix typos in docstrings.
1088 2010-04-22  Kenichi Handa  <handa@m17n.org>
1090         * language/indian.el (gurmukhi-composable-pattern): Fix typo.
1091         (gujarati-composable-pattern): Fix typo.
1093 2010-04-20  Kenichi Handa  <handa@m17n.org>
1095         * language/indian.el (oriya-composable-pattern)
1096         (tamil-composable-pattern, malayalam-composable-pattern):
1097         Add two-part vowels to "v" (vowel sign).
1099 2010-04-20  Chong Yidong  <cyd@stupidchicken.com>
1101         * files.el (copy-directory): Handle symlinks (Bug#5982).
1103         * progmodes/compile.el (compilation-next-error-function):
1104         Revert 2009-10-12 change (Bug#5983).
1106 2010-04-20  Dan Nicolaescu  <dann@ics.uci.edu>
1108         * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
1109         (vc-hg-working-revision): Likewise.  Use hg parents, not hg parent
1110         (Bug#5846).
1112 2010-04-20  Glenn Morris  <rgm@gnu.org>
1114         * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
1116         * minibuffer.el (completion-at-point): Doc fix.
1118 2010-04-17  Dan Nicolaescu  <dann@ics.uci.edu>
1120         Fix the version number for added files.
1121         * vc-hg.el (vc-hg-working-revision): Check if the file is
1122         registered after hg parent fails (Bug#5961).
1124 2010-04-17  Glenn Morris  <rgm@gnu.org>
1126         * htmlfontify.el (htmlfontify-buffer)
1127         (htmlfontify-copy-and-link-dir): Autoload entry points.
1129 2010-04-17  Magnus Henoch  <magnus.henoch@gmail.com>
1131         * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
1132         name relative to the project root (Bug#5960).
1134 2010-04-16  Glenn Morris  <rgm@gnu.org>
1136         * vc-git.el (vc-git-print-log): Doc fix.
1138 2010-04-14  Óscar Fuentes  <ofv@wanadoo.es>
1140         * ido.el (ido-file-internal): Fix 2009-12-02 change.
1142 2010-04-14  Christoph  <cschol2112@googlemail.com>  (tiny change)
1144         * progmodes/grep.el (grep-compute-defaults): Fix handling of host
1145         default settings (Bug#5928).
1147 2010-04-10  Glenn Morris  <rgm@gnu.org>
1149         * progmodes/fortran.el (fortran-match-and-skip-declaration):
1150         New function.
1151         (fortran-font-lock-keywords-3): Use it.  (Bug#1385)
1153 2010-04-07  Kenichi Handa  <handa@m17n.org>
1155         * language/indian.el (malayalam-composable-pattern): Fix previous
1156         change (add U+0D4D "SIGN VIRAMA").
1157         (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
1158         (tamil-composable-pattern): Fix typo in the regexp.
1159         (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
1160         (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
1161         (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
1163 2010-04-06  Chong Yidong  <cyd@stupidchicken.com>
1165         * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
1166         paragraph-separate (Bug#5821).
1168 2010-04-05  Juri Linkov  <juri@jurta.org>
1170         Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
1172         * info.el (Info-find-node-2): Comment out code that skips
1173         breadcrumbs line.
1174         (Info-mouse-follow-link): New command.
1175         (Info-link-keymap): New keymap.
1176         (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
1177         Return a string with links instead of inserting breadcrumbs
1178         to the Info buffer.
1179         (Info-fontify-node): Comment out code that inserts breadcrumbs.
1180         Instead of putting the `invisible' text property over the Info
1181         header, make an overlay over the Info header with the `invisible'
1182         property and `after-string' set to the string returned by
1183         `Info-breadcrumbs'.
1185 2010-04-03  Chong Yidong  <cyd@stupidchicken.com>
1187         * help.el (help-window-setup-finish): Doc fix (Bug#5830).
1188         Reported by monkey@sandpframing.com.
1190 2010-03-30  Tomas Abrahamsson  <tab@lysator.liu.se>
1192         * textmodes/artist.el (artist-mode): Fix typo in docstring.
1193         Reported by Alex Schröder <kensanata@gmail.com>.  (Bug#5807)
1195 2010-03-30  Kenichi Handa  <handa@m17n.org>
1197         * language/sinhala.el (composition-function-table): Fix regexp for
1198         the new Unicode specification.
1200         * language/indian.el (devanagari-composable-pattern)
1201         (tamil-composable-pattern, kannada-composable-pattern)
1202         (malayalam-composable-pattern): Adjust for the new Unicode
1203         specification.
1204         (bengali-composable-pattern, gurmukhi-composable-pattern)
1205         (gujarati-composable-pattern, oriya-composable-pattern)
1206         (telugu-composable-pattern): New variables to cope with the new
1207         Unicode specification.  Use them in composition-function-table.
1209 2010-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1211         Make tmm-menubar work for the Buffers menu again (bug#5726).
1212         * tmm.el (tmm-prompt): Also handle keymap entries in the form of
1213         vectors rather than cons cells, as used in menu-bar-update-buffers.
1215 2010-03-28  Chong Yidong  <cyd@stupidchicken.com>
1217         * progmodes/js.el (js-auto-indent-flag, js-mode-map)
1218         (js-insert-and-indent): Revert 2009-08-15 change, restoring
1219         electric punctuation for "{}();,:" (Bug#5586).
1221         * mail/sendmail.el (mail-default-directory): Doc fix.
1223 2010-03-27  Chong Yidong  <cyd@stupidchicken.com>
1225         * mail/sendmail.el (mail-default-directory): Doc fix.
1227 2010-03-27  Eli Zaretskii  <eliz@gnu.org>
1229         * subr.el (version-regexp-alist, version-to-list)
1230         (version-list-<, version-list-=, version-list-<=)
1231         (version-list-not-zero, version<, version<=, version=): Doc fix.
1232         (Bug#5744).
1234 2010-03-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1235             Nick Roberts  <nickrob@snap.net.nz>
1237         * progmodes/gdb-ui.el (gdb-apple-test): New function.
1238         (gdb-init-1): Use it.
1240 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
1242         * vc.el (vc-root-diff): Doc fix.
1244 2010-03-25  Chong Yidong  <cyd@stupidchicken.com>
1246         * vc.el (vc-print-log, vc-print-root-log): Doc fix.
1248         * simple.el (append-to-buffer): Fix last change.
1250 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
1252         * simple.el (append-to-buffer): Ensure that point is preserved if
1253         BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
1254         (Bug#5749)
1256 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1258         * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
1259         (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
1260         not be present any more.
1262 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1264         * faces.el (set-face-attribute): Fix typo in docstring.
1265         (face-valid-attribute-values): Reflow docstring.
1267 2010-03-23  Glenn Morris  <rgm@gnu.org>
1269         * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
1271 2010-03-21  Chong Yidong  <cyd@stupidchicken.com>
1273         * indent.el (indent-for-tab-command): Doc fix.
1275 2010-03-22  Juanma Barranquero  <lekktu@gmail.com>
1277         * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
1278         (image-dired-read-comment): Doc fix.
1280         * json.el (json-object-type, json-array-type, json-key-type)
1281         (json-false, json-null, json-read-number):
1282         * minibuffer.el (completion-in-region-functions):
1283         * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
1284         (cal-tex-cursor-week):
1285         * emacs-lisp/trace.el (trace-function):
1286         * eshell/em-basic.el (eshell/printnl):
1287         * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
1288         (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
1289         * obsolete/levents.el (allocate-event, event-key, event-object)
1290         (event-point, event-process, event-timestamp, event-to-character)
1291         (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
1292         * textmodes/reftex-vars.el (reftex-index-macros-builtin)
1293         (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
1294         (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
1295         (reftex-highlight-selection): Fix typos in docstrings.
1297 2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
1299         * minibuffer.el (completion-in-region-functions): Fix docstring typos.
1301 2010-03-18  Glenn Morris  <rgm@gnu.org>
1303         * mail/rmail.el (rmail-highlight-face): Restore option deleted
1304         2008-02-13 without comment; mark it obsolete.
1305         (rmail-highlight-headers): Use rmail-highlight-face once more.
1307 2010-03-16  Chong Yidong  <cyd@stupidchicken.com>
1309         * woman.el (woman2-process-escapes): Only consume the newline if
1310         the filler character is on a line by itself (Bug#5729).
1312 2010-03-16  Kenichi Handa  <handa@m17n.org>
1314         * language/indian.el (devanagari-composable-pattern): Add more
1315         consonants.
1317 2010-03-14  Michael Albinus  <michael.albinus@gmx.de>
1319         * net/trampver.el: Update release number.
1321 2010-03-13  Glenn Morris  <rgm@gnu.org>
1323         * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
1325 2010-03-13  Michael Albinus  <michael.albinus@gmx.de>
1327         * net/tramp.el (tramp-find-executable):
1328         Use `tramp-get-connection-buffer'.  Make the regexp for checking
1329         output of "wc -l" more robust.
1330         (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
1331         (tramp-open-connection-setup-interactive-shell): Remove workaround
1332         for OpenSolaris bug, it is not needed anymore.
1334 2010-03-12  Glenn Morris  <rgm@gnu.org>
1336         * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie.  (Bug#4427)
1338 2010-03-11  Wilson Snyder  <wsnyder@wsnyder.org>
1340         * files.el (auto-mode-alist): Accept more verilog file patterns.
1342 2010-03-09  Miles Bader  <miles@gnu.org>
1344         * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
1345         instead of "format:"; this ensures that the output is
1346         newline-terminated.
1348 2010-03-08  Chong Yidong  <cyd@stupidchicken.com>
1350         * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
1351         that all errors are caught, and that the return value is always a
1352         list (Bug#5692).
1354 2010-03-08  Kenichi Handa  <handa@m17n.org>
1356         * language/misc-lang.el (windows-1256): New coding system.
1357         (cp1256): New alias of windows-1256 (bug#5690).
1359 2010-03-07  Andreas Schwab  <schwab@linux-m68k.org>
1361         * mail/rfc822.el (rfc822-addresses): Move catch clause down around
1362         call to rfc822-bad-address.  (Bug#5692)
1364 2010-03-07  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
1366         * vc-git.el (vc-git-annotate-extract-revision-at-line):
1367         Use vc-git-root as default directory for revision path (Bug#5657).
1369 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
1371         * calculator.el (calculator): Don't bind split-window-keep-point
1372         (Bug#5674).
1374 2010-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1376         * vc-git.el: Re-flow to fit into 80 columns.
1377         (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
1378         Remove spurious `quote' element in each case alternative.
1379         (vc-git-show-log-entry): Use prog1.
1380         (vc-git-after-dir-status-stage): Remove unused var `remaining'.
1382 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1384         * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
1386 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
1388         * macros.el (insert-kbd-macro): Look up keyboard macro using the
1389         definition, not the name (Bug#5481).
1391 2010-03-03  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
1393         * subr.el (momentary-string-display): Don't overwrite the MESSAGE
1394         argument with a local variable.  (Bug#5670)
1396 2010-03-02  Juri Linkov  <juri@jurta.org>
1398         * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
1400 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
1402         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
1403         error when FILENAME and NEWNAME are existing remote directories.
1405         * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
1406         parameter DIR-FLAG.
1408 2010-03-02  Glenn Morris  <rgm@gnu.org>
1410         * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
1411         of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
1413 2010-03-01  Kenichi Handa  <handa@m17n.org>
1415         * language/burmese.el (burmese-composable-pattern): Rename from
1416         myanmar-composable-pattern.
1418         * international/characters.el (script-list):
1419         * international/fontset.el (script-representative-chars):
1420         Change myanmar to burmese.
1421         (otf-script-alist): Likewise.
1422         (setup-default-fontset): Likewise.  Re-fix :otf spec.
1424 2010-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1426         * menu-bar.el (menu-bar-manuals-menu): Fix typo.
1428 2010-02-28  Jan Djärv  <jan.h.d@swipnet.se>
1430         * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
1432 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
1434         * net/tramp.el (tramp-handle-write-region): START can be a string.
1435         Take care in the checks.  Reported by Dan Davison
1436         <davison@stats.ox.ac.uk>.
1438 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
1440         * net/dbus.el (dbus-introspect, dbus-get-property)
1441         (dbus-set-property, dbus-get-all-properties): Use
1442         `dbus-call-method' when noninteractive.  (Bug#5645)
1444 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
1446         * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
1447         * emacs-lisp/elint.el (elint-add-required-env):
1448         * calendar/icalendar.el (icalendar--add-diary-entry):
1449         * calc/calcalg2.el (math-tracing-integral):
1450         * files.el (recover-session-finish): Use with-current-buffer
1451         instead of save-excursion.
1453 2010-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1455         Fix in-buffer completion when after-change-functions modify the buffer.
1456         * minibuffer.el (completion--replace): New function.
1457         (completion--do-completion): Use it and use relative movement.
1459 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
1461         * international/fontset.el (setup-default-fontset): Fix :otf spec.
1463 2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
1465         * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
1466         Allow the characters _<> in the stack entry (Bug#5653).
1468 2010-02-26  Kenichi Handa  <handa@m17n.org>
1470         * language/burmese.el: Fix entries in composition-function-table.
1471         (myanmar-composable-pattern): New variable.
1473         * international/fontset.el (setup-default-fontset): Add an entry
1474         for myanmar.
1476         * international/characters.el (script-list): Add Myanmar
1477         Extended-A.
1479 2010-02-26  Glenn Morris  <rgm@gnu.org>
1481         * custom.el (custom-initialize-delay): Doc fix.
1483         * mail/sendmail.el (send-mail-function): Autoload the call
1484         to custom-initialize-delay, not otherwise preserved in loaddefs.el.
1486 2010-02-24  Chong Yidong  <cyd@stupidchicken.com>
1488         * files.el (hack-local-variables-filter): For eval forms, also
1489         check safe-local-variable-p (Bug#5636).
1491 2010-02-24  Eduard Wiebe  <usenet@pusto.de>
1493         * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
1494         and use c(ad)r of cddr (Bug#5640).
1496 2010-02-22  Michael Albinus  <michael.albinus@gmx.de>
1498         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
1499         setting the modes by `ignore-errors'.  It might fail, for example
1500         if the file is not owned by the user but the group.
1501         (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
1503 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
1505         * files.el (directory-listing-before-filename-regexp): Use
1506         stricter matching for iso-style dates, to avoid false matches with
1507         date-like filenames (Bug#5597).
1509         * htmlfontify.el (htmlfontify): Doc fix.
1511         * eshell/eshell.el (eshell): Doc fix.
1513         * startup.el (fancy-about-screen): In mode-line, apply
1514         mode-line-buffer-id face only to the buffer name (Bug#5613).
1516 2010-02-20  Kevin Ryde  <user42@zip.com.au>
1518         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1519         In `watcom' anchor regexp to start of line, to avoid slowness
1520         (Bug#5599).
1522 2010-02-20  Eli Zaretskii  <eliz@gnu.org>
1524         * subr.el (remove-yank-excluded-properties): Explain in a comment
1525         why `category' property is removed.
1527 2010-02-19  Chong Yidong  <cyd@stupidchicken.com>
1529         * isearch.el (isearch-update-post-hook, isearch-update): Revert
1530         2010-02-17 change.
1532 2010-02-19  Ulf Jasper  <ulf.jasper@web.de>
1534         * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
1535         (icalendar--convert-weekly-to-ical)
1536         (icalendar--convert-yearly-to-ical)
1537         (icalendar--convert-block-to-ical)
1538         (icalendar--convert-cyclic-to-ical)
1539         (icalendar--convert-anniversary-to-ical): Take care of time
1540         specifications where hour has 1-digit only (Bug#5549).
1542 2010-02-19  Nick Roberts  <nickrob@snap.net.nz>
1544         * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
1545         of disassemble output in GDB 7.1.
1547 2010-02-19  Glenn Morris  <rgm@gnu.org>
1549         * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
1550         property.  (Bug#5593)
1552 2010-02-18  Sam Steingold  <sds@gnu.org>
1554         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
1556 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1558         Use abbreviated file names in bookmarks (bug#5591).
1559         * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
1560         calls to expand-file-name.
1561         (bookmark-relocate): Use abbreviated file names in bookmarks.
1562         (bookmark-load): Use abbreviated file names in messages.
1564 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
1566         * net/tramp.el (tramp-handle-directory-files): When FULL, do not
1567         expand "." and "..".  Reported by Thierry Volpiatto
1568         <thierry.volpiatto@gmail.com>.
1570 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
1572         * net/tramp.el (tramp-handle-insert-file-contents): Set always the
1573         permissions of the temporary file to "0600".  In case the remote
1574         file has no read permissions for the owner, there might be
1575         problems otherwise.  Reported by Ole Laursen <olau@iola.dk>.
1577 22010-02-18  Glenn Morris  <rgm@gnu.org>
1579         * emacs-lisp/authors.el (authors-renamed-files-alist):
1580         Add entries for INSTALL.CVS.
1582 2010-02-17  Mark A. Hershberger  <mah@everybody.org>
1584         * vc-bzr.el: Fix typo in Known Bugs section.
1586         * isearch.el (isearch-update-post-hook): New hook.
1587         (isearch-update): Use the new hook.
1589 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
1591         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
1592         Fix errors in copying directories.
1593         (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
1594         (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
1595         (tramp-handle-delete-file)
1596         (tramp-handle-dired-recursive-delete-directory)
1597         (tramp-handle-write-region): Flush also the cache for the upper
1598         directory.
1600 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
1602         * simple.el (save-interprogram-paste-before-kill): Doc fix.
1604         * cus-edit.el (hardware): Doc fix.
1606         * man.el (man): Add to external custom group.
1608         * delim-col.el (columns): Move to wp custom group.
1610         * doc-view.el (doc-view): Add to data custom group.
1612         * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
1614         * textmodes/flyspell.el (flyspell-word): Obey the offset specified
1615         by ispell-parse-output (Bug#5575).
1617 2010-02-16  Kenichi Handa  <handa@m17n.org>
1619         * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
1620         (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
1621         (skkdic-convert): Use `euc-japan' coding system for writing.
1623 2010-02-16  Glenn Morris  <rgm@gnu.org>
1625         * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
1626         tex-main-file before using it.  (Bug#5562)
1628 2010-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1630         * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
1631         warnings, since it is annoying for the user to see them each time he
1632         runs the code.
1634 2010-02-15  Michael Albinus  <michael.albinus@gmx.de>
1636         * net/tramp.el (tramp-process-actions, tramp-read-passwd):
1637         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
1638         instead of PROC for caching "first-password-request".  Otherwise,
1639         new processes would not profit from passwords already entered.
1641         * net/tramp-cache.el (tramp-dump-connection-properties):
1642         Don't save "first-password-request" property.
1644 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
1646         * outline.el (outline-head-from-level):
1647         * simple.el (with-wrapper-hook):
1648         * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
1649         (elint-defun, elint-buffer-env, elint-top-form-logged)
1650         (elint-unbound-variable):
1651         * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
1652         Fix typos in docstrings.
1654 2010-02-14  Michael Albinus  <michael.albinus@gmx.de>
1656         * files.el (insert-directory): When WILDCARD-REGEXP and
1657         FULL-DIRECTORY-P are nil, insert the file entry instead of the
1658         whole directory.  (Bug#5551)
1660         * net/ange-ftp.el (ange-ftp-insert-directory): Insert "  " for
1661         dired's alignment sanity.  (Bug#5516)
1663 2010-02-14  Juri Linkov  <juri@jurta.org>
1665         * man.el (Man-fontify-manpage, Man-cleanup-manpage):
1666         Remove remaining ^H with their preceding chars.  (Bug#5566)
1668 2010-02-13  Glenn Morris  <rgm@gnu.org>
1670         * simple.el (transpose-subr): Give it a doc-string.
1672         * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
1673         Doc fixes.
1675 2010-02-12  Juri Linkov  <juri@jurta.org>
1677         * arc-mode.el (archive-unique-fname): Make directories for nested
1678         archives.  (Bug#5540)
1680 2010-02-12  Juri Linkov  <juri@jurta.org>
1682         * ffap.el (dired-at-point): Fix docstring.  (Bug#5565)
1684 2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1686         * subr.el (copy-overlay): Handle deleted overlays.
1688         * man.el (Man-completion-table): Don't signal an error if we can't run
1689         manual-program (bug#4056).
1691 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
1693         * textmodes/artist.el (artist-mt): Fix typos in docstring.
1695 2010-02-10  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1697         * info.el (Info-bookmark-jump): Simplify.
1699         * bookmark.el (bookmark-handle-bookmark): Catch the right error.
1700         (bookmark-default-handler): Accept new bookmark field `buffer'.
1702 2010-02-10  Chong Yidong  <cyd@stupidchicken.com>
1704         * iswitchb.el (iswitchb-completions): Revert last change.
1706 2010-02-10  Michael Albinus  <michael.albinus@gmx.de>
1708         * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
1709         FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
1710         This prevents file names like "~/" being listed literally.
1712 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
1714         * term/xterm.el (xterm-maybe-set-dark-background-mode):
1715         Remove dead code.  (Bug#5546)
1717 2010-02-09  Chong Yidong  <cyd@stupidchicken.com>
1719         * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
1720         correctly (Bug#5548).
1722 2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
1724         * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
1725         (ada-adjust-case): Don't adjust case in hexadecimal number literals.
1727 2010-02-08  Kenichi Handa  <handa@m17n.org>
1729         * international/mule-util.el (with-coding-priority): Add autoload
1730         cookie for putting `lisp-indent-function'.
1732 2010-02-07  Glenn Morris  <rgm@gnu.org>
1734         * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
1735         Move F2003 named interfaces from keywords-2 to keywords-1, and
1736         use function-name-face rather than constant-face.
1737         Simplify "abstract interface" regexp.
1739 2010-02-07  Chong Yidong  <cyd@stupidchicken.com>
1741         * eshell/esh-util.el (eshell-file-attributes): New optional arg
1742         ID-FORMAT.  Pass it to `file-attributes'.
1744         * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
1746 2010-02-07  sj  <prime.wizard+emacs@gmail.com>  (tiny change)
1748         * faces.el (set-face-attribute): Allow calling
1749         internal-set-lisp-face-attribute with 'unspecified family and
1750         foundry argument (Bug#5536).
1752 2010-02-07  Glenn Morris  <rgm@gnu.org>
1754         * progmodes/f90.el (f90-font-lock-keywords-2)
1755         (f90-looking-at-type-like, f90-looking-at-program-block-end):
1756         Handle F2003 named interfaces.
1758 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
1760         * progmodes/cc-mode.el (c-common-init): Bind temporary variables
1761         beg and end before calling c-get-state-before-change-functions.
1763 2010-02-06  Dan Nicolaescu  <dann@ics.uci.edu>
1765         * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
1767 2010-02-05  Juri Linkov  <juri@jurta.org>
1769         * doc-view.el (doc-view-mode):
1770         * image-mode.el (image-mode): Put property mode-class=special.
1771         (Bug#4896)
1773 2010-02-05  Mark A. Hershberger  <mah@everybody.org>
1775         * vc-svn.el (vc-svn-revision-table): New function.
1777 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
1779         * net/ange-ftp.el (ange-ftp-insert-directory):
1780         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
1781         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
1782         Handle also directories.  (Bug#5478)
1784 2010-02-05  Glenn Morris  <rgm@gnu.org>
1786         * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
1788 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
1790         * startup.el (command-line-1): Convert options beginning with a
1791         single dash as well (Bug#5519).
1793 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1795         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
1796         * minibuffer.el (completion-initials-expand): Only check the presence
1797         of delims *within* the boundaries, since otherwise the / delim is
1798         always found for files.
1800         Fix up various corner case problems.
1801         * doc-view.el (doc-view-last-page-number): New function.
1802         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
1803         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
1804         (doc-view-kill-proc): Avoid inf-loop in freak cases.
1805         (doc-view-reconvert-doc): Use the new recursive delete-directory.
1806         (doc-view-convert-current-doc): Don't create the resolution.el file
1807         here any more.
1808         (doc-view-pdf/ps->png): Do it here instead.
1809         (doc-view-already-converted-p): Check that resolution.el is present.
1810         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
1811         windows that are not yet showing images.
1813 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
1815         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
1816         `dired-uncache' for every elemnt which is an absolute file name.
1818         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
1819         directory, handle its directory component.
1820         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
1821         function is called permanently and creates noise, otherwise.
1823         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
1824         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
1825         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
1827 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
1829         * macros.el (apply-macro-to-region-lines):
1830         Minor simplification.  (Bug#5485)
1832 2010-02-04  Glenn Morris  <rgm@gnu.org>
1834         * mail/rmail.el (rmail-show-message-1): Handle malformed
1835         quoted-printable text.  (Bug#5441)
1837         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
1839         * simple.el (visual-line-mode): Capitalize lighter.
1841 2010-02-03  John Wiegley  <jwiegley@gmail.com>
1843         * iswitchb.el (iswitchb-completions): Add bookmark files to the
1844         list of files considered for "virtual buffer" completions.
1846 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
1848         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
1849         also in case of (and (not full) (not wildcard)). This is needed,
1850         when dired is called with a list of files, which are not in
1851         `default-directory'.  (Bug#5478)
1853 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1855         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
1857 2010-02-02  Juri Linkov  <juri@jurta.org>
1859         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
1860         from unidiff to allow function-line after @@.
1862 2010-02-02  Juri Linkov  <juri@jurta.org>
1864         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
1865         '(RCS SCCS) with inverted condition.
1867 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
1869         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
1870         messages.
1872 2010-02-01  Juri Linkov  <juri@jurta.org>
1874         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
1875         compare with "pkunzip" and "pkzip" instead of only "pkzip".
1876         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
1877         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
1879 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1881         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
1882         (doc-view-revert-buffer): New command.
1883         (doc-view-mode-map): Use it.
1885 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
1887         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
1888         pending merge is detected.
1890 2010-01-31  Juri Linkov  <juri@jurta.org>
1892         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
1893         beginning of interactive spec like all other grep commands do.
1894         Put "all" in front of "gz".  (Bug#5260)
1896 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
1898         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
1900 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
1902         * dirtrack.el (dirtrack): Warn instead of signalling error if the
1903         regexp is incorrect (Bug#5476).
1905 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
1907         * net/tramp.el (tramp-handle-insert-directory): Handle also
1908         symlinks, when FILENAME is not in `default-directory'.
1910 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
1912         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
1913         FILE is not in `default-directory'.  (Bug#5478)
1915         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
1916         of SWITCHES.  Handle the case, FILENAME is not in
1917         `default-directory'.  (Bug#5478)
1918         (tramp-register-file-name-handlers): Add safe-magic property.
1920 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
1922         * arc-mode.el (archive-zip-extract): Quote the argument passed to
1923         unzip (Bug#5475).
1925 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
1927         * progmodes/flymake.el (flymake-allowed-file-name-masks)
1928         (flymake-master-make-header-init): Add other C++ filename masks.
1929         (flymake-find-possible-master-files)
1930         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
1932 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
1934         Fix some busybox annoyances.
1936         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
1937         not responding." string.
1938         (tramp-open-connection-setup-interactive-shell): Dump stty
1939         settings.  Enable "neveropen" arg for all `tramp-send-command'
1940         calls.  Handle "=" in variable values properly.
1941         (tramp-find-inline-encoding): Raise an error, when no encoding is
1942         found.
1943         (tramp-wait-for-output): Check, whether PROC buffer is available.
1944         Remove spurious " ^H" sequences, sent by busybox.
1945         (tramp-get-ls-command): Suppress coloring, if possible.
1947 2010-01-28  Glenn Morris  <rgm@gnu.org>
1949         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
1951         * log-edit.el (log-edit-strip-single-file-name): Add missing
1952         :safe, :group, and :version tags.
1954 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
1956         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
1957         buffers.  (Bug#5477)
1959 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
1961         * files.el (delete-directory): Handle moving to trash without
1962         first doing recursion (Bug#5436).
1964 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
1966         * vc-hooks.el (vc-path): Mark as obsolete.
1968 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
1970         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
1971         names too.
1973         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
1974         for the short log.
1975         (vc-bzr-log-view-mode): Adjust regexp for the above change.
1977 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
1979         * progmodes/python.el: Replace reference to obsolete c-subword-mode.
1981         * vc-bzr.el (vc-bzr-revision-table): New function.
1983 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
1985         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
1986         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
1988 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
1990         Remove support for adding --signoff on commit.
1991         Future support will use an incompatible generic mechanism.
1992         * vc-git.el (vc-git-add-signoff): Remove variable.
1993         (vc-git-toggle-signoff): Remove function.
1994         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
1996         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
1997         from xterm-set-background-mode.  Return t if the background mode
1998         was set.
1999         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
2000         earlier, call it again in case the background mode has changed.
2002 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
2004         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
2005         (Bug#3541).
2007 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
2009         * emacs-lisp/assoc.el (aelement): Doc fix.
2010         (aput, adelete, amake): Use lexical-let (Bug#5450).
2012 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
2014         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
2015         is the same as subprogram call, not declaration.  (Bug#5435).
2017 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
2019         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
2020         (tramp-smb-maybe-open-connection): Use it.
2022 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
2024         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
2026 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2028         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
2029         just because we see "encoding: 8bit".
2030         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
2032 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
2034         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
2036 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
2038         * jka-compr.el (jka-compr-load): If load-file is not in
2039         load-history, try its file-truename version.  (bug#5447)
2041 2010-01-21  Alan Mackenzie  <acm@muc.de>
2043         Fix a situation where deletion of a cpp construct throws an error.
2044         * progmodes/cc-engine.el (c-invalidate-state-cache): Before
2045         invoking c-with-all-but-one-cpps-commented-out, check that the
2046         special cpp construct is still in the buffer.
2047         (c-parse-state): Record the special cpp with markers, not numbers.
2049 2010-01-21  Kenichi Handa  <handa@m17n.org>
2051         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
2052         process last-command-event, as it is now decoded first (Bug#5380).
2054 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
2056         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
2058 2010-01-20  Glenn Morris  <rgm@gnu.org>
2060         * indent.el (tab-always-indent): Fix custom-type.
2062 2010-01-19  Alan Mackenzie  <acm@muc.de>
2064         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
2065         buffer throws "args out of range".
2066         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
2067         playing the role of delimiter.
2069 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
2071         * progmodes/ada-mode.el: Fix bug#5400.
2072         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
2073         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
2074         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
2075         Improve comments in "is" portion.  Handle null procedure declaration.
2076         (ada-move-to-end): Improve doc string.
2078 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
2080         * ido.el (ido-cur-list): Initialize to nil.
2081         Remove obsolete information from commentary.
2082         (ido-choice-list): Initialize to nil.
2083         (ido-get-bufname): Reject minibuffers.
2084         (ido-make-buffer-list): If "default" is a nonexistent
2085         buffer, ignore it, as per the function's comment.
2086         (ido-kill-buffer-internal): New function.
2087         (ido-kill-buffer-at-head): Use it.
2088         (ido-visit-buffer): Likewise.
2090 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
2092         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
2094 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
2096         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
2097         Fix typos in chart titles.
2099         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
2100         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
2101         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
2102         (describe-class, eieio-describe-generic, describe-generic):
2103         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
2104         (eieio-speedbar-expand):
2105         * emulation/viper-cmd.el (viper-exec-form-in-vi)
2106         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
2107         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
2108         (viper-del-backward-char-in-replace, viper-backward-indent)
2109         (viper-brac-function, viper-register-to-point, viper-submit-report):
2110         * net/tramp.el (tramp-remote-coding-commands):
2111         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
2112         Fix typos in docstrings.
2114 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
2116         * mail/sendmail.el (mail-yank-original): Set the mark if the
2117         specified function for yanking does not do it.
2119 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
2121         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
2123         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
2124         resyncing a directory.
2126 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
2128         * progmodes/ada-mode.el: Fix bug#1920.
2129         (ada-ident-re): Delete ., allow multibyte characters.
2130         (ada-goto-label-re): New; matches goto labels.
2131         (ada-block-label-re): New; matches block labels.
2132         (ada-label-re): New; matches both.
2133         (ada-named-block-re): Deleted; callers changed to use
2134         `ada-block-label-re' instead.
2135         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
2136         Use `ada-block-label-re'.
2137         (ada-indent-on-previous-lines): Improve handling of goto labels.
2138         (ada-get-indent-block-start): Special-case block label.
2139         (ada-get-indent-label): Split into `ada-indent-block-label' and
2140         `ada-indent-goto-label'.
2141         (ada-goto-stmt-start, ada-goto-next-non-ws):
2142         Optionally ignore goto labels.
2143         (ada-goto-next-word): Simplify.
2144         (ada-indent-newline-indent-conditional): Insert newline before
2145         trying to fix indentation; doc fix.
2147 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
2149         * calc/calc.el (calc-command-flags): Give it an initial value.
2151 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
2153         * files.el (minibuffer-with-setup-hook):
2154         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
2155         (artist-key-draw-continously, artist-key-do-continously-continously)
2156         (artist-key-set-point-continously, artist-mouse-draw-continously):
2157         Fix typos in docstrings.
2159 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
2161         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
2162         return t (Bug#3898).
2164 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
2166         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
2167         can parse the output of the external commands (Bug#5279).
2169 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
2171         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
2173 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
2175         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
2177         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
2179         * startup.el (command-line): Remove unused --icon-type arg.
2180         Handle --display arg, passing it to command-line-1 (Bug#5392).
2182 2010-01-16  Mario Lang  <mlang@delysid.org>
2184         * emacs-lisp/chart.el (chart-translate-namezone):
2185         * textmodes/artist.el (artist-compute-popup-menu-table):
2186         Remove duplicated words in doc-strings.
2188 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
2190         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
2191         to mairix-search to suppress threading (Bug#5342).
2193 2010-01-15  Kenichi Handa  <handa@m17n.org>
2195         * international/mule-cmds.el (canonicalize-coding-system-name):
2196         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
2198 2010-01-15  Glenn Morris  <rgm@gnu.org>
2200         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
2202         * wid-edit.el (widget-keymap): Doc fix.
2204         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
2205         former seems to be more widely accepted by various svn versions.
2207 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
2209         * find-cmd.el (find-constituents):
2210         * vc-arch.el (vc-arch-root):
2211         * window.el (window-body-height, pop-up-frames):
2212         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
2213         * progmodes/ada-stmt.el (ada-if):
2214         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
2215         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
2216         (ispell-encoding8-command, ispell-aspell-supports-utf8)
2217         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
2219         * progmodes/flymake.el (flymake-post-syntax-check):
2220         Fix typo in error message.
2222 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
2224         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
2225         which is always a string.  (Bug#5313)
2227 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
2229         * progmodes/ada-xref.el (ada-default-prj-properties):
2230         Simplify previous change.
2232 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2234         * progmodes/ada-xref.el (ada-default-prj-properties):
2235         Default ada_project_path to $ADA_PROJECT_PATH.
2237 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2239         * progmodes/ada-mode.el (ada-create-keymap):
2240         Override `narrow-to-defun' with `ada-narrow-to-defun'.
2242 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2244         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
2245         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
2246         (ada-get-current-indent, ada-imenu-generic-expression)
2247         (ada-which-function): Check for it.
2249 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2251         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
2252         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
2254 2010-01-14  Glenn Morris  <rgm@gnu.org>
2256         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
2258 2010-01-14  Kenichi Handa  <handa@m17n.org>
2260         * composite.el (auto-composition-mode): Make it a buffer local
2261         variable (permanent-local).
2262         (auto-composition-function): Set the default value to
2263         auto-compose-chars.
2264         (auto-composition-mode): Make it a simple function, not a minor mode.
2265         (global-auto-composition-mode): Likewise.
2266         (turn-on-auto-composition-if-enabled): Delete it.
2268 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
2270         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
2272 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
2274         * files.el (copy-directory): Compute target for recursive
2275         directories with identical names.  (Bug#5343)
2277 2010-01-12  Glenn Morris  <rgm@gnu.org>
2279         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
2280         it to bug-gnu-emacs rather than emacs-pretest-bug.
2282 2010-01-11  Sam Steingold  <sds@gnu.org>
2284         * imenu.el (imenu-default-create-index-function): Detect infinite
2285         loops caused by imenu-prev-index-position-function.
2287 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
2289         * htmlfontify.el (htmlfontify-load-rgb-file)
2290         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
2291         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
2292         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
2293         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
2294         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
2295         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
2296         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
2297         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
2298         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
2299         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
2300         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
2301         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
2302         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
2303         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
2304         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
2305         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
2306         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
2307         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
2308         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
2309         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
2310         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
2311         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
2312         backslash-quoting from parentheses, etc.
2314 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
2316         * progmodes/js.el: Autoload javascript-mode alias.
2318 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
2320         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
2321         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
2322         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
2323         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
2324         Fix typos in docstrings.
2325         (ffap-url-regexp): Doc fix.
2326         (ffap-at-mouse): Fix typo in message.
2328 2010-01-11  Glenn Morris  <rgm@gnu.org>
2330         * version.el (emacs-copyright): Set copyright year to 2010.
2332 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2334         * format.el (format-annotate-function): Only set
2335         write-region-post-annotation-function after running to-fn so as not to
2336         affect nested write-region calls (bug#5273).
2338 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
2340         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
2341         wisent/python.el.
2343 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
2345         * man.el (Man-goto-section): Signal error if the section is not
2346         found (Bug#5317).
2348 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
2350         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
2351         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
2353 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
2355         * progmodes/compile.el: Don't treat compile-command as safe if
2356         compilation-read-command might be nil (Bug#4218).
2358 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
2360         * startup.el (command-line-1): Use orig-argi to check for ignored X and
2361         NS options.
2363 2010-01-08  Kenichi Handa  <handa@m17n.org>
2365         * international/fontset.el (build-default-fontset-data):
2366         Exclude characters in scripts kana, hangul, han, or cjk-misc.
2368 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
2370         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
2371         to `create-file-buffer' as it expects, not just a buffer name.
2372         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
2373         to help uniquify.  (Bug#3224)
2375 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
2377         * font-setting.el (font-setting-change-default-font): Use user-spec
2378         instead of name.
2380 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
2382         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
2384 2010-01-05  Tom Tromey  <tromey@redhat.com>
2386         * progmodes/python.el (python-font-lock-keywords):
2387         Handle qualified decorators (Bug#881).
2389 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2391         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
2392         in a lightweight checkout.
2394 2010-01-05  Kenichi Handa  <handa@m17n.org>
2396         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
2398 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2400         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
2402 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
2404         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
2405         checkouts.  (Bug#618)
2406         (vc-bzr-log-view-mode): Also highlight the author.
2407         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
2408         (vc-bzr-shelve-menu-map):
2409         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
2410         (vc-bzr-shelve-apply): Make prompt more explicit.
2412 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
2414         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
2415         They are valid characters in URL paths (rfc3986), and at least
2416         Firefox does not understand the encoded version (Bug#3166).
2418 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
2420         * progmodes/octave-mod.el (octave-end-keywords)
2421         (octave-block-begin-or-end-regexp, octave-block-match-alist):
2422         Add "end" keyword (Bug#3061).
2423         (octave-end-as-array-index-p): New function.
2424         (calculate-octave-indent): Use it.
2426 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2428         * bookmark.el: Consistently put the text property on the bookmark name.
2429         (bookmark-bmenu-marks-width): Bump back to 2, to include
2430         annotation marks.
2431         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
2432         property on the bookmark name, instead of not putting it at all.
2433         (bookmark-bmenu-list): Fix where we put the text property.
2435 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2437         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
2438         for showing buffer modified state (as added in the previous change).
2440 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2442         * bookmark.el: Show modified state of bookmark buffer more accurately.
2443         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
2444         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
2445         (with-buffer-modified-unmodified): New macro.
2446         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
2447         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
2448         Use new macro to preserve the buffer modified state.
2450 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2452         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
2453         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
2454         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
2455         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
2456         (bookmark-bmenu-rename, bookmark-bmenu-locate)
2457         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
2458         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
2460 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
2462         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
2463         Make the lines in the generated doc string shorter.  (Bug#4668)
2465 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
2467         * net/rcirc.el: Add follow-link binding (Bug#4738).
2469 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
2471         * Makefile.in (bzr-update): Rename from cvs-update.
2472         (cvs-update): New target for backward compatibility.
2474         * makefile.w32-in (bzr-update): Rename from cvs-update.
2475         (cvs-update): New target for backward compatibility.
2477 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2479         * bookmark.el: Remove gratuitous gratitude.
2481 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2483         * bookmark.el (bookmark-bmenu-any-marks): New function
2484         (bookmark-bmenu-save): Clear buffer modification if no marks.
2486 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2488         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
2489         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
2490         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
2491         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
2493         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
2494         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
2495         To: emacs-devel {_AT_} gnu.org
2496         Subject: bookmark.el bug report
2497         Date: Mon, 28 Dec 2009 14:19:16 +0800
2498         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
2500 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2502         * bookmark.el: Improvements suggested by Drew Adams:
2503         (bookmark-bmenu-ensure-position): New name for
2504         `bookmark-bmenu-check-position'.  Just ensure the position,
2505         don't return any meaningful value.
2506         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
2507         New constants.
2509 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
2511         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
2512         (bookmark-yank-point, bookmark-bmenu-check-position):
2513         Fix typos in docstrings.
2514         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
2515         (bookmark-name-from-full-record, bookmark-get-position)
2516         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
2517         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
2518         Remove useless quoting of parenthesis, etc. in docstrings.
2520         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
2521         (ediff-append-custom-diff): Fix typo in error message.
2522         (ediff-meta-mark-equal-files): Fix typos in messages.
2524         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
2526         * net/imap-hash.el (imap-hash-make): Doc fix.
2527         (imap-hash-test): Fix typo in error message; reflow docstring.
2528         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
2529         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
2530         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
2531         Fix typos in docstrings.
2532         (imap-hash-open-connection): Fix typo in error message.
2534         * play/gomoku.el (gomoku): Fix typos in docstring.
2536         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
2537         (gdb-jsonify-buffer): Fix typos in docstring.
2538         (gdb-goto-breakpoint): Fix typo in error message.
2539         ("Display Other Windows"): Fix typo in help message.
2540         (gdb-speedbar-expand-node): Fix typo in question.
2542         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
2543         (idlwave-html-system-help-location, idlwave-html-help-location)
2544         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
2545         (idlwave-help-browser-generic-args, idlwave-help-directory)
2546         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
2547         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
2548         (idlwave-online-help, idlwave-help-html-link)
2549         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
2550         Fix typos in docstrings.
2551         (idlwave-help-with-source, idlwave-help-find-routine-definition):
2552         Reflow docstrings.
2553         (idlwave-help-assistant-start): Fix typo in error message.
2555         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
2556         (octave-electric-space): Fix typos in docstrings.
2558 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
2560         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
2562 2010-01-01  Juri Linkov  <juri@jurta.org>
2564         * comint.el (comint-input-ring-size): Make it a defcustom and
2565         increase the default to 500 (Bug#5148).
2567 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
2569         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
2570         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
2571         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
2573 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
2575         Show working revision correctly for mercurial.
2576         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
2577         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
2579 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
2581         Declare some functions for the byte-compiler.
2582         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
2583         (speedbar-timer-fn, speedbar-change-expand-button-char)
2584         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
2586 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
2588         This changeset reverts GDB Graphical Interface to use annotations.
2589         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
2591 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
2593         Make vc-dir work on subdirectories of the bzr root.
2594         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
2595         file names relative to it.
2596         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
2597         relative directory to vc-bzr-after-dir-status.
2599 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
2601         * font-lock.el (font-lock-refresh-defaults): New function, which
2602         can be used to let font-lock react to external changes in
2603         variables like font-lock-defaults and keywords.
2604         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
2606 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
2608         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
2610         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
2612 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
2614         Supersede color.diff settings in git log (bug#5211).
2616         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
2617         escape chars in its output when the user has color.diff set to `always'.
2618         This fix works on git 1.4.2 and newer (released on 2006-08-13).
2620 2009-12-26  Kevin Ryde  <user42@zip.com.au>
2622         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
2623         node.  Keep previous "Index" name to work with past coreutils too.
2625         * man.el (man): Revise docstring a bit to show -a and -l as
2626         examples.  Add -k description since support for it has otherwise
2627         been a secret.  (Further to bug#3717.)
2628         (Man-bgproc-sentinel): When "-k foo" produces no output show error
2629         "no matches" rather than "Can't find manpage", as the latter reads
2630         like -k was interpreted as a page name, which is not so.  (Bug#5431)
2632 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
2634         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
2635         switches.  Check also for //SUBDIRED// line.
2637 2009-12-25  Kenichi Handa  <handa@m17n.org>
2639         * language/indian.el (devanagari-composable-pattern): Fixed to
2640         handle ZWNJ and ZWJ.  Use it in composition-function-table for
2641         Devanagari.
2642         (malayalam-composable-pattern): Fix previous change.
2644 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2646         * ps-print.el (ps-face-attributes): It was not returning the
2647         attribute face for faces specified as string.  Reported by harven
2648         <harven@free.fr>.  (Bug#5254)
2649         (ps-print-version): New version 7.3.5.
2651 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
2653         * calendar/icalendar.el (icalendar--convert-tz-offset): Fixed
2654         timezone names.
2655         (icalendar--convert-tz-offset): Fixed the "last-day-problem".
2656         (icalendar--add-diary-entry): Remove the trailing blank that
2657         diary-make-entry inserts.
2659 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
2661         Make `file-expand-wildcards' work for remote files.
2663         * files.el (file-expand-wildcards): In case of remote files, check
2664         only local file name part for wildcards.  Provide feature 'files
2665         and subfeature 'remote-wildcards.  (Bug#5198)
2667         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
2668         if there is already an established connection.
2669         (tramp-advice-file-expand-wildcards): Remove it.
2671         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
2672         (tramp-advice-file-expand-wildcards): Moved from tramp.el.
2673         Activate advice for older GNU Emacs versions.  (Bug#5237)
2675 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
2677         Some doc fixes (more needed).
2679         * find-cmd.el (find-constituents): Reflow docstring.
2680         (find-cmd, find-prune, find-command): Fix typos in docstrings.
2681         (find-generic): Doc fix.
2683 2009-12-17  Juri Linkov  <juri@jurta.org>
2685         Fix regression from 23.1 to allow multiple modes in Local Variables.
2687         * files.el (hack-local-variables-filter): While ignoring duplicates,
2688         don't take `mode' into account.
2689         (hack-local-variables-filter, hack-dir-local-variables): Don't
2690         remove duplicate `mode' from local-variables-alist (like `eval').
2692 2009-12-17  Juri Linkov  <juri@jurta.org>
2694         Make `dired-diff' more safe.  (Bug#5225)
2696         * dired-aux.el (dired-diff): Signal an error when `file' equals to
2697         `current' or when `file' is a directory of the `current' file.
2699 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
2701         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
2702         unconditionally preloaded files.
2704 2009-12-16  Juri Linkov  <juri@jurta.org>
2706         Revert to old 23.1 logic of using the file at the mark as default.
2707         * dired-aux.el (dired-diff): Use the file at the mark as default
2708         if it's not the same as the current file, and the target dir is
2709         the current dir or the mark is active.  Add the current file
2710         as the arg of `dired-dwim-target-defaults'.  Use the default file
2711         in the prompt.  (Bug#5225)
2713 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
2715         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
2716         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
2717         (tramp-check-for-regexp): Check also, when an echoing shell stops
2718         to echo sent commands.
2720 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
2722         * Makefile.in: Revert last change (Bug#5191).
2724 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
2726         * vc-hg.el (vc-hg-print-log): Fix argument order.
2727         (vc-hg-working-revision): Make sure the command is executed in a
2728         known environment so that we can parse the output.  (Bug#4417)
2730 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
2732         * progmodes/python.el (python-symbol-completions): Remove text
2733         properties from symbol string before calling python-send-receive.
2735 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
2737         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
2738         when there are values for both file and line.  (Bug#5060)
2740 2009-12-14  Juri Linkov  <juri@jurta.org>
2742         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
2743         whitespace after the file name of the first line of unified format,
2744         because git-diff doesn't output whitespace and file modification time
2745         after the file name.
2747 2009-12-14  David Kastrup  <dak@gnu.org>
2749         * info.el (Info-hide-cookies-node): Before hiding a cookie,
2750         check if it already has the `display' property added by
2751         `Info-display-images-node', and not put the `invisible' property
2752         in this case.
2754 2009-12-13  Glenn Morris  <rgm@gnu.org>
2756         * mail/emacsbug.el (message-sort-headers): Define for compiler.
2757         (report-emacs-bug): In message-mode, sort manually before storing
2758         original report text.  (Bug#5178)
2759         Remove superfluous save-excursion.
2761 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
2763         * net/dbus.el (dbus-property-handler): Filter lambda forms out
2764         when responding to "GetAll" properties.
2766 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
2768         * simple.el (compose-mail): Remove mail-setup-with-from from
2769         customization checks.
2771 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
2773         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
2774         RAR archives created on Unix systems.
2776 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2778         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
2779         the varalias that was accidentally removed by the 2009-11-19 change
2780         (bug#5186).
2782 2009-12-12  Kenichi Handa  <handa@m17n.org>
2784         * language/indian.el (indian-compose-regexp): New function.
2785         (malayalam-composable-pattern): Fix the pattern.
2786         (composition-function-table): Set malayalam-composable-pattern for
2787         Malayalam characters.
2789 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
2791         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
2792         rather than down-mouse-1, based on follow-link conventions.
2794         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
2795         are compiled.
2797 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
2799         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
2800         (verilog-vmm-statement-re, verilog-ovm-statement-re)
2801         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
2802         (verilog-leap-to-head, verilog-backward-token):
2803         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
2805 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
2807         * progmodes/verilog-mode.el (verilog-auto-lineup)
2808         (verilog-nameable-item-re): Cleanup user-visible spelling and
2809         documentation errors.  One reported by Gary Delp.
2810         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
2811         (verilog-read-decls): Fix AUTOWIRE with types declared in a
2812         package, bug195.  Reported by Pierre-David Pfister.
2814 2009-12-11  Glenn Morris  <rgm@gnu.org>
2816         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
2818         * mail/emacsbug.el: No longer require sendmail.
2819         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
2820         (report-emacs-bug-orig-text): Doc fix.
2821         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
2822         New local variables, to adapt to different mail-user-agents.
2823         (report-emacs-bug): Fix test for a gnu.org address.
2824         Use overlays for emphasis, since font-lock defeats 'face property.
2825         Pretest bugs also end up at the newsgroup these days.
2826         Stop message-mode stripping text properties.
2827         Set and use the new buffer-local variables.
2828         (report-emacs-bug-hook): Add doc-string.
2829         Remove some unnecessary save-excursions and simplify.
2830         Use the appropriate hook and send-command.
2832         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
2833         capitalization of some menu entries.
2835 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2837         * whitespace.el (whitespace-display-char-on): Ensure
2838         `buffer-display-table' is unique when two or more windows are
2839         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
2840         New version 12.1.
2842 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
2844         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
2845         characters in the Attribute field.
2847 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
2849         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
2851 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2853         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
2854         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
2855         Disregard autoload-excludes.
2856         (update-directory-autoloads): Obey autoload-excludes here instead.
2857         But don't store its contents in no-autoloads and remove entries that
2858         refer to excludes files.
2860 2009-12-10  Glenn Morris  <rgm@gnu.org>
2862         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
2863         (expand-mail-aliases): Define for compiler.
2865         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
2866         Define for compiler.
2868         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
2869         appropriate for the mail-user-agent in use.
2871 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
2873         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
2875 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
2877         Fix short log parsing and fontification.
2878         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
2879         Fix fontification for the [merge] label.
2881 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
2883         Drop some properties to avoid surprises.
2884         * htmlfontify.el (hfy-ignored-properties): New defcustom.
2885         (hfy-fontify-buffer): Use it.
2887 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2889         Minor cleanup.
2890         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
2891         Adjust all callers.
2892         (ffap-locate-file): Remove unused arg `dir-ok' and make other
2893         args compulsory.  Adjust callers.
2894         (ffap-gopher-at-point): Remove unused var `name'.
2896         Get rid of the ELCFILES abomination.
2897         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
2898         (compile-elcfiles): New phony target.
2899         (compile-main): Compute ELCFILES dynamically.
2900         (compile-clean): New target to remove left-over elc files.
2901         (compile, all): Use it.
2903 2009-12-09  Kenichi Handa  <handa@etlken>
2905         * international/mule-diag.el: Require help-mode instead of help-fns.
2907 2009-12-09  Kenichi Handa  <handa@m17n.org>
2909         * international/mule-cmds.el (ucs-names): Supply sufficiently
2910         fine ranges instead of pre-calculating accurate ranges.
2911         Iterate with bigger gc-cons-threshold.
2913 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
2915         Add support for stashing a snapshot of the current tree.
2916         * vc-git.el (vc-git-stash-snapshot): New function.
2917         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
2919 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
2921         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
2922         instead of `(beginning|end)-of-line'.
2924 2009-12-08  Glenn Morris  <rgm@gnu.org>
2926         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
2928         * Makefile.in (ELCFILES): Regenerate.
2930 2009-12-07  Juri Linkov  <juri@jurta.org>
2932         Don't lazy-highlight the comint output in history Isearch mode.
2934         * comint.el (comint-history-isearch-search): Instead of
2935         `comint-line-beginning-position', use `comint-after-pmark-p'
2936         to check if point if before the process mark, and go to
2937         `process-mark' in this case.
2939 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2941         * textmodes/tex-mode.el (latex-complete)
2942         (latex-indent-or-complete): Remove.
2943         (latex-mode): Set completion-at-point-functions instead.
2945         Provide a standard completion command and hook it into TAB.
2946         * minibuffer.el (completion-at-point-functions): New var.
2947         (completion-at-point): New command.
2948         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
2949         * progmodes/python.el (python-mode-map): Use completion-at-point.
2950         (python-completion-at-point): Rename from python-partial-symbol and
2951         adjust for use in completion-at-point-functions.
2952         (python-mode): Setup completion-at-point for Python completion.
2953         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
2954         extracted from lisp-complete-symbol.
2955         (lisp-complete-symbol): Use it.
2956         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
2957         setup completion-at-point for Elisp completion.
2958         (emacs-lisp-mode-map, lisp-interaction-mode-map):
2959         Use completion-at-point.
2960         * ielm.el (ielm-map): Use completion-at-point.
2961         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
2962         * progmodes/sym-comp.el: Move to...
2963         * obsolete/sym-comp.el: Move from progmodes.
2965 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
2967         Prevent save-buffer in Rmail buffers from using the coding-system
2968         of the current message, and from clobbering the encoding mnemonics
2969         in the mode line (Bug#4623).
2971         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
2972         flag, too.
2973         (rmail-message-encoding): New variable.
2974         (rmail-write-region-annotate): Record the encoding of the current
2975         message in rmail-message-encoding.
2976         (rmail-after-save-hook): New function, restores the encoding of
2977         the current message after the message collection is saved.
2979 2009-12-07  Juri Linkov  <juri@jurta.org>
2981         * progmodes/grep.el (grep-read-files): Use `completing-read'
2982         instead of `read-string'.  Set its `collection' arg to
2983         `read-file-name-internal'.  (Bug#4301)
2985 2009-12-07  Juri Linkov  <juri@jurta.org>
2987         Correctly restore original Isearch point.  (Bug#4994)
2989         * isearch.el (isearch-mode): Move `isearch-push-state' after
2990         `(run-hooks 'isearch-mode-hook)'.
2991         (isearch-cancel): When `isearch-push-state-function' is defined,
2992         let-bind `isearch-cmds' to the first state (the last element of
2993         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
2994         function and restores the original point).  Otherwise, move point
2995         to `isearch-opoint'.
2997 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2999         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
3000         chars that don't have names, so the table can be built much faster at
3001         run-time.
3003 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
3005         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
3006         change.  Suggested by David Kastrup.
3008         * simple.el (compose-mail): Check for incompatibilities and warn.
3009         (compose-mail-user-agent-warnings): New option.
3011 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
3013         Support showing a single log entry from vc-annotate.
3014         * vc.el (print-log): Add a new argument: START-REVISION.
3015         (vc-print-log-internal): Add a new optional argument and
3016         pass it to the backend.
3017         (vc-print-log, vc-print-root-log): Adjust callers.
3018         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
3019         buffer already displays the requested log entry, use it.
3020         Otherwise display only the log entry in question.
3021         * vc-svn.el (vc-svn-print-log):
3022         * vc-mtn.el (vc-mtn-print-log):
3023         * vc-hg.el (vc-hg-state):
3024         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
3025         (vc-git-show-log-entry): Return t on success.
3026         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
3027         (vc-bzr-show-log-entry): Return t on success.
3028         * vc-rcs.el (vc-rcs-print-log):
3029         * vc-sccs.el (vc-sccs-print-log):
3030         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
3032 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
3034         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
3035         Add menus to the meta mode.  (Bug#5043)
3037 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
3039         * ediff-init.el (ediff-event-key): Use event-to-character instead of
3040         event-key.
3042         * ediff.el (ediff-buffers-internal): Add unwind-protect.
3044 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
3046         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
3047         Berbain <raphael.berbain@gmail.com>.
3049         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
3050         characters.
3051         (tramp-initial-end-of-output): New defconst.
3052         (tramp-methods, tramp-find-shell)
3053         (tramp-open-connection-setup-interactive-shell)
3054         (tramp-maybe-open-connection): Use it.
3055         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
3056         existence of `#' and `$'.
3058         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
3059         `tramp-initial-end-of-output'.
3061 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
3063         Get the background mode from the terminal for xterm, and set
3064         faces accordingly.
3065         * term/xterm.el (xterm-set-background-mode): New function.
3066         (terminal-init-xterm): Use it in case xterm supports background
3067         color queries.  Recompute faces after getting the background
3068         color.
3070 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
3072         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
3073         number comment back on its own line, for easier parsing.
3075 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3077         Make it work for non-file buffers (bug#5102).
3078         * doc-view.el (doc-view-current-cache-dir):
3079         Use doc-view-buffer-file-name rather than buffer-file-name.
3080         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
3082 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
3084         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
3085         author field is too short.
3087 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
3089         * vc-git.el (vc-git-print-log): Handle a limit argument.
3090         Display the short log in graph form and with labels.
3091         (vc-git-log-view-mode): Handle labels.
3093         Make vc-revert change VC state from 'added to 'unregistered.
3094         * vc-git.el (vc-git-revert): Call git reset first.
3096 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
3098         * net/newst-backend.el, net/newst-plainview.el:
3099         * net/newst-reader.el, net/newst-ticker.el:
3100         * net/newst-treeview.el, net/newsticker.el:
3101         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
3103 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
3105         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
3107         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
3108         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
3109         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
3110         Update annotation regexp.
3112         * simple.el (beginning-of-visual-line): Constrain to field
3113         boundaries (Bug#5106).
3115 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
3117         * xml.el (xml-substitute-numeric-entities): Move
3118         newsticker--decode-numeric-entities in newst-backend.el to
3119         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
3120         * net/newst-backend.el (newsticker--parse-generic-feed)
3121         (newsticker--parse-generic-items)
3122         (newsticker--decode-numeric-entities): Move
3123         newsticker--decode-numeric-entities in newst-backend.el to
3124         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
3126 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
3128         * progmodes/js.el (js--js-not): Add null to the list of values.
3130 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
3132         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
3134 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3136         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
3137         delimiter if it is at the end of the current line.
3138         (bibtex-generate-url-list): Fix docstring.
3140 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3142         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
3143         minibuffer's content with itself.
3144         Fold the confirm-after-completion case into the `confirm' case.
3145         (completion-pcm-word-delimiters): Add : and / to the delimiters.
3147 2009-12-06  Kevin Ryde  <user42@zip.com.au>
3149         * ffap.el (ffap-rfc-path): Make this a defcustom since
3150         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
3152         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
3153         manuals, similar to existing setup for help-mode.  (Bug#3913.)
3155 2009-12-05  Juri Linkov  <juri@jurta.org>
3157         Save and restore dired buffer's point positions too.  (Bug#4880)
3159         * dired.el (dired-save-positions): Return in the first element
3160         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
3161         Doc fix.
3162         (dired-restore-positions): First restore buffer's position.
3163         While restoring window's positions, check if window still displays
3164         the original buffer.
3166 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
3168         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
3169         if possible.
3171         * shell.el (shell): Require ansi-color (Bug#5113).
3173         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
3175         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
3177 2009-12-05  Alan Mackenzie  <acm@muc.de>
3179         * progmodes/cc-mode.el (c-before-hack-hook)
3180         (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
3181         `c-file-style' to work again.  This reversion restores the current
3182         software to its state in Emacs 23.1.  (Bug#4146)
3184 2009-12-05  Kevin Ryde  <user42@zip.com.au>
3186         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
3187         comment-start-skip to comment-end-skip as comment (Bug#4781).
3189 2009-12-05  Juri Linkov  <juri@jurta.org>
3191         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
3192         for virtual nodes.  (Bug#4147)
3193         (Info-find-node-2): Set `Info-current-node-virtual' to nil
3194         when moving from a virtual node.
3195         (Info-mode-menu): Add `Info-virtual-index' to the menu.
3196         (Info-mode): Add `Info-virtual-index' to the docstring.
3198 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3200         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
3201         track of the buffer position of the end of a BibTeX entry as this
3202         position may change during reformatting.
3203         (bibtex-format-entry): Remove whitespace before processing
3204         numerical fields so that we recognize the latter properly.
3205         (bibtex-reformat): Do not use push which changes the global value
3206         of bibtex-entry-format.
3207         (bibtex-field-braces-alist, bibtex-field-strings-alist)
3208         (bibtex-field-re-init): Replace only space characters by regexp
3209         for whitespace.
3210         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
3211         (bibtex-initialize): Also update bibtex-strings.
3212         (bibtex-kill-field): Preserve white space at end of entry.
3213         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
3214         Update bibtex-reference-keys.
3216 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3218         * minibuffer.el (completion-pcm--merge-try): Also consider placing
3219         point after a star, if that's the only place where modifications can
3220         make progress.
3222 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
3224         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
3225         in docstrings.
3227 2009-12-04  Juri Linkov  <juri@jurta.org>
3229         * proced.el (proced): Call `(proced-update t)' to update process
3230         information instead of only running proced-post-display-hook.
3231         (proced-send-signal): Add a leading space to the buffer name
3232         " *Marked Processes*" to make this buffer ephemeral.
3234 2009-12-04  Juri Linkov  <juri@jurta.org>
3236         * dired.el (dired-auto-revert-buffer): New defcustom.
3237         (dired-internal-noselect): Use it.
3239 2009-12-04  Juri Linkov  <juri@jurta.org>
3241         Change roles of modes and functions in image-mode.el (Bug#5062).
3243         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
3244         in `auto-mode-alist'.
3245         (image-mode-previous-major-mode): New variable.
3246         (image-minor-mode-map): Rename from `image-mode-text-map'.
3247         (image-mode): Move graceful error-handling code from
3248         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
3249         (image-minor-mode): Remove all image-handling code.
3250         Replace `image-mode-text-map' with `image-minor-mode-map'.
3251         Check for `image-type' in mode-line format string.
3252         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
3253         (image-mode-as-text): New function with most code from
3254         `image-mode-maybe'.
3255         (image-toggle-display-text): Move code that removes image
3256         properties from `image-toggle-display' to here.
3257         (image-toggle-display-image): New function with code that adds
3258         image properties copied from `image-toggle-display'.
3259         (image-toggle-display): Remove most code with leaving only code
3260         that toggles between `image-mode-as-text' and `image-mode'.
3262 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
3264         * net/newst-treeview.el
3265         (newsticker--treeview-list-highlight-start): Restored call to
3266         save-excursion: Selected item was stuck.
3267         (newsticker--treeview-list-select): New.
3268         (newsticker--treeview-item-show-text)
3269         (newsticker--treeview-item-show)
3270         (newsticker--treeview-item-update): Use new
3271         newsticker-treeview-item-mode.
3272         (newsticker-treeview-update): Keep current item.
3273         (newsticker-treeview-next-new-or-immortal-item): Doc change.
3274         (newsticker--treeview-first-feed): Doc change.
3275         (newsticker-treeview-list-menu)
3276         (newsticker-treeview-item-menu): Added menu entries.
3277         (newsticker-treeview-item-mode): New.
3279         * net/newst-backend.el (newsticker-customize): Delete other
3280         windows.
3282 2009-12-04  Sam Steingold  <sds@gnu.org>
3284         * log-view.el (log-view-mode-map): "q" calls quit-window,
3285         like in all the other non-self-insert buffers.
3287 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3289         Minor cleanup.
3290         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
3291         key decoding rather than do it manually via last-input-event +
3292         ascii-character.
3293         (term-exec): Use delete-and-extract-region.
3294         (term-handle-ansi-terminal-messages): Remove unused var `end'.
3295         (term-process-pager): Remove unused var `i'.
3296         (term-dynamic-simple-complete): Make obsolete.
3297         (serial-update-config-menu): Remove unused vars `y' and `str'.
3298         (term-update-mode-line): Remove unused var `temp'.
3300 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3302         Limit the number of log entries displayed by default.
3303         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
3304         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
3305         using a prefix argument.
3307 2009-12-03  Glenn Morris  <rgm@gnu.org>
3309         * progmodes/idlwave.el (class): Restore still useful declaration.
3311 2009-12-03  Alan Mackenzie  <acm@muc.de>
3313         Enhance `c-parse-state' to run efficiently in "brace deserts".
3315         * progmodes/cc-mode.el (c-basic-common-init):
3316         Call c-state-cache-init.
3317         (c-neutralize-syntax-in-and-mark-CPP): Rename from
3318         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
3319         placing `category' properties value 'c-cpp-delimiter at its boundaries.
3321         * progmodes/cc-langs.el (c-before-font-lock-function):
3322         c-extend-and-neutralize-syntax-in-CPP has been renamed
3323         c-neutralize-syntax-in-and-mark-CPP.
3325         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
3326         with `category' properties now, not `syntax-table' ones.
3328         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
3329         enhanced (but slower) version of c-end-of-macro that won't land
3330         inside a literal or on another awkward character.
3331         (c-state-cache-too-far, c-state-cache-start)
3332         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
3333         (c-state-nonlit-pos-cache-limit, c-state-point-min)
3334         (c-state-point-min-lit-type, c-state-point-min-lit-start)
3335         (c-state-min-scan-pos, c-state-brace-pair-desert)
3336         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
3337         buffer local variables.
3338         (c-state-literal-at, c-state-lit-beg)
3339         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
3340         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
3341         (c-state-cache-top-paren, c-state-cache-after-top-paren)
3342         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
3343         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
3344         (c-renarrow-state-cache)
3345         (c-append-lower-brace-pair-to-state-cache)
3346         (c-state-push-any-brace-pair, c-append-to-state-cache)
3347         (c-remove-stale-state-cache)
3348         (c-remove-stale-state-cache-backwards, c-state-cache-init)
3349         (c-invalidate-state-cache-1, c-parse-state-1)
3350         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
3351         (c-parse-state): Enhance and refactor.
3352         (c-debug-parse-state): Amend to deal with all the new variables.
3354         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
3355         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
3356         modify to use category text properties rather than syntax-table ones.
3357         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
3358         to switch off/on the syntactic paren property of C++ template
3359         delimiters using the category property.
3360         (c-with-<->-as-parens-suppressed): Macro to invoke code with
3361         template delims suppressed.
3362         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
3363         New constant/macros which apply category properties to the start
3364         and end of preprocessor constructs.
3365         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
3366         "comment out" the syntactic value of characters in preprocessor
3367         constructs.
3368         (c-with-cpps-commented-out)
3369         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
3370         with characters in all or all but one preprocessor constructs
3371         "commented out".
3373 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3375         * proced.el (proced-filter-alist): Use regexp-quote.
3377 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
3379         Cleanup.
3380         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
3381         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
3382         arguments.  Expand `default-directory'.
3384         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
3385         the benefit of returning an expanded localname.
3386         (tramp-tramp-file-p): Handle the case NAME is not a string.
3388 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3390         Add support for bzr shelve/unshelve.
3391         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
3392         (vc-bzr-extra-menu-map): New variables.
3393         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
3394         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
3395         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
3396         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
3397         (vc-bzr-dir-extra-headers): Display shelves.
3399         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
3401 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3403         * textmodes/bibtex.el (bibtex-complete-internal):
3404         Use completion-in-region.
3405         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
3407 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3409         Support applying stashes.  Improve UI.
3410         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
3411         (vc-git-stash-apply, vc-git-stash-pop)
3412         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
3413         (vc-git-stash-menu): New functions.
3414         (vc-git-stash-menu-map): New variable.
3415         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
3417 2009-12-03  Glenn Morris  <rgm@gnu.org>
3419         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
3420         (vc-print-log-internal): Fix previous change.
3421         (vc-revert): Correct pluralization.
3423 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3425         * progmodes/make-mode.el (makefile-special-targets-list): No need for
3426         it to be an alist any more.
3427         (makefile-complete): Use completion-in-region.
3429         * progmodes/octave-mod.el (octave-complete-symbol):
3430         Use completion-in-region.
3432         Misc cleanup.
3433         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
3434         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
3435         (idlwave-complete-class): Don't quote lambda.
3436         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
3437         (idlwave-mode-map): Move initialization into declaration.
3438         (idlwave-action-and-binding): Use backquotes.
3439         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
3440         Simplify.
3441         (idlwave-is-pointer-dereference): Remove unused var `pos'.
3442         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
3443         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
3444         `parts', and `all-parts'.
3445         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
3446         (idlwave-convert-xml-system-routine-info): Remove unused string
3447         `version-string'.
3448         (idlwave-display-user-catalog-widget): Use dolist.
3449         (idlwave-scanning-lib): Declare dynamically-scoped var.
3450         (idlwave-scan-library-catalogs): Remove unused var `flags'.
3451         (completion-highlight-first-word-only): Declare to silence bytecomp.
3452         (idlwave-popup-select): Tighten scope of `resp'.
3453         (idlwave-find-struct-tag): Remove unused var `beg'.
3454         (idlwave-after-load-rinfo-hook): Declare.
3455         (idlwave-sintern-class-info): Remove unused var `taglist'.
3456         (idlwave-find-class-definition): Remove unused var `list'.
3457         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
3458         (idlwave-what-module-find-class): Remove unused var `classes'.
3460 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
3462         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
3464 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3466         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
3467         buffers visited.  Remove redundant current-buffer-saving.
3469 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3471         Use completion-in-buffer and remove uses of dynamic scoping.
3472         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
3473         (pascal-buffer-to-use, pascal-flag): Don't declare.
3474         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
3475         (pascal-get-completion-decl, pascal-keyword-completion):
3476         Add `pascal-str' argument, save-excursion,
3477         return the found completions, and don't filter with pascal-pred.
3478         (pascal-completion-cache): New var.
3479         (pascal-completion): Don't switch buffer any more (it was never
3480         necessary).  Don't save-excursion any more (it's done by the called
3481         subroutines).  Use a cache to avoid redundant computations.
3482         Use complete-with-action rather than pascal-completion-response and
3483         let it apply the predicate as well.
3484         (pascal-complete-word): Use completion-in-buffer when
3485         pascal-toggle-completions is nil.
3486         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
3487         not used any more.
3488         (pascal-comp-defun): Don't change buffer any more.
3489         Use complete-with-action rather than pascal-completion-response and
3490         let it apply the predicate as well.
3491         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
3492         when neded.
3494 2009-12-02  Kenichi Handa  <handa@m17n.org>
3496         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
3497         shape for all Indic scripts.
3499 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3501         Use completion-in-buffer.
3502         * wid-edit.el (widget-field-text-end): New function.
3503         (widget-field-value-get): Use it.
3504         (widget-string-complete, widget-file-complete)
3505         (widget-color-complete): Use it and completion-in-region.
3506         (widget-complete): Don't narrow the buffer.
3508 2009-12-02  Glenn Morris  <rgm@gnu.org>
3510         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
3511         (rmail-select-summary): Use rmail-pop-to-buffer.
3512         * mail/rmailsum.el: Replace all pop-to-buffer calls with
3513         rmail-pop-to-buffer, to prevent horizontal splits.
3515         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
3516         save-excursion with save-current-buffer.
3517         Widen before searching.  (Bug#5093)
3518         (diary-list-sexp-entries): Remove superfluous save-excursion.
3520 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
3522         * woman.el (woman-make-bufname): Handle man-pages with "." in the
3523         name.  (Bug#5038)
3525 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
3527         * ido.el (ido-file-internal): Handle filenames at point that do
3528         not have a directory part.  (Bug#5049)
3530 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
3532         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
3533         (mpc-songs-jump-to, mpc-resume): Doc fixes.
3535 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
3537         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
3538         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
3539         any more.
3541 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3543         * comint.el (comint-insert-input): Ignore clicks to the right of
3544         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
3546         * vc.el (vc-print-log-internal): Don't wait for the process to
3547         terminate before setting up the major mode.
3549         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
3550         in case.
3552         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
3553         the last element.
3555         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
3557 2009-12-01  Glenn Morris  <rgm@gnu.org>
3559         * window.el (window--display-buffer-2): Fix previous changes.
3561 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
3563         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
3565 2009-12-01  Glenn Morris  <rgm@gnu.org>
3567         * Makefile.in (ELCFILES): Add mpc.elc.
3569 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3571         * mpc.el: New file.
3573 2009-12-01  Glenn Morris  <rgm@gnu.org>
3575         * window.el (window-to-use): Define for compiler.
3577         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
3578         consistent with others (no final period).
3580         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
3581         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
3583 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
3585         Make vc-print-log buttons work.
3586         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
3588 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
3590         * savehist.el (savehist-autosave-interval): Allow setting to nil
3591         through customize.  (Bug#5056)
3593 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
3595         Fix references to jit-lock properties.
3596         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
3597         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
3598         (perl-font-lock-special-syntactic-constructs):
3599         Quote jit-lock-defer-multiline property.
3601 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
3603         * vc-git.el (vc-git-registered): Call vc-git-root only once.
3605 2009-11-30  Juri Linkov  <juri@jurta.org>
3607         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
3608         value `buffer' of `multi-isearch-next-buffer-current-function'.
3609         Use `(current-buffer)' when `buffer' is nil.
3610         (multi-isearch-next-buffer-from-list): Don't fallback to
3611         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
3613 2009-11-30  Juri Linkov  <juri@jurta.org>
3615         * misearch.el (multi-isearch-read-buffers): Move canonicalization
3616         of buffers with `get-buffer' to `multi-isearch-buffers'.
3617         (multi-isearch-buffers, multi-isearch-buffers-regexp):
3618         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
3619         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
3620         FILES with `expand-file-name' converting relative file names
3621         to absolute.  Doc fix.  (Bug#4727)
3623 2009-11-30  Juri Linkov  <juri@jurta.org>
3625         * misearch.el (multi-isearch-read-buffers)
3626         (multi-isearch-read-matching-buffers): New functions.
3627         (multi-isearch-buffers, multi-isearch-buffers-regexp):
3628         Use them in the `interactive' spec.  Doc fix.
3629         (multi-isearch-read-files, multi-isearch-read-matching-files):
3630         New functions.
3631         (multi-isearch-files, multi-isearch-files-regexp):
3632         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
3634 2009-11-30  Juri Linkov  <juri@jurta.org>
3636         * doc-view.el (doc-view-continuous):
3637         Rename from `doc-view-continuous-mode'.
3638         (doc-view-menu): Move "Toggle display" to the top.
3639         Add submenu "Continuous" with radio buttons "Off"/"On"
3640         and "Save as Default".
3641         (doc-view-scroll-up-or-next-page)
3642         (doc-view-scroll-down-or-previous-page)
3643         (doc-view-next-line-or-next-page)
3644         (doc-view-previous-line-or-previous-page): Rename
3645         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
3647 2009-11-30  Juri Linkov  <juri@jurta.org>
3649         * comint.el (comint-mode-map): Rebind `M-r' from
3650         `comint-previous-matching-input' to
3651         `comint-history-isearch-backward-regexp'.
3652         Unbind `M-s' to allow global key binding `M-s'.
3653         Add menu items for `comint-history-isearch-backward' and
3654         `comint-history-isearch-backward-regexp'.  (Bug#3746)
3656 2009-11-30  Juri Linkov  <juri@jurta.org>
3658         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
3659         For def=recenter, replace `recenter' with `recenter-top-bottom'
3660         that is called with `this-command' and `last-command' let-bound
3661         to `recenter-top-bottom'.  When the last `def' was not `recenter',
3662         set `recenter-last-op' to nil.  (Bug#4981)
3664 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3666         Minor cleanup and simplification.
3667         * filecache.el (file-cache-add-directory)
3668         (file-cache-add-directory-recursively)
3669         (file-cache-add-from-file-cache-buffer)
3670         (file-cache-delete-file-regexp, file-cache-delete-directory)
3671         (file-cache-files-matching-internal, file-cache-display): Use dolist.
3672         (file-cache-temp-minibuffer-message): Delete function.
3673         (file-cache-minibuffer-complete): Use minibuffer-message instead.
3675         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
3676         Don't signal an error when bumping into EOB in tr, s, or y.
3678 2009-11-29  Juri Linkov  <juri@jurta.org>
3680         * startup.el (fancy-about-text): Fix wording of Guided Tour.
3681         (Bug#4960)
3683         * descr-text.el (describe-char-unidata-list): Use lowercase name
3684         for "Unicode name" like in other tags.
3686 2009-11-29  Juri Linkov  <juri@jurta.org>
3688         * ediff-util.el (ediff-minibuffer-with-setup-hook):
3689         New compatibility macro.
3690         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
3692 2009-11-29  Juri Linkov  <juri@jurta.org>
3694         Add defcustom to define the cycling order of `recenter-top-bottom'.
3695         (Bug#4981)
3697         * window.el (recenter-last-op): Doc fix.
3698         (recenter-positions): New defcustom.
3699         (recenter-top-bottom): Rewrite to use `recenter-positions'.
3700         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
3702 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
3704         Improve integration of Tramp and ange-ftp in eshell.
3706         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
3707         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
3708         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
3710         * eshell/esh-util.el (top): Require also Tramp when compiling.
3711         (eshell-directory-files-and-attributes): Check for FTP remote
3712         connection.
3713         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
3714         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
3715         (eshell-file-attributes): Handle ".".  Return `entry'.
3717         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
3718         (ange-ftp-directory-files-and-attributes)
3719         (ange-ftp-real-directory-files-and-attributes): New defuns.
3721         * net/tramp.el (tramp-maybe-open-connection): Open the remote
3722         shell with "exec" when possible.  This prevents trailing prompts
3723         in `start-file-process'.
3725 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3727         Try and remove assumptions about point-min==1.
3728         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
3729         (rng-compute-mode-line-string): Show the validation percentage in
3730         terms of the narrowed text, not the widened text.
3731         (rng-do-some-validation): Don't catch internal errors when debugging.
3732         (rng-first-error): Simplify.
3733         (rng-after-change-function): Remove work around.  AFAIK the bug has
3734         been fixed a while ago.
3736         * image-mode.el (image-minor-mode): Exit more gracefully when the image
3737         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
3739         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
3741         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
3742         `cd' doesn't always do it for us (bug#5067).
3744         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
3745         on 2009-10-25 as part of some other change (bug#5067).
3747 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3749         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
3750         `suspicious'.
3751         (byte-compile-warnings): Use byte-compile-warning-types.
3752         (byte-compile-save-excursion): Warn about use of set-buffer right
3753         after save-excursion.
3755         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
3756         the excursion as well.
3758 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
3760         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
3761         providing a Tramp related implementation of "su" and "sudo".
3762         (eshell-unix-initialize): Add "su" and "sudo".
3764 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
3766         * net/socks.el (socks-send-command): Convert binary request to
3767         unibyte before sending.  This fixes mishandling of some port
3768         numbers such as 129.
3770 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3772         * help.el (describe-bindings-internal): Remove `interactive'.
3774         * man.el (Man-completion-table): Trim a terminating "(".
3775         Remove the space between name page a section.
3776         Add the command's description on the `help-echo' property.
3777         Remove `process-connection-type' binding since it's unused by
3778         call-process.
3779         Provide completion for the "<section> <name>" format as well.
3780         (Man-default-man-entry): Remove spurious var shadowing the argument.
3782 2009-11-26  Kevin Ryde  <user42@zip.com.au>
3784         * log-view.el: Add "Keywords: tools", since its other keywords
3785         aren't in finder-known-keywords, and following vc.el.
3787         * sha1.el (sha1-string-external): default-directory "/" in case
3788         otherwise non-existent.  process-connection-type pipe for touch of
3789         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
3791 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3793         Misc coding convention cleanups.
3794         * htmlfontify.el (hfy-init-kludge-hook): Rename from
3795         hfy-init-kludge-hooks.
3796         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
3797         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
3798         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
3799         and push.
3800         (hfy-slant, hfy-weight): Use tables rather than code.
3801         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
3802         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
3803         (hfy-face-attr-for-class): Initialize `face-spec' directly.
3804         (hfy-face-to-css): Remove `nconc' with single arg.
3805         (hfy-p-to-face-lennart): Use `or'.
3806         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
3807         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
3808         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
3809         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
3810         (hfy-force-fontification): Use run-hooks.
3812 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
3814         Various minor fixes.
3815         * htmlfontify.el (hfy-default-header): Add toggle_invis since
3816         Javascript belongs in the header, not the body.
3817         (hfy-javascript): Remove.
3818         (hfy-fontify-buffer): Don't insert it any more.
3819         (hfy-face-at): Handle (face0 face1 face2) style face properties.
3820         Fix bug in invis handling when there were no invis props in a chunk.
3822 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3824         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
3826 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
3828         * finder.el (finder-mode-map): Add a menu.
3830 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
3832         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
3833         "unsigned" structs.
3835         (verilog-leap-to-head, verilog-backward-token): Handle "disable
3836         fork" statement better.
3838 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
3840         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
3841         (verilog-delete-auto, verilog-delete-empty-auto-pair)
3842         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
3843         Reported by Clay Douglass.
3845         (verilog-auto-inst, verilog-auto-star-safe)
3846         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
3847         Fix removing "// Interfaces" when saving .* expansions.  Reported by
3848         Pierre-David Pfister.
3850 2009-11-26  Glenn Morris  <rgm@gnu.org>
3852         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
3853         the scope.
3855 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
3857         * vc-annotate.el (vc-annotate-revision-previous-to-line):
3858         Really use previous revision.
3860 2009-11-25  Kevin Ryde  <user42@zip.com.au>
3862         * man.el (Man-completion-table): default-directory "/" in case
3863         doesn't otherwise exist.  process-environment COLUMNS=999 so as
3864         not to truncate long names.  process-connection-type pipe to avoid
3865         any chance of hitting the pseudo-tty TIOCGWINSZ.
3866         (man): completion-ignore-case t for friendliness and since man
3867         itself is case-insensitive on the command line.
3868         Further to Bug#3717.
3870         * arc-mode.el: Add "Keywords: files", so the details in its
3871         commentary can be reached from finder-by-keyword.
3872         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
3873         editing mode, but it's comms related and sgml-mode.el has "comm"
3874         on that basis too.
3875         * textmodes/bibtex-style.el: Add "Keywords: tex".
3876         * international/isearch-x.el, international/ja-dic-cnv.el:
3877         * international/ja-dic-utl.el, international/kkc.el:
3878         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
3880 2009-11-25  Juri Linkov  <juri@jurta.org>
3882         * man.el (Man-completion-table): Modify regexp to include
3883         section names to completion strings.  (Bug#3717)
3885 2009-11-25  Juri Linkov  <juri@jurta.org>
3887         Search recursively in gzipped files.  (Bug#4982)
3889         * progmodes/grep.el (grep-highlight-matches): Add new options
3890         `always' and `auto'.  Doc fix.
3891         (grep-process-setup): Check `grep-highlight-matches' for
3892         `auto-detect' to determine the need to compute grep defaults.
3893         Move Windows/DOS specific --colors settings handling
3894         to `grep-compute-defaults'.  Check `grep-highlight-matches'
3895         to get the value of "--color=".
3896         (grep-compute-defaults): Compute `grep-highlight-matches' when it
3897         has the value `auto-detect'.  Move Windows/DOS specific settings
3898         from `grep-process-setup'.
3899         (zrgrep): New command with alias `rzgrep'.
3901 2009-11-25  Juri Linkov  <juri@jurta.org>
3903         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
3904         to nil instead of switching off view-mode.  (Bug#4896)
3906 2009-11-25  Juri Linkov  <juri@jurta.org>
3908         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
3910         * mwheel.el (mwheel-scroll-up-function)
3911         (mwheel-scroll-down-function): New defvars.
3912         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
3913         `scroll-up', and `mwheel-scroll-down-function' instead of
3914         `scroll-down'.
3916         * doc-view.el (doc-view-scroll-up-or-next-page)
3917         (doc-view-scroll-down-or-previous-page): Add optional ARG.
3918         Use this ARG in the call to image-scroll-up/image-scroll-down.
3919         Change `interactive' spec to "P".  Goto next/previous page only
3920         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
3921         SPC/DEL case).  Doc fix.
3922         (doc-view-next-line-or-next-page)
3923         (doc-view-previous-line-or-previous-page): Rename arg to ARG
3924         for consistency.
3925         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
3926         `doc-view-scroll-up-or-next-page', and buffer-local
3927         `mwheel-scroll-down-function' to
3928         `doc-view-scroll-down-or-previous-page'.
3930 2009-11-25  Juri Linkov  <juri@jurta.org>
3932         Provide additional default values (directories at other Dired
3933         windows) via M-n in the minibuffer of some Dired commands.
3935         * dired-aux.el (dired-diff, dired-compare-directories)
3936         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
3937         `minibuffer-default' in `minibuffer-with-setup-hook'.
3938         (dired-dwim-target-directory): Find a window that displays Dired
3939         buffer instead of failing when the next window is not Dired.
3940         Use `get-window-with-predicate' to find for the next Dired window.
3941         (dired-dwim-target-defaults): New function.
3943         * ediff-util.el (ediff-read-file-name):
3944         Use `dired-dwim-target-defaults' to set `minibuffer-default'
3945         in `minibuffer-with-setup-hook'.
3947 2009-11-25  Juri Linkov  <juri@jurta.org>
3949         Provide additional default values (file name at point or at the
3950         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
3952         * minibuffer.el (read-file-name-defaults): New function.
3953         (read-file-name): Reset `minibuffer-default' to nil when
3954         it duplicates initial input `insdef'.
3955         Bind `minibuffer-default-add-function' to lambda that
3956         calls `read-file-name-defaults' in `minibuffer-selected-window'.
3957         (minibuffer-insert-file-name-at-point): New command.
3959         * files.el (file-name-at-point-functions): New defcustom.
3960         (find-file-default): Remove defvar.
3961         (find-file-read-args): Don't use `find-file-default'.
3962         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
3963         to `read-file-name'.
3964         (find-file-literally): Use `read-file-name' with
3965         `confirm-nonexistent-file-or-buffer'.
3967         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
3969         * dired.el (dired-read-dir-and-switches):
3970         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
3971         to `read-file-name'.
3972         (dired-file-name-at-point): New function.
3973         (dired-mode): Add hook `dired-file-name-at-point' to
3974         `file-name-at-point-functions'.
3976 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3978         Really make the *Completions* window soft-dedicated (bug#5030).
3979         * window.el (window--display-buffer-2): Add `dedicated' argument.
3980         (display-buffer): Pass it when needed so the dedicated flag is set
3981         after calling set-window-buffer, which would otherwise reset it.
3983 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3985         * progmodes/meta-mode.el (meta-complete-symbol):
3986         * progmodes/etags.el (complete-tag):
3987         * mail/mailabbrev.el (mail-abbrev-complete-alias):
3988         Use completion-in-region.
3990         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
3991         (dabbrev-completion): Use completion-in-region.
3992         (dabbrev--abbrev-at-point): Simplify regexp.
3994         * abbrev.el (abbrev--before-point): Use word-motion functions
3995         if :regexp is not specified (bug#5031).
3997         * subr.el (string-prefix-p): New function.
3999         * man.el (Man-completion-cache): New var.
4000         (Man-completion-table): Use it.
4002         * vc.el (vc-print-log-internal): Make `limit' optional for better
4003         compatibility (e.g. with vc-annotate.el).
4005 2009-11-24  Kevin Ryde  <user42@zip.com.au>
4007         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
4008         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
4010         * emacs-lisp/elint.el (elint-add-required-env): Better error message
4011         when .el source file not found or other error.
4013 2009-11-24  Markus Triska  <markus.triska@gmx.at>
4015         * linum.el (linum-update-window): Ignore intangible (bug#4996).
4017 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4019         Handle the [back] button properly (bug#4979).
4020         * descr-text.el (describe-text-properties): Add a `buffer' argument.
4021         Use help-setup-xref, help-buffer, and with-help-window.
4022         (describe-char): Add `buffer' argument.
4023         Pass proper command to help-setup-xref.  Don't meddle with
4024         help-xref-stack-item directly.
4025         (describe-text-category): Use with-help-window and help-buffer.
4027         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
4028         for the displayed buffer (bug#4887).
4030         * man.el (Man-completion-table): New function.
4031         (man): Use it.
4033 2009-11-24  David Reitter  <david.reitter@gmail.com>
4035         * vc-git.el (vc-git-registered): Use checkout directory (where
4036         .git is) rather than the file's directory and a relative path spec
4037         to work around a bug in git.
4039 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
4041         Improve handling of processes on remote hosts.
4043         * eshell/esh-util.el (eshell-path-env): New defvar.
4044         (eshell-parse-colon-path): New defun.
4045         (eshell-file-attributes): Use `eshell-parse-colon-path'.
4047         * eshell/esh-ext.el (eshell-search-path):
4048         Use `eshell-parse-colon-path'.
4049         (eshell-remote-command): Remove argument HANDLER.
4050         (eshell-external-command): Check for FTP remote connection.
4052         * eshell/esh-proc.el (eshell-gather-process-output):
4053         Use `file-truename', in order to start also symlinked files.
4054         Apply `start-file-process' instead of `start-process'.
4055         Shorten `command' to the local file name part.
4057         * eshell/em-cmpl.el (eshell-complete-commands-list):
4058         Use `eshell-parse-colon-path'.
4060         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
4062         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
4063         to `eshell-directory-change-hook'.
4065 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
4067         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
4068         because it could be enabled automatically if view-read-only is non-nil.
4070 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
4072         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
4073         made on 2009-11-22.
4075 2009-11-24  Glenn Morris  <rgm@gnu.org>
4077         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
4078         deleted variable bookmark-bmenu-bookmark-column.
4080 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4082         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
4084 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
4086         * net/browse-url.el (browse-url-filename-alist): On Windows, add
4087         two slashes to the "file:" prefix.
4088         (browse-url-file-url): De-munge Cygwin filenames before passing
4089         them to Windows browser.
4090         (browse-url-default-windows-browser): Use call-process.
4092 2009-11-23  Juri Linkov  <juri@jurta.org>
4094         Implement DocView Continuous mode.  (Bug#4896)
4095         * doc-view.el (doc-view-continuous-mode): New defcustom.
4096         (doc-view-mode-map): Bind C-n/<down> to
4097         `doc-view-next-line-or-next-page', C-p/<up> to
4098         `doc-view-previous-line-or-previous-page'.
4099         (doc-view-next-line-or-next-page)
4100         (doc-view-previous-line-or-previous-page): New commands.
4102 2009-11-23  Juri Linkov  <juri@jurta.org>
4104         Implement Isearch in comint input history.  (Bug#3746)
4105         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
4106         `isearch-mode-hook'.
4107         (comint-history-isearch): New defcustom.
4108         (comint-history-isearch-backward)
4109         (comint-history-isearch-backward-regexp): New commands.
4110         (comint-history-isearch-message-overlay): New buffer-local variable.
4111         (comint-history-isearch-setup, comint-history-isearch-end)
4112         (comint-goto-input, comint-history-isearch-search)
4113         (comint-history-isearch-message, comint-history-isearch-wrap)
4114         (comint-history-isearch-push-state)
4115         (comint-history-isearch-pop-state): New functions.
4117 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
4119         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
4120         return.
4121         (tramp-handle-make-symbolic-link)
4122         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
4123         Quote file names.
4124         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
4125         (tramp-handle-process-file): Use it.
4127 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4129         * window.el (move-to-window-line-last-op): Remove.
4130         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
4132 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
4134         Make M-r mirror the new cycling behavior of C-l.
4135         * window.el (move-to-window-line-last-op): New var.
4136         (move-to-window-line-top-bottom): New command.
4137         (global-map): Bind M-r move-to-window-line-top-bottom.
4139 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
4141         * dired-x.el (dired-guess-shell-alist-default):
4142         Support xz format.  (Bug#4953)
4144 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
4146         * emulation/viper-cmd.el: Use viper-last-command-char instead of
4147         last-command-char/last-command-event.
4148         (viper-prefix-arg-value): Do correct conversion of event-char for
4149         XEmacs.
4151         * emulation/viper-util.el, emulation/viper.el:
4152         Use viper-last-command-char instead of
4153         last-command-char/last-command-event.
4155         * ediff-init.el, ediff-mult.el, ediff-util.el:
4156         Replace last-command-char and last-command-event
4157         with (ediff-last-command-char) everywhere.
4159         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
4160         created in fundamental mode.
4162         * ediff.el (ediff-version): Revert the change of interactive-p to
4163         called-interactively-p.
4165 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
4167         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
4168         generation from word-movement command names.
4170 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
4172         * cus-start.el (all): Add native condition for font-use-system-font.
4174 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
4176         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
4177         Correct the patch from 2009-11-18.  (Bug#3910)
4179 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
4181         * progmodes/subword.el: Rename from lisp/subword.el.
4183         * subword.el: Rename to progmodes/subword.el.
4185         * Makefile.in (ELCFILES): Adapt to subword.el move.
4187 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4188             Stefan Monnier  <monnier@iro.umontreal.ca>
4190         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
4191         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
4192         (bookmark-bmenu-show-filenames): Use push.
4193         (bookmark-bmenu-hide-filenames): Use local var instead of
4194         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
4195         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
4196         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
4197         filenames now that the bookmark names are always available.
4199 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4201         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
4202         (bookmark-search-pattern): Move and leave unbound.
4203         (bookmark-bmenu-mode-map): Change binding.
4204         (bookmark-read-search-input): Simplify.
4205         Don't use text-char-description.  Don't error on non-char events.
4206         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
4207         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
4208         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
4209         Use a local var for the timer.
4210         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
4211         (i.e. bookmark-bmenu-search).
4213 2009-11-21  Glenn Morris  <rgm@gnu.org>
4215         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
4217 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
4219         * net/browse-url.el (browse-url-default-windows-browser):
4220         Use cygstart for cygwin.
4222 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
4224         * bookmark.el: Formatting and doc fixes only:
4225         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
4226         (bookmark-bmenu-search): Wrap to fit within 80 columns.
4227         Minor grammar and punctuation fixes in doc string.
4228         (bookmark-read-search-input): Adjust to fit within 80 columns.
4230 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
4232         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
4233         (c-backward-into-nomenclature): Adapt to subword renaming.
4235         * subword.el (subword-forward, subword-backward, subword-mark)
4236         (subword-kill, subword-backward-kill, subword-transpose)
4237         (subword-downcase, subword-upcase, subword-capitalize)
4238         (subword-forward-internal, subword-backward-internal):
4239         Rename from forward-subword, backward-subword, mark-subword,
4240         kill-subword, backward-kill-subword, transpose-subwords,
4241         downcase-subword, upcase-subword, capitalize-subword,
4242         forward-subword-internal, backward-subword-internal.
4244 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4246         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
4247         New options.
4248         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
4249         New vars.
4250         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
4251         (bookmark-bmenu-filter-alist-by-regexp)
4252         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
4253         (bookmark-bmenu-search): New command.
4254         (bookmark-bmenu-mode-map): Bind it.
4256 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
4258         * progmodes/cc-cmds.el: declare-functioned forward-subword and
4259         backward-subword to quit the byte-compiler.
4261         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
4263         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
4265         * progmodes/cc-cmds.el (c-update-modeline)
4266         (c-forward-into-nomenclature, c-backward-into-nomenclature):
4267         Refer to subword.el functions instead of cc-subword.el.
4269         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
4270         subword.el functions instead of cc-subword.el.
4272         * progmodes/cc-subword.el: Rename to subword.el.
4273         * subword.el: Rename from progmodes/cc-subword.el.
4274         (subword-mode-map): Rename from c-subword-mode-map.
4275         (subword-mode): Rename from c-subword-mode.
4276         (global-subword-mode): New global minor mode.
4277         (forward-subword): Rename from c-forward-subword.
4278         (backward-subword): Rename from c-backward-subword.
4279         (mark-subword): Rename from c-mark-subword.
4280         (kill-subword): Rename from c-kill-subword.
4281         (backward-kill-subword): Rename from c-backward-kill-subword.
4282         (transpose-subwords): Rename from c-tranpose-subword.
4283         (downcase-subword): Rename from c-downcase-subword.
4284         (capitalize-subword): Rename from c-capitalize-subword.
4285         (forward-subword-internal): Rename from c-forward-subword-internal.
4286         (backward-subword-internal): Rename from c-backward-subword-internal.
4288 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
4290         * vc.el (vc-deduce-fileset): Allow non-state changing operations
4291         from a dired buffer.
4292         (vc-dired-deduce-fileset): New function.
4293         (vc-root-diff, vc-print-root-log): Use it.
4295         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
4296         nil LIMIT argument to vc-print-log-internal.
4298 2009-11-20  Glenn Morris  <rgm@gnu.org>
4300         * Makefile.in (ELCFILES): Regenerate.
4302 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
4304         * calc/calc.el (calc-set-mode-line):
4305         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4306         (math-format-number): Rename `math-format-complement-signed' to
4307         `math-format-twos-complement'.
4309         * calc/calc-bin.el (math-format-twos-complement): Rename from
4310         math-format-complement-signed.
4311         (calc-radix): Rename `calc-complement-signed-mode' to
4312         `calc-twos-complement-mode'.
4313         (calc-octal-radix, calc-hex-radix): Add an argument for
4314         two's complement.
4316         * calc/calc-embed.el (calc-embedded-mode-vars):
4317         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4319         * calc/calc-ext.el (calc-init-extensions):
4320         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4321         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
4323         * calc/calc-units.el (math-build-units-table-buffer):
4324         Let `calc-twos-complement-mode' be nil.
4326         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
4327         entries.
4329         * calc/calc-vec.el (calcFunc-vunpack):
4330         * calc/calc-aent.el (calc-do-calc-eval):
4331         * calc/calc-forms.el (math-format-date):
4332         * calc/calc-graph.el (calc-graph-plot):
4333         * calc/calc-math.el (math-use-emacs-fn):
4334         * calc/calccomp.el (math-compose-expr):
4335         Let `calc-twos-complement-mode' be nil.
4337 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4339         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
4340         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
4341         * minibuffer.el (completion-in-region-functions): New hook.
4342         (completion-in-region): New function.
4343         * emacs-lisp/lisp.el (lisp-complete-symbol):
4344         * pcomplete.el (pcomplete-std-complete): Use it.
4346 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4348         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
4349         (latex-complete-alist): New vars.
4350         (latex-string-prefix-p, latex-complete-bibtex-keys)
4351         (latex-complete-envnames, latex-complete-refkeys)
4352         (latex-complete-data): New functions.
4353         (latex-complete, latex-indent-or-complete): New commands.
4355         * window.el (display-buffer-mark-dedicated): New var.
4356         (display-buffer): Obey it.
4357         * minibuffer.el (minibuffer-completion-help): Use it.
4359         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
4361         * filecache.el (file-cache-add-file): Use push and cons.
4362         (file-cache-delete-file-regexp): Use push.
4363         (file-cache-complete): Use completion-in-region.
4365         * simple.el (with-wrapper-hook): Fix thinko.
4367         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
4368         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
4369         Use with-current-buffer and string-to-number.
4370         (hfy-fallback-colour-values): Use assoc-string.
4371         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
4372         (hfy-face-at): Remove unused var `found-face'.
4373         (hfy-compile-stylesheet): Remove unused var `css'.
4374         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
4375         and `orig-buffer'.
4376         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
4377         Use with-current-buffer.
4378         (hfy-text-p): Use expand-file-name and fewer setq.
4380 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
4382         * htmlfontify.el, hfy-cmap.el: New files.
4384 2009-11-19  Juri Linkov  <juri@jurta.org>
4386         * minibuffer.el (completions-format): New defcustom.
4387         (completion--insert-strings): Implement vertical format.
4389         * simple.el (switch-to-completions): Move point to the first
4390         completion when point was at the beginning of the buffer.
4392 2009-11-19  Juri Linkov  <juri@jurta.org>
4394         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
4396         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
4398 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
4400         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
4401         (mail-signature): Change default to t.
4402         (mail-from-style): Deprecate `system-default' value.
4403         (mail-insert-from-field): For default value of mail-from-style,
4404         default to `angles' unless `angles' needs quoting and `parens'
4405         does not.
4406         (mail-citation-prefix-regexp): Use citation regexp from
4407         message-mode.
4409 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
4411         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
4412         Set variables for computing the prompt for reading password.
4414 2009-11-19  Glenn Morris  <rgm@gnu.org>
4416         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
4418         * textmodes/flyspell.el (sgml-lexical-context): Declare.
4420         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
4421         (newsticker-treeview-listwindow-height): Fix custom type.
4423 2009-11-19  Kenichi Handa  <handa@m17n.org>
4425         * descr-text.el (describe-char-padded-string): Compose with TAB
4426         only if there's a font for CH.
4427         (describe-char): Fix the condition for detecting a trivial composition.
4429 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
4431         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
4432         more accurate version of the regexp.  (Bug#3910)
4434 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
4436         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
4438 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
4440         * font-setting.el (font-use-system-font): Declare for byte-compiler.
4441         (font-setting-change-default-font): Fix typo in docstring.
4443 2009-11-18  Alan Mackenzie  <acm@muc.de>
4445         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
4447 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
4449         * font-setting.el (font-use-system-font): Move ...
4451         * cus-start.el (all): ... to here.
4453 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
4455         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
4456         Don't set `ad-return-value' if `ad-do-it' doesn't.
4458         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
4459         modification time.
4461 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
4463         * menu-bar.el: Put "Use system font" in Option-menu.
4464         (menu-bar-options-save): Add font-use-system-font.
4466         * loadup.el: If feature system-font-setting or font-render-setting is
4467         there, load font-setting.
4469         * Makefile.in (ELCFILES): Add font-settings.el.
4470         * font-setting.el: New file.
4472 2009-11-17  Glenn Morris  <rgm@gnu.org>
4474         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
4476         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
4477         Preserve point in the list buffer.  (Bug#4939)
4478         Use point-at-eol.
4479         (newsticker--treeview-list-update-highlight)
4480         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
4482 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
4484         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
4485         Remove.
4487         * calc/calc-ext.el (calc-init-extensions): Remove references to
4488         symclip.
4490         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
4492         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
4493         * calc/calc-help.el (calc-b-prefix-help): Remove references to
4494         `calc-symclip'.
4496 2009-11-16  Kevin Ryde  <user42@zip.com.au>
4498         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
4499         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
4501         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
4502         (lm-keywords-list): Allow comma-only separator like "foo,bar".
4503         Ignore trailing spaces by omit-nulls to split-string (fixing
4504         regression from Emacs 21 due to the incompatible split-string
4505         change).  (Bug #4928.)
4507 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4509         * vc.el (vc-log-show-limit): Default to 2000.
4510         (vc-print-log-internal): Insert buttons to request more entries
4511         when limiting the output.
4513         * vc-sccs.el (vc-sccs-print-log):
4514         * vc-rcs.el (vc-rcs-print-log):
4515         * vc-cvs.el (vc-cvs-print-log):
4516         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
4517         LIMIT is non-nil.
4519 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
4521         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
4522         error when `tramp-gvfs-dbus-event-vector' is set.
4523         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
4525 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4527         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
4529 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
4531         * net/dbus.el (dbus-unregister-service): New defun.
4532         (dbus-register-property): Register the handlers of
4533         "org.freedesktop.DBus.Properties" for SERVICE.
4534         (dbus-property-handler): Fix docstring.
4536 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4538         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
4539         Quote doc string reference in defvaralias as it is not in special form.
4540         (byte-compile-output-docform): Doc fix.
4542 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
4544         * calc/calc.el (math-2-word-size, math-half-2-word-size)
4545         (calc-complement-signed-mode): New variables.
4546         (calc-set-mode-line): Add indicator for twos-complements.
4547         (math-format-number): Format twos-complement notation.
4549         * calc/calc-bin.el (calc-word-size): Reset the variables
4550         `math-2-word-size' and `math-half-2-word-size'.
4551         (math-format-complement-signed, math-symclip, calcFunc-symclip)
4552         (calc-symclip): New functions.
4554         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
4556         * calc/calc-embed.el (calc-embedded-mode-vars):
4557         Add `calc-complement-signed-mode' to the list of modes.
4559         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
4560         (calc-b-oper-keys): Add `calc-symclip' to list.
4562         * calc/calc-ext.el (math-read-number-fancy): Read complement
4563         signed numbers.
4564         (calc-init-extensions): Add binding for `calc-symclip'.
4565         Add autoload for `calcFunc-symclip' and `calc-symclip'.
4567         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
4568         `calc-symclip'.
4569         (calc-modes-menu): Add item for twos complement mode.
4571         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
4573 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
4575         * register.el (jump-to-register, insert-register): Handle Semantic
4576         tags.  From commented-out advice in semantic/senator.el.
4578 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
4580         * vc.el (vc-log-show-limit): New variable.
4581         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
4582         when using a prefix argument.
4583         (vc-print-log-internal): Add new argument LIMIT.
4585         * vc-svn.el (vc-svn-print-log):
4586         * vc-mtn.el (vc-mtn-print-log):
4587         * vc-hg.el (vc-hg-print-log):
4588         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
4589         pass it to the log command when set.  Make the BUFFER argument
4590         non-optional.
4592         * vc-sccs.el (vc-sccs-print-log):
4593         * vc-rcs.el (vc-rcs-print-log):
4594         * vc-git.el (vc-git-print-log):
4595         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
4596         ignore it.  Make the BUFFER argument non-optional
4598         * bindings.el (mode-line-buffer-identification): Do not purecopy.
4600 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
4602         * dired.el (dired-mode-map): Move encryption items to "Operate"
4603         menu (Bug#4703).
4605         * strokes.el (strokes-update-window-configuration): Make strokes
4606         buffer current before erasing (Bug#4906).
4608 2009-11-15  Juri Linkov  <juri@jurta.org>
4610         * simple.el (set-mark-default-inactive): Add :type, :group
4611         and :version.  (Bug#4876)
4613 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
4615         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
4616         (archive-unique-fname): ... here.  (Bug#4929)
4618 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4620         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
4621         with a real fix.
4623         * novice.el (disabled-command-function): Add useful args.
4624         Setup the help buffer so that [back] works.
4625         Remove redundant call to help-mode.
4626         (disabled-command-function): Use `case'.
4627         (en/disable-command): New function extracted from enable-command.
4628         (enable-command, disable-command): Use it.
4630 2009-11-14  Glenn Morris  <rgm@gnu.org>
4632         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
4633         constants.  (Bug#4913)
4635         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
4637 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
4639         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
4640         defined in C that have no doc-strings.  (Bug#1063)
4642 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
4644         * cus-edit.el (data, files):
4645         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
4647 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
4649         * simple.el (shell-command): Doc fix (Bug#4891).
4651         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
4653 2009-11-14  Glenn Morris  <rgm@gnu.org>
4655         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
4656         statements for vc-diff, emerge-quit, and rmail-cease-edit.
4657         If they are already loaded, eval-after-load will do the right thing.
4659         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
4660         compiling.
4662         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
4664         * simple.el (x-selection-owner-p): Declare.
4665         (read-mail-command): Use custom radio type rather than choice.
4666         (completion-no-auto-exit): Doc fix.
4668         * custom.el (defgroup):
4669         * epg-config.el (epg): Doc fixes.
4671 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
4673         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
4674         * international/ccl.el (define-ccl-program): Do not purecopy the
4675         docstring, defconst does it anyway.
4677 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4679         * add-log.el (add-change-log-entry): Avoid displaying the changelog
4680         a second time.
4682         * x-dnd.el (x-dnd-maybe-call-test-function):
4683         * window.el (split-window-vertically):
4684         * whitespace.el (whitespace-help-on):
4685         * vc-rcs.el (vc-rcs-consult-headers):
4686         * userlock.el (ask-user-about-lock-help)
4687         (ask-user-about-supersession-help):
4688         * type-break.el (type-break-force-mode-line-update):
4689         * time-stamp.el (time-stamp-conv-warn):
4690         * terminal.el (te-set-output-log, te-more-break, te-filter)
4691         (te-sentinel, terminal-emulator):
4692         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
4693         (term-write-input-ring, term-check-source, term-start-output-log):
4694         (term-display-buffer-line, term-dynamic-list-completions):
4695         (term-ansi-make-term, serial-term):
4696         * subr.el (selective-display):
4697         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
4698         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
4699         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
4700         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
4701         (speedbar-remove-localized-speedbar-support)
4702         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
4703         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
4704         (speedbar-buffers-line-directory):
4705         * simple.el (shell-command-on-region, append-to-buffer)
4706         (prepend-to-buffer):
4707         * shadowfile.el (shadow-save-todo-file):
4708         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
4709         (scroll-bar-maybe-set-window-start):
4710         * sb-image.el (speedbar-image-dump):
4711         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
4712         (load-save-place-alist-from-file):
4713         * ps-samp.el (ps-print-message-from-summary):
4714         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
4715         (ps-background-image, ps-begin-job, ps-do-despool):
4716         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
4717         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
4718         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
4719         (pr-call-process, pr-file-list, pr-interface-save):
4720         * novice.el (disabled-command-function)
4721         (enable-command, disable-command):
4722         * mouse.el (mouse-buffer-menu-alist):
4723         * mouse-copy.el (mouse-kill-preserving-secondary):
4724         * macros.el (kbd-macro-query):
4725         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
4726         * informat.el (batch-info-validate):
4727         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
4728         * hippie-exp.el (try-expand-dabbrev-visible):
4729         * help-mode.el (help-make-xrefs):
4730         * help-fns.el (describe-variable):
4731         * generic-x.el (bat-generic-mode-run-as-comint):
4732         * finder.el (finder-mouse-select):
4733         * find-dired.el (find-dired-sentinel):
4734         * filesets.el (filesets-file-close):
4735         * files.el (list-directory):
4736         * faces.el (list-faces-display, describe-face):
4737         * facemenu.el (list-colors-display):
4738         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
4739         * epg.el (epg--process-filter, epg-cancel):
4740         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
4741         (epa--read-signature-type):
4742         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
4743         (emerge-file-names):
4744         * ehelp.el (electric-helpify):
4745         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
4746         * ediff-vers.el (rcs-ediff-view-revision):
4747         * ediff-util.el (ediff-setup):
4748         * ediff-mult.el (ediff-append-custom-diff):
4749         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
4750         (ediff-wordify):
4751         * echistory.el (Electric-command-history-redo-expression):
4752         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
4753         * disp-table.el (describe-display-table):
4754         * dired.el (dired-find-buffer-nocreate):
4755         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
4756         * dabbrev.el (dabbrev--same-major-mode-p):
4757         * chistory.el (list-command-history):
4758         * apropos.el (apropos-documentation):
4759         * allout.el (allout-obtain-passphrase):
4760         (allout-copy-exposed-to-buffer):
4761         (allout-verify-passphrase): Use with-current-buffer.
4763 2009-11-13  Glenn Morris  <rgm@gnu.org>
4765         * Makefile.in (ELCFILES): Regenerate.
4767 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
4769         * net/dbus.el (dbus-registered-objects-table): Rename from
4770         `dbus-registered-functions-table', because it contains also properties.
4771         (dbus-unregister-object): Unregister also properties.
4772         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
4773         Use a timeout of 500 msec, in order to not block.
4774         (dbus-register-property, dbus-property-handler): New defuns.
4776 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4778         * simple.el (minibuffer-default-add-completions): Drop deprecated
4779         4th arg.
4781 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
4783         * textmodes/artist.el (artist-mouse-choose-operation):
4784         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
4785         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
4786         (artist-compute-up-event-key): New function.
4787         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
4789 2009-11-13  Kenichi Handa  <handa@m17n.org>
4791         * language/japan-util.el: Make sure that the value of jisx0208
4792         property is jisx0208 character.
4794 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
4796         * international/mule.el (auto-coding-regexp-alist): Only purecopy
4797         car or each item, not the whole list.
4799 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4801         * minibuffer.el (minibuffer-completion-help):
4802         Use minibuffer-hide-completions.
4804 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
4806         * dired.el (dired-save-positions, dired-restore-positions): New funs.
4807         (dired-revert): Use them (bug#4880).
4809 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
4811         * tooltip.el (tooltip-frame-parameters): Undo previous change.
4813 2009-11-12  Juri Linkov  <juri@jurta.org>
4815         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
4816         New functions.
4817         (find-file-literally-at-point): Alias of `ffap-literally'.
4819 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
4821         * textmodes/ispell.el (ispell-skip-region-alist):
4822         * textmodes/css-mode.el (auto-mode-alist):
4823         * progmodes/compile.el (auto-mode-alist):
4824         * international/mule.el (ctext-non-standard-encodings-alist)
4825         (ctext-non-standard-encodings-regexp):
4826         * simple.el (shell-command-switch, text-read-only):
4827         * replace.el (occur-mode-map):
4828         * paths.el (rmail-file-name):
4829         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
4830         * find-file.el (ff-special-constructs):
4831         * files.el (file-name-handler-alist):
4832         * composite.el: Purecopy strings.
4834         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
4836 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
4838         * widget.el (define-widget): Purecopy the docstring.
4839         * international/mule-cmds.el (charset): Do not purecopy the
4840         docstring here, define-widget does it.
4842         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
4843         * textmodes/bibtex-style.el (auto-mode-alist):
4844         * progmodes/inf-lisp.el (inferior-lisp-prompt):
4845         * progmodes/compile.el (compile-command):
4846         * language/korea-util.el (default-korean-keyboard):
4847         * international/mule-conf.el (file-coding-system-alist):
4848         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
4849         * tooltip.el (tooltip-frame-parameters):
4850         * newcomment.el (comment-end, comment-padding):
4851         * dired.el (dired-trivial-filenames):
4852         * comint.el (comint-file-name-prefix): Purecopy initial values.
4854 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
4856         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
4857         (tramp-advice-minibuffer-electric-tilde): Unload advices via
4858         `tramp-unload'.
4859         (tramp-advice-make-auto-save-file-name)
4860         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
4861         after removing the advice.
4863 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
4865         * progmodes/grep.el (grep-regexp-alist):
4866         * international/mule-cmds.el (iso-2022-control-alist):
4867         * emacs-lisp/timer.el (timer-duration-words):
4868         * subr.el (version-separator, version-regexp-alist):
4869         * minibuffer.el (completion-styles-alist):
4870         * faces.el (face-attribute-name-alist, list-faces-sample-text):
4871         Change defvars to defconsts.
4873         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
4874         * loadup.el ("international/mule-conf"): Load the byte compiled version.
4875         * international/mule-conf.el: Allow to be byte compiled.
4877         * international/mule.el (define-charset): Purecopy props.
4878         (load-with-code-conversion): Purecopy doc string and file name.
4879         (put-charset-property): Purecopy strings.
4880         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
4882         * international/mule-cmds.el (register-input-method): Purecopy arguments.
4883         (define-char-code-property): Correctly purecopy the table.
4885         * international/ccl.el (define-ccl-program): Purecopy the docstring.
4887         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
4889         * subr.el (add-hook): Purecopy strings.
4890         (eval-after-load): Purecopy load-history-regexp and the form.
4892         * custom.el (custom-declare-group): Purecopy load-file-name.
4894         * subr.el (menu-bar-separator): New defconst.
4895         * net/eudc.el (eudc-tools-menu):
4896         * international/mule-cmds.el (set-coding-system-map)
4897         (mule-menu-keymap):
4898         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
4899         * vc-hooks.el (vc-menu-map):
4900         * replace.el (occur-mode-map):
4901         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
4902         (menu-bar-edit-menu, menu-bar-goto-menu)
4903         (menu-bar-custom-menu, menu-bar-showhide-menu)
4904         (menu-bar-options-menu, menu-bar-tools-menu)
4905         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
4906         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
4907         (menu-bar-help-menu):
4908         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
4909         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
4911         * term/x-win.el (x-gtk-stock-map):
4912         * progmodes/vera-mode.el (auto-mode-alist):
4913         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
4914         (inferior-lisp-program, inferior-lisp-load-command):
4915         * progmodes/hideshow.el (hs-special-modes-alist):
4916         * progmodes/gud.el (same-window-regexps):
4917         * progmodes/grep.el (grep-program, find-program, xargs-program):
4918         * net/telnet.el (same-window-regexps):
4919         * net/rlogin.el (same-window-regexps):
4920         * language/ethiopic.el (font-ccl-encoder-alist):
4921         * vc-sccs.el (vc-sccs-master-templates):
4922         * vc-rcs.el (vc-rcs-master-templates):
4923         * subr.el (cl-assertion-failed):
4924         * simple.el (next-error-overlay-arrow-position):
4925         * lpr.el (lpr-command):
4926         * locate.el (locate-ls-subdir-switches):
4927         * info.el (same-window-regexps, info)
4928         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
4929         * image-mode.el (image-mode, auto-mode-alist):
4930         * hippie-exp.el (hippie-expand-ignore-buffers):
4931         * format.el (format-alist):
4932         * find-dired.el (find-ls-subdir-switches, find-grep-options)
4933         (find-name-arg):
4934         * facemenu.el (facemenu-keybindings):
4935         * dired.el (dired-listing-switches, dired-chown-program):
4936         * diff.el (diff-switches, diff-command):
4937         * cus-edit.el (same-window-regexps):
4938         * bindings.el (mode-line-mule-info)
4939         (mode-line-buffer-identification): Purecopy strings.
4941 2009-11-11  Juri Linkov  <juri@jurta.org>
4943         * simple.el (dired-get-filename) <declare-function>:
4944         Tell the byte-compiler about dired-get-filename.
4945         (shell-command): In Dired mode, get filename from the current line
4946         as the default value.
4948 2009-11-10  Glenn Morris  <rgm@gnu.org>
4950         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
4951         * calendar/holidays.el, progmodes/cperl-mode.el:
4952         Update x-popup-menu declarations.
4954         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
4955         (list-load-path-shadows): Use dolist.
4956         (list-load-path-shadows): Use with-current-buffer.
4958 2009-11-10  Juri Linkov  <juri@jurta.org>
4960         * minibuffer.el (read-file-name): Support a list of default values
4961         in `default-filename'.  Use the first file name where only one
4962         element is required.  Doc fix.
4964 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
4966         * net/dbus.el (dbus-unregister-object): Release service, if no
4967         other method is registered for it.
4969 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
4971         * bookmark.el (bookmark-completing-read): Sort bookmark names if
4972         bookmark-sort-flag is non-nil (Bug#4653).
4974 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
4976         * emulation/cua-base.el: Add CUA property to some CC mode commands
4977         (Bug#4100).
4979 2009-11-08  Kevin Ryde  <user42@zip.com.au>
4981         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
4982         at end of sentence (Bug#4818).
4984 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
4986         * progmodes/compile.el (compilation-error-regexp-alist-alist):
4987         Handle "see declaration of" MSFT statements (Bug#4100).
4989 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
4991         * net/tramp.el (tramp-advice-make-auto-save-file-name)
4992         (tramp-advice-file-expand-wildcards): Unload via
4993         `ad-remove-advice'.
4995         * net/trampver.el: Update release number.
4997 2009-11-08  Kevin Ryde  <user42@zip.com.au>
4999         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
5000         `ad-do-it'.
5002 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
5004         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
5005         in order to keep context in SELinux.
5007 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
5009         * dired-aux.el (dired-query): Place cursor in echo area and allow
5010         C-g.
5012         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
5013         menu item if not on a directory (Bug#4701).
5015 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
5017         Sync with Tramp 2.1.17.
5019         * net/tramp.el (tramp-handle-copy-directory): Don't use
5020         `file-remote-p' (due to compatibility).
5022         * net/tramp-compat.el (tramp-compat-copy-directory)
5023         (tramp-compat-delete-directory): New defuns.
5025         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
5026         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
5027         `tramp-compat-delete-directory'.
5029         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5030         (tramp-smb-handle-delete-directory): Use
5031         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
5033         * net/trampver.el: Update release number.
5035 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
5037         * tar-mode.el (tar-copy): Call write-region on the right buffer
5038         (Bug#4857).
5040         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
5041         by hand, if necessary (Bug#4878).
5043 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
5045         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
5046         align size column (Bug#4839).
5048         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
5049         statement.
5051 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
5053         * progmodes/ld-script.el (auto-mode-alist):
5054         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
5056         * cus-face.el (custom-declare-face): Purecopy face spec.
5058 2009-11-06  Kenichi Handa  <handa@m17n.org>
5060         * international/uni-bidi.el: Re-generated.
5061         * international/uni-category.el: Re-generated.
5062         * international/uni-combining.el: Re-generated.
5063         * international/uni-mirrored.el: Re-generated.
5065 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
5067         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
5068         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
5069         (tex-start-options, slitex-run-command, latex-run-command)
5070         (tex-run-command, tex-directory):
5071         * textmodes/ispell.el (ispell-html-skip-alists)
5072         (ispell-tex-skip-alists, ispell-tex-skip-alists):
5073         * textmodes/fill.el (adaptive-fill-first-line-regexp):
5074         (adaptive-fill-regexp):
5075         * textmodes/dns-mode.el (auto-mode-alist):
5076         * progmodes/python.el (interpreter-mode-alist):
5077         * progmodes/etags.el (tags-compression-info-list):
5078         * progmodes/etags.el (tags-file-name):
5079         * net/browse-url.el (browse-url-galeon-program)
5080         (browse-url-firefox-program):
5081         * mail/sendmail.el (mail-signature-file)
5082         (mail-citation-prefix-regexp):
5083         * international/mule-conf.el (eight-bit):
5084         * international/latexenc.el (latex-inputenc-coding-alist):
5085         * international/fontset.el (x-pixel-size-width-font-regexp):
5086         * emacs-lisp/warnings.el (warning-type-format):
5087         * emacs-lisp/trace.el (trace-buffer):
5088         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
5089         (emacs-lisp-mode-map):
5090         * calendar/holidays.el (holiday-solar-holidays)
5091         (holiday-bahai-holidays, holiday-islamic-holidays)
5092         (holiday-christian-holidays, holiday-hebrew-holidays)
5093         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
5094         (hebrew-holidays-1, holiday-oriental-holidays)
5095         (holiday-general-holidays):
5096         * x-dnd.el (x-dnd-known-types):
5097         * tool-bar.el (tool-bar):
5098         * startup.el (site-run-file):
5099         * shell.el (shell-dumb-shell-regexp):
5100         * rfn-eshadow.el (file-name-shadow-tty-properties)
5101         (file-name-shadow-properties):
5102         * paths.el (remote-shell-program, news-directory):
5103         * mouse.el ([C-down-mouse-3]):
5104         * menu-bar.el (menu-bar-tools-menu):
5105         * jka-cmpr-hook.el (jka-compr-load-suffixes)
5106         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
5107         (jka-compr-compression-info-list):
5108         * isearch.el (search-whitespace-regexp):
5109         * image-file.el (image-file-name-extensions):
5110         * find-dired.el (find-ls-option):
5111         * files.el (directory-listing-before-filename-regexp)
5112         (directory-free-space-args, insert-directory-program)
5113         (list-directory-brief-switches, magic-fallback-mode-alist)
5114         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
5115         (automount-dir-prefix):
5116         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
5117         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
5118         (face-font-registry-alternatives, face-font-registry-alternatives)
5119         (face-font-family-alternatives):
5120         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
5121         (facemenu-foreground-menu, facemenu-face-menu):
5122         * epa-hook.el (epa-file-name-regexp):
5123         * dnd.el (dnd-protocol-alist):
5124         * textmodes/rst.el (auto-mode-alist):
5125         * button.el (default-button): Purecopy strings.
5127 2009-11-06  Glenn Morris  <rgm@gnu.org>
5129         * Makefile.in (ELCFILES): Update.
5131 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5133         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
5134         * emacs-lisp/levents.el: Move to obsolete/levents.el.
5136         * nxml/xsd-regexp.el (xsdre-gen-categories):
5137         * nxml/xmltok.el (xmltok-parse-entity):
5138         * nxml/rng-parse.el (rng-parse-validate-file):
5139         * nxml/rng-maint.el (rng-format-manual)
5140         (rng-manual-output-force-new-line):
5141         * nxml/rng-loc.el (rng-save-schema-location-1):
5142         * nxml/rng-cmpct.el (rng-c-parse-file):
5143         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5144         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
5146 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
5148         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
5149         Remove extra save-excursions and make-variable-buffer-local's.
5150         Suggested by Stefan Monnier.
5152         (verilog-getopt-file, verilog-module-inside-filename-p)
5153         (verilog-set-define): Merge GNU 1.35 and repair changes from
5154         switching to using with-current-buffer.
5156         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
5157         being treated as a number and confusing AUTORESET.
5158         Reported by Dan Dever.
5160         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
5161         Add verilog-auto-ignore-concat to fix backward compatibility with
5162         older verilog-modes.  Reported by Dan Katz.
5164         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
5165         containing closing anchors "...$".
5167         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
5168         Reported by Wade Smith.
5170         (verilog-batch-execute-func): Comment on function usage.
5172 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
5174         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
5175         for labels.
5177         (verilog-label-re, verilog-calc-1): Support proper indent of named
5178         asserts.
5180         (verilog-backward-token, verilog-basic-complete-re)
5181         (verilog-beg-of-statement, verilog-indent-re): Support proper
5182         indent of the assert statement at the beginning of a block of text.
5184         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
5185         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
5186         tokens as begins.
5188 2009-11-05  Glenn Morris  <rgm@gnu.org>
5190         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
5191         Emacs 19.  (Bug#1531)
5192         (byte-compile-fix-header): Update for the above change.
5193         Drop test for epoch::version.
5195         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
5196         * cus-dep.el (custom-make-dependencies):
5197         * finder.el (finder-compile-keywords):
5198         Use autoload-rubric's feature argument.
5200         * calendar/diary-lib.el (top-level): Make load behave more like require.
5202         * vc-git.el (vc-git-stash-map): Move definition before use.
5204 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
5206         * custom.el (custom-declare-group): Purecopy standard-value.
5207         (custom-declare-group): Purecopy custom-prefix.
5209         * international/mule.el (load-with-code-conversion):
5210         Call do-after-load-evaluation unconditionally.
5212         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
5214 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5216         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
5218 2009-11-04  Glenn Morris  <rgm@gnu.org>
5220         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
5221         (byte-compile-compatibility): Remove option.
5222         (byte-compile-close-variables, byte-compile-fix-header)
5223         (byte-compile-insert-header, byte-compile-output-docform)
5224         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
5225         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
5226         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
5227         (byte-compile-insert, byte-compile-defun):
5228         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
5229         (byte-defop-compiler19): Remove.
5230         Without byte-compile-compatibility, the 'emacs19-opcode property is not
5231         used by anything.  Replace all calls with byte-defop-compiler.
5233 2009-11-04  Juri Linkov  <juri@jurta.org>
5235         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
5236         (menu-bar-options-menu): Don't quote the `prop' arg of
5237         `menu-bar-make-mm-toggle'.
5239 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
5241         * calendar/calendar.el (cal-loaddefs):
5242         * calendar/diary-lib.el (diary-loaddefs):
5243         * calendar/holidays.el (hol-loaddefs):
5244         * eshell/esh-module.el (esh-groups): Load rather than require.
5246 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5248         * calendar/todo-mode.el (todo-add-category): Don't hardcode
5249         point-min==1.
5250         (todo-top-priorities): Only display-buffer when called interactively.
5251         (todo-item-start): Don't save excursion point.
5252         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
5253         (todo-insert-item-here, todo-file-item, todo-remove-item):
5254         Adjust uses of todo-item-start and todo-item-end.
5256         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
5257         (autoload-rubric): Don't use any more.
5259         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
5260         and only put a prop if it is non-nil.
5262 2009-11-03  Juri Linkov  <juri@jurta.org>
5264         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
5265         (menu-bar-options-menu): Fix list quoting (Bug#4429).
5267         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
5268         and "Menu" to make top-level menu item visually one unit (like
5269         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
5270         multi-word menu items).  Fix :help string for quit-window.
5272 2009-11-03  Glenn Morris  <rgm@gnu.org>
5274         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
5275         (byte-compile-file-form-define-abbrev-table)
5276         (byte-compile-file-form-custom-declare-variable)
5277         (byte-compile-variable-ref, byte-compile-defvar):
5278         Whether or not a warning is enabled should only affect whether we issue
5279         the warning, not whether or not we collect the relevant data.
5280         Eg warnings can be turned on and off throughout the course of a file.
5282         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
5283         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
5285 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5287         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
5288         * play/mpuz.el (mpuz-create-buffer):
5289         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
5290         (lm-print-y,s,noise, lm-print-w0, lm-init):
5291         * play/gomoku.el (gomoku-prompt-for-move):
5292         * play/fortune.el (fortune-in-buffer):
5293         * play/dissociate.el (dissociated-press):
5294         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
5295         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
5296         * mail/supercite.el (sc-eref-show):
5297         * mail/smtpmail.el (smtpmail-send-it):
5298         * mail/rmailsum.el (rmail-summary-next-labeled-message)
5299         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
5300         (rmail-summary-undelete-many, rmail-summary-rmail-update)
5301         (rmail-summary-goto-msg, rmail-summary-expunge)
5302         (rmail-summary-get-new-mail, rmail-summary-search-backward)
5303         (rmail-summary-add-label, rmail-summary-output-menu)
5304         (rmail-summary-output-body):
5305         * mail/rfc822.el (rfc822-addresses):
5306         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
5307         * mail/mailpost.el (post-mail-send-it):
5308         * mail/hashcash.el (hashcash-generate-payment):
5309         * mail/feedmail.el (feedmail-run-the-queue)
5310         (feedmail-queue-send-edit-prompt-help-first)
5311         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
5312         (feedmail-deduce-address-list):
5313         * eshell/esh-ext.el (eshell-remote-command):
5314         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
5315         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
5316         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
5317         (viper-save-string-in-file, viper-valid-marker):
5318         * emulation/viper-keym.el (viper-toggle-key):
5319         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
5320         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
5321         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
5322         * emulation/viper-cmd.el (viper-exec-form-in-vi)
5323         (viper-exec-form-in-emacs, viper-brac-function):
5324         * emulation/viper.el (viper-delocalize-var):
5325         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
5326         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
5327         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
5328         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
5329         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
5330         * emulation/edt.el (edt-electric-helpify):
5331         * emulation/cua-rect.el (cua--rectangle-aux-replace):
5332         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
5333         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
5334         (cua-indent-to-global-mark-column):
5335         * calendar/diary-lib.el (calendar-mark-1):
5336         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
5337         Use with-current-buffer.
5338         * emulation/viper.el (viper-delocalize-var): Use dolist.
5340 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
5342         * comint.el (comint-replace-by-expanded-history-before-point):
5343         Replace !! with the previous input string literally (Bug#1795).
5345 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
5347         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
5348         to be made up of whitespace.
5350 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
5352         * minibuffer.el (read-file-name): Don't use file dialogs for
5353         remote directories (Bug#99).
5355 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
5357         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
5359 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
5361         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
5362         instead of deleting the window or frame.
5364 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
5366         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
5367         Support face colors.
5369         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
5370         New function.  Support face colors (Bug#1168).
5371         (tex-common-initialization): Use it.
5373         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
5374         mode allows it (Bug#1168).
5376 2009-10-31  Juri Linkov  <juri@jurta.org>
5378         * facemenu.el (list-colors-display): Don't mark buffer as
5379         modified (Bug#3948).
5381 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
5383         * international/mule-diag.el (list-character-sets-1): Minor
5384         message fix (Bug#3526).
5386         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
5387         face property (Bug#4834).
5388         (etags-list-tags, etags-tags-apropos-additional)
5389         (etags-tags-apropos, tags-select-tags-table): Add follow-link
5390         property.
5392         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
5393         items.
5395 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5397         * textmodes/two-column.el (2C-split):
5398         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
5399         * textmodes/tex-mode.el (tex-set-buffer-directory):
5400         * textmodes/spell.el (spell-region, spell-string):
5401         * textmodes/reftex.el (reftex-erase-buffer):
5402         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
5403         * textmodes/reftex-toc.el (reftex-toc-promote-action):
5404         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
5405         (reftex-select-item):
5406         * textmodes/reftex-ref.el (reftex-label-info-update)
5407         (reftex-offer-label-menu):
5408         * textmodes/reftex-index.el (reftex-index-change-entry)
5409         (reftex-index-phrases-info):
5410         * textmodes/reftex-global.el (reftex-create-tags-file)
5411         (reftex-save-all-document-buffers, reftex-ensure-write-access):
5412         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
5413         (reftex-view-crossref-from-bibtex):
5414         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
5415         (reftex-extract-bib-entries-from-thebibliography)
5416         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
5417         * textmodes/refbib.el (r2b-capitalize-title):
5418         (r2b-convert-buffer, r2b-help):
5419         * textmodes/page-ext.el (pages-directory)
5420         (pages-directory-goto-with-mouse):
5421         * textmodes/bibtex.el (bibtex-validate-globally):
5422         * textmodes/bib-mode.el (bib-capitalize-title):
5423         * textmodes/artist.el (artist-clear-buffer, artist-system):
5424         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
5425         (local-set-scheme-interaction-buffer, xscheme-process-filter)
5426         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
5427         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
5428         (xscheme-send-control-g-interrupt, xscheme-start-process)
5429         (xscheme-process-sentinel, xscheme-cd):
5430         * progmodes/verilog-mode.el (verilog-read-always-signals)
5431         (verilog-set-define, verilog-getopt-file)
5432         (verilog-module-inside-filename-p):
5433         * progmodes/sh-script.el:
5434         * progmodes/python.el (python-pdbtrack-get-source-buffer)
5435         (python-pdbtrack-grub-for-buffer, python-execute-file):
5436         * progmodes/octave-inf.el (inferior-octave):
5437         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
5438         (idlwave-shell-compile-helper-routines, idlwave-set-local)
5439         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
5440         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
5441         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
5442         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
5443         (idlwave-shell-filter, idlwave-shell-examine-highlight)
5444         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
5445         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
5446         (idlwave-shell-examine-display, idlwave-shell-run-region)
5447         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
5448         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
5449         * progmodes/idlw-help.el (idlwave-help-get-special-help)
5450         (idlwave-help-get-help-buffer):
5451         * progmodes/gud.el (gud-basic-call, gud-find-class)
5452         (gud-tooltip-activate-mouse-motions-if-enabled):
5453         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
5454         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
5455         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
5456         (ebrowse-tags-next-file):
5457         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
5458         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
5459         (ebnf-eps-finish-and-write):
5460         * progmodes/cpp.el (cpp-edit-save):
5461         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
5462         * progmodes/cc-defs.el (c-emacs-features):
5463         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
5464         (antlr-directory-dependencies):
5465         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
5466         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
5467         (ada-find-any-references, ada-make-filename-from-adaname)
5468         (ada-make-body-gnatstub):
5469         * obsolete/rnews.el (news-list-news-groups):
5470         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
5471         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
5472         * net/rcirc.el (rcirc-debug):
5473         * net/newst-treeview.el (newsticker--treeview-list-add-item)
5474         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
5475         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
5476         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
5477         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
5478         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
5479         (newsticker--treeview-list-clear-highlight)
5480         (newsticker--treeview-list-update-highlight)
5481         (newsticker--treeview-list-highlight-start)
5482         (newsticker--treeview-tree-update-highlight)
5483         (newsticker--treeview-get-selected-item)
5484         (newsticker-treeview-mark-list-items-old)
5485         (newsticker--treeview-set-current-node):
5486         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
5487         * net/newst-backend.el (newsticker--get-news-by-funcall)
5488         (newsticker--get-news-by-wget, newsticker--image-get)
5489         (newsticker--image-sentinel):
5490         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
5491         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
5492         (eudc-ph-close-session):
5493         * net/eudc.el (eudc-save-options):
5494         * language/thai-word.el (thai-update-word-table):
5495         * language/japan-util.el (japanese-string-conversion):
5496         * international/titdic-cnv.el (tsang-quick-converter)
5497         (ziranma-converter, ctlau-converter):
5498         * international/mule-cmds.el (describe-language-environment):
5499         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
5500         (skkdic-convert-postfix, skkdic-convert-prefix):
5501         (skkdic-convert-okuri-nasi, skkdic-convert):
5502         * emacs-lisp/re-builder.el (reb-update-overlays):
5503         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
5504         * emacs-lisp/gulp.el (gulp-send-requests):
5505         * emacs-lisp/find-gc.el (trace-call-tree):
5506         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
5507         (eieio-describe-generic):
5508         * emacs-lisp/eieio-base.el (eieio-persistent-read):
5509         * emacs-lisp/edebug.el (edebug-outside-excursion):
5510         * emacs-lisp/debug.el (debugger-make-xrefs):
5511         * emacs-lisp/cust-print.el (custom-prin1-to-string):
5512         * emacs-lisp/chart.el (chart-new-buffer):
5513         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
5514         Use with-current-buffer.
5515         * textmodes/artist.el (artist-system): Don't call
5516         copy-sequence on a fresh string.
5517         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
5519 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
5521         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
5522         is no item to edit.  (Bug#4820)
5523         (todo-top-priorities): Restore point and restore narrowing in Todo
5524         buffer.  (Bug#4820)
5526 2009-10-31  Glenn Morris  <rgm@gnu.org>
5528         * net/ange-ftp.el (top-level): Don't require dired when compiling.
5529         (comint-last-output-start, comint-last-input-start)
5530         (comint-last-input-end): Don't defvar when compiling.
5531         (ange-ftp-process-file): Use bound-and-true-p.
5533         * pcmpl-rpm.el (top-level): Move provide statement to end.
5534         (pcmpl-rpm): Remove unused custom group.
5536         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
5538         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
5540         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
5541         (byte-compile-warnings): Add `constants' as an option.
5542         (byte-compile-callargs-warn, byte-compile-arglist-warn)
5543         (display-call-tree): Update for byte-compile-fdefinition possibly
5544         returning `(macro lambda ...)'.  (Bug#4778)
5545         (byte-compile-variable-ref, byte-compile-setq-default):
5546         Respect `constants' member of byte-compile-warnings.
5548 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5550         * vc-bzr.el (vc-bzr-revision-keywords): New var.
5551         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
5552         to "submit:".
5554 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
5556         * textmodes/ispell.el (ispell-skip-region-alist):
5557         * international/mule-conf.el (eight-bit):
5558         * international/fontset.el (font-encoding-alist):
5559         * startup.el (pure-space-overflow-message):
5560         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
5561         * paths.el (gnus-nntp-service, rmail-spool-directory)
5562         (term-file-prefix):
5563         * files.el (save-some-buffers-action-alist):
5564         * cmuscheme.el (same-window-buffer-names):
5565         * ielm.el (same-window-buffer-names):
5566         * shell.el (same-window-buffer-names):
5567         * mail/sendmail.el (same-window-buffer-names):
5568         * progmodes/inf-lisp.el (same-window-buffer-names):
5569         * bindings.el (mode-line-client)
5570         (mode-line-column-line-number-mode-map):
5571         * language/tibetan.el (tibetan-precomposition-rule-regexp)
5572         (tibetan-precomposed-regexp): Purecopy string arguments.
5574 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5576         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
5577         (calcDigit-nondigit):
5578         * calc/calc-yank.el (calc-copy-to-buffer):
5579         * calc/calc-units.el (calc-invalidate-units-table):
5580         * calc/calc-trail.el (calc-trail-yank):
5581         * calc/calc-store.el (calc-insert-variables):
5582         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
5583         * calc/calc-prog.el (calc-read-parse-table):
5584         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
5585         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
5586         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
5587         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
5588         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
5589         (calc-graph-name, calc-graph-find-command, calc-graph-view)
5590         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
5591         * calc/calc-ext.el (calc-realign):
5592         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
5593         (calc-embedded-finish-edit, calc-embedded-make-info)
5594         (calc-embedded-finish-command, calc-embedded-stack-change):
5595         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
5597         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
5598         shell-dynamic-complete-filename in preference to
5599         comint-dynamic-complete-filename.
5601         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
5602         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
5603         Don't consider whether the display supports colors.
5604         (bookmark-import-new-list): Use dolist.
5605         (bookmark-bmenu-mode-map): Move initialization into declaration.
5606         (bookmark-bmenu-list): Use dolist, simplify.
5607         (bookmark-show-all-annotations): Use save-selected-window and dolist.
5608         (menu-bar-final-items): Use push.
5610 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
5612         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
5613         it works on remote files.
5614         (vc-hg-diff): Don't pass any `--cwd' argument.
5616 2009-10-27  Kevin Ryde  <user42@zip.com.au>
5618         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
5619         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
5620         (Further to Bug#3921).
5622 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
5624         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
5625         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
5626         calling `tramp-imap-put-file'.  Add file size to the call.
5627         (tramp-imap-get-file-entries): Compute also user name, file size,
5628         and date.
5629         (tramp-imap-handle-insert-directory): Insert uid and gid.
5630         (tramp-imap-handle-file-attributes): Transform uid and gid
5631         according to `id-format'.
5632         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
5633         size in header X-Size.
5635 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
5637         * simple.el (transpose-subr): Give clearer error when the mark
5638         is not set.  (Bug#4807)
5640 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
5642         * net/tramp.el (tramp-perl-file-truename): New defconst.
5643         Perl code contributed by yary <not.com@gmail.com> (tiny change).
5644         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
5645         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
5646         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
5648         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
5649         Ignore `dired-call-process'.
5650         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
5652 2009-10-26  Julian Scheid  <julians37@gmail.com>
5654         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
5655         (tramp-get-remote-readlink): New defun.
5656         (tramp-handle-file-truename): Use it.
5657         (tramp-handle-file-exists-p): Check file-attributes cache, assume
5658         file exists if cache value present.
5659         (tramp-check-cached-permissions): New defun.
5660         (tramp-handle-file-readable-p): Use it.
5661         (tramp-handle-file-writable-p): Likewise.
5662         (tramp-handle-file-executable-p): Likewise.
5663         (tramp-handle-file-name-all-completions): Try using Perl to get
5664         partial completions.  When perl not available, combine `cd' and
5665         `ls' into single remote operation and use shell expansion to get
5666         partial remote directory contents.  Set `file-exists-p' cache for
5667         directory and any files returned by ls.  Change cache handling to
5668         support partial directory contents.  Use error message emitted by
5669         remote `cd' or Perl code for local tramp-error.
5670         (tramp-do-copy-or-rename-file-directly): Avoid separate
5671         tramp-send-command-and-check call.
5672         (tramp-handle-process-file): Merge three remote ops into one.
5673         Do not flush all caches when `process-file-side-effects' is set.
5674         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
5675         file-attributes shows uid/gid to be set already.
5677 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
5679         * textmodes/tex-mode.el (tex-dvi-view-command)
5680         (tex-show-queue-command, tex-open-quote):
5681         * progmodes/ruby-mode.el (auto-mode-alist)
5682         (interpreter-mode-alist): Purecopy strings.
5684         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
5686         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
5687         string for the hook, keymap and abbrev table.
5689         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
5691         * x-dnd.el (x-dnd-xdnd-to-action):
5692         * startup.el (fancy-startup-text, fancy-about-text): Change to
5693         defconst from defvar.
5695         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
5697         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
5698         Purecopy initialization strings.
5700         * mail/sendmail.el (mail-header-separator)
5701         (mail-personal-alias-file):
5702         * mail/rmail.el (rmail-default-dont-reply-to-names)
5703         (rmail-ignored-headers, rmail-retry-ignored-headers)
5704         (rmail-highlighted-headers, rmail-secondary-file-directory)
5705         (rmail-secondary-file-regexp):
5706         * files.el (null-device, file-name-invalid-regexp)
5707         (locate-dominating-stop-dir-regexp)
5708         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
5709         (interpreter-mode-alist): Use mapcar instead of mapc.
5711         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
5713         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
5714         (completion-ignored-extensions):
5715         (debug-ignored-errors): Purecopy strings.
5717 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5719         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
5720         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
5721         (pcomplete--here): Use push.
5723         * subr.el (all-completions): Declare the 4th arg obsolete.
5725 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5727         * pcomplete.el (pcomplete-unquote-argument-function): New var.
5728         (pcomplete-unquote-argument): New function.
5729         (pcomplete--common-suffix): Always pay attention to case.
5730         (pcomplete--table-subvert): Quote and unquote the text.
5731         (pcomplete--common-quoted-suffix): New function.
5732         (pcomplete-std-complete): Use it and pcomplete-begin.
5734         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
5735         we're inside a dedicated or minibuffer window.
5737 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
5739         * bookmark.el: Update documentation, especially documentation
5740         of `bookmark-alist' and of the bookmark file format.
5741         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
5743 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
5745         * mail/emacsbug.el (report-emacs-bug): Clarify that the
5746         keybindings apply to the mail buffer (Bug#4003).  Shrink help
5747         window to buffer.
5749         * whitespace.el (whitespace-mode, whitespace-newline-mode)
5750         (global-whitespace-mode, global-whitespace-newline-mode)
5751         (whitespace-toggle-options, global-whitespace-toggle-options):
5752         Doc fix (Bug#3660).
5754         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
5755         of xmltok-start before the end tag was inserted (Bug#2840).
5757         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
5758         patterns that are preceded by an open-paren (Bug#1320).
5760 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
5762         * files.el (delete-directory): Delete symlinks to directories with
5763         delete-file (Bug#4739).
5765 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
5767         * vc.el (vc-backend-for-registration): Rename from
5768         vc-get-backend-for-registration.  Update callers.
5770         * international/mule-cmds.el (set-language-info-alist):
5771         Purecopy lang-env.
5772         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
5773         (charset): Purecopy the name.
5774         (define-char-code-property): Purecopy string arguments.
5776         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
5777         Purecopy string arguments.
5779         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5780         * ediff-hook.el (menu-bar-ediff-menu):
5781         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
5782         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
5784 2009-10-24  Glenn Morris  <rgm@gnu.org>
5786         * comint.el (comint-dynamic-list-completions):
5787         * term.el (term-dynamic-list-completions): Use choose-completion rather
5788         than obsolete alias mouse-choose-completion.
5790         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
5791         file-cache-choose-completion.
5792         (file-cache-choose-completion): Handle an optional event argument.
5793         (file-cache-mouse-choose-completion): Make it an obsolete alias.
5795         * progmodes/octave-mod.el (octave-complete-symbol):
5796         Use choose-completion if mouse-choose-completion is ever removed.
5798         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
5799         use.
5801         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
5802         compiler.
5804         * vc-hooks.el (vc-responsible-backend): Fix declaration.
5806 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5808         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
5809         Ignore `pred' now that we receive one.
5810         Handle test-completion specially.
5812 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
5814         * vc.el (vc-responsible-backend): Throw an error if not backend is
5815         found.  Remove the REGISTER argument.  Move the code dealing with
5816         REGISTER ...
5817         (vc-get-backend-for-registration): ... here.  New function.
5818         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
5819         of vc-responsible-backend, pass the file name instead of the
5820         directory name.
5822 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5824         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
5825         New funs.
5826         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
5827         (pcomplete-comint-setup): Don't modify a global var via
5828         accidental side-effects.
5829         (pcomplete-shell-setup): Adjust call accordingly.
5830         (pcomplete-parse-comint-arguments): Use push.
5832 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
5834         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
5835         Allow uncapitalized info node names (Bug#3921).
5837         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
5838         to the DEBUG file (Bug#3781).
5840 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
5842         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
5843         dictionary entry (Bug#4579).
5845 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
5847         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
5848         from `rfn-eshadow-update-overlay-hook' when unloading.
5849         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
5850         "rsyncc".  Adjust doc string.
5851         (tramp-temp-buffer-file-name): New buffer-local defvar.
5852         (tramp-handle-insert-file-contents, tramp-handle-write-region):
5853         Keep temporary file when indicated by method ("rsync" and
5854         "rsyncc").
5855         (tramp-handle-write-region): Handle APPEND.
5856         (tramp-delete-temp-file-function): New defun.  Added to
5857         `kill-buffer-hook'.
5859 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
5861         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
5863 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
5865         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
5866         (color-name-rgb-alist, tty-standard-colors)
5867         (tty-color-mode-alist): Change to defconst.
5869         * simple.el (mark-inactive): Purecopy message.
5871         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
5872         (global-map, yank-menu):
5873         * textmodes/ispell.el (ispell-menu-map):
5874         * net/eudc.el (eudc-tools-menu):
5875         * international/mule-cmds.el (describe-language-environment-map)
5876         (setup-language-environment-map, set-coding-system-map)
5877         (mule-menu-keymap):
5878         * vc-hooks.el (vc-menu-entry, vc-menu-map):
5879         * replace.el (occur-mode-map):
5880         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
5882 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
5884         * calc/calc.el (math-read-number, math-read-number-simple): Use
5885         `save-match-data'.
5887 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5889         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
5890         rather than fiddling with global-map bindings, since it should only
5891         affect per-terminal settings.
5892         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
5894         * minibuffer.el (completion-table-with-terminator): Allow to specify
5895         the terminator-regexp.
5897         * simple.el (switch-to-completions): Look for *Completions* in other
5898         frames as well.
5900         * pcomplete.el: Allow the use of completion-tables.
5901         (pcomplete-std-complete): New command.
5902         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
5903         (pcomplete--here): Use a function for `form' rather than an expression,
5904         so it can be byte-compiled.
5905         (pcomplete-here, pcomplete-here*): Adjust accordingly.
5906         Add edebug declaration.
5907         (pcomplete-show-completions): Remove unused var `curbuf'.
5908         (pcomplete-do-complete, pcomplete-stub):
5909         Don't assume `completions' is a list of strings any more.
5911 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
5913         * find-dired.el (find-name-arg): Fix typo in docstring.
5915 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5917         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
5918         (pcmpl-linux-fs-types): Same, and update to new modules layout.
5920         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
5921         pcomplete-entries.
5923         * comint.el (comint-read-input-ring, comint-write-input-ring)
5924         (comint-substitute-in-file-name)
5925         (comint-dynamic-complete-as-filename)
5926         (comint-dynamic-simple-complete)
5927         (comint-dynamic-list-filename-completions)
5928         (comint-dynamic-list-completions)
5929         (comint-redirect-results-list-from-process): Minor simplifications.
5931 2009-10-21  Kevin Ryde  <user42@zip.com.au>
5933         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
5934         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
5935         the first form.  And insert a blank line after ";;; Code" since
5936         that's usual style.  (Bug#4612)
5938         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
5940 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5942         * minibuffer.el (completion-table-with-terminator): Properly implement
5943         boundaries, in case `terminator' appears in the suffix.
5944         (completion--embedded-envvar-table): Don't return boundaries if
5945         there's no valid completion.  Simplify.
5946         (completion-file-name-table): New completion table extracted from
5947         completion--file-name-table.
5948         (completion--file-name-table): Use it.
5949         (read-file-name-predicate): Declare obsolete.
5950         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
5951         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
5952         completion-file-name-table, and use the `pred' argument.
5953         * files.el (locate-file-completion-table): Use the `pred' arg rather
5954         than read-file-name-predicate.
5955         (abbreviate-file-name): Use \` rather than ^ for BOS.
5957 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
5959         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
5960         vc-responsible-backend to register, it causes problems.
5962 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5964         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
5966 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
5968         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
5969         (tramp-smb-handle-file-attributes): Use it.
5970         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
5971         (tramp-smb-handle-insert-directory): Use `mapc' rather than
5972         `mapcar'.  Use `tramp-smb-get-stat-capability'.
5973         Add `dired-filename' text properties.
5974         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
5975         (tramp-smb-maybe-open-connection): Simplify check for smbclient
5976         version.
5978 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5980         * subr.el (read-key-delay): Reduce to 0.01.
5981         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
5982         (bug#4751).
5984 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5986         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
5988         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
5989         (Info-menu): Remove unused vars `last' and `completions'.
5990         (Info-index-nodes): Remove unused var `node'.
5992         * info.el (Info-complete-menu-item): Use complete-with-action.
5994 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
5996         Make vc-annotate work through copies and renames.
5997         * vc-annotate.el (vc-annotate-extract-revision-at-line):
5998         Return the file name too.
5999         (vc-annotate-revision-at-line)
6000         (vc-annotate-find-revision-at-line)
6001         (vc-annotate-revision-previous-to-line)
6002         (vc-annotate-show-log-revision-at-line): Update to get the file
6003         name from vc-annotate-extract-revision-at-line.
6004         (vc-annotate-show-diff-revision-at-line-internal): Change the
6005         argument to mean whether to show a file diff or not.  Get the file
6006         name from vc-annotate-extract-revision-at-line.
6007         (vc-annotate-show-diff-revision-at-line):
6008         Update vc-annotate-show-diff-revision-at-line call.
6009         (vc-annotate-warp-revision): Add an optional file argument.
6011         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
6012         (vc-git-annotate-extract-revision-at-line): Also return the file
6013         name if found.
6015         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
6016         command.  Remove unused code.
6017         (vc-hg-annotate-re): Update to match --follow output.
6018         (vc-hg-annotate-extract-revision-at-line): Also return the file
6019         name if found.
6021         * vc.el: Update annotate-extract-revision-at-line documentation.
6023 2009-10-18  Kevin Ryde  <user42@zip.com.au>
6025         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
6026         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
6028         * net/browse-url.el (browse-url): Identify alist with "consp and
6029         not functionp" and let all other things go down the `apply' leg,
6030         as suggested by Stefan.  (Further to bug#4531.)
6032 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
6034         * minibuffer.el (read-file-name): Check for repeat before putting
6035         a default argument in file-name-history (Bug#4657).
6037         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
6038         read syntax (Bug#4737).
6040         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
6042 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
6044         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
6045         (html-tag-alist, html-tag-help): Add descriptions for undocumented
6046         entries and make note of obsolete tags.
6048 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6050         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
6052 2009-10-18  Glenn Morris  <rgm@gnu.org>
6054         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
6055         grep, so that binary files (eg international/uni-bidi.el) can match.
6056         Remove test for "UnicodeData" files, since it is hopefully unnecessary
6057         now, and in any case the file header format has changed.
6059 2009-10-17  Glenn Morris  <rgm@gnu.org>
6061         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
6062         (flyspell-get-word, flyspell-large-region)
6063         (flyspell-auto-correct-previous-word): Doc/error message fixes.
6065 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
6067         * Makefile.in (ELCFILES): Add ede/shell.
6069 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
6071         * term/common-win.el (x-colors): Purecopy it.
6073 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6075         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
6076         permissive for when the buffer is empty.
6077         (tar-header-block-tokenize): Decode the username and groupname.
6078         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
6080 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6082         * international/mule-cmds.el (select-safe-coding-system): If the file
6083         has a coding cookie, use it regardless of any other setting (bug#4712).
6085 2009-10-17  Glenn Morris  <rgm@gnu.org>
6087         * foldout.el (foldout-mouse-swallow-events):
6088         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
6090         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
6091         (dired-keep-marker-copy, dired-keep-marker-hardlink)
6092         (dired-keep-marker-symlink, dired-dwim-target)
6093         (dired-copy-preserve-time): Do not autoload these defcustoms.
6095         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
6096         messages from messing up the file coding.  (Bug#4623)
6098 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
6100         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
6101         if no match is found for the current dictionary.  (Bug#4578)
6103         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
6104         optional, since that is how it is documented, and this is often called
6105         with a nil argument.  (Bug#4577)
6106         (flyspell-external-point-words, flyspell-auto-correct-word)
6107         (flyspell-correct-word-before-point, flyspell-word-search-forward)
6108         (flyspell-word-search-backward): Remove nil argument in calls to
6109         flyspell-get-word, since it is not needed now.
6111 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
6113         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
6115 2009-10-16  Glenn Morris  <rgm@gnu.org>
6117         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
6119 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
6121         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
6122         (ange-ftp-file-size): New function.
6123         (ange-ftp-file-attributes): Use it.
6125 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
6127         * net/tramp-smb.el (tramp-smb-version): New defvar.
6128         (tramp-smb-maybe-open-connection): Use it, in order to avoid
6129         repeated checks.
6131 2009-10-16  Glenn Morris  <rgm@gnu.org>
6133         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
6134         Maybe copy some custom properties from old to new name.  (Bug#4706)
6136 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
6138         * subr.el (error, sit-for, start-process-shell-command)
6139         (start-file-process-shell-command): Set the calling convention
6140         after the function definition.
6142 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6144         * subr.el (error, sit-for, start-process-shell-command)
6145         (start-file-process-shell-command): Use the new
6146         set-advertised-calling-convention feature.
6148 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
6150         * international/ucs-normalize.el (ucs-normalize-version):
6151         Change to 1.2.
6152         (check-range): Adjust for Unicode 5.2.
6154 2009-10-15  Juri Linkov  <juri@jurta.org>
6156         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
6157         to the `menu-item' format.
6159 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
6161         * net/tramp.el (tramp-replace-environment-variables): Do not fail
6162         if the environment variable does not exist.
6164         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6165         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
6166         parameter.
6167         (tramp-smb-handle-add-name-to-file)
6168         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6169         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6170         (tramp-smb-handle-file-attributes)
6171         (tramp-smb-do-file-attributes-with-stat)
6172         (tramp-smb-handle-file-local-copy)
6173         (tramp-smb-handle-insert-directory)
6174         (tramp-smb-handle-make-directory)
6175         (tramp-smb-handle-make-directory-internal)
6176         (tramp-smb-handle-make-symbolic-link)
6177         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
6178         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
6179         (tramp-smb-maybe-open-connection): Apply the changed parameters.
6180         (tramp-smb-read-file-entry): Read Disk names in compressed format.
6181         Handle long file names.
6182         (tramp-smb-get-cifs-capabilities): Check, whether the connection
6183         process is running.
6184         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
6185         Read share names with "-g" option.
6187 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
6189         * net/rcirc.el (rcirc-view-log-file): New command.
6190         (rcirc-track-minor-mode-map): Remove C-c ` binding.
6191         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
6192         specified.
6194 2009-10-15  Glenn Morris  <rgm@gnu.org>
6196         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
6197         from the second command-line argument.
6198         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
6199         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
6200         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
6201         w32-batch-update-autoloads.
6202         * emacs-lisp/autoload.el (autoload-make-program): New variable.
6203         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
6205         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
6206         the headers cannot be located.  Simplify, subtracting superflous
6207         save-excursions.
6209 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6211         Replace completion-base-size by completion-base-position to fix bugs
6212         such as (bug#4699).
6213         * simple.el (completion-base-position): New var.
6214         (completion-base-size): Mark as obsolete.
6215         (choose-completion): Make it work for mouse events as well.
6216         Pass the new base-position to choose-completion-string.
6217         (choose-completion-guess-base-position): New function, extracted from
6218         choose-completion-delete-max-match.
6219         (choose-completion-delete-max-match): Use it.  Make obsolete.
6220         (choose-completion-string): Use the new base-position info.
6221         (completion-root-regexp): Delete.
6222         (completion-setup-function): Preserve completion-base-position.
6223         Eliminate obsolete base-size manipulation.
6224         * minibuffer.el (display-completion-list): Don't mess with base-size.
6225         (minibuffer-completion-help): Set completion-base-position instead.
6226         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
6227         choose-completion.
6228         * textmodes/bibtex.el (bibtex-complete):
6229         * emacs-lisp/crm.el (crm--choose-completion-string):
6230         Adjust to new calling convention.
6231         * complete.el (partial-completion-mode): Use minibufferp to avoid
6232         bumping into incompatible change to choose-completion-string-functions.
6233         * ido.el (ido-choose-completion-string): Make its calling convention
6234         more permissive.
6235         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
6236         base-size manipulation.
6237         (comint-dynamic-list-input-ring): Use dotimes and push.
6238         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
6239         fundamental-mode.  Use `or'.
6241 2009-10-14  Juri Linkov  <juri@jurta.org>
6243         * misearch.el (multi-isearch-next-buffer-from-list)
6244         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
6246 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6248         * Makefile.in (compile-onefile): Load `bytecomp' rather than
6249         `bytecomp.el'.
6251         * minibuffer.el (completion-pcm--merge-completions): Make sure the
6252         string we return is all made up of text from the completions rather
6253         than part from the completions and part from the input (bug#4219).
6255         * ido.el (ido-everywhere): Use define-minor-mode.
6257         * buff-menu.el (list-buffers, ctl-x-map):
6258         Mark the entry points with ;;;###autoload cookies.
6260 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
6262         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
6263         correctly in the detached head case.
6264         (vc-git-print-log): Remove unused binding.
6266         * vc.el (vc-responsible-backend): When a directory is passed for
6267         for registration create a VC repository if no backend is
6268         responsible for the directory argument.
6269         (vc-deduce-fileset): Tell vc-responsible-backend to register.
6271         * vc.el: Move comments about RCS and SCCS ...
6272         * vc-rcs.el:
6273         * vc-sccs.el: ... here, respectively.
6275 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6277         * minibuffer.el (completion--file-name-table): Return nil if there's
6278         no file completion, even if substitute-in-file-name changed
6279         the string (bug#4708).
6281 2009-10-13  Juri Linkov  <juri@jurta.org>
6283         * files-x.el (read-file-local-variable-value): Don't filter out
6284         minor modes from mode name completion (bug#4664).
6286 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
6288         * international/mule-cmds.el (ucs-names): Remove exclusion of
6289         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
6291 2009-10-13  Kenichi Handa  <handa@m17n.org>
6293         * international/uni-name.el: Regenerated.
6295 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
6297         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
6298         should be automatically buffer-local, but isn't.)
6300 2009-10-12  Sam Steingold  <sds@gnu.org>
6302         * progmodes/compile.el (compilation-next-error-function): Fix the
6303         timestamps if the buffer has been visited before.
6304         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
6305         non-anchored patterns, like the perl one (bug#3928).
6307 2009-10-12  Glenn Morris  <rgm@gnu.org>
6309         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
6310         Let-bind `size'.
6312 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
6314         * proced.el (proced-unload-function): New function.
6316         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
6317         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
6318         Doc fix.
6320         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
6322 2009-10-11  Juri Linkov  <juri@jurta.org>
6324         * files-x.el (read-file-local-variable-value):
6325         Provide default value only for bound variables (bug#4664).
6327 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
6329         * net/tramp.el (tramp-local-host-p): Function shall return nil for
6330         connection methods like smb.
6332         * net/tramp-cache.el (tramp-flush-connection-property): The hash
6333         can be empty.
6335         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6336         (tramp-smb-file-name-handler-alist): Add handlers for
6337         `add-name-to-file', `make-symbolic-link'.
6338         (tramp-smb-handle-add-name-to-file)
6339         (tramp-smb-do-file-attributes-with-stat)
6340         (tramp-smb-handle-make-symbolic-link)
6341         (tramp-smb-get-cifs-capabilities): New defuns.
6342         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6343         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6344         (tramp-smb-handle-file-local-copy)
6345         (tramp-smb-handle-make-directory-internal)
6346         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
6347         The file name syntax depends on cifs capabilities.
6348         (tramp-smb-handle-file-attributes):
6349         Call `tramp-smb-do-file-attributes-with-stat' if possible.
6350         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
6351         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
6353 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
6355         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
6356         (eieio-defclass): Apply deftype handler and setf-method properties
6357         directly.
6358         (eieio-add-new-slot): Avoid union function from cl library.
6359         (eieio--typep): New function.
6360         (eieio-perform-slot-validation): Use it.
6362 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
6364         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
6365         Update documentation to refer to the variables documented in r1.135.
6366         (Bug#4188)
6368 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
6370         * bookmark.el (Info-suffix-list): Remove this unused variable.
6371         (bookmark-current-point): Remove this obsolete variable.
6372         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
6373         Adjust for removal of bookmark-current-point.
6375         (bookmarks-already-loaded, bookmark-current-buffer)
6376         (bookmark-yank-point): Document.  (Bug#4188)
6378 2009-10-10  Glenn Morris  <rgm@gnu.org>
6380         * frame.el (frame-height): Doc fix.
6382         * calendar/calendar.el (calendar-split-width-threshold): New option.
6383         (calendar-basic-setup): Use calendar-split-width-threshold.
6385 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
6387         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
6388         Ideographic Supplement" range (U+1F200..U+1F2FF).
6390 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6392         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
6393         since the list will have been rebuilt anyway.  (Bug#4349)
6395 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6397         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
6398         (bookmark-bmenu-execute-deletions): Don't save here, as
6399         bookmark-delete will now do so if necessary.
6400         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
6401         (Bug#4348)
6403 2009-10-09  Glenn Morris  <rgm@gnu.org>
6405         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
6407 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6409         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
6410         (bookmark-jump-other-window): Just invoke bookmark-jump with new
6411         argument now, so the two function's behaviors will match.  (Bug#3645)
6413 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
6415         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
6416         (tramp-file-name-real-host, tramp-file-name-port):
6417         Apply `save-match-data'.
6419         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
6420         case both directories are remote.
6421         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
6422         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
6424 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
6426         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
6428 2009-10-07  Glenn Morris  <rgm@gnu.org>
6430         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
6431         of concat.
6433 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6435         * files-x.el (read-file-local-variable): Include some
6436         non-user-variables in the completion table (bug#4664).
6438 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
6440         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
6441         message.
6443         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6444         (tramp-smb-file-name-handler-alist): Add handler for
6445         `copy-directory', `expand-file-name', `set-file-modes'.
6446         (tramp-smb-handle-copy-directory)
6447         (tramp-smb-handle-expand-file-name)
6448         (tramp-smb-handle-set-file-modes): New defuns.
6449         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
6450         (tramp-smb-handle-file-attributes): Simplify check for retrieving
6451         entry.
6452         (tramp-smb-handle-insert-directory): Don't flush the cache.
6453         (tramp-smb-maybe-open-connection): Check for samba client and
6454         server versions.
6456 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
6458         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
6459         to not error out of search for "^lisp=" fails.
6461 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
6463         * makefile.w32-in (WINS_UPDATES): New macro.
6464         (custom-deps, finder-data, autoloads): Use it.
6466 2009-10-07  Glenn Morris  <rgm@gnu.org>
6468         * Makefile.in (autoloads): Revert previous change.
6469         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
6470         the list of preloaded files passed on the command-line, get
6471         it from src/Makefile.
6473         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
6474         show the original buffer rather than a random one.
6476 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
6478         * help.el (describe-no-warranty): Place point in a slightly better
6479         position in the GPLv3 text.
6481 2009-10-06  Sam Steingold  <sds@gnu.org>
6483         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
6484         the comm attribute is present before calling regexp-quote.
6486 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
6488         * play/animate.el (animate-string): For good effect, make sure
6489         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
6491         * play/animate.el (animate-sequence, animate-birthday-present):
6492         * misc.el (butterfly): Don't set `indent-tabs-mode'.
6494 2009-10-06  Glenn Morris  <rgm@gnu.org>
6496         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
6498         * emacs-lisp/autoload.el (autoload-excludes): New variable.
6499         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
6500         (batch-update-autoloads): Process a string value of autoload-excludes,
6501         set during the build process.
6502         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
6504         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
6505         inside with-parsed...  macro so that `v' is defined.
6507         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
6508         * progmodes/fortran.el (fortran-end-of-block)
6509         (fortran-beginning-of-block):
6510         Also push mark in the macro case.
6512         * emerge.el (emerge-show-file-name):
6513         * calc/calc.el (calc-quit):
6514         * calc/calc-misc.el (calc-big-or-small):
6515         * calc/calc-graph.el (calc-graph-view):
6516         * calc/calc-ext.el (calc-reset):
6517         * calendar/calendar.el (calendar-basic-setup):
6518         Use window-full-height-p.
6520         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
6521         header we don't understand, don't insert another.  (Bug#4624)
6522         If changing mime charset, insert the new one in the right place.
6524 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
6526         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
6527         (cal-tex-cursor-month): Correctly increment the end date for diary and
6528         holiday listing.  (Bug#4626)
6530 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6532         * help-fns.el (describe-function-1): Don't burp if the function is not
6533         a symbol.
6535 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
6537         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
6538         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
6539         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
6540         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
6542         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
6543         (eieio-default-superclass): Reflow docstrings.
6544         (this, class-option-assoc, defclass, eieio-class-un-autoload)
6545         (eieio-unbind-method-implementations, defmethod)
6546         (eieio-validate-slot-value, eieio-validate-class-slot-value)
6547         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
6548         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
6549         (eieio-slot-originating-class-p, eieio-slot-name-index)
6550         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
6551         (constructor, initialize-instance, no-next-method, object-print)
6552         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
6553         Fix typos in docstrings.
6554         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
6555         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
6556         (next-method-p): Doc fixes.
6557         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
6558         Fix typos in error messages.
6559         (eieio-defmethod): Fix typo in description of generic method.
6561         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
6562         (eieio-persistent-save-interactive, slot-missing):
6563         Fix typos in docstrings.
6564         (eieio-instance-inheritor-slot-boundp): Doc fix.
6566         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
6567         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
6569         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
6570         (eieio-custom-object-apply-reset):
6571         Fix typos in docstrings and error messages.
6573         * emacs-lisp/eieio-datadebug.el (data-debug-show):
6574         Fix typo in docstring.
6576         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
6577         (eieio-browse-tree): Doc fix.
6578         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
6579         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
6580         Fix typos in docstrings.
6582         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
6583         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
6584         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
6585         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
6586         Reflow docstrings.
6588 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
6590         * vc-hg.el (log-view-vc-backend): Declare for compiler.
6591         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
6592         Set log-view-vc-backend so that diff can work.
6594         * log-view.el (log-view-diff): Use vc-diff-internal instead of
6595         vc-version-diff.
6596         (vc-diff-internal): Autoload this instead of vc-version-diff.
6598 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
6600         * simple.el (eval-expression): Doc fix.
6602         * progmodes/cwarn.el (cwarn-mode): Doc fix.
6604 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
6606         * files.el (directory-files-no-dot-files-regexp): New defconst.
6607         (delete-directory): Use it.
6608         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
6610         * net/tramp.el (tramp-verbose): Fix docstring.
6611         (tramp-methods): Add recursive option to `tramp-copy-args'.
6612         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
6613         "scp1_old", "scp2_old", "rsync", "rsyncc".
6614         (tramp-default-method): Check also for `auth-source-user-or-password'.
6615         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
6616         Add handler for `copy-directory'.
6617         (tramp-handle-copy-directory): New defun.
6618         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
6619         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
6620         Optimize sent command.
6622 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6624         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
6625         window if necessary.
6627         * calendar/calendar.el (calendar-basic-setup): Don't call
6628         switch-to-buffer in a dedicated window.
6630 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
6632         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
6633         don't do anything related to relocating, just return nil.
6634         (bookmark-error-no-filename): New error.
6635         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
6636         bookmark has no file.  Don't even attempt to handle things that
6637         are not files; the whole point of custom handlers is to keep that
6638         knowledge elsewhere anyway.  Tighten some comments.
6639         (bookmark-file-or-variation-thereof): Remove now-unused function.
6640         (bookmark-location): Doc string fix.
6641         (Bug#4250)
6643 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6645         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
6646         don't use a file dialog, because they usually don't know how to read
6647         a directory target from the user.  (Bug#4230)
6648         Also, make sure the prompt can display directories as well as files.
6650 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6652         * bookmark.el (bookmark-set, bookmark-buffer-name):
6653         Improve doc strings.  (Bug#1193)
6655 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6657         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
6658         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
6659         (bookmark-get-annotation, bookmark-set-annotation)
6660         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
6661         (bookmark-set-position, bookmark-get-front-context-string)
6662         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
6663         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
6664         (bookmark-jump-other-window, bookmark-handle-bookmark)
6665         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
6666         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
6667         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
6668         Improve doc strings to say whether bookmark can be a string or
6669         a record or both, and make other consistency and clarity fixes.
6670         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
6671         (bookmark-default-annotation-text, bookmark-yank-word)
6672         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
6673         (bookmark-import-new-list, bookmark-maybe-rename)
6674         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
6675         (bookmark-bmenu-bookmark): Give these doc strings.
6676         (bookmark-bmenu-check-position): Give this a doc string, but also
6677         add a FIXME comment about how the function may be pointless.
6678         (bookmark-default-handler): Rework doc string and change a
6679         parameter name, to clarify that this takes a bookmark record
6680         not a bookmark name.
6681         (bookmark-set): Change a parameter name to indicate its meaning,
6682         and improve the doc string a bit.
6683         (Bug#4188)
6685 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6687         * bookmark.el (bookmark-alist): Document the new `handler' element
6688         in the param alist.
6689         (bookmark-make-record-function): Adjust documentation for above.
6690         (Bug#4193)
6692 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6694         * info.el (Info-bookmark-make-record): Document this function.
6695         (Info-bookmark-jump): Document with a doc string, not just a comment.
6696         (Bug#4203)
6698 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
6700         * files.el (copy-directory): New defun.
6702         * dired-aux.el (dired-copy-file-recursive): Use it.
6704 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
6706         * files-x.el (modify-dir-local-variable)
6707         (copy-dir-locals-to-file-locals-prop-line): Fix typos in
6708         docstrings.
6710         * recentf.el (recentf-unload-function): New function.
6712 2009-10-04  Glenn Morris  <rgm@gnu.org>
6714         * window.el (window-full-height-p): Add doc string.
6716 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
6718         * window.el (window-full-height-p): New function.  (Bug#4543)
6720 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
6722         * vc.el: Remove commented out code.
6723         (vc-derived-from-dir-mode): Remove, unused.
6724         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
6726 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
6728         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
6729         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
6730         there could be recursive loading when `default-directory' is a
6731         remote file name.  (Bug#4614)
6733 2009-10-03  Glenn Morris  <rgm@gnu.org>
6735         * calendar/calendar.el (calendar-basic-setup): Handle the case where
6736         the frame is wide.
6737         (calendar-generate-window): Test for shrinkability rather than width.
6739         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
6740         reusing existing buffers, in case we happen to visit two files with the
6741         same basename.  (Bug#4593)
6743 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
6745         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
6746         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
6747         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
6748         subdirs of cedet as well.
6749         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
6751 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6753         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
6754         Obey advertised-signature-table.
6756         * help-fns.el (help-function-arglist): Don't check
6757         advertised-signature-table.
6758         (describe-function-1): Do it here instead so it also applies to subrs.
6760 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
6762         * simple.el (start-file-process): Say in the doc-string, that file
6763         handlers might not support pty association, if PROGRAM is nil.
6765         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
6766         HOST and USER are strings.  They are nil, when there are
6767         incomplete entries in ~/.netrc, for example.
6768         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
6769         root directory ("device busy" error otherwise).
6771         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
6772         Flush file properties of created directory.
6774 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
6776         * makefile.w32-in (WINS_BASIC): Remove cedet.
6777         (WINS_CEDET): Add cedet.
6778         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
6780 2009-10-02  Kevin Ryde  <user42@zip.com.au>
6782         * net/browse-url.el (browse-url): Pass any symbol in
6783         browse-url-browser-function to `apply', since if you've mistakenly put
6784         an unbound symbol then the error is clearer.  (Bug#4531)
6786 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
6788         * allout.el (allout-init, allout-back-to-current-heading)
6789         (allout-beginning-of-current-entry, allout-ascend-to-depth)
6790         (allout-ascend, allout-up-current-level, allout-end-of-level)
6791         (allout-previous-visible-heading, allout-forward-current-level)
6792         (allout-backward-current-level, allout-show-children):
6793         * apropos.el (apropos-describe-plist):
6794         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
6795         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
6796         * completion.el (add-completion, add-permanent-completion):
6797         * descr-text.el (describe-text-category, describe-char):
6798         * desktop.el (desktop-lazy-abort):
6799         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
6800         * dired.el (dired-build-subdir-alist):
6801         * ediff.el (ediff-version):
6802         * elide-head.el (elide-head, elide-head-show):
6803         * emerge.el (emerge-version):
6804         * env.el (getenv):
6805         * face-remap.el (variable-pitch-mode):
6806         * faces.el (describe-face):
6807         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
6808         (dired-at-point):
6809         * files.el (find-file-existing, auto-save-mode):
6810         * font-lock.el (font-lock-fontify-buffer):
6811         * help-fns.el (describe-function, describe-variable)
6812         (describe-syntax, describe-categories):
6813         * help.el (view-lossage, describe-bindings, describe-key)
6814         (describe-mode):
6815         * hexl.el (hexl-current-address):
6816         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
6817         * info.el (Info-goto-emacs-key-command-node):
6818         * log-edit.el (log-edit-insert-cvs-template)
6819         (log-edit-insert-cvs-rcstemplate):
6820         * menu-bar.el (menu-bar-mode):
6821         * mouse.el (mouse-appearance-menu):
6822         * newcomment.el (comment-indent-new-line):
6823         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
6824         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
6825         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
6826         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
6827         * recentf.el (recentf-mode):
6828         * savehist.el (savehist-mode, savehist-save):
6829         * shadowfile.el (shadow-copy-files):
6830         * simple.el (kill-ring-save, next-line, previous-line)
6831         (normal-erase-is-backspace-mode):
6832         * strokes.el (strokes-update-window-configuration)
6833         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
6834         (strokes-xpm-for-stroke):
6835         * time.el (emacs-uptime, emacs-init-time):
6836         * tutorial.el (tutorial--describe-nonstandard-key)
6837         (tutorial--detailed-help):
6838         * type-break.el (type-break-mode)
6839         (type-break-mode-line-message-mode, type-break-query-mode)
6840         (type-break-guesstimate-keystroke-threshold):
6841         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
6842         * version.el (emacs-version):
6843         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
6844         * winner.el (winner-mode):
6845         * calendar/timeclock.el (timeclock-in, timeclock-out)
6846         (timeclock-status-string, timeclock-change)
6847         (timeclock-workday-remaining-string)
6848         (timeclock-workday-elapsed-string)
6849         (timeclock-when-to-leave-string):
6850         * calendar/todo-mode.el (todo-add-category):
6851         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
6852         * emacs-lisp/autoload.el (update-file-autoloads):
6853         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
6854         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
6855         (checkdoc-message-text, checkdoc-defun):
6856         * emacs-lisp/debug.el (debugger-list-functions):
6857         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
6858         * emacs-lisp/eieio-opt.el (eieio-describe-class)
6859         (eieio-describe-generic):
6860         * emacs-lisp/lisp-mnt.el (lm-synopsis):
6861         * emacs-lisp/shadow.el (list-load-path-shadows):
6862         * emulation/cua-base.el (cua-mode):
6863         * emulation/edt.el (edt-set-scroll-margins):
6864         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
6865         (tpu-toggle-regexp, tpu-toggle-search-direction)
6866         (tpu-toggle-rectangle, tpu-toggle-control-keys):
6867         * emulation/tpu-extras.el (tpu-set-scroll-margins):
6868         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
6869         (viper-set-parsing-style-toggling-macro)
6870         (viper-set-emacs-state-searchstyle-macros):
6871         * emulation/viper.el (viper-set-hooks):
6872         * eshell/esh-mode.el (eshell-truncate-buffer):
6873         * international/mule-cmds.el (prefer-coding-system)
6874         (describe-input-method, describe-language-environment):
6875         * international/mule-diag.el (list-character-sets)
6876         (describe-character-set, describe-coding-system)
6877         (describe-fontset, list-fontsets, list-input-methods):
6878         * mail/sendmail.el (mail-signature):
6879         * net/ange-ftp.el (ange-ftp-copy-file):
6880         * net/browse-url.el (browse-url):
6881         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
6882         * net/quickurl.el (quickurl-add-url):
6883         * net/rcirc.el (names, topic):
6884         * net/xesam.el (xesam-mode):
6885         * play/5x5.el (5x5-new-game):
6886         * play/yow.el (apropos-zippy):
6887         * progmodes/ada-mode.el (ada-mode-version):
6888         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
6889         (f90-end-of-block)
6890         (f90-beginning-of-block):
6891         * progmodes/fortran.el (fortran-end-of-block)
6892         (fortran-beginning-of-block):
6893         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
6894         * progmodes/python.el (python-describe-symbol, python-shell):
6895         * term/ns-win.el (ns-print-buffer):
6896         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
6897         * textmodes/flyspell.el (flyspell-mode-on):
6898         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
6899         (pages-directory-for-addresses):
6900         * textmodes/table.el (table-recognize-cell)
6901         (table-query-dimension, table-generate-source)
6902         (table-insert-sequence, table--warn-incompatibility):
6903         * textmodes/tex-mode.el (tex-validate-buffer):
6904         * textmodes/texinfmt.el (texinfmt-version)
6905         (texinfo-format-buffer):
6906         Use `called-interactively-p' instead of `interactive-p'.
6908 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
6910         * image-mode.el (image-toggle-display):
6911         * emacs-lisp/elp.el (elp-instrument-function):
6912         * emacs-lisp/advice.el (ad-make-advised-definition):
6913         * emacs-lisp/easy-mmode.el (define-minor-mode):
6914         * net/browse-url.el (browse-url-maybe-new-window):
6915         * progmodes/sh-script.el (sh-learn-buffer-indent):
6916         Pass new argument 'any to `called-interactively-p'.
6918 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
6920         * international/uni-bidi.el:
6921         * international/uni-category.el:
6922         * international/uni-combining.el:
6923         * international/uni-comment.el:
6924         * international/uni-decimal.el:
6925         * international/uni-decomposition.el:
6926         * international/uni-digit.el:
6927         * international/uni-lowercase.el:
6928         * international/uni-mirrored.el:
6929         * international/uni-name.el:
6930         * international/uni-numeric.el:
6931         * international/uni-old-name.el:
6932         * international/uni-titlecase.el:
6933         * international/uni-uppercase.el:
6934         Regenerate from Unicode 5.2.0 data.
6936 2009-10-01  Glenn Morris  <rgm@gnu.org>
6938         * Makefile.in (ELCFILES): Regenerate.
6940 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6942         * subr.el (interactive-p): Mark obsolete.
6943         (called-interactively-p): Make the optional-ness of `kind' obsolete.
6944         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
6945         advertised-signature-table for subroutines as well.
6947         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
6948         (set-advertised-calling-convention): New function.
6949         (make-obsolete, define-obsolete-function-alias)
6950         (make-obsolete-variable, define-obsolete-variable-alias):
6951         Make the optional-ness of `when' obsolete.
6952         (define-obsolete-face-alias): Make `when' non-optional.
6953         * help-fns.el (help-function-arglist):
6954         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
6955         Use advertised-signature-table.
6957 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
6959         * files.el (delete-directory): New defun.  The original function
6960         in fileio.c has been renamed to `delete-directory-internal'.
6962         * dired.el (dired-delete-file): Call `delete-directory' with
6963         RECURSIVE parameter.
6965         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
6966         parameter RECURSIVE.  Implementation is missing.
6968         * net/tramp.el (tramp-handle-make-directory): Flush upper
6969         directory's file properties.
6970         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
6971         (tramp-handle-dired-recursive-delete-directory): Flush directory
6972         properties after the remove command only.
6974         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
6975         Handle optional parameter RECURSIVE.
6977         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
6978         Handle optional parameter RECURSIVE.
6980         * net/tramp-smb.el (tramp-smb-errors): Add error message for
6981         connection timeout.
6982         (tramp-smb-handle-delete-directory): Handle optional parameter
6983         RECURSIVE.
6985 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6987         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
6988         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
6989         (byte-compile-defmacro): Use backquotes.
6991         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
6993         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
6994         has no associated file.
6995         (vc-resynch-buffer): Use vc-dir-buffers.
6997 2009-10-01  Glenn Morris  <rgm@gnu.org>
6999         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
7000         (chart-file-count):
7001         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
7002         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
7003         * emacs-lisp/eieio-opt.el (eieio-describe-class):
7004         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
7005         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
7006         (eieio-copy-parents-into-subclass, make-instance, class-children)
7007         (eieio-generic-form):
7009         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
7010         match-data.  (Bug#4555).
7012         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
7013         rather than parsing it as a regexp.  This relaxes the layout
7014         requirements and makes errors easier to detect.
7015         (check-declare-verify): Check file is regular.
7016         (check-declare-directory): Doc fix.
7017         * subr.el (declare-function): Doc fix.
7019         * ibuffer.el (ibuffer-format-qualifier):
7020         * isearch.el (hi-lock-regexp-okay):
7021         * calc/calc.el (math-zerop):
7022         * mail/uce.el (rmail-msgbeg, rmail-msgend):
7023         * term/w32-win.el (setup-default-fontset, set-fontset-font):
7024         Remove unused declarations.
7026 2009-09-30  Glenn Morris  <rgm@gnu.org>
7028         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
7030         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
7031         filename is not a string.
7033 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
7035         * files.el (safe-local-eval-forms): Fix typo.
7037 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7039         * vc-hooks.el (vc-dir-buffers): New var.
7040         (vc-state-refresh): New function.
7041         (vc-state): Use it.
7042         (vc-after-save): Always ask the backend to recompute the new state.
7043         Always call vc-dir if necessary, using vc-dir-buffers.
7044         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
7045         Use vc-dir-buffers.
7046         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
7047         (vc-dir-prepare-status-buffer, vc-dir-update)
7048         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
7049         Don't call expand-file-name on default-directory.
7051 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
7053         * speedbar.el (speedbar-item-delete):
7054         * calc/calc-prog.el (calc-kbd-if):
7055         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
7057         * epa.el (epa-key-list-mode-map):
7058         * hi-lock.el (hi-lock-menu): Fix typos in menus.
7060         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
7061         (hs-show-hook): Fix typo in docstring.
7063 2009-09-29  Glenn Morris  <rgm@gnu.org>
7065         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
7066         file-name-nondirectory call preventing location of cedet files.
7067         (check-declare-verify): Use literal search rather than re-search.
7068         Add basic defmethod and defclass, and define-overloadable-function.
7070         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7071         Use tramp-compat-file-attributes rather than nonexistent
7072         tramp-compat-handle-file-attributes.
7074         * Makefile.in (lisptagsfiles4): New.
7075         (AUTOGENEL): Add cedet loaddefs files.
7076         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
7077         (update-elclist, compile-always, backup-compiled-files)
7078         (bootstrap-clean): Add yet another directory level.
7079         (update-elclist): Use LC_COLLATE rather than COLLATE.
7080         (ELCFILES): Update, via `make update-elclist'.
7082 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
7084         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
7085         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
7086         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
7088 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
7090         * Makefile.in (lisptagsfiles3): Define.
7091         (TAGS, TAGS-LISP): Use it.
7092         (update-elclist): Add third directory level to look for elc files.
7093         (compile-always): Likewise.
7094         (backup-compiled-files): Likewise.
7095         (bootstrap-clean): Likewise.
7096         (ELCFILES): Update.
7098 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
7100         * Makefile.in (ELCFILES): Add CEDET files.
7102 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
7104         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
7106         * net/tramp.el (top): Require tramp-imap.
7108         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7109         Use `tramp-compat-handle-file-attributes'.
7111 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
7113         * net/tramp-imap.el: New package.
7115 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7117         * whitespace.el (whitespace-trailing-regexp)
7118         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
7119         Fix doc string.
7121 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
7123         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
7124         menu.
7126         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
7127         menu-bar-ediff-menu.
7129         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
7130         define-overloadable-function.
7132         * progmodes/autoconf.el: Provide autoconf as well, so that this
7133         file can be `require'd.
7135         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
7137         * emacs-lisp/autoload.el (generated-autoload-feature)
7138         (generated-autoload-load-name): New vars.
7139         (autoload-rubric, autoload-generate-file-autoloads): Use them.
7140         (make-autoload): Recognize define-overloadable-function and
7141         defclass forms (for EIEIO).
7143         * Makefile.in (update-subdirs): Exclude cedet directory.
7145 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
7147         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
7149         * faces.el: Default light-background background for region face to
7150         ns_selection_color under NS.
7152 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
7154         * net/imap-hash.el: New library, see NEWS.
7156         * Makefile.in (ELCFILES): Add imap-hash.el.
7158 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7160         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
7161         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
7162         * help-macro.el (make-help-screen): Avoid using an ambiguous function
7163         definition where the docstring could be taken for the return value.
7165 2009-09-26  Glenn Morris  <rgm@gnu.org>
7167         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
7168         Add option to only show images below a certain size.
7169         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
7170         save-excursion calls.
7172 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
7174         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
7175         subdirectories) and eieio.
7177 2009-09-26  Alan Mackenzie  <acm@muc.de>
7179         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
7180         buggy bracketing.  (Bug#4289)
7182         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
7183         character constants (as case labels).  (Bug#4289)
7185 2009-09-25  Juri Linkov  <juri@jurta.org>
7187         * files.el (safe-local-eval-forms): Allow time-stamp in
7188         before-save-hook (Bug#4554).
7190 2009-09-25  Drew Adams  <drew.adams@oracle.com>
7192         * menu-bar.el (list-buffers-directory): Doc fix.
7194 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7196         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
7197         Try and avoid copying twice the same paragraph.
7198         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
7199         Remove save-excursion.
7200         (log-edit-changelog-entry): Do it here instead.
7202 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
7204         * bs.el (bs--get-file-name): Use `list-buffers-directory'
7205         when available, instead of hardcoding mode names.  Doc fix.
7207         * menu-bar.el (list-buffers-directory): Add docstring.
7208         Make automatically buffer-local.
7210         * dired.el (dired-mode):
7211         * files.el (cd-absolute):
7212         * pcvs.el (cvs-temp-buffer):
7213         * pcvs-util.el (cvs-get-buffer-create):
7214         * shell.el (shell-mode):
7215         * vc-dir.el (vc-dir-mode):
7216         Don't make `list-buffers-directory' buffer local.
7218 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
7220         * comint.el (comint-exec, comint-run, make-comint):
7221         Doc fixes (Bug#4542).
7223 2009-09-25  Glenn Morris  <rgm@gnu.org>
7225         * mail/rmailmm.el (rmail-mime): New custom group.
7226         Move all defcustoms in this file into this group.
7227         (rmail-mime-media-type-handlers-alist): Revert previous change.
7228         (rmail-mime-show-images): New option.
7229         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
7230         references to it, since it wasn't actually used for anything.
7231         (rmail-mime-insert-image): New function.
7232         (rmail-mime-image): Use rmail-mime-insert-image.
7233         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
7234         obey the value of `rmail-mime-show-images' option.  Print the size of
7235         attachments.
7237 2009-09-25  David Engster  <deng@randomsample.de>
7239         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
7241 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7243         * whitespace.el: Does not highlight trailing spaces While point is
7244         at end of line.  Does not highligt spaces at beginning of buffer
7245         while point is at beginning of buffer.  Does not highlight spaces
7246         at end of buffer while point is at end of buffer.  (Bug#4177)
7247         New version 12.0.
7248         (whitespace-display-mappings): Adjust initialization.
7249         (whitespace-point, whitespace-font-lock-refontify): New vars.
7250         (whitespace-color-on, whitespace-color-off): Adjust code.
7251         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
7252         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
7253         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
7255 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
7257         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
7259         * textmodes/sgml-mode.el: Remove xml-mode alias.
7261         * files.el (auto-mode-alist, conf-mode-maybe)
7262         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
7264 2009-09-24  Alan Mackenzie  <acm@muc.de>
7266         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
7267         c-forward-conditionals, but it doesn't move point and doesn't set
7268         the mark.
7269         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
7270         (c-down-conditional-with-else, c-backward-conditional)
7271         (c-forward-conditional): Refactor to use c-scan-conditionals.
7273 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
7275         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
7276         (help-default-arg-highlight): Remove.
7277         (help-highlight-arg): New function.
7278         (help-do-arg-highlight): Use it.
7279         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
7281 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7283         * term.el (term-set-scroll-region, term-handle-ansi-escape):
7284         Undo last change, which didn't fix the problem and introduced others.
7286 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
7288         * progmodes/gdb-mi.el: Don't require speedbar.
7289         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
7291 2009-09-24  Glenn Morris  <rgm@gnu.org>
7293         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
7295         * term/ns-win.el (ns-reg-to-script): Define for compiler.
7297         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
7298         there is no newline after the final mime boundary.  (Bug#4539)
7299         Move markers on insertion so that any buttons inserted don't end up in
7300         the next part of a multipart message.
7301         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
7302         (rmail-mime-bulk-handler): Optionally handle images.
7303         (rmail-mime-image): New button action.
7304         (rmail-mime-image-handler): New function.
7305         (rmail-mime-mode): New mode.
7306         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
7308 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7310         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
7311         than just dropping elements from it (bug#4504).
7313         * term.el (term-set-scroll-region): Don't move cursor any more.
7314         (term-handle-ansi-escape): Call term-goto here instead.
7315         Suggested by Ivan Kanis <apple@kanis.eu>.
7317         * term.el: Require CL.
7318         (term-ansi-reset): New function.
7319         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
7320         (term-handle-colors-array): Simplify.
7322 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
7324         * allout.el (allout-overlay-interior-modification-handler)
7325         (allout-obtain-passphrase):
7326         * epa-file.el (epa-file-write-region):
7327         * ps-print.el (ps-begin-job):
7328         * vc-hooks.el (vc-toggle-read-only):
7329         * vc-rcs.el (vc-rcs-rollback):
7330         * vc-sccs.el (vc-sccs-rollback):
7331         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
7332         (vc-version-diff, vc-revert, vc-rollback):
7333         * wdired.el (wdired-check-kill-buffer):
7334         * emacs-lisp/authors.el (authors):
7335         * net/socks.el (socks-open-connection):
7336         * net/zeroconf.el (zeroconf-service-add-hook):
7337         * obsolete/vc-mcvs.el (vc-mcvs-register):
7338         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
7339         (gdb-select-frame):
7340         * progmodes/grep.el (lgrep, rgrep):
7341         * progmodes/idlw-help.el (idlwave-help-check-locations)
7342         (idlwave-help-html-link, idlwave-help-assistant-open-link):
7343         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7344         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
7345         (reftex-toc-rename-label): Fix typos in error messages.
7347         * dired-aux.el (dired-do-shell-command): Reflow docstring.
7348         (dired-copy-how-to-fn): Doc fix.
7349         (dired-files-attributes, dired-read-shell-command):
7350         Fix typos in docstrings.
7352         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
7353         (dired-x-find-file-other-window): Reflow docstrings.
7354         (dired-omit-marker-char, dired-read-shell-command)
7355         (dired-x-submit-report): Fix typos in docstrings.
7357         * shell.el (shell-mode-hook):
7358         * view.el (View-scroll-line-forward):
7359         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
7360         Fix typos in docstrings.
7362         * net/dig.el (dig-invoke): Fix typo in docstring.
7363         (query-dig): Reflow docstring.
7365         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
7366         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
7367         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
7368         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
7369         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
7370         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
7371         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
7372         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
7373         (idlwave-completion-map, idlwave-current-indent)
7374         (idlwave-custom-ampersand-surround, idlwave-customize)
7375         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
7376         (idlwave-define-abbrev, idlwave-determine-class-special)
7377         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
7378         (idlwave-end-block-reg, idlwave-end-of-statement)
7379         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
7380         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
7381         (idlwave-explicit-class-listed, idlwave-file-header)
7382         (idlwave-fill-paragraph, idlwave-find-class-definition)
7383         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
7384         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
7385         (idlwave-in-quote, idlwave-indent-action-table)
7386         (idlwave-indent-expand-table, idlwave-indent-line)
7387         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
7388         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
7389         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
7390         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
7391         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
7392         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
7393         (idlwave-outlawed-buffers, idlwave-popup-select)
7394         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
7395         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
7396         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
7397         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
7398         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
7399         (idlwave-statement-type, idlwave-struct-skip)
7400         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
7401         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
7402         (idlwave-what-module-find-class): Fix typos in docstrings.
7403         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
7404         (idlwave-calculate-cont-indent, idlwave-expand-equal)
7405         (idlwave-find-module, idlwave-find-structure-definition)
7406         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
7407         (idlwave-list-load-path-shadows, idlwave-next-statement)
7408         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
7409         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
7410         (idlwave-template): Reflow docstrings.
7412         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
7413         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
7414         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
7415         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
7416         (idlwave-shell-display-line, idlwave-shell-display-wframe)
7417         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
7418         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
7419         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
7420         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
7421         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
7422         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
7423         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
7424         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
7425         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
7426         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
7427         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
7428         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
7429         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
7430         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
7431         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
7432         Fix typos in docstrings.
7433         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
7434         (idlwave-shell-hide-output, idlwave-shell-mode)
7435         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
7436         Reflow docstrings.
7438         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
7440 2009-09-24  Ivan Kanis  <apple@kanis.eu>
7442         * term.el (term-bold-attribute): New var.
7443         (term-handle-colors-array): Use it.
7445 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
7447         * progmodes/gdb-mi.el (gdb-version): New variable.
7448         (gdb-non-stop-handler): Set gdb-version.
7449         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
7450         Condition "--thread" option on gdb-version.
7451         (gdb-invalidate-threads): Remove unused argument.
7453 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7455         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
7456         to looking-back to avoid ridiculous slow down in large files (bug#4511).
7458 2009-09-23  Glenn Morris  <rgm@gnu.org>
7460         * mail/rmail.el (rmail-reply): Don't try to add a References header when
7461         replying to mail without References or Message-Id.  (Bug#4525)
7463 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
7465         * term/ns-win.el (ns-reg-to-script): New variable.
7467 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
7469         * epg.el (epg-wait-for-status): Preserve existing 'error results.
7471 2009-09-22  Sam Steingold  <sds@gnu.org>
7473         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
7474         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
7475         to 1 because hg returns status 1 when nothing is found.
7476         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
7478 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7480         * textmodes/fill.el: Convert to utf-8 encoding.
7481         (fill-french-nobreak-p): Remove redundant » and « inherited from our
7482         pre-unicode days.
7484         * add-log.el (change-log-fill-forward-paragraph): New function.
7485         (change-log-mode): Use it so fill-region DTRT.
7486         Set fill-indent-according-to-mode here rather than in
7487         change-log-fill-paragraph.
7488         (change-log-fill-paragraph): Remove.
7490 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
7492         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
7493         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
7495 2009-09-22  Glenn Morris  <rgm@gnu.org>
7497         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
7498         the scroll-bar scroll the calendar window rather than the buffer.
7500         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
7501         commands that move point (as opposed to scrolling).
7503         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
7505         * emacs-lisp/elint.el (elint): New custom group.
7506         (elint-log-buffer): Make it a defcustom.
7507         (elint-scan-preloaded, elint-ignored-warnings)
7508         (elint-directory-skip-re): New options.
7509         (elint-builtin-variables): Doc fix.
7510         (elint-preloaded-env): New variable.
7511         (elint-unknown-builtin-args): Add an entry for encode-time.
7512         (elint-extra-errors): Make it a variable rather than a constant.
7513         (elint-preloaded-skip-re): New constant.
7514         (elint-directory): Skip files matching elint-directory-skip-re.
7515         (elint-features): New variable, local to linted buffers.
7516         (elint-update-env): Initialize elint-features.  Possibly add
7517         elint-preloaded-env to the buffer's environment.
7518         (elint-get-top-forms): Bind elint-current-pos, for log messages.
7519         Skip quoted forms.
7520         (elint-init-form): New function, extracted from elint-init-env.
7521         Make non-list forms a warning rather than an error.
7522         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
7523         easy-menu-define, put that adds an error-condition, and provide.
7524         When requiring cl, also require cl-macs.  Really require cl, to handle
7525         some cl macros.  Store required libraries in the list elint-features,
7526         so as not to re-load them.  Treat cc-require like require.
7527         (elint-init-env): Call elint-init-form to do the work.
7528         Handle eval-and-compile and such like.
7529         (elint-add-required-env): Do not clear messages.
7530         (elint-special-forms): Add handlers for function, defalias, if, when,
7531         unless, and, or.
7532         (elint-form): Add optional argument to ignore elint-special-forms,
7533         useful to prevent recursive calls from handlers.  Doc fix.
7534         Respect elint-ignored-warnings.
7535         (elint-form): Respect elint-ignored-warnings.
7536         (elint-bound-variable, elint-bound-function): New variables.
7537         (elint-unbound-variable): Respect elint-bound-variable.
7538         (elint-get-args): Respect elint-bound-function.
7539         (elint-check-cond-form): Add some simple handling for (f)boundp and
7540         featurep tests.
7541         (elint-check-defalias-form): New handler.
7542         (elint-check-let-form): Make an empty let a warning rather than an
7543         error.
7544         (elint-check-setq-form): Make an empty setq a warning rather than an
7545         error.  Respect elint-ignored-warnings.
7546         (elint-check-defvar-form): Accept null doc-strings.
7547         (elint-check-conditional-form): New handler.  Does some simple-minded
7548         checking of featurep and (f)boundp tests.
7549         (elint-put-function-args): New function.
7550         (elint-initialize): Use elint-scan-doc-file rather than
7551         elint-find-builtin-variables.  Use elint-put-function-args.
7552         Possibly scan preloaded-file-list.
7553         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
7554         extend to handle functions as well.
7556 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
7558         * linum.el (linum-delete-overlays, linum-update-window):
7559         Do not modify the right margin.  (Bug#3971)
7561 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
7563         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
7564         nxml-mode instead of xml-mode.
7566 2009-09-21  Kevin Ryde  <user42@zip.com.au>
7568         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
7570 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7572         * net/dig.el (dig-mode): Use define-derived-mode.
7574 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
7576         * vc-dispatcher.el (vc-do-command): Return the process object in
7577         the asynchronous case.  Use when instead of if.  Do not run
7578         vc-exec-after to display a message if not enabled.  (Bug#4463)
7580         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
7581         properties to the stash strings.
7582         (vc-git-stash-list): Return a list of strings.
7583         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
7584         (vc-git-stash-show-at-point): New functions.
7585         (vc-git-stash-map): New keymap.
7587         * register.el (ctl-x-r-map): Define the keys here instead of
7588         using autoload.
7590 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
7592         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
7593         list, to workaround performance problem (bug#4485).
7595 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
7597         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
7599 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
7601         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
7602         Document that this option is not recommended to use.
7604 2009-09-19  Glenn Morris  <rgm@gnu.org>
7606         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
7607         variable `var'.
7609         * calc/calc-alg.el (var):
7610         * calc/calcalg2.el (var): Define for compiler.
7612 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
7614         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
7615         Doc fix (Bug#3932).
7617         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
7619         * time-stamp.el (time-stamp-month-dd-yyyy)
7620         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
7621         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
7622         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
7623         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
7624         Remove functions that have been obsolete since 1995 (Bug#4436).
7626         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
7627         indent buffer only if called interactively (Bug#4452).
7629 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
7630             Eli Zaretskii  <eliz@gnu.org>
7632         This fixes bug#4197 (merged to bug#865, though not identical).
7633         * server.el (server-auth-dir): Add docstring note about FAT32.
7634         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
7635         but warn against using them.
7637 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
7639         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
7640         older GDB where there is no has_more field.
7642 2009-09-19  Glenn Morris  <rgm@gnu.org>
7644         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
7646 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
7648         * files.el (auto-mode-alist): Change default for XML files to nXML
7649         mode (Bug#4169).
7651 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
7653         * server.el (server-ensure-safe-dir): Pass 'integer
7654         to `file-attributes', as suggested.
7656 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7658         * dired-aux.el (dired-query-alist): Remove spurious backslash.
7659         (dired-query): Use read-key.
7661 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
7663         * cus-start.el (ns-use-qd-smoothing): Remove.
7665 2009-09-18  Glenn Morris  <rgm@gnu.org>
7667         * allout.el (top-level): Remove unnecessary progn.
7669         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
7671         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
7672         definition of abbrev table.
7674         * speedbar.el (speedbar-track-mouse):
7675         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
7676         * net/eudc.el (eudc-expand-inline):
7677         * net/newst-backend.el (newsticker--cache-read-feed):
7678         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
7679         condition-case handlers.
7681 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
7683         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
7684         (gdb-var-list): Add an element for has_more field.
7685         (gdb-non-stop-handler): Enable pretty printing for STL containers.
7686         (gdb-var-create-handler, gdb-var-list-children-handler-1)
7687         (gdb-var-update-handler-1): Parse output of dynamic variable
7688         objects (STL containers).
7689         (gdb-var-delete-1): Pass var1 as an explicit second argument.
7690         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
7692         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
7693         gdb-var-list.
7694         (gud-speedbar-buttons): Make node expandable if expression "has more"
7695         children.
7697 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
7699         * startup.el (emacs-quick-startup): Remove variable and all uses.
7700         (command-line): Set `inhibit-x-resources' instead.
7701         (command-line-1): Use `inhibit-x-resources' instead.
7703 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
7705         * subr.el: Fix last change to avoid using the `unless' macro,
7706         which breaks bootstrapping.
7708 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7710         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
7711         extended definitions, in case we reload subr.el after having
7712         loaded CL.
7713         (eval-next-after-load): Mark as obsolete.
7715 2009-09-17  Juri Linkov  <juri@jurta.org>
7717         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
7718         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
7719         (menu-bar-showhide-menu, menu-bar-tools-menu)
7720         (menu-bar-describe-menu, menu-bar-help-menu)
7721         (minibuffer-local-completion-map, minibuffer-local-map):
7722         Fix list quoting.
7724 2009-09-17  Glenn Morris  <rgm@gnu.org>
7726         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
7727         arguments, whether or not it has a handler.
7729         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
7731         * simple.el (hard-newline): Give it a doc-string.
7733         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
7734         (lisp-mode-syntax-table): Give them doc-strings.
7736 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
7738         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
7739         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
7740         (menu-bar-options-menu, menu-bar-showhide-menu)
7741         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
7742         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
7743         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
7744         (menu-bar-options-menu, menu-bar-tools-menu)
7745         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
7746         (menu-bar-help-menu):
7747         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
7748         string arguments.
7750         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
7751         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
7752         calls for the menu names and :help.
7754 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7756         * mouse.el (minor-mode-menu-from-indicator): Pay attention
7757         to :minor-mode-function (bug#4455).
7759 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
7761         * startup.el (command-line): Initialize the window-system after
7762         processing the command-line.
7764         * textmodes/page.el (what-page): Make sure we don't inf-loop if
7765         page-delimiter matches the empty string.
7767 2009-09-16  Glenn Morris  <rgm@gnu.org>
7769         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
7770         byte-compile-not-obsolete-var.  It's a list now.
7771         (byte-compile-not-obsolete-funcs): New variable.
7772         (byte-compile-warn-obsolete): Don't warn about functions if they are in
7773         byte-compile-not-obsolete-funcs.
7774         (byte-compile-variable-ref, byte-compile-defvar): Update for
7775         byte-compile-not-obsolete-vars name-change and list nature.
7776         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
7777         and variables behind (f)boundp tests.
7778         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
7780 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
7782         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
7784 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7786         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
7787         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
7788         Don't autoload.
7790 2009-09-15  Stephen Eglen  <stephen@gnu.org>
7792         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
7793         the virtual-buffers, use the name of the buffer specified by
7794         find-file-noselect, as the match may be a symlink.  (This was a
7795         problem if the target and the symlink had different names.)
7797 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7799         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
7801         * desktop.el (desktop-path): Check user-emacs-directory.
7803         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
7805         * loadup.el: Use after-load-functions to GC after loading each file.
7806         Remove the explicit GC calls that used to be sprinkled around.
7808         * subr.el (after-load-functions): New hook.
7809         (do-after-load-evaluation): Run it.  Use string-match-p to detect
7810         `obsolete' packages, rather than painfully extracting the relevant
7811         directory name.
7813 2009-09-15  Glenn Morris  <rgm@gnu.org>
7815         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
7816         free variable `doc'.
7818         * dired.el (dired-mode-map): Add menu entry for async shell command.
7820         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
7821         variables, also consider the .elc files, since the .el files are
7822         normally gzipped (subsequent code locates the .el.gz from the .elc).
7824         * calc/calc-prog.el (arglist): Define for compiler.
7826         * calendar/diary-lib.el (diary-display-function): Change the default to
7827         fancy display.
7828         (body): Define for compiler.
7830         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
7831         (byte-compile-file-form, byte-compile-lambda)
7832         (byte-compile-top-level-body, byte-compile-form)
7833         (byte-compile-variable-ref, byte-compile-setq)
7834         (byte-compile-setq-default, byte-compile-body)
7835         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
7836         (batch-byte-compile): Give some more local variables with common names
7837         a "bytecomp-" prefix to avoid masking warnings about free variables.
7839         * startup.el (command-line-1): Give local variables with common names a
7840         distinguishing prefix, so as not to hide free variable warnings during
7841         bootstrap.
7843         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
7844         clever and add a suffix to make a unique name, just let the user decide
7845         whether or not to overwrite it.  If the input is a directory, write the
7846         default filename to that directory.  (Bug#4388)
7847         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
7848         is a filename-as-a-directory.
7850 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7852         * textmodes/page.el (what-page): Don't move to beginning of line.
7853         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
7855 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
7857         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
7859 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
7861         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
7862         * help.el (help-for-help-internal): Add purecopy calls for text.
7864         * vc.el (top): print-log method now takes an optional SHORTLOG
7865         argument.  Add a new method: root.
7866         (vc-root-diff, vc-print-root-log): New functions.
7867         (vc-log-short-style): New variable.
7868         (vc-print-log-internal): Add support for showing short logs.
7870         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
7871         vc-print-root-log and vc-print-root-diff.
7873         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
7874         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
7875         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
7876         short logs.
7878         * vc-cvs.el (vc-cvs-print-log):
7879         * vc-mtn.el (vc-mtn-print-log):
7880         * vc-rcs.el (vc-rcs-print-log):
7881         * vc-sccs.el (vc-sccs-print-log):
7882         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
7883         that is ignored for now.
7885         * vc-mtn.el (vc-mtn-annotate-command):
7886         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
7888 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7890         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
7891         to function-key-map, and give them ascii-character property.
7892         * term/x-win.el (x-alternatives-map):
7893         * term/ns-win.el (ns-alternatives-map):
7894         * term/internal.el (msdos-key-remapping-map):
7895         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
7897 2009-09-14  Glenn Morris  <rgm@gnu.org>
7899         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
7900         temp-buffers (2009-09-12).
7902 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7904         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
7905         the new read-key function.
7907 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
7909         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
7910         is defined (Bug#4405).
7912 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
7914         * recentf.el (recentf-cleanup): Use a hash table to find
7915         duplicates (Bug#4407).
7917 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
7919         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
7920         kp-0 to ascii equivalents (Bug#4325).
7922 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
7924         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
7926         * eshell/em-hist.el:
7927         * eshell/em-dirs.el (eshell-complete-user-reference):
7928         Declare pcomplete functions and variables to avoid compiler warnings.
7930 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
7932         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
7933         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
7934         * eshell/em-alias.el (eshell-aliases-file):
7935         * eshell/em-hist.el (eshell-history-file-name):
7936         Use expand-file-name instead of concat to make file names (Bug#4308).
7938 2009-09-13  Glenn Morris  <rgm@gnu.org>
7940         * ediff-merg.el (ediff-do-merge):
7941         * filesets.el (filesets-run-cmd):
7942         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
7943         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
7944         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
7945         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
7946         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
7947         Replace empty `let's with `progn'.
7949 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7951         * mail/sendmail.el (send-mail-function):
7952         * tooltip.el (tooltip-mode):
7953         * simple.el (transient-mark-mode):
7954         * rfn-eshadow.el (file-name-shadow-mode):
7955         * frame.el (blink-cursor-mode):
7956         * font-core.el (global-font-lock-mode):
7957         * files.el (temporary-file-directory)
7958         (small-temporary-file-directory, auto-save-file-name-transforms):
7959         * epa-hook.el (auto-encryption-mode):
7960         * composite.el (global-auto-composition-mode):
7961         Use custom-initialize-delay.
7962         * startup.el (command-line): Don't explicitly call
7963         custom-reevaluate-setting for all the above vars.
7964         * custom.el (custom-initialize-safe-set)
7965         (custom-initialize-safe-default): Delete.
7967 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7969         * term/x-win.el (x-initialize-window-system):
7970         * term/w32-win.el (w32-initialize-window-system):
7971         * term/ns-win.el (ns-initialize-window-system): Don't call
7972         mouse-wheel-mode since it's enabled globally by default already.
7974         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
7975         actually define the variable, but only silences the byte-compiler.
7976         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
7977         before looking it up.
7978         (mouse-wheel-scroll-amount): Also reset the bindings if this value
7979         is changed.
7981 2009-09-12  Glenn Morris  <rgm@gnu.org>
7983         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
7984         1000.
7985         (elint-add-required-env): Don't beep on error.
7986         (elint-forms): In case of error, return ENV unchanged.
7987         (elint-init-env): Skip non-list forms.
7988         (elint-log): Handle unknown file positions.
7990 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
7992         * epg.el (epg-make-context): Add autoload cookie.
7993         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
7994         (epg-decrypt-string, epg-start-verify, epg-verify-file)
7995         (epg-verify-string, epg-start-sign, epg-sign-file)
7996         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
7997         (epg-encrypt-string, epg-start-export-keys)
7998         (epg-export-keys-to-file, epg-export-keys-to-string)
7999         (epg-start-import-keys, epg-import-keys-from-file)
8000         (epg-import-keys-from-string, epg-start-receive-keys)
8001         (epg-receive-keys, epg-import-keys-from-server)
8002         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
8003         (epg-sign-keys, epg-start-generate-key)
8004         (epg-generate-key-from-file, epg-generate-key-from-string):
8005         Remove autoload cookie.
8007 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
8009         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
8010         reevaluation of trash-directory.
8012         * mwheel.el: Fix last change.
8013         (mouse-wheel-mode): New defvar.
8014         (mouse-wheel-mode): Remove autoload cookie.
8016 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8018         * mwheel.el (mwheel-installed-bindings): New var.
8019         (mouse-wheel-mode): Use it, so as to make sure we really remove all
8020         the bindings we set last time.  Use custom-initialize-delay.
8021         * loadup.el: Load mwheel after term/*-win.el.
8022         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
8023         and mouse-wheel-up-event now that their first evaluation is done
8024         sufficiently late to be correct.
8026         * startup.el (tutorial-directory): Make it a defcustom.
8027         Use custom-initialize-delay rather than eval-at-startup to set it.
8028         * image.el (image-load-path): Make it a defcustom.
8029         Use custom-initialize-delay rather than eval-at-startup to set it.
8030         * subr.el (eval-at-startup): Remove.
8031         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
8033         * subr.el (do-after-load-evaluation): Warn the user after loading an
8034         obsolete package.
8036 2009-09-12  Glenn Morris  <rgm@gnu.org>
8038         * proced.el (proced-mark-alt): Remove alias.
8039         (proced-mode-map): Remove proced-mark-alt.
8041         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
8042         Elint file and directory.  Remove initialization entry.
8044         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
8045         commands.
8046         (elint-current-buffer): Set mode-line-process.
8047         (elint-init-env): Handle define-derived-mode.
8048         Fix declare-function with unspecified arglist.  Guard against odd
8049         defalias statements (eg iso-insert's 8859-1-map).
8050         (elint-add-required-env): Use a temp buffer.
8051         (elint-form): Just print the function/macro name, not the whole form.
8052         Return env unchanged if we fail to parse a macro.
8053         (elint-forms): Guard against parse errors.
8054         (elint-output): New function, to handle batch mode.
8055         (elint-log-message): Add optional argument.  Use elint-output.
8056         (elint-set-mode-line): New function.
8058 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
8060         * emacs-lisp/elp.el (elp-not-profilable): Add more
8061         functions (Bug#4233).
8063 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
8065         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
8066         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
8068 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
8070         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
8071         (gdb-var-list-children): Use json parsing.
8073 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
8075         * progmodes/js.el (js--proper-indentation): Handle the case where
8076         char-before is null.  Reported by Deniz Dogan.
8078 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
8080         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
8082 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
8084         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
8085         (epg-digest-algorithm-alist): Add SHA224.
8086         (epg-context-set-passphrase-callback)
8087         (epg-context-set-progress-callback): Add description about
8088         callback function.
8090 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8092         * custom.el (custom-delayed-init-variables): New var.
8093         (custom-initialize-delay): New function.
8094         * startup.el (command-line): "Re"evaluate all vars in
8095         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
8096         explicitly any more.
8097         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
8098         to avoid creating a ~/.emacs.d at build-time (bug#4347).
8100         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
8102 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
8104         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
8105         (gdb-var-update-handler): Use json parsing.
8107 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
8109         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
8110         decode annotated text, regardless of language environment.  (Bug#2741)
8112 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8114         * Makefile.in (autoloads): Make rmail.el writable as well.
8116 2009-09-11  Glenn Morris  <rgm@gnu.org>
8118         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
8119         loaddefs.el.
8120         * dired.el: Regenerate with extracted autoloads.
8121         * Makefile.in (autoloads): Make dired.el writable.
8123         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
8124         * ibuffer.el: Regenerate with extracted autoloads.
8125         * Makefile.in (autoloads): Make ibuffer.el writable.
8127         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
8128         * version.el (emacs-copyright, emacs-major-version)
8129         (emacs-minor-version): Reformat doc-strings for make-docfile.
8131         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
8132         functions and variables, since they must be stuff specific to some other
8133         platform.
8134         (apropos-print): Make mouse-click message less specific about button.
8136         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
8137         that records where a macro was defined.
8138         * help-fns.el (describe-function-1): Mention if a function has a
8139         compiler-macro.
8140         * help-mode.el (help-function-cmacro): New button.
8142         * locate.el (top-level): Always require dired.
8143         (locate-mode-map): Initialize inside the defvar.
8145         * net/ange-ftp.el (dired-compress-file): Declare.
8146         (ange-ftp-dired-compress-file): Add doc string.
8148         * term/ns-win.el (x-display-name, x-setup-function-keys):
8149         Unify doc-strings with X versions.
8151 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8153         * emulation/crisp.el (crisp-mode-map): Move initialization
8154         into declaration.
8155         (crisp-mode): Use define-minor-mode.
8157         * progmodes/xscheme.el (xscheme-evaluation-commands):
8158         Put a :advertised-binding property rather than using
8159         advertised-xscheme-send-previous-expression.
8160         (advertised-xscheme-send-previous-expression): Declare obsolete.
8161         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
8162         `advertised-undo'.
8163         (crisp-mode): Add corresponding bindings to
8164         undo's :advertised-binding instead.
8165         * dired.el (dired-mode-map): Put a :advertised-binding property rather
8166         than using dired-advertised-find-file.
8167         (dired-advertised-find-file):
8168         * simple.el (advertised-undo):
8169         * wid-edit.el (advertised-widget-backward): Declare obsolete.
8170         (widget-keymap): Put a :advertised-binding property rather
8171         than using advertised-widget-backward.
8172         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
8173         than using advertised-undo.
8174         * tutorial.el (tutorial--default-keys): Adjust accordingly.
8176 2009-09-10  Simon South  <ssouth@slowcomputing.org>
8178         * progmodes/delphi.el (delphi-tab): Indent region when Transient
8179         Mark mode is enabled and region is active; otherwise indent or
8180         insert TAB as usual.
8181         (delphi-mode): Update description of TAB-key binding.
8183 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8185         * subr.el (define-key-rebound-commands): Mark obsolete.
8186         * startup.el (precompute-menubar-bindings): Remove.
8187         (normal-top-level): Remove obsolete code that tried to precompute
8188         menubar bindings.
8189         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
8190         define-key-rebound-commands and precompute-menubar-bindings.
8192 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
8194         * net/imap.el (imap-interactive-login): Better messages.
8195         (imap-open): Fix bug with renamed buffer on reconnect.
8196         (imap-authenticate): Add buffer-local imap-last-authenticator variable
8197         for easier debugging and cleaner code.  On successful (guessed based on
8198         server capabilities) secondary authentication, set imap-state
8199         correctly.
8200         (imap-last-authenticator): Define imap-last-authenticator as a variable
8201         to avoid warnings.
8203 2009-09-10  Glenn Morris  <rgm@gnu.org>
8205         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
8207         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
8208         (byte-compile-file-form-autoload): Don't warn about unknown functions
8209         where the autoload statement comes after the use.
8210         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
8211         that any handlers inside the body (eg require) are in turn respected.
8213         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
8214         effects.
8216         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
8217         and syntax and abbrev tables basic docs, if they don't have any.
8219         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
8221         * international/mule-cmds.el (top-level): Require cl when compiling.
8222         (view-hello-file): Use default-value rather than
8223         default-enable-multibyte-characters.
8225         * progmodes/fortran.el: Move all safe and risky properties into the
8226         defcustoms.
8228         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
8229         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
8230         * mail/undigest.el:
8231         Put autoloads in rmail.el rather than loaddefs.el.
8232         * mail/rmail.el: Regenerate with extracted autoloads.
8234         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
8235         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
8237 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
8239         Reported in thread for Bug#4375.
8240         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
8241         "-data-evaluate-expression" instead of print.
8242         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
8243         (gdb-tooltip-print): Parse output from above MI command.
8244         (gdb): Revert 2009-08-11 change.  User should detach inferior
8245         manually.
8247         Remove the word "separate" from IO functions as inferior
8248         output is now never displayed in the GUD buffer.
8250 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
8252         * startup.el (command-line-normalize-file-name): On Windows and
8253         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
8255 2009-09-10  Juri Linkov  <juri@jurta.org>
8257         * isearch.el (isearch-text-char-description): Propertize escape
8258         character sequences with the `escape-glyph' face.  (Bug#4344)
8260         * simple.el (shell-command): Set asynchronous process filter to
8261         `comint-output-filter'.  (Bug#4343)
8263         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
8264         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
8265         the list.  Move "asm" to the bottom.
8266         (grep-find-ignored-directories): Add `choice' with nil value
8267         to empty the list easily.
8268         (grep-find-ignored-files): New option.
8269         (grep-files-history): Set to nil by default instead of '("ch" "el").
8270         (grep-compute-defaults): Add "<X>" to `grep-template'.
8271         (grep-read-files): Bind new local variables `default-alias' and
8272         `default-extension'.  Use a list of default values for the file prompt.
8273         (lgrep): Add `--exclude=' command line options composed from
8274         `grep-find-ignored-files'.
8275         (rgrep): Add `-name' command line options composed from
8276         `grep-find-ignored-files'.  (Bug#4301)
8278 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8280         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
8281         (bug#4368).
8283 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8285         * calendar/time-date.el (autoload):
8286         Expand define-obsolete-function-alias into defalias and make-obsolete
8287         for old Emacsen that Gnus supports.
8288         (with-no-warnings): Define it for old Emacsen.
8289         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
8290         is available.
8291         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
8292         float-time is available; suppress compile warning for time-to-seconds.
8294 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
8296         * net/imap.el (imap-message-map): Docstring fix.
8298 2009-09-09  Glenn Morris  <rgm@gnu.org>
8300         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
8301         line numbers too.  (Bug#4374)
8303 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8305         * smerge-mode.el (smerge-remove-props, smerge-refine):
8306         Use with-silent-modifications (bug#4342).
8308         * subr.el (with-silent-modifications): New macro.
8310 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
8312         * files.el (top-level): Require `cl' when compiling.
8314 2009-09-07  Glenn Morris  <rgm@gnu.org>
8316         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
8318         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
8319         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
8321 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
8323         * vc-git.el (vc-git-annotate-command): Use separator to parse
8324         arguments correctly.
8326 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
8328         * proced.el (proced-mode): Doc fix.
8330 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
8332         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
8333         lstat fails.
8334         (tramp-do-file-attributes-with-ls): Check for file existence at
8335         remote end.
8336         (tramp-do-file-attributes-with-stat): Likewise.
8337         (tramp-convert-file-attributes): Return nil when attr is nil.
8339 2009-09-05  Glenn Morris  <rgm@gnu.org>
8341         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
8342         properties to this button.
8343         (diary-fancy-display): Don't extend the button to the final newline.
8344         (diary-fancy-display-mode): Continue to define "q" as a local key.
8346         * calendar/cal-china.el (holiday-chinese): Make it slightly more
8347         efficient.
8349         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
8351         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
8352         (byte-compile-dest-file-function): New option.
8353         (byte-compile-dest-file): Doc fix.
8354         Obey byte-compile-dest-file-function.
8355         (byte-compile-cl-file-p): New function.
8356         (byte-compile-eval): Only suppress noruntime warnings about cl functions
8357         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
8358         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
8359         than for file being previously loaded.
8360         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
8361         (byte-compile-file-form-require): Handle the case where requiring a file
8362         indirectly causes CL to be loaded.
8364 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
8366         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
8367         before killing the old buffer, since by the time `kill-buffer' is
8368         run so many buffer variables have been set to nil that it may not
8369         behave as expected.  (Bug#4061)
8371 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
8373         * files.el (find-alternate-file): If the old buffer is modified
8374         and visiting a file, behave similarly to `kill-buffer' when
8375         killing it, thus reverting to the pre-1.878 behavior; see
8376         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
8377         for discussion.  Also, consult `buffer-file-name' as a variable
8378         not as a function, for consistency with the rest of the code.
8380 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
8382         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
8383         also when adding a new directory.
8385         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
8386         defun.
8388 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8390         * files.el (locate-file-completion-table): Make it provide boundary
8391         information, so partial-completion works better.
8393 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
8395         * mail/footnote.el (Footnote-text-under-cursor):
8396         Check footnote-text-marker-alist before using it (bug#4324).
8398 2009-09-04  Glenn Morris  <rgm@gnu.org>
8400         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
8401         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
8402         * play/solitaire.el, play/tetris.el:
8403         Remove leading * from defcustom and defface docs.
8405         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
8406         necessary.
8407         (diary-fancy-overriding-map): New variable.
8408         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
8409         Use view-mode.
8411         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
8412         goto-line.
8414 2009-09-03  Glenn Morris  <rgm@gnu.org>
8416         * arc-mode.el (archive-mode):
8417         * dos-fns.el (set-default-process-coding-system):
8418         * man.el (Man-getpage-in-background):
8419         * menu-bar.el (menu-bar-describe-menu):
8420         * server.el (server-process-filter):
8421         * startup.el (command-line):
8422         * tar-mode.el (tar-header-block-tokenize, tar-extract):
8423         * w32-fns.el (set-default-process-coding-system):
8424         * x-dnd.el (x-dnd-handle-file-name):
8425         * international/mule-cmds.el (mule-menu-keymap)
8426         (set-default-coding-systems, language-info-alist, set-language-info)
8427         (set-language-environment, standard-display-european-internal)
8428         (set-locale-environment):
8429         * international/mule-diag.el (mule-diag):
8430         * mail/emacsbug.el (report-emacs-bug):
8431         * mail/rmail.el (rmail-mode):
8432         * mail/sendmail.el (mail-setup):
8433         Use default-value rather than default-enable-multibyte-characters.
8435         * progmodes/f90.el: Move all safe properties into the defcustoms.
8436         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
8438         * calendar/appt.el (appt-check):
8439         * calendar/diary-lib.el (diary-set-header, diary-live-p)
8440         (diary-check-diary-file, diary-list-entries)
8441         (diary-include-other-diary-files, diary-simple-display)
8442         (diary-fancy-display, diary-print-entries)
8443         (diary-mark-included-diary-files, diary-make-entry):
8444         Don't call substitute-in-file-name on diary-file.
8446 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
8447             Stefan Monnier  <monnier@iro.umontreal.ca>
8449         * mail/footnote.el (footnote-prefix): Make it a defcustom.
8450         (footnote-mode-map): Move initialization into the declaration.
8451         (footnote-minor-mode-map): Define it rather than changing global-map.
8452         (footnote-mode): Use define-minor-mode.
8454 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
8456         * net/tramp.el (tramp-handle-file-attributes-with-ls)
8457         (tramp-do-file-attributes-with-perl)
8458         (tramp-do-file-attributes-with-stat): Rename from
8459         `tramp-handle-file-attributes-with-*'.
8460         (tramp-handle-file-attributes): Use them.
8461         (tramp-do-directory-files-and-attributes-with-perl)
8462         (tramp-do-directory-files-and-attributes-with-stat): Rename from
8463         `tramp-handle-directory-files-and-attributes-with-*'.
8464         (tramp-handle-directory-files-and-attributes): Use them.
8465         (tramp-method-out-of-band-p): Additional parameter SIZE.
8466         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
8467         (tramp-handle-write-region): Use it.
8468         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
8469         (tramp-handle-vc-registered): Check, whether the first run did
8470         return files to be tested.
8471         (tramp-advice-make-auto-save-file-name): Do not call directly
8472         `tramp-handle-make-auto-save-file-name', because this would bypass
8473         the locking mechanism.
8475         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
8476         (file-remote-p, process-file, start-file-process, set-file-times)
8477         (tramp-compat-file-attributes): Compatibility functions shall not
8478         call directly `tramp-handle-*', because this would bypass the
8479         locking mechanism.
8480         (tramp-compat-number-sequence): New defun.
8482 2009-09-02  Glenn Morris  <rgm@gnu.org>
8484         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
8485         alias for float-time.
8486         (time-to-number-of-days): In Emacs, use float-time.
8487         * net/newst-backend.el (time-add): Suppress warnings from compat
8488         function.
8489         * time.el (emacs-uptime, emacs-init-time):
8490         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
8491         Use float-time rather than time-to-seconds.
8493         * minibuffer.el (completion-initials-expand): Fix typo.
8495         * faces.el (modeline, modeline-inactive, modeline-highlight)
8496         (modeline-buffer-id):
8497         * info.el (info-menu-5): Mark these face aliases as obsolete.
8499 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
8501         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
8502         space ...
8503         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
8504         no "--thread" option.
8505         (gdb-stopped): Don't print "Switched to thread" message when it is
8506         unchanged.
8508 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8510         * minibuffer.el (completion-try-completion)
8511         (completion-all-completions): Remove ill-defined (and
8512         mistakenly installed and luckily never used nor documented)
8513         `completion-styles' property.
8514         (completion-initials-expand, completion-initials-all-completions)
8515         (completion-initials-try-completion): New functions.
8516         (completion-styles-alist): Add doc to each entry.
8517         Add new `initials' entry.
8519 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
8521         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
8522         MI command -var-evaluate-expression.
8523         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
8524         and tweak for case of string child.
8525         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
8527 2009-09-01  Glenn Morris  <rgm@gnu.org>
8529         * add-log.el (change-log-date-face, change-log-name-face)
8530         (change-log-email-face, change-log-file-face, change-log-list-face)
8531         (change-log-conditionals-face, change-log-function-face)
8532         (change-log-acknowledgement-face):
8533         * cus-edit.el (custom-invalid-face, custom-rogue-face)
8534         (custom-modified-face, custom-set-face, custom-changed-face)
8535         (custom-saved-face, custom-button-face, custom-button-pressed-face)
8536         (custom-documentation-face, custom-state-face, custom-comment-face)
8537         (custom-comment-tag-face, custom-variable-tag-face)
8538         (custom-variable-button-face, custom-face-tag-face)
8539         (custom-group-tag-face-1, custom-group-tag-face):
8540         * diff-mode.el (diff-header-face, diff-file-header-face)
8541         (diff-index-face, diff-hunk-header-face, diff-removed-face)
8542         (diff-added-face, diff-changed-face, diff-function-face)
8543         (diff-context-face, diff-nonexistent-face):
8544         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
8545         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
8546         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
8547         (Info-title-4-face):
8548         * isearch.el (isearch-lazy-highlight-face):
8549         * log-view.el (log-view-file-face, log-view-message-face):
8550         * paren.el (show-paren-match-face, show-paren-mismatch-face):
8551         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
8552         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
8553         (cvs-msg-face):
8554         * smerge-mode.el (smerge-mine-face, smerge-other-face)
8555         (smerge-base-face, smerge-markers-face):
8556         * wid-edit.el (widget-documentation-face, widget-button-face)
8557         (widget-field-face, widget-single-line-field-face)
8558         (widget-inactive-face, widget-button-pressed-face):
8559         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
8560         (woman-addition-face):
8561         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
8562         (eshell-ls-executable-face, eshell-ls-readonly-face)
8563         (eshell-ls-unreadable-face, eshell-ls-special-face)
8564         (eshell-ls-missing-face, eshell-ls-archive-face)
8565         (eshell-ls-backup-face, eshell-ls-product-face)
8566         (eshell-ls-clutter-face):
8567         * eshell/em-prompt.el (eshell-prompt-face):
8568         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
8569         * obsolete/old-whitespace.el (whitespace-highlight-face):
8570         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
8571         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
8572         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
8573         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
8574         (antlr-font-lock-literal-face):
8575         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
8576         (ebrowse-root-class-face, ebrowse-file-name-face)
8577         (ebrowse-default-face, ebrowse-member-attribute-face)
8578         (ebrowse-member-class-face, ebrowse-progress-face):
8579         * progmodes/make-mode.el (makefile-space-face):
8580         * progmodes/sh-script.el (sh-heredoc-face):
8581         * textmodes/flyspell.el (flyspell-incorrect-face)
8582         (flyspell-duplicate-face):
8583         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
8584         * textmodes/texinfo.el (texinfo-heading-face):
8585         Mark face aliases with "-face" suffix as obsolete.
8587         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
8588         compiler.
8590         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
8591         (eudc-bob-sound-menu): Use defvar rather than defconst, since
8592         easy-menu-define wants to modify these.
8594         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
8596         * net/browse-url.el (browse-url-file-url):
8597         * term/internal.el (dos-codepage-setup):
8598         Use default-value rather than default-enable-multibyte-characters.
8600         * progmodes/etags.el (etags-goto-tag-location):
8601         * progmodes/flymake.el (flymake-highlight-line)
8602         (flymake-goto-file-and-line, flymake-goto-line):
8603         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
8604         (gdb-goto-breakpoint):
8605         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
8606         * progmodes/python.el (python-find-function)
8607         (python-pdbtrack-track-stack-file):
8608         * progmodes/verilog-mode.el (verilog-surelint-off):
8609         * term/ns-win.el (ns-open-file-select-line):
8610         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
8611         Use forward-line rather than goto-line.
8613         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
8614         * textmodes/reftex-index.el (reftex-display-index):
8615         * textmodes/reftex-ref.el (reftex-offer-label-menu):
8616         * textmodes/reftex-toc.el (reftex-toc):
8617         Remove unnecessary bindings of default-major-mode (all are followed by
8618         major-mode check and possible mode switch).
8620 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
8622         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
8623         Handle watchpoints (bug#4282).
8624         (def-gdb-thread-buffer-command): Enable thread to be selected by
8625         clicking without selecting threads buffer first.
8626         (gdb-current-context-command): Use selected frame so that "up",
8627         "down" etc work in the GUD buffer.
8628         (gdb-update): Find selected frame before rendering stack buffer.
8629         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
8631 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
8633         * progmodes/sym-comp.el (displayed-completions): Remove.
8634         (symbol-complete): Use minibuffer-complete.
8636 2009-08-31  Glenn Morris  <rgm@gnu.org>
8638         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
8640         * apropos.el (apropos-symbols-internal):
8641         Handle (obsolete) face aliases.
8643         * faces.el (describe-face): Adjust the output format to be more like
8644         describe-variable, and to mention (obsolete) face aliases.
8645         Adjust the whitespace so that help-setup-xref works.
8647         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
8648         * calendar/diary-lib.el (diary-button-face):
8649         Mark these face aliases as obsolete.
8651         * calendar/calendar.el (calendar-today): Doc fix.
8653 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
8655         * progmodes/gdb-mi.el (gdb-control-all-threads)
8656         (gdb-control-current-thread): Force tool bar update.
8657         (gdb-non-stop-handler): New function.
8658         (gdb-init-1): Use it to test if non-stop mode is supported.
8659         Remove unused gdbmi buffer type.
8661 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
8663         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
8664         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
8666 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
8668         * comint.el (comint-exec-1): Check command is non-null first.
8669         Part of gdb-mi.el change (2009-08-28).
8671 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8673         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
8675 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
8677         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
8678         instead of `dolist' to avoid a recursive require when bootstrapping.
8680 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
8682         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
8684         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
8686         * net/imap.el (imap-send-command): Simplify.
8687         (imap-wait-for-tag): point-max -> buffer-size.
8689         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
8691         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
8692         with constant argument.
8694         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
8696         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
8698         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
8699         Change default, since most of our files don't have a history.
8700         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
8701         the user.
8703         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8704         Add comint-run.
8706         * calc/calc.el: Improve commenting convention.
8707         (calc-digit-map, toplevel): Simplify.
8709         * comint.el (comint-insert-input): Be careful to only set point if we
8710         don't delegate to some other command.
8712         * proced.el (proced-signal-list): Make it an alist.
8713         (proced-grammar-alist): Capitalize names.
8714         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
8715         Disable undo manually and make it read-only.
8716         Use completion-annotate-function.
8718         * minibuffer.el (minibuffer-message): If the current buffer is not
8719         a minibuffer, insert the message in the echo area rather than at the
8720         end of the buffer.
8721         (completion-annotate-function): New variable.
8722         (minibuffer-completion-help): Use it.
8723         (completion--embedded-envvar-table): Environment vars are
8724         always case-sensitive.
8726 2009-08-30  Glenn Morris  <rgm@gnu.org>
8728         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
8729         from fortran-current-defun.
8730         (fortran-beginning-of-subprogram): Be more precise about finding the
8731         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
8732         (fortran-end-of-subprogram): Simplify.
8733         (fortran-current-defun): Use fortran-start-prog-re.
8735 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
8737         * subr.el (do-after-load-evaluation): Simplify.
8739 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
8741         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
8743         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
8744         (vc-rcs-print-log): Use it.
8746         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
8748 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8750         * paths.el (abbrev-file-name): Move to abbrev.el.
8751         * abbrev.el (abbrev-file-name): Move from paths.el.
8752         Obey user-emacs-directory.
8753         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
8754         user-emacs-directory.
8755         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
8756         abbrev-file-name and calc-settings-file any more.
8757         * startup.el (command-line): Recompute abbrev-file-name and
8758         abbreviated-home-dir.
8759         (normal-no-mouse-startup-screen): Improve the generic code and get rid
8760         of the special code for when C-h bindings haven't been changed.
8761         (display-startup-echo-area-message): Use with-current-buffer.
8762         (command-line-1): Use a list of strings, rather than a list of lists
8763         of strings for longopts.
8765         * files.el (get-free-disk-space): Use / for default-directory.
8767         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
8768         Use with-current-buffer.
8770         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
8771         Recognize immutable variables like most-positive-fixnum.
8772         (byte-compile-setq-default): Check and warn if trying to assign
8773         to an immutable variable, or a non-variable.
8775         * progmodes/cc-vars.el (c-comment-continuation-stars):
8776         * progmodes/cc-engine.el (c-looking-at-bos):
8777         * progmodes/cc-cmds.el (c-toggle-auto-state)
8778         (c-forward-into-nomenclature, c-backward-into-nomenclature)
8779         (c-comment-line-break-function): Add version of obsolescence.
8781 2009-08-28  Juri Linkov  <juri@jurta.org>
8783         * files.el (magic-fallback-mode-alist): Add ZIP magic number
8784         associated with `archive-mode'.
8786         * image.el (image-type-header-regexps): Use only JPEG magic number
8787         to determine JPEG images, and don't use `image-jpeg-p' because
8788         Emacs can display non-JFIF non-Exif JPEG images.
8790 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
8792         * arc-mode.el (archive-mode):
8793         * emacs-lisp/re-builder.el (re-builder-unload-function):
8794         Protect against the default value of `major-mode' being nil.
8796 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
8798         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
8799         Fix typos in docstrings.
8801         * progmodes/js.el (js--macro-decl-re): Doc fix.
8802         (js--plain-method-re, js--split-name): Refloc docstring.
8803         (js--class-styles, js--make-merged-item, js--splice-into-items):
8804         Fix typos in docstrings; reflow docstrings.
8805         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
8806         (js--variable-decl-matcher, js--inside-pitem-p)
8807         (js--parse-state-at-point, js--get-all-known-symbols)
8808         (js--symbol-history, js-find-symbol, js--js-references)
8809         (js--moz-interactor, js--js-encode-value, js--read-tab):
8810         Fix typos in docstrings.
8812 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8814         * textmodes/reftex.el (reftex-get-file-buffer-force):
8815         * progmodes/verilog-mode.el (verilog-batch-execute-func):
8816         * emulation/viper.el (viper-go-away, viper-set-hooks):
8817         * emacs-lisp/re-builder.el (re-builder-unload-function):
8818         * emacs-lisp/bytecomp.el (byte-compile-file):
8819         * ses.el (ses-unload-function):
8820         * hexl.el (hexl-find-file):
8821         * files.el (normal-mode):
8822         * ehelp.el (with-electric-help):
8823         * autoinsert.el (auto-insert-alist):
8824         * arc-mode.el (archive-mode):
8825         Use (default-value 'major-mode) instead of default-major-mode.
8827         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
8828         * international/mule.el (load-with-code-conversion):
8829         * emacs-lisp/debug.el (debug):
8830         * ediff-vers.el (ediff-rcs-get-output-buffer):
8831         * dired.el (dired-internal-noselect): Don't let-bind
8832         default-major-mode around code that doesn't use it.
8833         E.g. buffer creation via get-buffer-create doesn't use it.
8835 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
8837         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
8838         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
8839         when writing the temp file.  Otherwise, epa-file gets confused.
8840         (tramp-register-file-name-handlers): Make it a defun.  Move also
8841         `epa-file-handler' to the front of `file-name-handler-alist'.
8843 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8845         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
8846         start right after a ^M.
8847         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
8848         (tramp-completion-file-name-regexp-separate)
8849         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
8850         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
8851         Don't modify last-coding-system-used by accident.
8852         (tramp-completion-file-name-handler): Apply the checks here,
8853         instead during registration.
8854         (tramp-register-file-name-handlers): Renamed from
8855         `tramp-register-file-name-handler'.  Register both
8856         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
8857         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
8859 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
8861         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
8862         Remove variable ...
8863         (gdb-init-1, gdb-display-separate-io-buffer)
8864         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
8865         references to it.
8866         (gdb-inferior-io-mode): Use make-comint-in-buffer.
8867         (gdb-inferior-filter): Use comint-output-filter to stop
8868         echoing and remove ^M characters.
8870 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8872         * emulation/viper-init.el (viper-restore-cursor-type):
8873         * emulation/cua-base.el (cua--update-indications):
8874         Replace default-cursor-type with (default-value 'cursor-type).
8876         * mail/sendmail.el (mail-recover-1):
8877         * international/mule-diag.el (describe-current-coding-system-briefly)
8878         (describe-current-coding-system):
8879         * international/mule-cmds.el (select-safe-coding-system)
8880         (select-message-coding-system)
8881         (set-language-environment-coding-systems, set-locale-environment):
8882         * hexl.el (hexl-insert-multibyte-char):
8883         * dos-w32.el (find-buffer-file-type-coding-system):
8884         * simple.el (what-cursor-position):
8885         Replace uses of default-buffer-file-coding-system
8886         with (default-value 'buffer-file-coding-system).
8888         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
8889         Replace uses of default-cursor-in-non-selected-windows
8890         with (default-value 'cursor-in-non-selected-windows).
8891         Use with-current-buffer.
8893         * mail/feedmail.el: Use CL macros.
8894         (feedmail-run-the-queue, feedmail-send-it-immediately):
8895         * dos-w32.el (find-buffer-file-type): Replace uses of
8896         default-buffer-file-type with (default-value 'buffer-file-type).
8898 2009-08-28  Glenn Morris  <rgm@gnu.org>
8900         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
8901         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
8902         Use default-value of major-mode rather than default-major-mode.
8904 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8906         * Makefile.in (update-elcfiles): Report left over elc files.
8908         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
8909         expand-file-name and with-current-buffer.
8910         (mail-get-names, mail-directory): Use with-current-buffer.
8912         * vc.el (vc-read-revision): New function.
8913         (vc-version-diff, vc-merge): Use it.
8915 2009-08-27  Sam Steingold  <sds@gnu.org>
8917         * simple.el (kill-do-not-save-duplicates): New user option.
8918         (kill-new): When it is non-nil, and the new string is the same as
8919         the latest kill, set replace to t to avoid duplicates in kill-ring.
8921 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
8923         * net/tramp.el (tramp-handle-process-file): Do not flush all
8924         caches when `process-file-side-effects' is set.
8925         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
8926         instead of `tramp-find-file-exists-command'.
8927         Unset `process-file-side-effects'.
8929 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
8931         * net/tramp.el (tramp-methods): New method "rsyncc".
8932         (top): Add completion function for "rsyncc".
8933         (tramp-message-show-message): New defvar.
8934         (tramp-message, tramp-error): Use it.
8935         (tramp-do-copy-or-rename-file-directly): Extend check for direct
8936         remote copying.
8937         (tramp-do-copy-or-rename-file-out-of-band): Handle new
8938         `tramp-methods' entry `copy-env' of "rsyncc".
8939         (tramp-vc-registered-read-file-names): New defconst.
8940         (tramp-vc-registered-file-names): New defvar.
8941         (tramp-handle-vc-registered): Implement optimization strategy.
8942         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
8943         (tramp-vc-file-name-handler): New defun.
8944         (tramp-get-ls-command, tramp-get-test-command)
8945         (tramp-get-file-exists-command, tramp-get-remote-ln)
8946         (tramp-get-remote-perl, tramp-get-remote-stat)
8947         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
8949         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
8950         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
8951         timestamps.
8952         (tramp-get-file-property): Check for timestamps in
8953         `tramp-cache-inhibit-cache'.
8954         (tramp-set-file-property): Write timestamp.
8956 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
8958         * language/japan-util.el (japanese-symbol-table): Add entries for
8959         cp932-2-byte.
8961         * international/characters.el: Add category `j' to cp932-2-byte.
8963 2009-08-27  Kenichi Handa  <handa@m17n.org>
8965         * international/fontset.el (build-default-fontset-data): New macro.
8966         (setup-default-fontset): Use build-default-fontset-data for CJK,
8967         tibetan, ethiopic, and ipa.
8969 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8971         * cus-start.el (default-major-mode): Customize `major-mode' instead.
8972         (enable-multibyte-characters): Not customizable any more.
8974         * subr.el (default-mode-line-format, default-header-line-format)
8975         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
8976         (default-direction-reversed, default-truncate-lines)
8977         (default-left-margin, default-tab-width, default-case-fold-search)
8978         (default-left-margin-width, default-right-margin-width)
8979         (default-left-fringe-width, default-right-fringe-width)
8980         (default-fringes-outside-margins, default-scroll-bar-width)
8981         (default-vertical-scroll-bar, default-indicate-empty-lines)
8982         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
8983         (default-fringe-cursor-alist, default-scroll-up-aggressively)
8984         (default-scroll-down-aggressively, default-fill-column)
8985         (default-cursor-type, default-buffer-file-type)
8986         (default-cursor-in-non-selected-windows)
8987         (default-buffer-file-coding-system, default-major-mode)
8988         (default-enable-multibyte-characters): Mark as obsolete.
8990 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
8992         * vc-dir.el (vc-dir-update): Remove debug helper.
8994         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
8996 2009-08-26  Sam Steingold  <sds@gnu.org>
8998         * simple.el (save-interprogram-paste-before-kill): New user option.
8999         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
9000         save the interprogram-paste into kill-ring before overriding it
9001         with the Emacs kill.
9003 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
9005         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
9006         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
9007         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
9008         and move to vc-rcs.el.
9009         (vc-default-next-revision): Rename to vc-rcs-next-revision and
9010         move to vc-rcs.el.
9011         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
9012         (vc-rcs-update-changelog): Remove.
9013         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
9014         and move to vc-rcs.el.
9016         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
9017         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
9018         renaming.
9019         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
9020         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
9021         vc.el, renamed to be RCS specific.
9023         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
9024         New functions.
9025         (vc-cvs-update-changelog): Move here from vc.el.
9027         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
9028         New functions.
9030 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9032         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
9034 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
9036         * vc-git.el (vc-git-register): Use "git add" for directories.
9037         (vc-git-stash, vc-git-stash-show): New functions.
9038         (vc-git-extra-menu-map): Bind them.
9040         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
9041         directory correctly in case the item is a directory itself.
9043         * vc.el: Document the desired behavior for reverted files in the
9044         `added' state.
9045         (vc-default-prettify-state-info): Remove function, unused.
9047         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
9049 2009-08-26  Glenn Morris  <rgm@gnu.org>
9051         * bindings.el (standard-mode-line-format): Reposition dashes in
9052         which-func entry.  (Bug#4217)
9054         * files.el (enable-local-variables, enable-local-eval)
9055         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
9056         the defcustoms.
9057         (auto-mode-alist, ignored-local-variables)
9058         (save-some-buffers-action-alist): Move risky declarations to the
9059         definitions.
9060         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
9061         (font-lock-defaults, format-alist, imenu--index-alist)
9062         (imenu-generic-expression, input-method-alist, minor-mode-alist)
9063         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
9064         (mode-line-modified, mode-line-mule-info, mode-line-position)
9065         (mode-line-process, mode-line-remote, outline-level)
9066         (parse-time-rules, rmail-output-file-alist)
9067         (special-display-buffer-names, vc-mode):
9068         Move risky declarations to the relevant files.
9069         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
9070         (mode-line-modified, mode-line-process, mode-line-position)
9071         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
9072         * font-core.el (font-lock-defaults):
9073         * format.el (format-alist):
9074         * vc-hooks.el (vc-mode):
9075         * window.el (special-display-buffer-names):
9076         * international/mule-cmds.el (input-method-alist):
9077         Define riskiness here (dumped file) rather than in files.el.
9078         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
9079         * imenu.el (imenu-generic-expression, imenu--index-alist):
9080         * outline.el (outline-level):
9081         * time.el (display-time-string):
9082         * calendar/parse-time.el (parse-time-rules):
9083         * mail/rmailout.el (rmail-output-file-alist):
9084         Autoload riskiness here, rather than placing in files.el.
9086 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
9088         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
9090 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
9092         * simple.el (process-file-side-effects): New defvar.
9094         * dired-aux.el (dired-show-file-type):
9095         * vc.el (vc-diff-internal):
9096         * vc-arch.el (vc-arch-diff):
9097         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
9098         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
9099         * vc-git.el (vc-git-registered, vc-git-working-revision)
9100         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
9101         (vc-git--empty-db-p):
9102         * vc-hooks.el (vc-user-login-name):
9103         * vc-svn.el (vc-svn-registered, vc-svn-state)
9104         (vc-svn-dir-extra-headers, vc-svn-find-revision):
9105         * progmodes/grep.el (grep-probe): Let-bind
9106         `process-file-side-effects' with nil.
9108         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
9110         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
9111         daemon.  Replace ping by checking for running service for bluez
9112         and zeroconf.  (Bug#4239)
9114 2009-08-25  Kevin Ryde  <user42@zip.com.au>
9116         * net/dig.el (dig): Add autoload cookie.
9118 2009-08-25  Glenn Morris  <rgm@gnu.org>
9120         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
9121         load-history for absolute file-names.
9122         (byte-compile-file-form-require): Warn about use of the cl package.
9124         * format.el (format-alist): Doc fix.
9126         * play/bubbles.el (top-level): Don't require cl at run-time.
9128         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
9129         run-time cl).
9131 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
9133         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
9134         from cl package.
9135         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
9137 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
9139         * calc/calc-alg.el (math-trig-rewrite)
9140         (math-hyperbolic-trig-rewrite): New functions.
9141         (calc-simplify): Simplify trig functions when asked.
9143 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9145         * diff-mode.el (diff-find-source-location): Avoid goto-line.
9147 2009-08-24  Kenichi Handa  <handa@m17n.org>
9149         * language/ind-util.el (mapthread): Delete it.
9150         (combinatorial): New function.
9151         (indian--puthash-cv): Use combinatorial instead of mapthread.
9153 2009-08-22  Kevin Ryde  <user42@zip.com.au>
9155         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
9156         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
9157         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
9158         Clarify docstring that the value is strings not symbols.
9159         (checkdoc-list-of-strings-p): New function.
9161 2009-08-22  Glenn Morris  <rgm@gnu.org>
9163         * files.el (auto-mode-alist):
9164         * hippie-exp.el (he-concat-directory-file-name):
9165         * lpr.el (lpr-windows-system, printer-name):
9166         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
9167         * ps-print.el (ps-windows-system):
9168         * startup.el (command-line):
9169         * emulation/viper-ex.el (viper-glob-function):
9170         * international/mule-cmds.el (set-language-environment-coding-systems):
9171         * net/ange-ftp.el (ange-ftp-write-region):
9172         * obsolete/fast-lock.el (fast-lock-cache-name):
9173         Remove code for defunct system-types emx, macos, mswindows, next-mach,
9174         unisoft-unix, vax-vms, win32, w32.
9176         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
9177         given name if the pattern is not more specific.
9179         * calendar/lunar.el (lunar-phase-names): New option.
9180         (lunar-phase): Doc fix.
9181         (lunar-cycles-per-year): New constant.
9182         (lunar-index): New function.
9183         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
9184         (lunar-phase-name): Use lunar-phase-names.
9185         (calendar-lunar-phases): Use format.
9186         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
9188         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
9189         Copy imenu-example--name-and-position function here for own use.
9190         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
9192         * bs.el (bs--redisplay):
9193         * cus-edit.el (custom-redraw):
9194         * ibuffer.el (ibuffer-bury-buffer):
9195         * server.el (server-goto-line-column):
9196         * startup.el (command-line-1):
9197         * strokes.el (strokes-xpm-for-stroke):
9198         * term.el (term-display-buffer-line):
9199         * view.el (View-goto-line):
9200         * calc/calc.el (calc-do, calc-trail-buffer):
9201         * play/gamegrid.el (gamegrid-add-score-insecure):
9202         * progmodes/ada-mode.el (ada-compile-goto-error):
9203         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
9204         (ebrowse-select-1st-to-9nth):
9205         * progmodes/cperl-mode.el (cperl-time-fontification):
9206         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
9207         * progmodes/gud.el (gud-display-line):
9208         (idlwave-shell-display-line):
9209         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
9210         * progmodes/make-mode.el (makefile-browser-toggle):
9211         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
9212         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
9213         * textmodes/picture.el (picture-draw-rectangle):
9214         * textmodes/reftex-index.el (reftex-index-goto-letter):
9215         (reftex-select-jump-to-previous):
9216         * textmodes/reftex-sel.el (reftex-find-start-point)
9217         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
9218         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
9219         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
9220         * textmodes/tex-mode.el (tex-compilation-parse-errors):
9221         * textmodes/two-column.el (2C-associated-buffer):
9222         Use forward-line rather than goto-line.
9224         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
9225         goto-line.
9227         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
9228         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
9229         (quick-check-list-to-regexp): Declare.
9231         * progmodes/make-mode.el (makefile-browser-insert-selection):
9232         Use goto-char rather than goto-line.
9234         * progmodes/prolog.el (compilation-error-regexp-alist)
9235         (compilation-forget-errors): Declare.
9237 2009-08-22  Juri Linkov  <juri@jurta.org>
9239         * progmodes/grep.el (lgrep, rgrep): At the beginning
9240         set `dir' to `default-directory' unless `dir' is a non-nil
9241         readable directory.  (Bug#4052)
9242         (lgrep, rgrep): Change a weird way to report an error
9243         from using `read-string' to using `error'.
9244         Instead of using interactive arguments in the function body,
9245         add new argument `confirm'.
9247 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9249         * textmodes/remember.el (remember-buffer):
9250         * progmodes/cperl-mode.el (cperl-vc-header-alist):
9251         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
9252         (icalendar-extract-ical-from-buffer):
9253         * net/newst-treeview.el (newsticker-groups-filename):
9254         * net/newst-backend.el (newsticker-cache-filename):
9255         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
9256         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
9257         (speedbar-add-ignored-path-regexp, speedbar-line-path)
9258         (speedbar-buffers-line-path, speedbar-path-line)
9259         (speedbar-buffers-line-path):
9260         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
9261         (epg-sign-keys):
9262         * epa.el (epa-display-verify-result):
9263         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
9265 2009-08-21  Glenn Morris  <rgm@gnu.org>
9267         * progmodes/js.el (inferior-moz-process): Fix declaration.
9269         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
9271         * obsolete/rnewspost.el (news-mail-reply):
9272         Use goto-char rather than goto-line.
9274         * term/ns-win.el (ns-open-file-select-line):
9275         Use line-beginning-position rather than goto-line.
9277         * apropos.el (apropos-command):
9278         * ehelp.el (electric-helpify):
9279         * printing.el (pr-show-setup):
9280         * strokes.el (strokes-help):
9281         * tutorial.el (tutorial--describe-nonstandard-key)
9282         (tutorial--detailed-help):
9283         * woman.el (woman-mini-help, woman-display-extended-fonts):
9284         * calc/calc-help.el (calc-describe-key):
9285         * emulation/edt.el (edt-electric-helpify):
9286         * international/mule-diag.el (mule-diag):
9287         * play/yow.el (apropos-zippy):
9288         * progmodes/python.el (python-describe-symbol):
9289         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
9290         * textmodes/table.el (*table--cell-describe-mode)
9291         (*table--cell-describe-bindings):
9292         Use help-print-return-message rather than the now obsolete alias.
9294         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
9295         (calendar-cursor-to-visible-date):
9296         * play/5x5.el (5x5-position-cursor):
9297         * play/decipher.el (decipher):
9298         * play/gomoku.el (gomoku-goto-xy):
9299         * play/landmark.el (lm-goto-xy):
9300         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
9301         (mpuz-paint-digit):
9302         Use forward-line, not goto-line.
9304         * mail/rmail.el (rmail-obsolete): Delete custom group.
9305         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
9306         (rmail-remote-password, rmail-remote-password-required):
9307         Remove unneeded :set-after and :set properties.
9309 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
9311         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
9313 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
9315         * loadup.el: Remove leftover macos code.
9317         * vc-git.el (vc-git-annotate-command): Run asynchronously.
9318         Explicitly pass the date format to git blame so that user local
9319         so that the output format can be parsed.
9321 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
9323         * net/dbus.el (top): Don't check for (getenv
9324         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
9326 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
9328         * log-edit.el (log-edit-strip-single-file-name): New var.
9329         (log-edit-insert-changelog): Use it.  Bug#3571
9331 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9333         * subr.el (read-passwd): Use read-key so keypad keys work as well.
9334         Bug#3287
9336         * help.el (help-print-return-message): Rename from
9337         print-help-return-message.
9339         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
9340         cvs-mode-map parent hack.
9341         (log-view-mode): Derive from special-mode.
9343         * linum.el (linum-mode): window-size-change-functions is redundant.
9344         Adapt to new window-configuration-change-hook behavior.
9345         (linum-after-size, linum-after-config): Remove.
9347         * imenu.el (imenu-example--name-and-position)
9348         (imenu-example--lisp-extract-index-name)
9349         (imenu-example--create-lisp-index, imenu-example--create-c-index):
9350         Mark as obsolete.
9352         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
9353         (inferior-prolog-mode): Use it.
9354         (inferior-prolog-load-file): Reset list of errors.
9356 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9358         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
9360         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
9362 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
9364         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
9365         is running already.
9367 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9369         * subr.el (listify-key-sequence-1): Use normal syntax since those
9370         integers are nowadays always represented by the same (positive) number
9371         on all platforms.
9372         (read-key-empty-map): New const.
9373         (read-key-delay): New var.
9374         (read-key): New function.
9375         (force-mode-line-update): Use with-current-buffer.
9376         (locate-user-emacs-file): Don't forget to abbreviate the file name.
9377         (start-process-shell-command, start-file-process-shell-command):
9378         Discourage the use of command-args.
9380 2009-08-19  Glenn Morris  <rgm@gnu.org>
9382         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
9384 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9386         * simple.el (choose-completion-string): Don't rely on
9387         minibuffer-completing-file-name and ad-hoc checks to decide whether
9388         to continue completion or not.
9390         * minibuffer.el (minibuffer-hide-completions): New function.
9391         (completion--do-completion): Use it.
9392         (completions-annotations): New face.
9393         (completion--insert-strings): Use it.
9394         (completion-pcm--delim-wild-regex): Add docstring.
9395         (completion-pcm--string->pattern): Add support for 0-width delimiters
9396         in completion-pcm--delim-wild-regex.
9398 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9400         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
9401         Remove unused var `buffer-modified-p'.
9403         * minibuffer.el (completion--do-completion): Move point for the #b001
9404         case as well (bug#4176).
9405         (minibuffer-complete, minibuffer-complete-word): Don't move point.
9407 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
9409         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
9410         and :session buses.
9412 2009-08-18  Kenichi Handa  <handa@m17n.org>
9414         * international/ucs-normalize.el (ucs-normalize-version):
9415         Change to 1.1.
9416         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
9417         (utf-8-hfs): Make it perform normalization on encoding too.
9419         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
9420         (sentence-end-without-space): Delete duplicated chars.
9421         (sentence-end-base): Likewise.
9423         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
9424         (html-mode): Delete duplicated chars from sentence-end-base.
9426         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
9427         (texinfo-mode): Delete duplicated chars from sentence-end-base.
9429 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
9431         * files.el (hack-one-local-variable): If the mode function is for
9432         a minor mode, pass it an argument (Bug#4148).
9434 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
9436         * net/tramp.el (tramp-register-completion-file-name-handler):
9437         Check also for (member 'partial-completion completion-styles).
9439 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9441         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
9442         abbrev (Bug#3943).
9444 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
9446         * progmodes/cperl-mode.el: Merge upstream 6.2.
9447         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
9448         (cperl-forward-re): Check cperl-brace-recursing.
9449         (cperl-highlight-charclass): New function.
9450         (cperl-find-pods-heres): Use it.
9451         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
9452         (cperl-beautify-regexp-piece): Fix column calculation.
9453         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
9454         (cperl-beautify-level): Don't process entire regexp.
9455         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
9456         calling man.
9457         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
9458         (cperl-init-faces): Build a list in the normal way.
9460 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9462         * calendar/parse-time.el (parse-time-string-chars): Save match
9463         data.
9465 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9467         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
9468         (sql-product): Use it.
9469         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
9470         (sql-set-product): Add completion.
9471         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
9472         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
9473         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
9474         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
9475         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
9476         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
9477         (sql-highlight-db2-keywords): Remove.
9478         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
9479         (sql-highlight-product): Use derived-mode-p.
9480         (sql-set-sqli-buffer): Use with-current-buffer.
9481         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
9482         Simplify.
9484         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
9486         * term.el: Fix commenting convention, turn comments into docstrings.
9488 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
9490         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
9492 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
9494         * calendar/parse-time.el (parse-time-string-chars): Compute using
9495         character classes, to handle non-ascii characters (Bug#3190).
9497 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9499         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
9500         another heredoc if the user adds another < (Bug#3226).
9502         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
9503         Don't initialize based on window-system (Bug#4124).
9505         * facemenu.el (facemenu-read-color): Use a completion function
9506         that accepts any defined color, such as RGB triplets (Bug#3677).
9508         * files.el (get-free-disk-space): Change fallback default
9509         directory to /.  Expand DIR argument before switching to fallback.
9510         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
9512 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
9514         * files.el (load-library): Doc fix.
9516 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
9518         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
9519         (viper-if-string): Redefine C-s in the minibuffer to insert the last
9520         incremental search string.
9522         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
9523         XEmacs.
9525         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
9526         (ediff-merge-region-is-non-clash)
9527         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
9528         Also check if the job is really a merge job.
9530         * ediff.el (ediff-current-file): New function.
9532 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
9534         * progmodes/js.el: Edit docstrings throughout to follow Emacs
9535         conventions.
9536         (js-insert-and-indent): Delete function.
9537         (js-mode-map): Don't bind keys to js-insert-and-indent.
9538         (js-beginning-of-defun): Rename from js--beginning-of-defun.
9539         (js-end-of-defun): Rename from js--end-of-defun.
9540         (js-auto-indent-flag): Delete variable.
9542 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
9544         * progmodes/js.el: Remove proclaim statement.
9545         Defvar which-func-imenu-joiner-function to silence compiler.
9547         * files.el (auto-mode-alist): Use js-mode for .js files.
9549         * progmodes/js2-mode.el: Remove file.
9551         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
9553         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
9555         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
9557 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
9558             Karl Landstrom  <karl.landstrom@brgeight.se>
9560         * progmodes/js.el: New file.
9562 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
9564         * timezone.el (timezone-parse-date): Add ability to understand ISO
9565         basic format (minimal separators) dates in addition to the
9566         already-supported extended format dates.
9568 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
9570         * international/ucs-normalize.el: Add a `coding' file variable.
9572         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
9574 2009-08-14  Sam Steingold  <sds@gnu.org>
9576         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
9578 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
9580         * faces.el (help-argument-name): Define it here instead of
9581         help-fns.el, because in daemon mode help-fns.el may be loaded when
9582         faces are still uninitialized (Bug#1078).
9584         * help-fns.el (help-argument-name): Move defface to faces.el.
9586 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
9588         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
9589         create buffer with a pty but no process so that GDB can make the
9590         inferior the controlling process.
9592 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
9594         * international/ucs-normalize.el: New file.
9596 2009-08-13  Richard Stallman  <rms@gnu.org>
9598         * mail/rmail.el (rmail-get-attr-names):
9599         Accept an attribute header that is too short.
9601         * mail/rmail.el (rmail-forget-messages):
9602         Ignore nil elt in rmail-message-vector.  Use dotimes.
9604         * progmodes/compile.el (compilation-goto-locus):
9605         Use next-error-move-function.
9607         * simple.el (next-error-move-function): New variable.
9609 2009-08-12  Juri Linkov  <juri@jurta.org>
9611         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
9612         always non-nil.  (Bug#4052)
9614         * replace.el (read-regexp): Return empty string when
9615         `default-value' is nil.
9616         (keep-lines-read-args): Don't use empty string as the
9617         default value for `read-regexp'.  (Bug#2495)
9619 2009-08-12  Juri Linkov  <juri@jurta.org>
9621         * international/mule-cmds.el (ucs-insert): Change arguments
9622         from `arg' to `character', `count', `inherit' to be the same
9623         as in `insert-char'.  Doc fix.  (Bug#4039)
9625         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
9627 2009-08-12  Juri Linkov  <juri@jurta.org>
9629         * files-x.el: New file.
9631         * files.el: Move code that deals with adding/deleting
9632         file/directory-local variables to files-x.el.
9634         * Makefile.in (ELCFILES): Add files-x.elc.
9636 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
9638         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
9639         to use `goto-line'.
9640         (gdb-place-breakpoints, gdb-get-location): Rewritten without
9641         `goto-line'.
9642         (gdb-invalidate-disassembly): Do not refresh upon receiving
9643         'update signal.  Instead, update all disassembly buffers only after
9644         threads list.
9645         (gdb): Send -target-detach when buffer is killed (Bug#3794).
9646         (gdb-starting): Moved -data-list-register-names...
9647         (gdb-stopped): ...here so it's sent when first thread stops.
9648         (gdb-registers-handler-custom): Do nothing if register names are
9649         unknown yet.
9651         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
9652         from `gdb-mi.el' to avoid extra tangling.
9654         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
9655         change which breaks `gud-def' definitions used in `gdb'.
9656         (gdb-update-gud-running): No extra fuss for updating frame number.
9658 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9660         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
9661         (describe-language-environment-map, setup-language-environment-map)
9662         (set-coding-system-map): Move initialization into declaration.
9663         (set-language-info-alist): Last arg to define-key-after can be skipped.
9665         * international/quail.el (quail-completion-1): Simplify.
9666         (quail-define-rules): Use slightly more compact code.
9667         (quail-insert-decode-map): Propertize keys, compact columns.
9669         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9670         Add goto-line.
9672 2009-08-10  Miles Bader  <miles@gnu.org>
9674         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
9675         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
9676         (js2-instance-member, js2-private-member, js2-private-function-call)
9677         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
9678         (js2-magic-paren, js2-external-variable):
9679         Remove "-face" suffix from face names.
9680         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
9681         (js2-highlight-undeclared-vars, js2-peek-token)
9682         (js2-parse-function-params, js2-mode-show-errors)
9683         (js2-mode-show-warnings, js2-make-magic-delimiter)
9684         (js2-mode-highlight-magic-parens): Update to use new face names.
9686 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
9688         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
9689         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
9691 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
9693         * subr.el: Provide hashtable-print-readable.
9695         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
9696         hs-c-like-adjust-block-beginning.
9697         (hs-hide-block-at-point): Stop hiding at the beginning of
9698         hs-block-end-regexp (Bug#700).
9700 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
9702         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
9703         a macro.
9704         (gdb-registers-handler-custom): Do not fail when register names
9705         are unavailable.
9707 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
9709         * progmodes/gdb-mi.el (gdb-control-all-threads)
9710         (gdb-control-current-thread): Interactive setters for
9711         `gdb-gud-control-all-threads' to use in menu.
9712         (gdb-show-run-p): Show «Go» when process is not active.
9713         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
9714         gud/thread.xpm and gud/all.xpm.
9716 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
9718         * net/net-utils.el (net-utils-font-lock-keywords): New var.
9719         (nslookup-font-lock-keywords): Make it a variable.
9720         (net-utils-mode): New mode for viewing diagnostic network output.
9721         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
9722         (net-utils-run-simple): New function.
9723         (ifconfig, iwconfig, netstat, arp, route): Use it.
9725 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
9727         * progmodes/gdb-mi.el (gdb-read-memory-custom)
9728         (gdb-memory-set-address, def-gdb-set-positive-number)
9729         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
9730         after changing settings.
9731         (gdb-invalidate-disassembly): Update when first shown.
9732         (gdb-edit-locals-value): Fixed.
9733         (gdb-registers-handler-custom): Print registers in right order and
9734         allow changing register values (only for current thread yet).
9735         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
9736         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
9737         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
9738         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
9739         info in mode name.
9740         (gdb-registers-mode-map): TAB to switch to locals.
9742 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
9744         * mail/rmail.el (rmail-add-mbox-headers)
9745         (rmail-set-message-counters-counter): Search for
9746         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
9748 2009-08-08  Glenn Morris  <rgm@gnu.org>
9750         * Makefile.in (ELCFILES): Update.
9752 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
9754         * mail/sendmail.el (mail-yank-original): Set
9755         buffer-file-coding-system from the one used by the message whose
9756         text is yanked.
9758         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
9759         to "windows" when "pgnuplot" is used.
9760         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
9761         call accept-process-output if "pgnuplot" is used.
9762         (calc-graph-init): Don't send -display and -geometry to
9763         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
9764         running "pgnuplot -V" with shell-command-to-string.
9766         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
9767         the default.
9769 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
9771         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
9772         org/org-latex.elc.
9774 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
9776         * vc-dispatcher.el (vc-resynch-window): Update comment.
9778         * term.el (term-handle-ansi-escape): Add comments with the
9779         terminfo capabilities implemented.
9781 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
9783         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
9784         (gdb-var-create-handler): Rewritten using JSON parser.
9785         (gdb-propertize-header): Moved earlier.
9786         (gdb-set-header): Removed to avoid duplication.
9787         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
9788         Refresh disassembly buffers only after threads list have been
9789         update.
9790         (gdb-threads-header, gdb-registers-header): Per-buffer header line
9791         variables.
9793 2009-08-04  Juri Linkov  <juri@jurta.org>
9795         * files.el: Commands to add/delete file/directory-local variables.
9796         (read-file-local-variable, read-file-local-variable-value)
9797         (read-file-local-variable-mode, modify-file-local-variable)
9798         (modify-file-local-variable-prop-line)
9799         (modify-dir-local-variable): New functions.
9800         (add-file-local-variable, delete-file-local-variable)
9801         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
9802         (add-dir-local-variable, delete-dir-local-variable)
9803         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
9804         (copy-dir-locals-to-file-locals-prop-line): New commands.
9806 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
9808         * abbrev.el (insert-abbrev-table-description): Prettify output.
9809         Suggested by Karl Chen.
9811 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
9813         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
9814         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
9815         (gdb-overlay-arrow-position, gdb-thread-position)
9816         (gdb-disassembly-position): Declare variables.
9817         (gdb-wait-for-pending): Function now.
9818         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
9819         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
9820         compilation goes smoothly.
9821         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
9822         (gdb-non-stop-setting): New customization setting which replaces
9823         `gdb-non-stop' so changing it doesn't break active GDB session.
9824         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
9825         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
9826         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
9827         (gdb-show-threads-by-default): New customization options.
9828         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
9829         routines.
9830         (gdb-get-buffer-create): Send buffers update signal when they are
9831         created.
9832         (gdb-invalidate-locals, gdb-invalidate-registers)
9833         (gdb-invalidate-breakpoints)
9834         (gdb-invalidate-threads, gdb-invalidate-disassembly)
9835         (gdb-invalidate-memory): Accept update signal.
9836         (gdb-current-context-command): Use --frame option.
9837         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
9838         Implement `gdb-frame-number' selection logic.
9839         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
9840         whether to show GUD toolbar buttons.
9841         (gdb-thread-exited): Unselect current thread when it exits.
9842         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
9843         (gdb-mark-line): Routine which sets overlay arrow or inverses
9844         video on fringeless displays.
9845         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
9846         to build aligned columns of data in GDB buffers and set text
9847         properties line-by-line.
9848         (gdb-invalidate-breakpoints)
9849         (gdb-breakpoints-list-handler-custom)
9850         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
9851         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
9852         (gdb-registers-handler-custom): Align data columns.
9853         (gdb-locals-handler-custom): Now prints data like in variable
9854         declarations.
9855         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
9856         Removed confusing buttons.
9857         (gdb-invalidate-threads): Append --frame.
9858         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
9859         between breakpoints/threads buffers.
9860         (gdb-set-window-buffer): Now can ignore dedicated windows.
9861         (gdb-propertize-header): Use `gdb-set-window-buffer'.
9862         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
9863         (def-gdb-thread-buffer-gud-command): Replaces
9864         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
9865         for fine thread control.
9866         (gdb-preempt-existing-or-display-buffer): New function used to
9867         display bound buffers without breaking window layout.
9868         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
9869         (gdb-select-frame): New version of `gdb-frames-select' which now
9870         sets `gdb-frame-number' so commands may use --frame option instead
9871         of inner debugger state.
9872         (gdb-frame-handler): Do not set `gdb-frame-number'.
9873         (gdb-threads-mode-map): Select threads with mouse.
9875         * progmodes/gud.el (gdb-gud-context-call): Declare function to
9876         avoid compilation warning.
9877         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
9878         `gdb-show-stop-p`.
9880         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
9881         Argument `key' renamed to `buffer-type'.
9882         (gdb-current-context-buffer-name): Do not add thread info to
9883         buffer name when no thread is selected.
9884         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
9885         command (bug 3794).
9886         (gdb-thread-selected): Handle `=thread-selected' notification.
9887         (gdb-wait-for-pending): New macro to deal with congestion problems.
9888         (gdb-breakpoints-list-handler-custom): Don't fail on pending
9889         breakpoints.
9890         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
9891         This fixes problem similar to one described in bug 3947.
9892         (gud-menu-map): More menu items.
9893         (gdb-init-1): Reset `gdb-thread-number' to nil.
9895         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
9896         non-stop settings.
9898         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
9899         (gdb-current-context-command): Do not append --thread if
9900         `gdb-thread-number' is nil.
9901         (gdb-running-threads-count, gdb-stopped-threads-count): New
9902         variables.
9903         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
9904         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
9905         customization options.
9906         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
9907         GUD commands.
9908         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
9909         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
9910         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
9911         set `gdb-thread-number' and update `gud-running' properly.
9912         (gdb-running): Update threads list when new threads appear.
9913         (gdb-stopped): Support non-stop operation and new thread switching
9914         logic.
9915         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
9916         (gdb-json-partial-output): New set of JSON routines.
9917         (def-gdb-auto-update-trigger): New `signal-list' optional
9918         argument.
9919         (gdb-thread-list-handler-custom): Update `gud-running',
9920         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
9921         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
9922         (gdb-continue-thread, gdb-step-thread): New commands for fine
9923         thread execution control.
9924         (gud-menu-map): New menu items to switch non-stop options.
9925         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
9926         (gdb-send): Mimic RET properly (bug 3794).
9928         * progmodes/gdb-mi.el (gdb-rules-name-maker)
9929         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
9930         gdb-buffer-rules.
9931         (def-gdb-auto-update-handler): New nopreserve optional argument.
9932         (gdb-stack-list-frames-custom): Print stack from top to bottom.
9934         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
9935         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
9936         (gdb-parent-mode): New mode to derive other GDB modes from.
9937         (gdb-display-disassembly-for-thread)
9938         (gdb-frame-disassembly-for-thread): New commands for threads
9939         buffer.
9941         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
9942         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
9943         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
9944         (gdb-update): We now store all GDB buffers in a list so that they
9945         can be updated by traversing a list instead of calling invalidate
9946         triggers explicitly.
9947         (def-gdb-trigger-and-handler): New macro to define trigger-handler
9948         pair for GDB buffer.
9949         (gdb-stack-buffer-name): Add thread information.
9950         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
9951         handle pending triggers.
9952         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
9953         (def-gdb-thread-buffer-simple-command)
9954         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
9955         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
9956         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
9957         New commands which show buffers bound to thread.
9958         (gdb-stack-list-locals-regexp): Removed unused regexp.
9960         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
9961         (gdb-locals-buffer-name, gdb-registers-buffer-name)
9962         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
9963         to (gud-comint-buffer) in *-buffer-name functions
9964         because (gdb-get-target-string) already does that.
9965         (gdb-locals-handler-custom, gdb-registers-handler-custom)
9966         (gdb-changed-registers-handler): Rewritten without regexps.
9968         * progmodes/gdb-mi.el: Basic thread selection support.
9969         (gdb-thread-number): New variable.
9970         (gdb-current-context-command): New macro which adds --thread
9971         option to command.
9972         (gdb-threads-mode-map): Select thread with SPC.
9973         (gdb-thread-list-handler-custom): Mark current thread with overlay
9974         arrow.  Synchronize GDB thread and Emacs thread.
9975         (gdb-select-thread): New command which selects current thread.
9976         (gdb-invalidate-frames, gdb-invalidate-locals)
9977         (gdb-invalidate-registers): Use --thread option.
9979 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
9981         * net/tramp.el (top): Make check for tramp-gvfs loading more
9982         robust.  (Bug#3977)
9983         (tramp-handle-insert-file-contents): `unwind-protect' must be
9984         inside `with-parsed-tramp-file-name'.
9986         * net/tramp-gvfs.el (top): Remove superfluous message when loading
9987         fails.
9989 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
9991         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
9992         directory if CLASSPATH is not set.
9994 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
9996         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
9997         New defconst.
9998         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
10000 2009-08-02  Kevin Ryde  <user42@zip.com.au>
10002         * net/newst-backend.el (newsticker--raw-url-list-defaults):
10003         Update freshmeat link.  Delete newsforge.com as it seems gone.
10005 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
10007         * select.el (x-set-selection): Doc fix (Bug#4021).
10009         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
10011         * help-fns.el (describe-variable): Treat list return values from
10012         dir-locals-find-file properly (Bug#4005).
10014 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
10016         * net/tramp.el (tramp-debug-message): Print also microseconds.
10018 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
10020         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
10021         or END is non-nil.
10022         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
10023         (tramp-get-debug-buffer): Change `outline-regexp' according to new
10024         format.
10026         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
10027         (tramp-get-file-property): Use it.
10029         * autorevert.el (auto-revert-handler): Allow
10030         `auto-revert-tail-mode' for remote files.
10032 2009-08-02  Jason Rumney  <jasonr@gnu.org>
10034         * minibuffer.el (read-file-name): Treat confirm options to
10035         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
10037 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
10039         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
10040         (font-lock-variable-name-face, font-lock-constant-face): Darken
10041         the colors for light backgrounds.
10043 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
10045         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
10046         month names.  (Bug#3987)
10048 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
10050         * simple.el (line-move-finish): Pass whole number to
10051         line-move-to-column.
10052         (line-move-visual): Perform hscroll to the recorded position.
10054 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
10056         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
10058 2009-07-29  Alan Mackenzie  <acm@muc.de>
10060         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
10062 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
10064         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
10065         (gdb-place-breakpoints): Use full path when setting breakpoints.
10067 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
10069         * calc/calc.el (calc-mode-map): Add keybinding for
10070         `calc-transpose-lines'.
10072 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
10074         * calc/calc-misc.el (calc-transpose-lines): New function.
10076 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
10078         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
10079         Simplify check for out-of-band methods.
10080         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
10081         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
10083 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
10085         * vc-git.el (vc-git-checkin): Fix typo.
10087 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
10089         * progmodes/js2-mode.el: New file.
10091 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
10093         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
10094         (gud-menu-map): Adjust tooltip accordingly.
10096 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
10098         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
10099         (vc-bzr-log-view-mode): Adjust log-view-file-re.
10101         * add-log.el (change-log-mode-map): Add a menu.
10103 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
10105         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
10106         function returns nil.
10107         (dbus-handle-event): Handle special return value :ignore.
10108         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
10110 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
10112         * view.el (view-mode-enable): Don't define Helper-return-blurb if
10113         it's not needed.
10115 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
10117         Fix Bug#3888:
10119         * w32-vars.el (x-select-enable-clipboard): Doc fix.
10121         * term/pc-win.el (x-display-name, x-colors)
10122         (x-select-enable-clipboard, x-select-text): Doc fix.
10124         * term/common-win.el (x-display-name, x-colors): Doc fix.
10126         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
10127         (xw-defined-colors): Doc fix.
10129         * w32-fns.el (x-select-text, x-setup-function-keys)
10130         (x-get-selection, x-set-selection): Doc fix.
10132         * term/x-win.el (x-select-text, x-setup-function-keys)
10133         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
10135         * select.el (x-set-selection): Doc fix.
10137 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
10139         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
10140         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
10141         "IsNSSSupportAvailable" method is not available.  Reported by
10142         Steve Youngs <steve@sxemacs.org>.
10144 2009-07-24  Kenichi Handa  <handa@m17n.org>
10146         * international/characters.el: Fix setting of category ?C, ?|, ?K,
10147         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
10148         (build-unicode-category-table): Fix range checks.
10150 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
10152         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
10153         the buffer we try to sync is current when calling
10154         vc-resynch-buffer.
10156         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
10157         not show up to date files.
10159 2009-07-24  Glenn Morris  <rgm@gnu.org>
10161         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
10162         Add autoload cookies.  If necessary, initialize.
10163         (elint-log): Handle non-file buffers.
10164         (elint-initialize): Add optional argument to reinitialize.
10165         (elint-find-builtin-variables): Save excursion.
10167 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
10169         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
10170         for Lint.
10172 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
10174         * vc.el (vc-print-log-internal): New function, split out from ...
10175         (vc-print-log): ... here.
10176         (vc-dir-move-to-goal-column): Declare.
10178         * vc-git.el (vc-git-add-signoff): New variable.
10179         (vc-git-checkin): Use it.
10180         (vc-git-toggle-signoff): New function.
10181         (vc-git-extra-menu-map): Bind it to menu.
10182         (vc-git--run-command-string): Accept a nil FILE argument.
10183         (vc-git-stash-list): New function.
10184         (vc-git-dir-extra-headers): Use it.
10186 2009-07-23  Glenn Morris  <rgm@gnu.org>
10188         * help-fns.el (describe-variable): Describe ignored and risky local
10189         variables in a similar way to that in which we describe safe ones.
10191         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
10192         (byte-compile-output-file-form, byte-compile-output-docform)
10193         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
10194         Give some more local variables with common names a "bytecomp-" prefix,
10195         so as not to shadow things during compilation.
10196         * emacs-lisp/cl-macs.el (load-time-value)
10197         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
10198         `outbuffer' to `bytecomp-outbuffer'.
10200         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
10201         since the next two variables cover them automatically now.
10202         (elint-builtin-variables, elint-autoloaded-variables): New.
10203         (elint-unknown-builtin-args): Remove all members, since they can be
10204         parsed automatically now.
10205         (elint-extra-errors): New.
10206         (elint-env-add-env, elint-env-add-macro): Use cadr.
10207         (elint-current-buffer): Use or.  Change final message.
10208         (elint-get-top-forms): Use line-end-position.
10209         (elint-init-env): Use cadr.  Handle autoload, declare-function,
10210         and defalias.
10211         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
10212         (regexp-assoc): Remove unused function.
10213         (elint-top-form): Set elint-current-pos, to record the start of the
10214         top-level form, for compilation-mode.
10215         (elint-form): Trap errors in macro expansion.  Use dolist.
10216         (elint-unbound-variable): Use elint-builtin-variables and
10217         elint-autoloaded-variables.
10218         (elint-get-args): Use cadr, or.
10219         (elint-check-cond-form): Use dolist, cadr.
10220         (elint-check-condition-case-form): Doc fix.  Use cadr.
10221         Use elint-extra-errors.
10222         (elint-log): New function.
10223         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
10224         Distinguish errors and warnings.
10225         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
10226         Use a bytecomp-style format.
10227         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
10228         (elint-get-log-buffer): Use compilation mode.  Disable undo.
10229         Don't truncate lines.
10230         (elint-initialize): Set builtin and autoloaded variable lists.
10231         Only process elint-unknown-builtin-args if non-nil.
10232         (elint-find-builtin-variables, elint-find-autoloaded-variables):
10233         New functions.
10234         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
10236 2009-07-22  Kevin Ryde  <user42@zip.com.au>
10238         * net/newst-backend.el (newsticker--parse-atom-1.0)
10239         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
10240         (newsticker--parse-rss-1.0):
10241         * progmodes/idlwave.el (idlwave-mode):
10242         * progmodes/idlw-shell.el (idlwave-shell-mode):
10243         * progmodes/vera-mode.el (vera-mode):
10244         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
10245         * progmodes/vhdl-mode.el (vhdl-mode):
10246         * textmodes/table.el (table-generate-source)
10247         (table--warn-incompatibility):
10248         Hyperlink urls in docstrings with URL `...'.
10250 2009-07-22  Glenn Morris  <rgm@gnu.org>
10252         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
10253         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
10254         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
10255         Remove leading * from defcustom docs.
10257         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
10259         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
10260         defcustom doc.
10261         (list-load-path-shadows): Optionally, just return shadows as a string.
10263         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
10265 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
10267         * mail/rmailedit.el (rmail-edit-mode): Use
10268         auto-save-include-big-deletions.
10270         * mail/rmail.el (rmail-variables): Use
10271         auto-save-include-big-deletions.
10273         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
10274         changes.
10276 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
10278         * calc/calc.el (calc-undo-length): New variable.
10279         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
10281 2009-07-21  Richard Stallman  <rms@gnu.org>
10283         * files.el (auto-save-mode): Handle buffer-save-size = -2
10284         for toggling mode.
10286 2009-07-21  Glenn Morris  <rgm@gnu.org>
10288         * textmodes/ispell.el (ispell-looking-back): Update declaration.
10290         * calendar/todo-mode.el (calendar-current-date): Update declaration.
10292         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
10293         silence compiler.  Instead...
10294         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
10295         (ps-print-ensure-fontified): Update for above function name changes.
10297         * printing.el (pr-mh-get-msg-num, pr-mh-show)
10298         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
10299         silence compiler.  Instead...
10300         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
10301         (mh-show-buffer): Only define for compiler.
10302         (pr-mh-current-message): Update for above function name changes.
10304         * files.el (abort-if-file-too-large): Explicitly pass `filename'
10305         as an argument.
10306         (find-file-noselect, insert-file-1): Update for above change.
10308         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
10310         * mail/mailclient.el (mailclient-send-it): Fix message.
10312         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
10313         (edebug-eval): Check cl-debug-env is bound.
10314         (print-level, print-circle): Don't redefine built-in variables.
10316         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
10317         (custom-print-vectors): Remove old comments from doc.
10319         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
10320         (emerge-version): Make the variable an obsolete alias for the
10321         emacs-version variable.  Make the function obsolete.
10322         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
10323         Emerge options, rather than merging in into the main Options menu.
10324         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
10325         and auto advance modes.  Disable edit/fast items when not relevant.
10327 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
10329         * term/vt420.el (terminal-init-vt420): Fix typo.
10331 2009-07-20  Sam Steingold  <sds@gnu.org>
10333         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
10334         variable (removed from compile.el on 2004-03-11).
10336 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
10338         * files.el (hack-local-variables-filter): Fix last change.
10340 2009-07-19  Juri Linkov  <juri@jurta.org>
10342         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
10343         (dir-local-variables-alist): New buffer-local variable.
10344         (hack-local-variables-filter): If variable is not dir-local,
10345         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
10346         because file-local overrides dir-local.
10347         (c-postprocess-file-styles) <declare-function>:
10348         Remove obsolete declaration.
10349         (hack-dir-local-variables): Add dir-local variable/value pair to
10350         `dir-local-variables-alist' and remove duplicates.  Doc fix.
10352         * help-fns.el (describe-variable): Add information about
10353         file-local and dir-local variables.
10355 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
10357         * files.el (hack-local-variables-filter): Rewrite.
10359 2009-07-19  Glenn Morris  <rgm@gnu.org>
10361         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
10362         Silence compiler by only defining on XEmacs.
10364         * international/mule.el (auto-coding-regexp-alist): Only match
10365         BABYL... at the start of buffer, not of lines.  (Bug#3790)
10367         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
10368         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
10369         (cal-menu-context-mouse-menu): Doc fix.
10371         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
10373         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
10375 2009-07-18  Juri Linkov  <juri@jurta.org>
10377         * info.el: Virtual Info keyword finder.
10378         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
10379         (Info-finder-file): New variable.
10380         (Info-finder-find-file): New function.
10381         (finder-known-keywords, finder-package-info)
10382         (find-library-name, lm-commentary): Use defvar and
10383         declare-function to silence compiler warnings.
10384         (Info-finder-find-node): New function.
10385         (info-finder): New command.
10387         * subr.el (process-kill-buffer-query-function): New function.
10388         (add-hook)<kill-buffer-query-functions>: Add hook
10389         `process-kill-buffer-query-function'.
10391 2009-07-18  Alan Mackenzie  <acm@muc.de>
10393         * progmodes/cc-mode.el (c-before-hack-hook)
10394         (c-postprocess-file-styles): Give invocation of `c-set-style'
10395         DONT-OVERRIDE parameter of t.  Already set style variables will
10396         thus not be overridden by style settings given by `c-file-syle'.
10398         * files.el (hack-local-variables-filter): Remove entries with
10399         duplicate keys from `file-local-variables-alist'.
10401 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
10403         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
10404         x-set-selection if display-selections-p returns nil for the
10405         current frame.
10407 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
10409         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
10411 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
10413         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
10414         Accept nil in addition to a regexp.
10415         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
10416         Accept nil in addition to a regexp.
10417         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
10418         buffers that have an associated file.  Handle nil values of
10419         desktop-buffers-not-to-save and desktop-files-not-to-save.
10420         (Bug#3833)
10422         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10423         (x-disown-selection-internal): New functions.
10425 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
10427         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
10428         warning.
10429         (gdb-breakpoints-header): Move forward to avoid compiler warning.
10430         (gdb-make-header-line-mouse-map): Remove duplicate definition.
10432 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
10434         * simple.el (set-mark): Revert last change.
10436 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
10438         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
10439         rendering of pngs is not possible instead of messaging a long
10440         description.
10442 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
10444         * w32-fns.el (x-selection-owner-p): New function.
10446         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
10447         (mouse-yank-at-click, mouse-yank-primary): If
10448         select-active-regions is non-nil, deactivate the mark before
10449         insertion.
10451         * simple.el (deactivate-mark, set-mark): Only save selection if we
10452         own it.
10454 2009-07-17  Kenichi Handa  <handa@m17n.org>
10456         * case-table.el (describe-buffer-case-table): Fix for the case
10457         that KEY is a cons.
10459 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
10461         * vc-rcs.el (vc-rcs-find-file-hook):
10462         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
10464 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
10466         * net/tramp.el (tramp-wait-for-output): Handle the case when
10467         commands do not return a newline but a null byte before the shell
10468         prompt.  (Bug#3858)
10470 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10472         * term/ns-win.el (ns-set-alpha): Don't declare.
10473         (ns-set-background-alpha): Remove function.
10475 2009-07-16  Kevin Ryde  <user42@zip.com.au>
10477         * emacs-lisp/copyright.el (copyright-update): Save match-data across
10478         y-or-n-p, for safety.
10480 2009-07-16  Richard Stallman  <rms@gnu.org>
10482         * files.el (auto-save-mode): If buffer-saved-size is -2,
10483         don't clobber it.
10485         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
10486         (rmail-retry-ignored-headers): Add more uninteresting fields.
10488 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
10490         * net/rcirc.el (rcirc): Use history variables.
10491         (rcirc-server-name-history, rcirc-nick-name-history)
10492         (rcirc-server-port-history): New variables.
10494 2009-07-15  Kenichi Handa  <handa@m17n.org>
10496         * international/mule-cmds.el (set-language-environment-charset):
10497         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
10498         ignore them.
10500         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
10501         Delete unibyte-display.
10503 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
10505         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
10507 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
10509         * simple.el (deactivate-mark): Optional argument FORCE.
10510         (set-mark): Use deactivate-mark.
10512         * info.el (Info-search): No need to check transient-mark-mode
10513         before calling deactivate-mark.
10515         * select.el (x-set-selection): Doc fix.
10516         (x-valid-simple-selection-p): Allow buffer values.
10517         (xselect--selection-bounds): Handle buffer values.  Suggested by
10518         David De La Harpe Golden.
10520         * mouse.el (mouse-set-region, mouse-drag-track): Call
10521         copy-region-as-kill before setting the mark, to let
10522         select-active-regions work.
10524 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
10526         * simple.el (deactivate-mark): If select-active-regions is
10527         non-nil, copy the selection data into a string.
10528         (activate-mark): If select-active-regions is non-nil, set the
10529         selection to the current buffer.
10530         (set-mark): Update selection if select-active-regions is non-nil.
10532         * select.el (x-valid-simple-selection-p): Allow buffer values.
10534 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10536         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
10537         and more featureful message-mode.
10539 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
10541         * select.el (x-set-selection): Doc fix.
10542         (x-valid-simple-selection-p): Disallow selection data consisting
10543         of a list or cons of integers, since that is not used.
10544         (xselect--selection-bounds, xselect--int-to-cons): New functions.
10545         (xselect-convert-to-string, xselect-convert-to-length)
10546         (xselect-convert-to-filename, xselect-convert-to-charpos)
10547         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
10549 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
10551         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
10552         output in -break-info command (Emacs bug #3794).
10554 2009-07-14  Glenn Morris  <rgm@gnu.org>
10556         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
10557         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
10558         (edebug-print-length, edebug-print-level, edebug-print-circle)
10559         (edebug-sit-for-seconds, edebug-view-outside)
10560         (edebug-bounce-point, edebug-set-global-break-condition)
10561         (edebug-Go-nonstop-mode, edebug-trace-mode)
10562         (edebug-Trace-fast-mode, edebug-continue-mode)
10563         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
10564         (edebug-visit-eval-list): Doc fixes.
10566         * subr.el (def-edebug-spec): Doc fix.
10568 2009-07-14  Kenichi Handa  <handa@m17n.org>
10570         * international/characters.el: Fix setting of category ?C.
10572 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
10574         * term/ns-win.el (x-select-font): defalias x-select-font to
10575         ns-popup-font-panel instead of generate-fontset-menu.
10577 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
10579         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
10581 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
10583         * arc-mode.el (archive-find-type): Allow for a PK00 string before
10584         the PK\003\004 header (Bug#3770).
10586 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
10588         * pcomplete.el (pcomplete-comint-setup): Check for
10589         shell-dynamic-complete-filename too.
10591 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
10593         * simple.el (temporary-goal-column): Change the value for
10594         line-move-visual to a cons cell.
10595         (line-move-visual): Record or set the window hscroll, if
10596         necessary (Bug#3494).
10597         (line-move-1): Handle cons value of temporary-goal-column.
10599 2009-07-11  Kenichi Handa  <handa@m17n.org>
10601         * international/mule-diag.el (describe-character-set): Don't show
10602         width.
10604 2009-07-10  Sam Steingold  <sds@gnu.org>
10606         * progmodes/compile.el (compilation-mode-font-lock-keywords):
10607         Omake sometimes indents the errors it prints, so allow all
10608         regexps to start with spaces.
10610 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
10612         * cus-edit.el (customize-changed-options-previous-release):
10613         Bump value to 22.1.  (Bug#3804)
10615 2009-07-08  Sam Steingold  <sds@gnu.org>
10617         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
10618         to be a cons cell (test . ignored-directory) to selectively ignore
10619         some directories depending on the location of the search.
10621 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
10623         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
10624         remote user is root, on the local host.
10625         (tramp-local-host-p): Either the local user or the remote user
10626         must be root.  (Bug#3771)
10628 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
10630         * progmodes/gdb-mi.el (gdb): Remove description of
10631         gdb-use-separate-io-buffer.
10632         (menu): Don't allow toggling of or enable
10633         gdb-use-separate-io-buffer from menubar.
10635 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
10637         * mail/unrmail.el (unrmail): Make sure the message ends with two
10638         newlines (Bug#3769).
10640 2009-07-08  Glenn Morris  <rgm@gnu.org>
10642         * calendar/calendar.el (calendar-current-date): Rework previous change.
10644 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
10646         * calendar/calendar.el (calendar-current-date):
10647         Add an optional argument giving an offset from today.
10649 2009-07-08  Glenn Morris  <rgm@gnu.org>
10651         * tutorial.el (tutorial--describe-nonstandard-key):
10652         Adjust the message for when a key has been unbound.
10653         (help-with-tutorial): Hide the arch-tag.
10655 2009-07-08  Kenichi Handa  <handa@m17n.org>
10657         * international/fontset.el (setup-default-fontset): For each
10658         script, append (not set) font-specs.
10660         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
10661         docstring.
10663 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
10665         * progmodes/gdb-mi.el (gdb-init-1): Move sending
10666         -data-list-register-names to ...
10667         (gdb-starting): ... here because GDB 7.0 requires execution to
10668         have started when using this MI command.
10669         (gdb-set-header): New function to distinguish select and
10670         unselected tabs in gdb buffers.
10671         (gdb-propertize-header): New macro that uses gdb-set-header.
10672         (gdb-breakpoints-header, gdb-locals-header): Use it.
10673         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
10675 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
10677         * Makefile.in (ELCFILES): Remove fadr.elc.
10679 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
10681         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
10682         may contain frame information, so `string-match' should be used.
10683         (gdb-update): Disassembly is invalidated through
10684         `gdb-get-selected-frame'.
10685         (gdb-pad-string): New function to pad string with spaces.
10686         (gdb-invalidate-disassembly): Invalidate only if the buffer
10687         exists.
10688         (gdb-disassembly-handler-custom): Column alignment.
10689         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
10690         placing new ones.
10691         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
10692         end of line, too.
10693         (gdb-frame-handler): Match convention to for disassembly buffer
10694         mode name.
10695         (gdb-stack-list-frames-handler): Rewritten without regexps.
10696         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
10697         not highlight breakpoints without line information.
10698         (gdb-input): Add trailing newline to command.
10700         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
10701         buffer properly.
10702         (gdb-breakpoints-list-handler-custom): Replacement for
10703         `gdb-break-list-handler'.  Using real parser instead of regexps
10704         now.
10705         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
10706         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
10707         to place breakpoints.
10708         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
10709         functions.
10710         (gdb-disassembly-handler-custom): Show overlay arrow.
10711         (gdb-disassembly-place-breakpoints): Show breakpoints in
10712         disassembly buffer.
10713         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
10714         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
10715         instead of parsing breakpoints buffer.  Fixed old menu references
10716         in `gud-menu-map'.
10718         * fadr.el: Remove.
10720         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
10721         (gdb-memory-address): New variable which holds top address of
10722         memory page shown in memory buffer.
10723         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
10724         customization variables.
10725         New functions:
10726         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
10727         display the memory buffer.
10728         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
10729         buffer display parameters.
10730         (def-gdb-memory-format, gdb-memory-format-binary)
10731         (gdb-memory-format-octal, gdb-memory-format-unsigned)
10732         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
10733         Functions for setting memory buffer format.
10734         (gdb-memory-unit-word, gdb-memory-unit-halfword)
10735         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
10736         unit size used in memory buffer.
10737         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
10738         to next/previous page of memory buffer.
10739         Now using (bindat-get-field) instead of fadr functions.
10741 2009-07-07  Sam Steingold  <sds@gnu.org>
10743         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
10744         non-top-level files.
10746 2009-07-07  Kenichi Handa  <handa@m17n.org>
10748         * international/mule-cmds.el (reset-language-environment): Put
10749         the highset priority to the charset iso-8859-1.
10751 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
10753         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
10754         to the end of the line when locating the block (Bug#700).
10756 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
10758         * net/tramp.el (tramp-handle-write-region): Flush file properties
10759         in case of short track.
10761 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
10763         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
10764         Coded custom representation of verilog error regular expressions
10765         to work with Emacs-22's new format.
10766         (verilog-error-regexp-xemacs-alist): Coded custom representation
10767         of verilog error regular expressions to work with XEmacs format.
10768         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
10769         error recognition into XEmacs.
10770         (verilog-error-regexp-add-emacs): Hook routine to install verilog
10771         error recognition into Emacs-22.
10773 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
10775         * woman.el: Remove stand-alone closing parentheses.
10776         (woman-file-name, woman2-format-paragraphs)
10777         (woman-leave-blank-lines): Code cleanup.
10778         (woman-use-own-frame): Change default to nil.
10779         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
10780         defaults to inherit from default faces.
10781         (woman2-process-escapes): Consume the newline after a stand-alone
10782         filler character (Bug#3651).
10784 2009-07-06  Glenn Morris  <rgm@gnu.org>
10786         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
10787         (top-level): Move provide to the end.
10788         (ffap): Remove defunct URL from custom group.
10790         * subr.el (eval-after-load): Doc fix.
10792 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
10794         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
10795         `calc-embedded-word' is called twice.
10797 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10799         * files.el (find-alternate-file-other-window, find-alternate-file):
10800         Obey confirm-nonexistent-file-or-buffer.
10802 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
10804         * dired-aux.el (dired-show-file-type): Handle remote files.
10806 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
10808         * desktop.el (desktop-globals-to-save):
10809         Add file-name-history (Bug#2750).
10811 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
10813         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
10815 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
10817         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
10818         property on entire argument since this is what eshell-lisp-command
10819         expects.
10821 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
10823         * net/tramp-gvfs.el (tramp-gvfs-methods)
10824         (tramp-gvfs-zeroconf-domain)
10825         (tramp-bluez-discover-devices-timeout): Add version flag.
10826         (tramp-gvfs-handler-mounted-unmounted)
10827         (tramp-gvfs-connection-mounted-p): Polish handling of
10828         incompatibilities between GVFS 0.2 and 1.0.
10830 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
10832         * cus-start.el (all): Add make-pointer-invisible.
10834 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
10836         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
10837         formatted correctly.
10839 2009-07-02  Juri Linkov  <juri@jurta.org>
10841         * info.el: Virtual Info files and nodes.
10842         (Info-virtual-files, Info-virtual-nodes): New variables.
10843         (Info-current-node-virtual): New variable.
10844         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
10845         New functions.
10846         (Info-file-supports-index-cookies): Use Info-virtual-file-p
10847         to check for a virtual file instead of checking a fixed list
10848         of node names.
10849         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
10850         instead of ad-hoc processing of "dir" and (apropos history toc).
10851         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
10852         instead of ad-hoc processing of "dir" and (apropos history toc).
10853         Reread a file when moving from a virtual node.
10854         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
10855         (Info-directory-toc-nodes, Info-directory-find-file)
10856         (Info-directory-find-node): New functions.
10857         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
10858         (Info-history): Move part of code to
10859         `Info-history-find-node'.
10860         (Info-history-toc-nodes, Info-history-find-file)
10861         (Info-history-find-node): New functions.
10862         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
10863         (Info-toc): Move part of code to `Info-toc-find-node'.
10864         (Info-toc-find-node): New function.
10865         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
10866         the current Info file name to references because now the node
10867         "*TOC*" belongs to the same Info manual.
10868         (Info-toc-build): Rename from `Info-build-toc'.
10869         (Info-toc-nodes): Rename input argument `file' to `filename'.
10870         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
10871         instead of ad-hoc processing of ("dir" apropos history toc).
10872         (Info-index-nodes): Use Info-virtual-file-p
10873         to check for a virtual file instead of checking a fixed list
10874         of node names.
10875         (Info-index-node): Add check for `Info-current-node-virtual'.
10876         Raise `save-match-data' higher up the tree to contain
10877         `search-forward' too (bug fix).
10878         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
10879         (Info-virtual-index-nodes): New variable.
10880         (Info-virtual-index-find-node, Info-virtual-index): New functions.
10881         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
10882         (Info-apropos-file, Info-apropos-nodes): New variables.
10883         (Info-apropos-toc-nodes, Info-apropos-find-file)
10884         (Info-apropos-find-node, Info-apropos-matches): New functions.
10885         (info-apropos): Move part of code to `Info-apropos-find-node' and
10886         `Info-apropos-matches'.
10887         (Info-mode-map): Bind "I" to `Info-virtual-index'.
10888         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
10889         for a virtual file instead of checking a fixed list of node names.
10891         * simple.el (async-shell-command): New command.
10893         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
10895         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
10896         instead of `mount-info'.
10898 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
10900         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
10901         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
10903 2009-07-02  Kenichi Handa  <handa@m17n.org>
10905         * international/mule.el (set-keyboard-coding-system): Force *-unix
10906         coding-system to avoid eol conversion.
10908 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
10910         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
10911         Add handler for `process-file', `shell-command' and
10912         `start-file-process'.
10913         (tramp-gvfs-handle-shell-command)
10914         (tramp-gvfs-handle-start-file-process)
10915         (tramp-gvfs-handle-process-file): New defuns.
10916         (tramp-synce-list-devices): Simplify check for existence of property.
10918 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
10920         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
10922 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
10924         * language/korean.el (set-language-info-alist): Add korean-cp949,
10925         cp949 to spec.
10927 2009-07-01  Kenichi Handa  <handa@m17n.org>
10929         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
10931         * international/encoded-kb.el: Deleted.
10933         * international/mule.el (set-keyboard-coding-system): Perform the
10934         necessary setup here instead of calling encoded-kbd-setup-display.
10936 2009-07-01  Glenn Morris  <rgm@gnu.org>
10938         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
10940 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
10942         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
10944 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
10946         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
10947         Handle also the 'rename case, when setting file modes.  (Bug#3712)
10948         (tramp-default-file-modes): Remove execute permissions.
10950         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
10951         (top): Add a default for "synce" in `tramp-default-user-alist'.
10952         Add completion function for "synce" method.
10953         (tramp-hal-service, tramp-hal-path-manager)
10954         (tramp-hal-interface-manager, tramp-hal-interface-device):
10955         New defconst.
10956         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
10957         (tramp-synce-list-devices, tramp-synce-parse-device-names):
10958         New defuns.
10960         * net/trampver.el: Update release number.
10962 2009-06-30  Kenichi Handa  <handa@m17n.org>
10964         * international/fontset.el (setup-default-fontset): Add CJK fonts
10965         for symbols and the other miscellaneous characters.
10967         * language/korea-util.el (setup-korean-environment-internal):
10968         Make char-width-table suitable for Korean environments.
10969         (exit-korean-environment): Cancel above.
10971         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
10972         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
10973         setup-function to make char-width-table suitable for respective
10974         environments, and an exit-function to cancel that.
10976         * language/japan-util.el (setup-japanese-environment-internal):
10977         Call use-cjk-char-width-table with arg `ja_JP'.
10979         * international/characters.el (cjk-char-width-table): Delete it.
10980         (cjk-char-width-table-list): New variable.
10981         (use-cjk-char-width-table): New arg local-name.
10982         (use-default-char-width-table): Fix for the case that Emacs is
10983         already using the default char-width-table.
10985 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
10987         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
10988         modes mandatory.  (Bug#3712)
10990 2009-06-29  Alan Mackenzie  <acm@muc.de>
10992         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
10993         correction between the visible width of TABs and their number of bytes.
10995 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
10997         * server.el (server-buffer-done): Prevent kill-buffer from
10998         prompting by clearing the buffer modification flag (Bug#3696).
11000 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
11002         * progmodes/verilog-mode.el (verilog-beg-of-statement)
11003         (verilog-endcomment-reason-re): Support unique case and priority case.
11004         (verilog-basic-complete-re): Support localparam lineup.
11005         (verilog-beg-of-statement-1): Fix for robustness, unique case.
11006         (verilog-set-auto-endcomments): Fix for unique case, always_comb
11007         commenting.
11008         (verilog-leap-to-case-head): Now support *nested* unique &
11009         priority case statements.
11010         (verilog-auto-lineup): Make just declarations the default (as it
11011         had been).
11012         (verilog-leap-to-case-head): Support priority/unique case statements.
11013         (verilog-auto-lineup): Rework to give users radio buttons to
11014         select the various styles of automatic lineup.
11015         (verilog-error-regexp-alist): Rework to support the XEmacs style
11016         of error regular expressions from compilers, lint tools &
11017         simulators.  Note that GNU Emacs has made it impossible for a mode
11018         to load such things.
11019         (electric-verilog-terminate-line, verilog-indent-declaration)
11020         (verilog-auto-wiure): Rework for radio button selection of
11021         auto-lineup selection of specification of auto lineup.
11022         (verilog-beg-of-statement-1): Redesign to support proper operation
11023         in additional code, based on testing with auto-lineup.
11024         (verilog-calculate-indent, assignments & declarations)
11025         (verilog-backward-token): Enhance to support auto-lineup of
11026         assignments & declarations.
11027         (verilog-in-directive-p, verilog-at-struct-p): New function for
11028         easy test of whether we are.
11029         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
11030         to support safe execution at almost anyline.
11031         (verilog-calc-1): Properly support indenting deep inside generate
11032         blocks.
11033         (verilog-init-font): Remove definition & use of verilog-init-font,
11034         as it is redundant with font-lock-defaults.
11035         (verilog-mode): Alter the definition of verilog-font-lock-defaults
11036         to avoid circular calls if syntax-ppss is a function (as is the
11037         case now in 22.x GNU Emacs) as that function would sometimes call
11038         itself, leading to (nearly) infinite recursion.
11039         (verilog-ovm-begin-re, verilog-ovm-end-re)
11040         (verilog-ovm-statement-re, verilog-leap-to-head)
11041         (verilog-backward-token): Add support for OVM macros.  Some are
11042         complete statements, and others open and close scopes like begin
11043         and end.
11044         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
11045         (verilog-defun-level-generate-only-re): Really fix the defun-list
11046         compilation issue.
11047         (verilog-calc-1, verilog-beg-of-statement): Enhance support for
11048         coverpoint, constraint and cross statements.
11049         (verilog-defun-level-list, verilog-generate-defun-level-list)
11050         (verilog-all-defun-level-list): Redo these specifications - it is
11051         too hard to support eval-when compile aggregation of lists also
11052         built at when-compile time.
11053         (verilog-defun-level-list): Place defconsts of variables used in
11054         building regular expressions which are built in eval-when-compile
11055         bodies in the same eval-when-compile body to facilitate compile
11056         without load.
11057         (verilog-beg-block-re-ordered): Support indenting
11058         virtual/protected tasks and functions.
11059         (verilog-defun-level-list, verilog-in-generate-region-p)
11060         (verilog-backward-ws&directives, verilog-calc-1): Speed up
11061         indentation of some module items (generate items).
11062         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
11063         across virtual/protected tasks and functions.
11065 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
11067         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
11068         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
11069         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
11070         in concatenations.  Reported by Yishay Belkind.
11071         (verilog-auto-ascii-enum): Support one-hot state machines in
11072         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
11073         (verilog-auto-inst, verilog-auto-inst-port): Include interface
11074         modport in AUTOINST and add vl-modport for users.  Reported by
11075         David Rogoff.
11076         (verilog-auto-inout-module, verilog-auto-inst)
11077         (verilog-decls-get-interfaces, verilog-insert-definition)
11078         (verilog-insert-one-definition, verilog-read-decls)
11079         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
11080         (verilog-sig-modport, verilog-signals-combine-bus)
11081         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
11082         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
11083         Suggested by David Rogoff.
11084         (verilog-repair-open-comma): Fix non-insertion of comma when
11085         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
11086         (verilog-make-width-expression): Simplify [A-1:0] expression
11087         widths to just {A{1'b0}}.
11088         (verilog-mode): Cleanup checkdoc warnings.
11089         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
11090         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
11091         inputs/outputs or data type.  Suggested by Vasu Kandadi.
11092         (next-error-last-buffer): Fix byte-compiler warning.
11093         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
11094         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
11095         or shell command text during AUTO expansion.  Suggested by Tad Truex.
11096         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
11097         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
11098         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
11099         in AUTOINOUT.  Reported by Matthew Lovell.
11100         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
11101         causing use of <= assignments.  Reported by Alex Reed.
11102         (verilog-read-decls): Fix triand, trior, wand, wor to be
11103         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
11104         (verilog-extended-complete-re): Support import "DPI-C" functions.
11105         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
11106         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
11107         (verilog-insert-date, verilog-insert-year)
11108         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
11109         Windows systems.  Reported by Michael Potts.
11110         (verilog-read-module-name): Fix AUTOINST when the child module
11111         declaration's name is a tick define.  Reported by Elliot Mednick.
11112         (verilog-read-decls): Fix V2K parameter bit subscripts getting
11113         passed to next parameter's definition.  Reported by Bruce T.
11114         (verilog-read-decls): Fix detecting "parameter int" when using
11115         AUTOINSTPARAM.  Reported by Bruce T.
11116         (verilog-goto-defun): Fix goto not finding modules unless first
11117         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
11118         (verilog-mode): Expand -f flag arguments on entry to mode so
11119         verilog-goto-defun will work.  Reported by Lawrence Butcher.
11120         (verilog-getopt): Expand environment variables in -f file
11121         arguments.  Suggested by Lawrence Butcher.
11122         (verilog-set-define): Fix "Symbol's value as variable is void"
11123         when reading enumerations.
11124         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
11125         Suggested by Stephen Peltan.
11126         (verilog-read-defines): Fix reading of enumerations in include
11127         files.  Reported by Steve Peltan.
11129 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
11131         * files.el (trash-directory): Fix defcustom type.
11133 2009-06-28  Juri Linkov  <juri@jurta.org>
11135         * help-fns.el (describe-function-1): Correctly locate adviced
11136         functions in hyperlink (Bug#2438).
11138 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
11140         * files.el (trash-directory): Change default to nil.
11141         (move-file-to-trash): If trash-directory is nil and
11142         system-move-file-to-trash is unbound, perform freedesktop-style
11143         trashing.
11145 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
11147         * files.el (move-file-to-trash): Add freedesktop trash
11148         support (Bug#973).
11150 2009-06-28  Glenn Morris  <rgm@gnu.org>
11152         * autorevert.el (global-auto-revert-non-file-buffers)
11153         (global-auto-revert-mode): Doc fixes.
11155 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
11157         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
11159 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
11161         * faces.el (x-handle-named-frame-geometry): Ensure that we have
11162         opened an X connection before calling x-get-resource (Bug#3194).
11164         * play/doctor.el: Remove reference to obsolete website.
11165         (make-doctor-variables): Correct grammar mistake (Bug#2633).
11167 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
11169         Remove find-file-not-found-hook VC method.  (Bug#2757)
11170         * vc-hooks.el (vc-file-not-found-hook)
11171         (vc-default-find-file-not-found-hook): Remove functions.
11172         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
11173         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
11174         * vc.el:
11175         * vc-hg.el:
11176         * vc-git.el: Do not mention find-file-not-found-hook VC method.
11178 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
11180         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
11181         compatibility function for `looking-back'.
11183         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11184         Use `ispell-looking-back'.
11186 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
11188         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
11189         rather than `filename'.
11191 2009-06-23  Miles Bader  <miles@gnu.org>
11193         * face-remap.el (text-scale-set): New function.
11195 2009-06-23  Glenn Morris  <rgm@gnu.org>
11197         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
11199         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
11201         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
11203         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
11205         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
11206         Simplify Persian conditionals.
11208         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
11209         variable `filename'.
11211         * comint.el (comint-insert-input): Doc fix.
11213         * Makefile.in (ELCFILES): Fix typo in previous change.
11215 2009-06-23  Miles Bader  <miles@gnu.org>
11217         * cus-start.el: Add entry for `recenter-redisplay'.
11219 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
11221         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
11222         Add an optional argument for the backend, use it instead of
11223         calling vc-backend.
11224         (vc-mode-line): Add an optional argument for the backend.
11225         Pass the backend to vc-state and vc-working-revision.  Move code for
11226         special handling for vc-state being a buffer to ...
11228         * vc-rcs.el (vc-rcs-find-file-hook):
11229         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
11231         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
11232         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
11233         vc-stay-local-p and vc-mode-line calls.
11235         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
11236         (vc-cvs-diff, vc-cvs-annotate-command)
11237         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
11238         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
11239         vc-mode-line calls.
11241         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
11242         direct comparison.
11243         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
11244         backend when calling vc-mode-line.
11245         (vc-register): Do not create a closure for calling the vc register
11246         function, call it directly.
11248 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
11250         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
11251         to make it obvious item can be clicked.
11253         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
11255 2009-06-23  Kenichi Handa  <handa@m17n.org>
11257         * language/korea-util.el (korean-key-bindings): Change the binding
11258         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
11259         same command.
11261 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
11263         Sync with Tramp 2.1.16.
11265         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
11267         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
11268         when a loading of a package fails.  Completion function for rsync
11269         is `tramp-completion-function-alist-ssh'.
11270         (all): Replace all calls of `split-string' and
11271         `tramp-split-string' by `tramp-compat-split-string'.
11272         (tramp-default-method): Use `tramp-compat-process-running-p'.
11273         (tramp-default-proxies-alist): Allow also Lisp forms.
11274         (tramp-remote-path): Add choice "Private Directories".
11275         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
11276         (tramp-domain-regexp): Allow also "-", "_" and ".".
11277         (tramp-end-of-output): Remove newlines, and add "$" at the end.
11278         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
11279         (tramp-debug-message): Insert header line in debug buffer.
11280         (tramp-handle-directory-files-and-attributes-with-stat):
11281         Care about filenames with spaces, or starting with "-".
11282         (tramp-handle-dired-uncache): New defun.
11283         (tramp-handle-insert-directory): Don't flush the directory from
11284         cache, this is handled by `dired-uncache' now.
11285         (tramp-handle-insert-file-contents): Improve error handling.
11286         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11287         Quote `tramp-end-of-output'.
11288         (tramp-action-password): Improve trace message.
11289         (tramp-check-for-regexp): Both echoes must be present, before removing.
11290         (tramp-open-connection-setup-interactive-shell): Trace coding system.
11291         (tramp-compute-multi-hops): Eval cons cells of
11292         `tramp-default-proxies-alist'.
11293         (tramp-maybe-open-connection): Use the same command pattern for
11294         first hop and further hops.
11295         (tramp-wait-for-output): Remove handling of newlines.
11296         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
11297         (tramp-split-string): Remove function.  It is handled in
11298         tramp-compat now.
11300         * net/tramp-cmds.el (tramp-bug):
11301         Recommend `tramp-cleanup-all-connections' in the bug mail.
11303         * net/tramp-compat.el (tramp-compat-split-string)
11304         (tramp-compat-process-running-p): New defuns.
11306         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
11307         for `dired-uncache'.
11309         * net/tramp-gvfs.el: New package.
11311         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11312         Add handler for `dired-uncache'.
11313         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
11315         * net/trampver.el: Update release number.  Make version check fit
11316         for SXEmacs 22.
11318 2009-06-22  Jim Meyering  <meyering@redhat.com>
11320         Automatically handle .xz suffix (XZ-compressed files), too.
11321         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
11322         XZ is the successor to LZMA: <http://tukaani.org/xz/>
11324 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
11325             Nick Roberts  <nickrob@snap.net.nz>
11327         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
11328         repository (http://sphinx.net.ru/hg/gdb-mi/).
11330 2009-06-22  Glenn Morris  <rgm@gnu.org>
11332         * files.el (dir-locals-collect-mode-variables): Allow for any number of
11333         `mode' and `eval' entries.  (Bug#3430)
11335         * Makefile.in (ELCFILES): Add fadr.elc.
11337         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
11338         differing behavior of \n and ^ in strings.  (Bug#3385)
11340         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
11342         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
11343         property.
11344         (lisp-indent-function): Make it a defcustom.
11346 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
11348         * progmodes/gdb-ui.el: Replace with ...
11349         * progmodes/gdb-mi.el: ... this file.
11350         * progmodes/gud.el: Modify for gdb-mi.el.
11352 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
11354         * fadr.el: New file.
11356 See ChangeLog.14 for earlier changes.
11358 ;; Local Variables:
11359 ;; coding: utf-8
11360 ;; End:
11362     Copyright (C) 2009, 2010  Free Software Foundation, Inc.
11364   This file is part of GNU Emacs.
11366   GNU Emacs is free software: you can redistribute it and/or modify
11367   it under the terms of the GNU General Public License as published by
11368   the Free Software Foundation, either version 3 of the License, or
11369   (at your option) any later version.
11371   GNU Emacs is distributed in the hope that it will be useful,
11372   but WITHOUT ANY WARRANTY; without even the implied warranty of
11373   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11374   GNU General Public License for more details.
11376   You should have received a copy of the GNU General Public License
11377   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
11379 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1