* lisp/textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
[emacs.git] / lisp / ChangeLog
blob518502e0be4c15ff1345e797f60c39eebe008281
1 2010-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
4         and `end'.
5         (ispell-region, ispell-process-line): Update users.
7         * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
8         point-min==1.
10         * textmodes/ispell.el: Fix commenting convention.
11         (ispell-parse-output): Simplify, use push.
12         (ispell-region): Use match-string-no-properties.
13         (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
14         (ispell-minor-mode): Use define-minor-mode.
15         (ispell-message): Remove unused var `skip-regexp'.
16         (ispell-add-per-file-word-list): Use dynamic let-binding.
17         Try and use the proper comment marker.
19         * mail/sendmail.el: Fix commenting convention.
20         (sendmail-send-it): Use line-beginning-position.
22         * help-fns.el (describe-variable): Add original value, if applicable.
24 2010-09-20  Juanma Barranquero  <lekktu@gmail.com>
26         * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
28         * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
30 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
32         * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
33         (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
34         (smie-prec2-levels): Use them to better diagnose precedence cycles.
35         (smie-blink-matching-check): Don't signal a mismatch if car is t.
36         (smie-blink-matching-open): Rewrite to remove assumptions, so that
37         something like "." can also be a closer.
38         (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
39         (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
40         Rename internal functions to use "--".  Update callers.
42         * frame.el (make-frame-names-alist): Don't list frames on other displays.
44         * fringe.el (fringe-styles): New var.
45         (fringe-mode, fringe-query-style): Use it.
47 2010-09-18  Michael R. Mauger  <mmaug@yahoo.com>
49         * progmodes/sql.el: Version 2.8
50         (sql-login-params): Update widget structure; changes still needed.
51         (sql-product-alist): Add :list-all and :list-table features for
52         SQLite, Postgres and MySQL products.
53         (sql-redirect): Handle default value.
54         (sql-execute, sql-execute-feature): New functions.
55         (sql-read-table-name): New function.
56         (sql-list-all, sql-list-table): New functions.  User API.
57         (sql-mode-map, sql-interactive-mode-map): Add key definitions
58         for above functions.
59         (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
60         for above functions.
61         (sql-postgres-login-params): Add user and database defaults.
62         (sql-buffer-live-p): Bug fix.
63         (sql-product-history): New variable.
64         (sql-read-product): New function. Use it.
65         (sql-set-product, sql-product-interactive): Use it.
66         (sql-connection-history): New variable.
67         (sql-read-connection): New function.  Use it.
68         (sql-connect): New function.
69         (sql-for-each-login): Redesign function interface.
70         (sql-make-alternate-buffer-name, sql-save-connection): Use it.
71         (sql-get-login-ext, sql-get-login): Use it.  Handle default values.
72         (sql-comint): Check for program.  Existing live buffer.
73         (sql-comint-postgres): Add port parameter.
75 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
77         * emacs-lisp/warnings.el: Fix commenting convention.
78         (display-warning): Use special mode and make the buffer read-only.
80 2010-09-18  Jay Belanger  <jay.p.belanger@gmail.com>
82         * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
83         empty string when it follows a repeated or optional pattern.
85 2010-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
87         * indent.el (indent-according-to-mode): Apply syntax-propertize.
88         (indent-region): Use indent-according-to-mode.
90 2010-09-18  Eli Zaretskii  <eliz@gnu.org>
92         * fringe.el (fringe-mode): Doc fix.
94 2010-09-14  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
96         * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
97         refreshing the preview buffer.
99 2010-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
101         * textmodes/tex-mode.el (tex-syntax-propertize-rules)
102         (latex-syntax-propertize-rules): New consts; replace
103         tex-font-lock-syntactic-keywords.
104         (tex-env-mark, latex-env-before-change): New functions.
105         (latex-electric-env-pair-mode): New minor mode.
106         (tex-font-lock-verb): Change arguments; do move point.
107         (tex-font-lock-syntactic-face-function): Adjust to new verbatim
108         representation as a form of comment.
109         (tex-font-lock-keywords-1): Remove workaround, now unneeded.
110         (doctex-syntax-propertize-rules): New const; replaces
111         doctex-font-lock-syntactic-keywords.
112         (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
114         * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
115         (fortran-make-syntax-propertize-function): New function; replaces
116         fortran-font-lock-syntactic-keywords.
117         (fortran-mode): Use it.
118         (fortran-line-length): Use it.  Improve interactive spec.
120         * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
121         (syntax-propertize-rules): Add var-ref case.  Fix offset computation
122         when adding surrounding \(..\).
124         * progmodes/js.el (js-mode): Fix last change (bug#7054).
126 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
128         * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
129         Use with-current-buffer.
131         * isearch.el (isearch-face): Rename from `isearch'.
132         (isearch-highlight): Use new name.
134 2010-09-17  Eli Zaretskii  <eliz@gnu.org>
136         * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
137         5, for `half' width fringes.  (Bug#6933)
139 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
141         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
142         (byte-compile-defvar): "foo/bar" does not lack a prefix.
144         * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
146 2010-09-17  Stephen Berman  <stephen.berman@gmx.net>
148         * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
149         in calculating new frame position.  Add more space between new and
150         parent on the left (Bug#7048).
152 2010-09-17  Michael Albinus  <michael.albinus@gmx.de>
154         * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
155         defmacro.
157 2010-09-16  Chong Yidong  <cyd@stupidchicken.com>
159         * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
161         * term/x-win.el (x-cut-buffer-or-selection-value): Define as
162         obsolete alias for x-selection-value.
164         * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
166 2010-09-16  Michael Albinus  <michael.albinus@gmx.de>
168         * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
169         cookie.
171 2010-09-15  Michael Albinus  <michael.albinus@gmx.de>
173         * net/tramp-compat.el (tramp-compat-with-temp-message)
174         (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
175         (tramp-compat-process-put): New defuns.
177         * net/tramp.el (top):
178         * net/tramp-gvfs.el (top):
179         * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
181         * net/tramp.el (tramp-progress-reporter-update):
182         Use `tramp-compat-funcall'.
184         * net/tramp.el (tramp-process-actions):
185         * net/tramp-gvfs.el (tramp-handle-vc-registered):
186         * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
187         (tramp-get-remote-stat, tramp-get-remote-readlink):
188         Use `tramp-compat-with-temp-message'.
190         * net/tramp-sh.el (top): Require 'cl.
191         (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
192         (tramp-open-connection-setup-interactive-shell):
193         Use `tramp-compat-process-put'.
195 2010-09-15  Alan Mackenzie  <acm@muc.de>
197         * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
198         indentation.
199         (c-forward-<>-arglist-recur): Fix an infinite recursion.
201 2010-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
203         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
204         `lexical' for warnings related to lexical scoping.
205         (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
206         global vars which don't have a prefix and could hence affect lexical
207         scoping in unrelated files.
209 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
211         * net/imap.el: Revert back to version
212         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
213         seem problematic.
215 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
217         * obsolete/old-whitespace.el (whitespace-unload-function):
218         Explicitly pass `obarray' to `unintern' to avoid a warning.
220 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
222         * emacs-lisp/byte-run.el (set-advertised-calling-convention):
223         Add `when' argument.  Update callers.
225         * subr.el (unintern): Declare the obarray arg mandatory.
227 2010-09-14  Glenn Morris  <rgm@gnu.org>
229         * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
230         Doc fixes.
232         * calendar/diary-lib.el (diary-included-files): New variable.
233         (diary-list-entries): Maybe initialize diary-included-files.
234         (diary-include-other-diary-files): Append to diary-included-files.
235         * calendar/appt.el (appt-update-list): Also check the members of
236         diary-included-files.  (Bug#6999)
237         (appt-check): Doc fix.
239 2010-09-14  David Reitter  <david.reitter@gmail.com>
241         * simple.el (line-move-visual): Do not truncate goal column to
242         integer size.  (Bug#7020)
244 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
246         * repeat.el (repeat): Allow repeating when the last event is a click.
247         Suggested by Drew Adams (bug#6256).
249 2010-09-14  Sascha Wilde  <wilde@sha-bang.de>
251         * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
252         Replace setting HGRCPATH to "" by some less invasive --config options.
254 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
256         * font-lock.el (font-lock-beginning-of-syntax-function):
257         Mark as obsolete.
259 2010-09-14  Glenn Morris  <rgm@gnu.org>
261         * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
262         and tool-bar modes.  (Bug#6211)
263         (menu-bar-mode): Move setting of standard-value after the
264         minor-mode definition, otherwise it seems to have no effect.
266 2010-09-14  Masatake YAMATO  <yamato@redhat.com>
268         * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
269         Fix typo.  (Bug#6976)
271 2010-09-14  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
273         * whitespace.el: Allow cleaning up blanks without blank
274         visualization (Bug#6651).  Adjust help window for
275         whitespace-toggle-options (Bug#6479).  Allow to use fill-column
276         instead of whitespace-line-column (from EmacsWiki).  New version 13.1.
277         (whitespace-style): Add new value 'face.  Adjust docstring.
278         (whitespace-space, whitespace-hspace, whitespace-tab):
279         Adjust foreground property face.
280         (whitespace-line-column): Adjust docstring and type declaration.
281         (whitespace-style-value-list, whitespace-toggle-option-alist)
282         (whitespace-help-text): Adjust const initialization.
283         (whitespace-toggle-options, global-whitespace-toggle-options):
284         Adjust docstring.
285         (whitespace-display-window, whitespace-interactive-char)
286         (whitespace-style-face-p, whitespace-color-on): Adjust code.
287         (whitespace-help-scroll): New fun.
289 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
291         * calendar/time-date.el (format-seconds): Comment fix.
293 2010-09-13  Michael R. Mauger  <mmaug@yahoo.com>
295         * progmodes/sql.el: Version 2.7.
296         (sql-buffer-live-p): Improve detection.
297         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
298         (sql-set-sqli-buffer): Use it.
299         (sql-product-interactive): Run `sql-set-sqli-hook'.
300         (sql-rename-buffer): Code cleanup.
301         (sql-redirect, sql-redirect-value): New functions.  More to come.
303 2010-09-13  Juanma Barranquero  <lekktu@gmail.com>
305         Port tramp-related Makefile changes of 2010-09-08T14:42:54Z!michael.albinus@gmx.de, 2010-09-13T15:17:01Z!michael.albinus@gmx.de to Windows.
306         * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
307         (TRAMP_SRC): New macro.
308         ($(lisp)/net/tramp-loaddefs.el): New target.
310 2010-09-13  Michael Albinus  <michael.albinus@gmx.de>
312         Major code cleanup.  Split tramp.el into tramp.el and tramp-sh.el.
314         * Makefile.in (TRAMP_SRC): Remove tramp-fish.el.  Add tramp-sh.el.
316         * net/tramp.el (top): Don't show loading message.  Require just
317         'tramp-compat, everything else is required there.
318         Use `ignore-errors' where appropriate.
319         (tramp-inline-compress-start-size, tramp-copy-size-limit)
320         (tramp-terminal-type, tramp-end-of-output)
321         (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
322         (tramp-completion-function-alist-ssh)
323         (tramp-completion-function-alist-telnet)
324         (tramp-completion-function-alist-su)
325         (tramp-completion-function-alist-putty, tramp-remote-path)
326         (tramp-remote-process-environment, tramp-sh-extra-args)
327         (tramp-actions-before-shell, tramp-uudecode)
328         (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
329         (tramp-perl-file-attributes)
330         (tramp-perl-directory-files-and-attributes)
331         (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
332         (tramp-perl-encode, tramp-perl-decode)
333         (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
334         (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
335         (tramp-handle-make-symbolic-link, tramp-handle-load)
336         (tramp-handle-file-name-as-directory)
337         (tramp-handle-file-name-directory)
338         (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
339         (tramp-handle-file-exists-p, tramp-handle-file-attributes)
340         (tramp-do-file-attributes-with-ls)
341         (tramp-do-file-attributes-with-perl)
342         (tramp-do-file-attributes-with-stat)
343         (tramp-handle-set-visited-file-modtime)
344         (tramp-handle-verify-visited-file-modtime)
345         (tramp-handle-set-file-modes, tramp-handle-set-file-times)
346         (tramp-set-file-uid-gid, tramp-remote-selinux-p)
347         (tramp-handle-file-selinux-context)
348         (tramp-handle-set-file-selinux-context)
349         (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
350         (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
351         (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
352         (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
353         (tramp-handle-file-ownership-preserved-p)
354         (tramp-handle-directory-file-name, tramp-handle-directory-files)
355         (tramp-handle-directory-files-and-attributes)
356         (tramp-do-directory-files-and-attributes-with-perl)
357         (tramp-do-directory-files-and-attributes-with-stat)
358         (tramp-handle-file-name-all-completions)
359         (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
360         (tramp-handle-copy-file, tramp-handle-copy-directory)
361         (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
362         (tramp-do-copy-or-rename-file-via-buffer)
363         (tramp-do-copy-or-rename-file-directly)
364         (tramp-do-copy-or-rename-file-out-of-band)
365         (tramp-handle-make-directory, tramp-handle-delete-directory)
366         (tramp-handle-delete-file)
367         (tramp-handle-dired-recursive-delete-directory)
368         (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
369         (tramp-handle-insert-directory)
370         (tramp-handle-unhandled-file-name-directory)
371         (tramp-handle-expand-file-name)
372         (tramp-handle-substitute-in-file-name)
373         (tramp-handle-executable-find, tramp-process-sentinel)
374         (tramp-handle-start-file-process, tramp-handle-process-file)
375         (tramp-handle-call-process-region, tramp-handle-shell-command)
376         (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
377         (tramp-handle-insert-file-contents)
378         (tramp-handle-insert-file-contents-literally)
379         (tramp-handle-find-backup-file-name)
380         (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
381         (tramp-vc-registered-file-names, tramp-handle-vc-registered)
382         (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
383         (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
384         (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
385         (tramp-find-file-exists-command, tramp-open-shell)
386         (tramp-find-shell, tramp-barf-if-no-shell-prompt)
387         (tramp-open-connection-setup-interactive-shell)
388         (tramp-local-coding-commands, tramp-remote-coding-commands)
389         (tramp-find-inline-encoding, tramp-call-local-coding-command)
390         (tramp-inline-compress-commands, tramp-find-inline-compress)
391         (tramp-compute-multi-hops, tramp-maybe-open-connection)
392         (tramp-send-command , tramp-wait-for-output)
393         (tramp-send-command-and-check, tramp-barf-unless-okay)
394         (tramp-send-command-and-read, tramp-mode-string-to-int)
395         (tramp-convert-file-attributes, tramp-check-cached-permissions)
396         (tramp-file-mode-from-int, tramp-file-mode-permissions)
397         (tramp-shell-case-fold, tramp-make-copy-program-file-name)
398         (tramp-method-out-of-band-p, tramp-local-host-p)
399         (tramp-get-remote-path, tramp-get-remote-tmpdir)
400         (tramp-get-ls-command, tramp-get-ls-command-with-dired)
401         (tramp-get-test-command, tramp-get-test-nt-command)
402         (tramp-get-file-exists-command, tramp-get-remote-ln)
403         (tramp-get-remote-perl, tramp-get-remote-stat)
404         (tramp-get-remote-readlink, tramp-get-remote-trash)
405         (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
406         (tramp-get-local-uid, tramp-get-local-gid)
407         (tramp-get-inline-compress, tramp-get-inline-coding): Move to
408         tramp-sh.el.
409         (tramp-methods, tramp-default-method-alist)
410         (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
411         Move initialization to tramp-sh.el.
412         (tramp-temp-name-prefix): Make it a defconst.
413         (tramp-dissect-file-name): Don't check anymore for multi-hop
414         methods.
415         (tramp-debug-outline-regexp): Add a docstring.
416         (tramp-debug-outline-level): Rename from `tramp-outline-level'.
417         (tramp-get-debug-buffer): Use it.
419         * net/tramp-cache.el (top): Set tramp-autoload cookie for
420         initialization forms.
421         (tramp-set-connection-property): Don't protect `tramp-message'
422         call, it isn't necessary any longer.
423         (tramp-dump-connection-properties): Use `ignore-errors'.
425         * net/tramp-compat.el (top): Require 'advice, 'format-spec,
426         'password-cache and 'auth-source.
428         * net/tramp-gvfs.el (top):
429         * net/tramp-smb.el (top): Require 'tramp-sh.
431         * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
433         * net/tramp-sh.el: New file, derived from tramp.el.
434         (top): Initialize `tramp-methods', `tramp-default-method-alist',
435         `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
436         Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
437         Use `ignore-errors' where appropriate.
438         (tramp-sh-file-name-handler-alist): Rename from
439         `tramp-file-name-handler-alist'.
440         (tramp-send-command-and-check): Return t or nil.  Remove all
441         `zerop' checks, where called.
442         (tramp-handle-set-file-modes)
443         (tramp-do-copy-or-rename-file-directly)
444         (tramp-handle-delete-directory, tramp-handle-delete-file)
445         (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
446         (tramp-sh-file-name-handler, tramp-send-command-and-check)
447         (tramp-get-remote-ln): Set tramp-autoload cookie.
449         * net/tramp-fish.el: Remove file.
451 2010-09-13  Daiki Ueno  <ueno@unixuser.org>
453         * epa-file.el (epa-file-insert-file-contents): If visiting, bind
454         buffer-file-name to avoid file-locking.  (Bug#7026)
456 2010-09-13  Julien Danjou  <julien@danjou.info>
458         * notifications.el (notifications-notify): Add support for
459         image-path and sound-name.
460         (notifications-specification-version): Add this variable.
462 2010-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
464         * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
466 2010-09-12  Leo  <sdl.web@gmail.com>
468         * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
469         (rcirc-completion-start): New variables.
470         (rcirc-nick-completions): Rename to rcirc-completions.
471         (rcirc-nick-completion-start-offset): Delete.
472         (rcirc-completion-at-point): New function for constructing
473         completion data for both nicks and irc commands.  Add to
474         completion-at-point-functions in rcirc mode.
475         (rcirc-complete): Rename from rcirc-nick-complete; use
476         rcirc-completion-at-point.
477         (defun-rcirc-command): Update rcirc-client-commands.
479 2010-09-11  Glenn Morris  <rgm@gnu.org>
481         * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
482         atomically, to avoid parallel build errors.  (Bug#4196)
484 2010-09-11  Michael R. Mauger  <mmaug@yahoo.com>
486         * progmodes/sql.el: Version 2.6
487         (sql-dialect): Synonym for "sql-product".
488         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
489         (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
490         Set "sql-buffer" to buffer name not buffer object so multiple sql
491         interactive buffers work properly.  Reverts misguided changes in
492         earlier work.
493         (sql-comint): Make sure different buffer name is used if "*SQL*"
494         buffer is for a different product.
495         (sql-make-alternate-buffer-name): Fix bug with "sql-database"
496         login param.
497         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
498         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
499         (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
500         Accept new buffer name or prompt for one.
501         (sql-port): Default to zero.
502         (sql-comint-mysql): Handle "sql-port" as a numeric.
503         (sql-port-history): Delete unused variable.
504         (sql-get-login): Default "sql-port" to a number.
505         (sql-product-alist): Correct Postgres prompt and terminator regexp.
506         (sql-sqlite-program): Dynamically detect presence of "sqlite" or
507         "sqlite3" executables.
508         (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
509         (sql-buffer-live-p): New function.
510         (sql-mode-menu, sql-send-string): Use it.
511         (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
512         syntax pattern.
513         (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
514         (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
516 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
518         * net/netrc.el (netrc-credentials): New convenience function.
520 2010-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
522         * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
523         to replace texinfo-font-lock-syntactic-keywords.
524         (texinfo-mode): Use it.
526         * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
527         Use syntax-propertize-function.
529         * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
530         replace sgml-font-lock-syntactic-keywords.
531         (sgml-mode): Use it.
533         * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
534         since we don't use it.
536         * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
538         * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
539         if available.
540         (vhdl-fontify-buffer): Adjust.
542         * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
543         replace tcl-font-lock-syntactic-keywords.
544         (tcl-mode): Use it.
546         * progmodes/simula.el (simula-syntax-propertize-function): New var to
547         replace simula-font-lock-syntactic-keywords.
548         (simula-mode): Use it.
550         * progmodes/sh-script.el (sh-st-symbol): Remove.
551         (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
552         (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
553         (sh-font-lock-quoted-subshell): Assume we've already matched $(.
554         (sh-font-lock-paren): Set syntax-multiline.
555         (sh-font-lock-syntactic-keywords): Remove.
556         (sh-syntax-propertize-function): New function to replace it.
557         (sh-mode): Use it.
559         * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
560         Define while compiling.
561         (ruby-here-doc-end-re, ruby-here-doc-beg-match)
562         (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
563         (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
564         (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
565         (ruby-here-doc-end-syntax): Only define when
566         syntax-propertize is not available.
567         (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
568         New functions.
569         (ruby-in-ppss-context-p): Update to new syntax of heredocs.
570         (electric-indent-chars): Silence bytecompiler.
571         (ruby-mode): Use prog-mode, syntax-propertize-function, and
572         electric-indent-chars.
574         * progmodes/python.el (python-syntax-propertize-function): New var to
575         replace python-font-lock-syntactic-keywords.
576         (python-mode): Use it.
577         (python-quote-syntax): Simplify and adjust to new use.
579         * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
580         replace perl-font-lock-syntactic-keywords.
581         (perl-syntax-propertize-special-constructs): New fun to replace
582         perl-font-lock-special-syntactic-constructs.
583         (perl-font-lock-syntactic-face-function): New fun.
584         (perl-mode): Use it.
586         * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
587         to replace octave-font-lock-close-quotes.
588         (octave-syntax-propertize-function): New function to replace
589         octave-font-lock-syntactic-keywords.
590         (octave-mode): Use it.
592         * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
593         replaces mixal-font-lock-syntactic-keywords.
594         (mixal-mode): Use it.
596         * progmodes/make-mode.el (makefile-syntax-propertize-function):
597         New var; replaces makefile-font-lock-syntactic-keywords.
598         (makefile-mode): Use it.
599         (makefile-imake-mode): Adjust.
601         * progmodes/js.el (js--regexp-literal): Define while compiling.
602         (js-syntax-propertize-function): New var; replaces
603         js-font-lock-syntactic-keywords.
604         (js-mode): Use it.
606         * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
607         replaces gdb-script-font-lock-syntactic-keywords.
608         (gdb-script-mode): Use it.
610         * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
611         (fortran--font-lock-syntactic-keywords): New var.
612         (fortran-line-length): Update syntax-propertize-function and
613         fortran--font-lock-syntactic-keywords.
615         * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
617         * progmodes/cfengine.el (cfengine-mode):
618         Use syntax-propertize-function.
619         (cfengine-font-lock-syntactic-keywords): Remove.
621         * progmodes/autoconf.el (autoconf-mode):
622         Use syntax-propertize-function.
623         (autoconf-font-lock-syntactic-keywords): Remove.
625         * progmodes/ada-mode.el (ada-set-syntax-table-properties)
626         (ada-after-change-function, ada-initialize-syntax-table-properties)
627         (ada-handle-syntax-table-properties): Only define when
628         syntax-propertize is not available.
629         (ada-mode): Use syntax-propertize-function.
631         * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
632         (font-lock-fontify-syntactic-keywords-region): Move handling of
633         font-lock-syntactically-fontified to...
634         (font-lock-default-fontify-region): ...here.
635         Let syntax-propertize-function take precedence.
636         (font-lock-fontify-syntactically-region): Cal syntax-propertize.
638         * emacs-lisp/syntax.el (syntax-propertize-function)
639         (syntax-propertize-chunk-size, syntax-propertize--done)
640         (syntax-propertize-extend-region-functions): New vars.
641         (syntax-propertize-wholelines, syntax-propertize-multiline)
642         (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
643         (syntax-propertize): New functions.
644         (syntax-propertize-rules): New macro.
645         (syntax-ppss-flush-cache): Set syntax-propertize--done.
646         (syntax-ppss): Call syntax-propertize.
648         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
650 2010-09-10  Agustín Martín  <agustin.martin@hispalinux.es>
652         * textmodes/ispell.el (ispell-init-process): Improve comments.
653         XEmacs compatibility changes regarding (add-hook) 'local option
654         and (set-process-query-on-exit-flag).
656 2010-09-09  Michael Albinus  <michael.albinus@gmx.de>
658         * net/tramp-cache.el (tramp-parse-connection-properties):
659         Set tramp-autoload cookie.
661 2010-09-09  Glenn Morris  <rgm@gnu.org>
663         * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
664         (imagemagick-register-types): Doc fix.
666 2010-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
668         * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
670         * progmodes/js.el (require): Require is already "eval-and-compile".
671         (js--re-search-forward): Avoid `eval'.  Preserve the error data.
672         (js--re-search-backward): Use js--re-search-forward.
674         * progmodes/fortran.el (fortran-line-length): Don't recompute
675         syntactic keywords redundantly a second time.
677         * progmodes/ada-mode.el: Replace "(set '" with setq.
678         (ada-mode): Simplify.
679         (ada-create-case-exception, ada-adjust-case-interactive)
680         (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
681         (ada-search-ignore-string-comment, ada-move-to-start)
682         (ada-move-to-end): Use with-syntax-table.
684         * font-lock.el (save-buffer-state): Remove `varlist' arg.
685         (font-lock-unfontify-region, font-lock-default-fontify-region):
686         Update usage correspondingly.
687         (font-lock-fontify-syntactic-keywords-region):
688         Set parse-sexp-lookup-properties buffer-locally here.
689         (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
691         * simple.el (blink-matching-open): Don't burp if we can't find a match.
693 2010-09-08  Glenn Morris  <rgm@gnu.org>
695         * emacs-lisp/bytecomp.el (byte-compile-report-ops):
696         Error if not compiled with -DBYTE_CODE_METER.
698         * emacs-lisp/bytecomp.el (byte-recompile-directory):
699         Ignore dir-locals-file.
701 2010-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
703         * progmodes/compile.el (compilation-error-regexp-alist-alist):
704         Not a const.
705         (compilation-error-regexp-alist-alist): Rule out ": " in file names
706         for the `gnu' messages.
707         (compilation-set-skip-threshold): New command.
708         (compilation-start): Use \' rather than $.
709         (compilation-forget-errors): Use clrhash.
711 2010-09-08  Agustín Martín  <agustin.martin@hispalinux.es>
713         * textmodes/ispell.el (ispell-valid-dictionary-list):
714         Simplify logic.
716 2010-09-08  Michael Albinus  <michael.albinus@gmx.de>
718         Migrate to Tramp 2.2.  Rearrange load dependencies.
719         (Bug#1529, Bug#5448, Bug#5705)
721         * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
722         ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
723         (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
725         * net/tramp.el (top): Remove all other tramp-* loads except
726         tramp-compat.el.  Remove all changes to tramp-unload-hook for
727         other tramp-* packages.  Rearrange defun order.  Change calls of
728         `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
729         `tramp-compat-octal-to-decimal' to new function names.
730         (tramp-terminal-type, tramp-initial-end-of-output)
731         (tramp-methods, tramp-foreign-file-name-handler-alist)
732         (tramp-tramp-file-p, tramp-completion-mode-p)
733         (tramp-send-command-and-check, tramp-get-remote-path)
734         (tramp-get-remote-tmpdir, tramp-get-remote-ln)
735         (tramp-shell-quote-argument): Set tramp-autoload cookie.
736         (with-file-property, with-connection-property): Move to
737         tramp-cache.el.
738         (tramp-local-call-process, tramp-decimal-to-octal)
739         (tramp-octal-to-decimal): Move to tramp-compat.el.
740         (tramp-handle-shell-command): Do not require 'shell.
741         (tramp-compute-multi-hops): No special handling for tramp-gw-*
742         symbols.
743         (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
745         * net/tramp-cache.el (top): Require 'tramp.  Add to
746         `tramp-unload-hook'.
747         (tramp-cache-data, tramp-get-file-property)
748         (tramp-set-file-property, tramp-flush-file-property)
749         (tramp-flush-directory-property, tramp-get-connection-property)
750         (tramp-set-connection-property, tramp-flush-connection-property)
751         (tramp-cache-print, tramp-list-connections): Set tramp-autoload
752         cookie.
753         (with-file-property, with-connection-property): New defuns, moved
754         from tramp.el.
755         (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
756         macro.
758         * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
759         (tramp-version): Set tramp-autoload cookie.
761         * net/tramp-compat.el (top): Require 'tramp-loaddefs.  Remove all
762         changes to tramp-unload-hook for other tramp-* packages.  Add to
763         `tramp-unload-hook'.
764         (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
765         (tramp-compat-call-process): New defuns, moved from tramp.el.
767         * net/tramp-fish.el (top) Require just 'tramp.  Add objects to
768         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
769         to `tramp-unload-hook'.  Change call of
770         `tramp-compat-decimal-to-octal' to new function name.
771         (tramp-fish-method): Make it a defconst.
772         (tramp-fish-file-name-p): Make it a defsubst.
773         (tramp-fish-method, tramp-fish-file-name-handler)
774         (tramp-fish-file-name-p): Set tramp-autoload cookie.
776         * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
777         `tramp-foreign-file-name-handler-alist'.  Add to
778         `tramp-unload-hook'.
779         (tramp-ftp-method): Make it a defconst.
780         (tramp-ftp-file-name-p): Make it a defsubst.
781         (tramp-ftp-method, tramp-ftp-file-name-handler)
782         (tramp-ftp-file-name-p): Set tramp-autoload cookie.
784         * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
785         `tramp-foreign-file-name-handler-alist'.  Add to
786         `tramp-unload-hook'.  Change checks, whether package can be
787         loaded.
788         (tramp-gvfs-file-name-p): Make it a defsubst.
789         (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
790         (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
791         (tramp-gvfs-handle-file-directory-p): New defun.
792         (tramp-gvfs-file-name-handler-alist): Use it.
794         * net/tramp-gw.el (top) Add objects to `tramp-methods' and
795         `tramp-foreign-file-name-handler-alist'.  Add to
796         `tramp-unload-hook'.
797         (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
798         (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
799         defconst.
800         (tramp-gw-tunnel-method, tramp-gw-socks-method)
801         (tramp-gw-open-connection): Set tramp-autoload cookie.
803         * net/tramp-imap.el (top) Require just 'tramp.  Add objects to
804         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
805         to `tramp-unload-hook'.  Change checks, whether package can be
806         loaded.
807         (tramp-imap-file-name-p): Make it a defsubst.
808         (tramp-imap-method, tramp-imaps-method)
809         (tramp-imap-file-name-handler)
810         (tramp-imap-file-name-p): Set tramp-autoload cookie.
812         * net/tramp-smb.el (top) Require just 'tramp.  Add objects to
813         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
814         to `tramp-unload-hook'.  Change checks, whether package can be
815         loaded.  Change call of `tramp-compat-decimal-to-octal' to new
816         function name.
817         (tramp-smb-tunnel-method): Make it a defconst.
818         (tramp-smb-file-name-p): Make it a defsubst.
819         (tramp-smb-method, tramp-smb-file-name-handler)
820         (tramp-smb-file-name-p): Set tramp-autoload cookie.
822         * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
823         (tramp-uuencode-region): Set tramp-autoload cookie.
825         * net/trampver.el (top) Add to `tramp-unload-hook'.
826         (tramp-version, tramp-bug-report-address): Set tramp-autoload
827         cookie.  Update release number.
829 2010-09-07  Agustín Martín  <agustin.martin@hispalinux.es>
831         * textmodes/ispell.el (ispell-start-process): Make sure original
832         arg list is properly initialized (Bug#6993, Bug#6994).
834 2010-09-06  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
836         * files.el (directory-abbrev-alist): Use \` as default regexp.
838         * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
839         chars like - or ] (bug#6984).
840         (rx-any-condense-range): Explode 2-char ranges.
842 2010-09-06  Glenn Morris  <rgm@gnu.org>
844         * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
846 2010-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
848         * textmodes/bibtex.el:
849         * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
851 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
853         * net/imap.el (imap-message-map): Remove optional buffer parameter,
854         since no callers use it.
855         (imap-message-get): Ditto.
856         (imap-message-put): Ditto.
857         (imap-mailbox-map): Ditto.
858         (imap-mailbox-put): Ditto.
859         (imap-mailbox-get): Ditto.
860         (imap-mailbox-get): Revert last change for this function.
862 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
864         * net/imap.el (imap-fetch-safe): Remove function, and alter all
865         callers to use `imap-fetch' instead.  According to the comments, this
866         should be safe, since all other IMAP clients use the 1:* syntax.
867         (imap-enable-exchange-bug-workaround): Remove.
868         (imap-debug): Remove -- doesn't seem very useful.
870 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
872         * net/imap.el (imap-log): New convenience function used throughout
873         instead of repeating the same code all over the place.
875 2010-09-05  David De La Harpe Golden  <david@harpegolden.net>
877         * mouse.el (mouse-save-then-kill): Save region to kill-ring
878         when mouse-drag-copy-region is non-nil (Bug#6956).
880 2010-09-05  Chong Yidong  <cyd@stupidchicken.com>
882         * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
883         Improve regexps (Bug#6987).
884         (dired-sort-toggle): Search more robustly for -t flag.
886         * files.el (get-free-disk-space): Search more robustly for
887         "available" column.  Suggested by Ehud Karni
888         <ehud@unix.mvs.co.il>.
890 2010-09-05  Juanma Barranquero  <lekktu@gmail.com>
892         * international/uni-bidi.el:
893         * international/uni-category.el:
894         * international/uni-combining.el:
895         * international/uni-decimal.el:
896         * international/uni-mirrored.el:
897         * international/uni-name.el: Regenerate.
899 2010-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
901         * electric.el (electric-indent-post-self-insert-function):
902         Don't reindent with a sloppy indentation function.
904         * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
905         border case in change-log-mode.
907 2010-09-04  Chong Yidong  <cyd@stupidchicken.com>
909         * progmodes/compile.el (compilation-error-regexp-alist-alist):
910         Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
911         Recognize leading tab in gcc-include regexp.  Ignore names with
912         leading "from" or "in" in gnu regexp (Bug#6937).
914 2010-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
916         Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
917         * textmodes/ispell.el (ispell-process-buffer-name): Remove.
918         (ispell-start-process): Avoid setq and simplify logic.
919         (ispell-init-process): Setup kill-buffer-hook locally when needed.
920         (kill-buffer-hook): Don't use it globally with code that uses
921         expand-file-name since that may call kill-buffer via
922         code_conversion_restore.
924 2010-09-04  Noorul Islam K M  <noorul@noorul.com>  (tiny change)
926         * emacs-lisp/package.el (package-directory-list): Only call
927         file-name-nondirectory on a string.
929 2010-09-02  Chong Yidong  <cyd@stupidchicken.com>
931         * emacs-lisp/package.el (package--download-one-archive):
932         Ensure that archive-contents is valid before saving it.
933         (package-activate-1, package-mark-obsolete, define-package)
934         (package-compute-transaction, package-list-maybe-add): Use push.
936 2010-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
938         Use SMIE's blink-paren for octave-mode.
939         * progmodes/octave-mod.el (octave-font-lock-close-quotes):
940         Backslashes do not escape single-quotes, single-quotes do.
941         (octave-block-else-regexp, octave-block-end-regexp)
942         (octave-block-match-alist): Remove.
943         (octave-smie-bnf-table): New var, with old content.
944         (octave-smie-op-levels): Use it.
945         (octave-smie-closer-alist): New var.
946         (octave-mode): Use it.  Setup smie-blink-matching and electric-indent.
947         (octave-blink-matching-block-open): Remove.
948         (octave-reindent-then-newline-and-indent, octave-electric-semi)
949         (octave-electric-space): Let self-insert-command run expand-abbrev and
950         blink parens.
952         * electric.el (electricity): New group.
953         (electric-indent-chars): New var.
954         (electric-indent-post-self-insert-function): New fun.
955         (electric-indent-mode): New minor mode.
956         (electric-pair-skip-self): New custom.
957         (electric-pair-post-self-insert-function): New function.
958         (electric-pair-mode): New minor mode.
960         * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
961         calcAlg-blink-matching-open.
962         (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
963         (calc-do-alg-entry): Only touch the part of the keymap that varies.
964         Use the new blink-matching-check-function.
966         Provide blink-matching support to SMIE.
967         * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
968         (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
969         (smie-blink-matching-check, smie-blink-matching-open): New functions.
971         * simple.el (newline): Fix last change to properly remove itself from
972         the hook.
974 2010-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
976         * simple.el (newline): Eliminate optimization.
977         Use post-self-insert-hook to set hard-newline and things before
978         running post-self-insert-hook.
979         (blink-matching-check-mismatch): New function.
980         (blink-matching-check-function): New variable.
981         (blink-matching-open): Use them.
982         Skip back forward over prefix chars skipped by forward-sexp.
983         Don't check if the parens are backslash escaped.
984         (blink-paren-post-self-insert-function): Check backslash escaping here.
986 2010-09-02  Chong Yidong  <cyd@stupidchicken.com>
988         * emacs-lisp/package.el (package-menu-mode-map):
989         Change package-menu-revert bindings to revert-buffer.
990         (package-menu-mode): Set revert-buffer-function.
991         (package-menu-revert): Doc fix.
993 2010-09-02  Agustín Martín  <agustin.martin@hispalinux.es>
995         * textmodes/ispell.el (ispell-init-process): Use "~/" as
996         `default-directory' unless using Ispell per-directory personal
997         dictionaries and not in a mini-buffer under XEmacs.
998         (kill-buffer-hook): Do not kill ispell process on exit when
999         `ispell-process-directory' is "~/".  (Bug#6143)
1001 2010-09-02  Jan Djärv  <jan.h.d@swipnet.se>
1003         * simple.el (kill-new): Call interprogram-cut-function with only
1004         one argument.
1006         * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
1007         Remove cut buffer from error message.
1009         * term/x-win.el (x-select-text):
1010         * term/pc-win.el (x-selection-value):
1011         * term/ns-win.el (x-selection-value):
1012         * eshell/em-term.el:
1013         * w32-fns.el (x-get-selection-value):
1014         * mouse-sel.el (mouse-sel-set-selection-function):
1015         * frame.el (display-selections-p): Remove cut-buffer in documentation.
1017         * term/x-win.el: Update documentation for x-last-selected-text-*.
1018         (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
1019         (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
1020         (x-select-text): Remove argument PUSH, update documentation.  Remove
1021         cut-buffer code.
1022         (x-selection-value-internal): Was previously x-selection-value.
1023         (x-selection-value): Rename from x-cut-buffer-or-selection-value.
1024         Update documentation, remove cut-buffer code.  Call
1025         x-selection-value-internal.
1026         (x-clipboard-yank): Call x-selection-value-internal.
1027         (x-initialize-window-system): Remove setting of x-cut-buffer-max.
1029         * term/pc-win.el (x-last-selected-text):
1030         x-cut-buffer-or-selection-value renamed to x-selection-value
1031         (x-select-text): Remove argument PUSH, update documentation.
1033         * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
1034         x-cut-buffer-or-selection-value renamed to x-selection-value
1035         (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
1036         (x-select-text): Remove argument PUSH, update documentation.
1038         * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
1040         * w32-fns.el (x-last-selected-text):
1041         x-cut-buffer-or-selection-value renamed to x-selection-value.
1042         (x-cut-buffer-max): Remove.
1043         (x-select-text): Remove argument PUSH, update documentation.
1045         * simple.el (interprogram-cut-function): Remove mention of PUSH.
1047         * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
1049         * mouse-sel.el (mouse-sel-get-selection-function):
1050         x-cut-buffer-or-selection-value renamed to x-selection-value.
1051         (x-select-text): Remove optional push.
1053 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1055         * simple.el (blink-paren-function): Move from C to here.
1056         (blink-paren-post-self-insert-function): New function.
1057         (post-self-insert-hook): Use it.
1059         * emacs-lisp/pcase.el (pcase-split-memq):
1060         Fix overenthusiastic optimisation.
1061         (pcase-u1): Handle the case of a lambda pred.
1063 2010-08-31  Kenichi Handa  <handa@m17n.org>
1065         * international/mule-cmds.el (standard-display-european-internal):
1066         Setup standard-display-table for 8-bit characters by storing 8-bit
1067         characters in the element vector.
1069         * disp-table.el (standard-display-8bit): Setup
1070         standard-display-table for 8-bit characters by storing 8-bit
1071         characters in the element vector.
1072         (standard-display-european): Likewise.
1074 2010-08-31  Masatake YAMATO  <yamato@redhat.com>
1076         * textmodes/nroff-mode.el (nroff-view): New command.
1077         (nroff-mode-map): Bind it to C-c C-c.
1079 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1081         * emacs-lisp/smie.el (smie-down-list): New command.
1083         Remove old indentation and navigation code on octave-mode.
1084         * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
1085         smie-down-list rather than add a binding for octave-down-block.
1086         (octave-mark-block, octave-blink-matching-block-open):
1087         Rely on forward-sexp-function.
1088         (octave-fill-paragraph): Don't narrow, so you can use
1089         indent-according-to-mode.
1090         (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
1091         (octave-in-block-p, octave-re-search-forward-kw)
1092         (octave-re-search-backward-kw, octave-indent-calculate)
1093         (octave-end-as-array-index-p, octave-block-end-offset)
1094         (octave-scan-blocks, octave-forward-block, octave-backward-block)
1095         (octave-down-block, octave-backward-up-block, octave-up-block)
1096         (octave-before-magic-comment-p, octave-indent-line): Remove.
1098 2010-08-31  Chong Yidong  <cyd@stupidchicken.com>
1100         * emacs-lisp/package.el (package--read-archive-file): Just use
1101         `read', to avoid copying an additional string.
1102         (package-menu-mode): Set header-line-format here.
1103         (package-menu-refresh, package-menu-revert): Signal an error if
1104         not in the Package Menu.
1105         (package-menu-package-list): New var.
1106         (package--generate-package-list): Operate on the current buffer;
1107         don't assume that it is *Packages*, since the user may rename it.
1108         Allow persistent package listings and sort keys using
1109         package-menu-package-list and package-menu-package-sort-key.
1110         (package-menu--version-predicate): Fix version calculation.
1111         (package-menu-sort-by-column): Don't select the window.
1112         (package--list-packages): Create the *Packages* buffer.
1113         Set package-menu-package-list-key.
1114         (list-packages): Sorting by status is now the default.
1115         (package-buffer-info): Use match-string-no-properties.
1116         (define-package): Add a &rest argument for future proofing, but
1117         don't use it yet.
1118         (package-install-from-buffer, package-install-buffer-internal):
1119         Merge into a single function, package-install-from-buffer.
1120         (package-install-file): Change caller.
1122         * finder.el: Load finder-inf using `require'.
1123         (finder-list-matches): Sorting by status is now the default.
1124         (finder-compile-keywords): Simpify printing.
1126 2010-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
1128         * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
1129         (octave-mode-map): Remove special bindings for forward/backward-block
1130         and octave-backward-up-block.  Use smie-close-block.
1131         (octave-continuation-marker-regexp): New var.
1132         (octave-continuation-regexp): Use it.
1133         (octave-operator-table, octave-smie-op-levels)
1134         (octave-operator-regexp, octave-smie-indent-rules): New vars.
1135         (octave-smie-backward-token, octave-smie-forward-token): New funs.
1136         (octave-mode): Use SMIE.
1137         (octave-close-block): Delete.
1139 2010-08-30  Eli Zaretskii  <eliz@gnu.org>
1141         * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
1142         CLIPBOARD, not in PRIMARY.  (Bug#6944)
1144 2010-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
1146         * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
1147         a list of parents.
1148         (smie-indent-column): Allow indirection through variables.
1150         * composite.el (save-buffer-state): Delete, unused.
1151         * font-lock.el (save-buffer-state): Use with-silent-modifications.
1152         (font-lock-default-fontify-region): Use with-syntax-table.
1153         * jit-lock.el (with-buffer-unmodified): Remove.
1154         (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
1156         Use `declare' in defmacros.
1157         * window.el (save-selected-window):
1158         * subr.el (with-temp-file, with-temp-message, with-syntax-table):
1159         * progmodes/python.el (def-python-skeleton):
1160         * net/dbus.el (dbus-ignore-errors):
1161         * jka-cmpr-hook.el (with-auto-compression-mode):
1162         * international/mule.el (with-category-table):
1163         * emacs-lisp/timer.el (with-timeout):
1164         * emacs-lisp/lisp-mnt.el (lm-with-file):
1165         * emacs-lisp/eieio.el (with-slots):
1166         * emacs-lisp/easymenu.el (easy-menu-define):
1167         * emacs-lisp/debug.el (debugger-env-macro):
1168         * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
1169         (Multiple-value-call, Multiple-value-prog1):
1170         * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
1171         (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
1172         edebug rule to definition.
1173         * emacs-lisp/lisp-mode.el (save-selected-window)
1174         (with-current-buffer, combine-after-change-calls)
1175         (with-output-to-string, with-temp-file, with-temp-buffer)
1176         (with-temp-message, with-syntax-table, read-if, eval-after-load)
1177         (dolist, dotimes, when, unless):
1178         * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
1180 2010-08-29  Chong Yidong  <cyd@stupidchicken.com>
1182         * finder.el: Require `package'.
1183         (finder-known-keywords): Tweak descriptions.  Retire `oop' keyword.
1184         (finder-package-info): Var deleted.
1185         (finder-keywords-hash, finder--builtins-alist): New vars.
1186         (finder-compile-keywords): Compute package--builtins and
1187         finder-keywords-hash instead of finder-keywords-hash, respecting
1188         the "Package" header.
1189         (finder-unknown-keywords, finder-list-matches):
1190         Use finder-keywords-hash and package--list-packages.
1191         (finder-mode): Don't set font-lock-defaults.
1192         (finder-exit): We don't use "*Finder-package*" and "*Finder
1193         Category*" buffers anymore.
1195         * emacs-lisp/package.el (package--builtins-base): Var deleted.
1196         (package--builtins): Set default value to nil.
1197         (package-initialize): Load precomputed value of package--builtins
1198         from finder-inf.el.
1199         (package-alist, package-compute-transaction)
1200         (package-download-transaction): Improve docstring.
1201         (package-read-all-archive-contents): Do not change
1202         package--builtins here.
1203         (list-packages): Make package-list-packages an alias for this.
1204         Sort by status by default.
1205         (package--list-packages): Add optional PACKAGES arg.
1206         (describe-package-1): Use font-lock-face property.  For built-in
1207         packages, insert file commentary.
1208         (package--generate-package-list): Rename from
1209         package-list-packages-internal; all callers changed.  Add optional
1210         PACKAGES arg.  Add alphabetical sort fallbacks.
1211         (package-menu--version-predicate, package-menu--status-predicate)
1212         (package-menu--description-predicate)
1213         (package-menu--name-predicate): New functions.
1215         * info.el (Info-finder-find-node): Search package-alist instead of
1216         finder-package-info.
1218 2010-08-29  Chong Yidong  <cyd@stupidchicken.com>
1220         * subr.el (version-regexp-alist): Don't use "a" and "b" for
1221         "alpha" and "beta".
1222         (version-to-list): Handle versions like "10.3d".
1224 2010-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1226         * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
1227         (macroexp-accumulate): Use `declare'.
1229 2010-08-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1231         * whitespace.el (whitespace-style): Adjust type declaration.
1233 2010-08-26  Magnus Henoch  <magnus.henoch@gmail.com>
1235         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
1236         empty argument to gvfs-copy.
1238 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
1240         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
1241         handle new TRASH arg of `delete-file'.
1243 2010-08-26  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
1245         * net/tramp.el (tramp-handle-insert-directory): Don't use
1246         `forward-word', its default syntax could be changed.
1248 2010-08-26  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
1249             Michael Albinus  <michael.albinus@gmx.de>
1251         Implement compression for inline methods.
1253         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
1254         (tramp-copy-size-limit): Allow also nil.
1255         (tramp-inline-compress-commands): New defconst.
1256         (tramp-find-inline-compress, tramp-get-inline-compress)
1257         (tramp-get-inline-coding): New defuns.
1258         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
1259         replaced by `tramp-get-inline-coding'.
1260         (tramp-handle-file-local-copy, tramp-handle-write-region)
1261         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
1263 2010-08-26  Noah Lavine  <noah549@gmail.com>  (tiny change)
1265         Detect ssh 'ControlMaster' argument automatically in some cases.
1267         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
1268         (tramp-default-method): Use it.
1270 2010-08-26  Karel Klíč  <kklic@redhat.com>
1272         * net/tramp.el (tramp-file-name-for-operation):
1273         Add file-selinux-context.
1275 2010-08-26  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
1277         * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
1279 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
1281         * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
1282         (Bug#6907).
1284 2010-08-26  Nathan Weizenbaum  <nweiz@cressida.sea.corp.google.com>  (tiny change)
1286         * progmodes/js.el: Make indentation more customizable (Bug#6914).
1287         (js-paren-indent-offset, js-square-indent-offset)
1288         (js-curly-indent-offset): New options.
1289         (js--proper-indentation): Use them.
1291 2010-08-26  Daniel Colascione  <dan.colascione@gmail.com>
1293         * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
1294         instead of inspecting font-lock properties (Bug#6916).
1296 2010-08-26  David Reitter  <david.reitter@gmail.com>
1298         * server.el (server-visit-files): Run pre-command-hook and
1299         post-command-hook for each buffer while it is current
1300         (Bug#6910).
1301         (server-execute): Do not run hooks here.
1303 2010-08-26  Michael Albinus  <michael.albinus@gmx.de>
1305         Sync with Tramp 2.1.19.
1307         * net/tramp-cmds.el (tramp-cleanup-all-connections)
1308         (tramp-reporter-dump-variable, tramp-load-report-modules)
1309         (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
1310         (tramp-bug): Recommend setting of `tramp-verbose' to 9.
1312         * net/tramp-compat.el (top): Do not autoload
1313         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
1314         only when `start-file-process' is not bound.
1315         (byte-compile-not-obsolete-vars): Define if not bound.
1316         (tramp-compat-funcall): New defmacro.
1317         (tramp-compat-line-beginning-position)
1318         (tramp-compat-line-end-position)
1319         (tramp-compat-temporary-file-directory)
1320         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
1321         (tramp-compat-copy-file, tramp-compat-copy-directory)
1322         (tramp-compat-delete-file, tramp-compat-delete-directory)
1323         (tramp-compat-number-sequence, tramp-compat-process-running-p):
1324         Use it.
1325         (tramp-advice-file-expand-wildcards): Do not use
1326         `tramp-handle-file-remote-p'.
1327         (tramp-compat-make-temp-file): Simplify fallback implementation.
1328         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
1329         (tramp-compat-copy-tree): Remove function.
1330         (tramp-compat-delete-file): New defun.
1331         (tramp-compat-delete-directory): Provide implementation for older
1332         Emacsen.
1333         (tramp-compat-file-attributes): Handle only
1334         `wrong-number-of-arguments' error.
1336         * net/tramp-fish.el (tramp-fish-handle-copy-file): Add
1337         PRESERVE_SELINUX_CONTEXT.
1338         (tramp-fish-handle-delete-file): Add TRASH arg.
1339         (tramp-fish-handle-directory-files-and-attributes):
1340         Do not use `tramp-fish-handle-file-attributes.
1341         (tramp-fish-handle-file-local-copy)
1342         (tramp-fish-handle-insert-file-contents)
1343         (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
1345         * net/tramp-gvfs.el (top): Require url-util.
1346         (tramp-gvfs-mount-point): Remove.
1347         (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
1348         and `set-file-selinux-context'.
1349         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
1350         (tramp-gvfs-handle-file-selinux-context)
1351         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
1352         (with-tramp-dbus-call-method): Format trace message.
1353         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
1354         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
1355         Implement backup call, when operation on local files fails.  Use
1356         progress reporter.  Flush properties of changed files.
1357         (tramp-gvfs-handle-delete-file): Add TRASH arg.  Use
1358         `tramp-compat-delete-file'.
1359         (tramp-gvfs-handle-expand-file-name): Expand "~/".
1360         (tramp-gvfs-handle-make-directory): Make more traces.
1361         (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
1362         (tramp-gvfs-url-file-name): Hexify file name in url.
1363         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
1364         into account for the resulting file name.
1365         (tramp-gvfs-handler-askquestion): Preserve current message, in
1366         order to let progress reporter continue afterwards.  (Bug#6257)
1367         Return dummy mountpoint, when the answer is "no".  See
1368         `tramp-gvfs-maybe-open-connection'.
1369         (tramp-gvfs-handler-mounted-unmounted)
1370         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
1371         attribute "default_location".  Set "prefix" property.  Handle
1372         default-location.
1373         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
1374         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
1375         exists.  Raise an error, if not (due to a corresponding answer
1376         "no" in interactive questions, for example).
1377         Use `tramp-compat-funcall'.
1379         * net/tramp-imap.el (top): Autoload `epg-make-context'.
1380         (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
1381         (tramp-imap-do-copy-or-rename-file)
1382         (tramp-imap-handle-insert-file-contents)
1383         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
1384         (tramp-imap-handle-delete-file): Add TRASH arg.
1386         * net/tramp-smb.el (tramp-smb-handle-copy-file): Add
1387         PRESERVE-SELINUX-CONTEXT.
1388         (tramp-smb-handle-copy-file)
1389         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
1390         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
1391         Use `with-progress-reporter'.
1392         (tramp-smb-handle-delete-file): Add TRASH arg.
1394         * net/tramp.el (tramp-methods): Move hostname to the end in all
1395         ssh `tramp-login-args'.  Add `tramp-async-args' attribute where
1396         appropriate.
1397         (tramp-verbose): Describe verbose level 9.
1398         (tramp-completion-function-alist)
1399         (tramp-file-name-regexp, tramp-chunksize)
1400         (tramp-local-coding-commands, tramp-remote-coding-commands)
1401         (with-connection-property, tramp-completion-mode-p)
1402         (tramp-action-process-alive, tramp-action-out-of-band)
1403         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
1404         (tramp-exists-file-name-handler): Fix docstring.
1405         (tramp-remote-process-environment): Use `format' instead of
1406         `concat'.  Protect version string by apostroph.
1407         (tramp-shell-prompt-pattern): Do not use a shy group in case of
1408         XEmacs.
1409         (tramp-file-name-regexp-unified)
1410         (tramp-completion-file-name-regexp-unified): On W32 systems, do
1411         not regard the volume letter as remote filename.  (Bug#5447)
1412         (tramp-perl-file-attributes)
1413         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
1414         (tramp-vc-registered-read-file-names): Read input as
1415         here-document, otherwise the command could exceed maximum length
1416         of command line.
1417         (tramp-file-name-handler-alist): Add `file-selinux-context' and
1418         `set-file-selinux-context'.
1419         (tramp-debug-message): Add `tramp-compat-funcall' to ignored
1420         backtrace functions.
1421         (tramp-error-with-buffer): Don't show the connection buffer when
1422         we are in completion mode.
1423         (tramp-progress-reporter-update, tramp-remote-selinux-p)
1424         (tramp-handle-file-selinux-context)
1425         (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
1426         (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
1427         New defuns.
1428         (with-progress-reporter): New defmacro.
1429         (tramp-debug-outline-regexp): New defconst.
1430         (top, tramp-rfn-eshadow-setup-minibuffer)
1431         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
1432         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
1433         (tramp-completion-mode-p, tramp-check-for-regexp)
1434         (tramp-open-connection-setup-interactive-shell)
1435         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
1436         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
1437         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
1438         Use `tramp-compat-funcall'.
1439         (tramp-handle-make-symbolic-link): Flush file properties.
1440         (tramp-handle-load, tramp-handle-file-local-copy)
1441         (tramp-handle-insert-file-contents, tramp-handle-write-region)
1442         (tramp-handle-vc-registered, tramp-maybe-send-script)
1443         (tramp-find-shell): Use `with-progress-reporter'.
1444         (tramp-do-file-attributes-with-stat): Add space in format string,
1445         in order to work around a bug in pdksh.  Reported by Gilles Pion
1446         <gpion@lfdj.com>.
1447         (tramp-handle-verify-visited-file-modtime): Do not send a command
1448         when the connection is not established.
1449         (tramp-handle-set-file-times): Simplify the check for utc.
1450         (tramp-handle-directory-files-and-attributes)
1451         (tramp-get-remote-path): Use `copy-tree'.
1452         (tramp-completion-handle-file-name-all-completions): Ensure, that
1453         non remote files are still checked.  Oops.
1454         (tramp-handle-copy-file, tramp-do-copy-or-rename-file): Handle
1455         PRESERVE-SELINUX-CONTEXT.
1456         (tramp-do-copy-or-rename-file): Add progress reporter.
1457         (tramp-do-copy-or-rename-file-directly): Do not use
1458         `tramp-handle-file-remote-p'.
1459         (tramp-do-copy-or-rename-file-out-of-band):
1460         Use `tramp-compat-delete-directory'.
1461         (tramp-do-copy-or-rename-file-out-of-band)
1462         (tramp-compute-multi-hops, tramp-maybe-open-connection):
1463         Use `format-spec-make'.
1464         (tramp-handle-delete-file): Add TRASH arg.
1465         (tramp-handle-dired-uncache): Flush directory cache, not only file
1466         cache.
1467         (tramp-handle-expand-file-name)
1468         (tramp-completion-handle-file-name-all-completions)
1469         (tramp-completion-handle-file-name-completion): Use
1470         `tramp-connectable-p'.
1471         (tramp-handle-start-file-process): Set connection property "vec".
1472         Use it, in order to invalidate file caches.  Check only for
1473         `remote-tty' process property.
1474         Implement tty setting.  (Bug#4604, Bug#6360)
1475         (tramp-file-name-for-operation): Add `call-process-region' and
1476         `set-file-selinux-context'.
1477         (tramp-find-foreign-file-name-handler)
1478         (tramp-advice-make-auto-save-file-name)
1479         (tramp-set-auto-save-file-modes): Remove superfluous check for
1480         `stringp'.  This is done inside `tramp-tramp-file-p'.
1481         (tramp-file-name-handler): Trace 'quit.  Catch the error for some
1482         operations when we are in completion mode.  This gives the user
1483         the chance to correct the file name in the minibuffer.
1484         (tramp-completion-mode-p): Use `non-essential'.
1485         (tramp-handle-file-name-all-completions): Backward/ XEmacs
1486         compatibility: Use `completion-ignore-case' if
1487         `read-file-name-completion-ignore-case' does not exist.
1488         (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
1489         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
1490         `tramp-open-shell'.
1491         (tramp-action-password): Hide password prompt before next run.
1492         (tramp-process-actions): Widen connection buffer for the trace.
1493         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
1494         process property.  Trace stty settings if `tramp-verbose' >= 9.
1495         Apply workaround for IRIX64 bug.  Move argument of last
1496         `tramp-send-command' where it belongs to.
1497         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
1498         front of `login-args'.
1499         (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
1500         on "/dev/null" instead of "/".
1501         (tramp-get-ls-command-with-dired): Make test for "--dired"
1502         stronger.
1503         (tramp-set-auto-save-file-modes): Adapt version check.
1504         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
1505         (tramp-handle-process-file): Call the program in a subshell, in
1506         order to preserve working directory.
1507         (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
1508         `tramp-remote-sh' from `tramp-methods'.
1509         (tramp-get-ls-command): Make test for "--color=never" stronger.
1510         (tramp-check-for-regexp): Use (forward-line 1).
1512         * net/trampver.el: Update release number.
1514 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
1516         * help.el (help-map): Bind `C-h P' to describe-package.
1518         * menu-bar.el (menu-bar-describe-menu): Add describe-package.
1520         * emacs-lisp/package.el (package-refresh-contents): Catch errors
1521         when downloading archives.
1522         (describe-package-1): Add package commentary.
1523         (package-install-button-action): New function.
1524         (package-menu-mode-map): Bind ? to package-menu-describe-package.
1525         (package-menu-view-commentary): Function removed.
1526         (package-list-packages-internal): Hide the `package' package too.
1528 2010-08-25  Kenichi Handa  <handa@m17n.org>
1530         * language/misc-lang.el ("Arabic"): New language environment.
1531         Setup composition-function-table for Arabic characters.
1533         * international/fontset.el (setup-default-fontset): Fix typo for
1534         arabic OTF spec (fini->fina).
1536 2010-08-25  Jan Djärv  <jan.h.d@swipnet.se>
1538         * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
1539         on all frames.
1541 2010-08-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1543         * whitespace.el: Allow cleaning up blanks without blank
1544         visualization (Bug#6651).  Adjust help window for
1545         whitespace-toggle-options (Bug#6479).  Allow to use fill-column
1546         instead of whitespace-line-column (from EmacsWiki).  New version
1547         13.1.
1548         (whitespace-style): Added new value 'face.  Adjust docstring.
1549         (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
1550         foreground property face.
1551         (whitespace-line-column): Adjust docstring and type declaration.
1552         (whitespace-style-value-list, whitespace-toggle-option-alist)
1553         (whitespace-help-text): Adjust const initialization.
1554         (whitespace-toggle-options, global-whitespace-toggle-options):
1555         Adjust docstring.
1556         (whitespace-display-window, whitespace-interactive-char)
1557         (whitespace-style-face-p, whitespace-color-on): Adjust code.
1558         (whitespace-help-scroll): New fun.
1560 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
1562         * emacs-lisp/package.el (list-packages): Alias for
1563         package-list-packages.
1565 2010-08-24  Kevin Ryde  <user42@zip.com.au>
1567         * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
1568         (Bug#5651).
1570         * progmodes/ruby-mode.el (ruby): Add defgroup.
1572 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
1574         * progmodes/python.el: Add Ipython support (Bug#5390).
1575         (python-shell-prompt-alist)
1576         (python-shell-continuation-prompt-alist): New options.
1577         (python--set-prompt-regexp): New function.
1578         (inferior-python-mode, run-python, python-shell): Require
1579         ansi-color.  Use python--set-prompt-regexp to set the comint
1580         prompt based on the Python interpreter.
1581         (python--prompt-regexp): New var.
1582         (python-check-comint-prompt)
1583         (python-comint-output-filter-function): Use it.
1584         (run-python): Use a pipe (Bug#5694).
1586 2010-08-24  Fabian Ezequiel Gallina  <galli.87@gmail.com>  (tiny change)
1588         * progmodes/python.el (python-send-region): Send a different
1589         Python command if Ipython is in use.
1590         (python-check-version): Use a Python command to find the version.
1592 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
1594         * mouse.el (mouse-yank-primary): Avoid setting primary when
1595         deactivating the mark (Bug#6872).
1597 2010-08-23  Chris Foote  <chris@foote.com.au>  (tiny change)
1599         * progmodes/python.el (python-block-pairs): Allow use of "finally"
1600         with "else" (Bug#3991).
1602 2010-08-23  Michael Albinus  <michael.albinus@gmx.de>
1604         * net/dbus.el: Accept UNIX domain sockets as bus address.
1605         (top): Don't initialize `dbus-registered-objects-table' anymore,
1606         this is done in dbusbind,c.
1607         (dbus-check-event): Adapt test for bus.
1608         (dbus-return-values-table, dbus-unregister-service)
1609         (dbus-event-bus-name, dbus-introspect, dbus-register-property):
1610         Adapt doc string.
1612 2010-08-23  Juanma Barranquero  <lekktu@gmail.com>
1614         * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
1616 2010-08-22  Juri Linkov  <juri@jurta.org>
1618         * simple.el (read-extended-command): New function with the logic
1619         for `completing-read' moved to Elisp from `execute-extended-command'.
1620         Use `function-called-at-point' in `minibuffer-default-add-function'
1621         to get a command name for M-n (bug#5364, bug#5214).
1623 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
1625         * startup.el (command-line-1): Issue warning for ignored arguments
1626         --unibyte, etc (Bug#6886).
1628 2010-08-22  Leo  <sdl.web@gmail.com>
1630         * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
1631         (ignore, bright, dim, keyword): Split list of nicknames before
1632         passing to rcirc-add-or-remove (Bug#6894).
1634 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
1636         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
1638 2010-08-22  Leo  <sdl.web@gmail.com>
1640         Fix buffer-list rename&refresh after killing a buffer in ido.
1641         * lisp/ido.el: Revert Óscar's.
1642         (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
1643         Remember the buffers at head, rather than their name.
1644         * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
1646 2010-08-22  Kirk Kelsey  <kirk.kelsey@0x4b.net>  (tiny change)
1647             Stefan Monnier  <monnier@iro.umontreal.ca>
1649         * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
1650         extra backslash added to each line (bug#6890).
1652 2010-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1654         * subr.el (read-key): Don't echo keystrokes (bug#6883).
1656 2010-08-22  Glenn Morris  <rgm@gnu.org>
1658         * menu-bar.el (menu-bar-games-menu): Add landmark.
1660 2010-08-22  Glenn Morris  <rgm@gnu.org>
1662         * align.el (align-regexp): Make group and spacing arguments
1663         use the interactive defaults when non-interactive.  (Bug#6698)
1665         * mail/rmail.el (rmail-forward): Replace mail-text-start with its
1666         expansion, so as not to need sendmail.
1667         (mail-text-start): Remove declaration.
1668         (rmail-retry-failure): Require sendmail.
1670 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
1672         * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
1674 2010-08-22  Michael Albinus  <michael.albinus@gmx.de>
1676         * progmodes/flymake.el (flymake-start-syntax-check-process):
1677         Use `start-file-process' in order to let it run also on remote hosts.
1679 2010-08-22  Kenichi Handa  <handa@m17n.org>
1681         * files.el: Add `word-wrap' as safe local variable.
1683 2010-08-22  Glenn Morris  <rgm@gnu.org>
1685         * woman.el (woman-translate): Case matters.  (Bug#6849)
1687 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
1689         * simple.el (kill-region): Doc fix (Bug#6787).
1691 2010-08-22  Glenn Morris  <rgm@gnu.org>
1693         * calendar/diary-lib.el (diary-header-line-format):
1694         Fit it to the window, not the frame.
1696 2010-08-22  Andreas Schwab  <schwab@linux-m68k.org>
1698         * subr.el (ignore-errors): Add debug declaration.
1700 2010-08-22  Geoff Gole  <geoffgole@gmail.com>  (tiny change)
1702         * whitespace.el (whitespace-color-off): Remove post-command-hook
1703         locally.
1705 2010-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1707         * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
1709 2010-08-21  Chong Yidong  <cyd@stupidchicken.com>
1711         * cus-edit.el (custom-group-value-create): Add extra newline
1712         before end line (Bug#6876).
1714 2010-08-21  Chong Yidong  <cyd@stupidchicken.com>
1716         * mouse.el (mouse-save-then-kill): Don't save region to kill ring
1717         when extending it.  Before killing on the second click, check if
1718         the buffer is the correct one.  Doc fix.
1719         (mouse-secondary-save-then-kill): Allow usage without first
1720         calling mouse-start-secondary, by defaulting to point.  Don't save
1721         an empty secondary selection.  Doc fix.
1723 2010-08-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1725         * whitespace.el: Fix slow cursor movement (Bug#6172).  Reported by
1726         Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
1727         New version 13.0.
1728         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
1729         Adjust initialization.
1730         (whitespace-bob-marker, whitespace-eob-marker)
1731         (whitespace-buffer-changed): New vars.
1732         (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
1733         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
1734         (whitespace-post-command-hook, whitespace-display-char-on):
1735         Adjust code.
1736         (whitespace-looking-back, whitespace-buffer-changed): New funs.
1737         (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
1739 2010-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1741         * files.el (locate-file-completion-table): Only list the .el and .elc
1742         extensions if there's no other choice (bug#5955).
1744         * facemenu.el (facemenu-self-insert-data): New var.
1745         (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
1746         New functions.
1747         (facemenu-add-face): Use them.
1749         * simple.el (blink-matching-open): Obey forward-sexp-function.
1751 2010-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1753         * simple.el (prog-mode-map): New var.
1754         (prog-indent-sexp): New command.
1756         * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
1758         * progmodes/prolog.el (smie): Require.
1760         * emacs-lisp/smie.el (smie-default-backward-token)
1761         (smie-default-forward-token): Strip properties.
1762         (smie-next-sexp): Be more careful with associative operators.
1763         (smie-forward-sexp-command): Generalize.
1764         (smie-backward-sexp-command): Simplify.
1765         (smie-closer-alist): New var.
1766         (smie-close-block): New command.
1767         (smie-indent-debug-log): New var.
1768         (smie-indent-offset-rule): Add a few more cases.
1769         (smie-indent-column): New function.
1770         (smie-indent-after-keyword): Use it.
1771         (smie-indent-keyword): Use it.
1772         Fix up the opener code's point position.
1773         (smie-indent-comment): Only applies at BOL.
1774         (smie-indent-debug): New command.
1776         * emacs-lisp/autoload.el (make-autoload): Preload the macros's
1777         declarations that are useful before running the macro.
1779 2010-08-18  Joakim Verona  <joakim@verona.se>
1781         * image.el (imagemagick-types-inhibit): New variable.
1782         (imagemagick-register-types): New function.
1783         * image-mode.el (image-transform-properties): New function.
1784         (image-transform-set-scale, image-transform-fit-to-height)
1785         (image-transform-set-rotation, image-transform-set-resize)
1786         (image-transform-fit-to-width, image-transform-fit-to-height):
1787         New functions.
1788         (image-toggle-display-image): Support image transforms.
1790 2010-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1792         * image.el (create-animated-image): Don't add heuristic mask to image
1793         (Bug#6839).
1795 2010-08-18  Jan Djärv  <jan.h.d@swipnet.se>
1797         * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
1798         Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
1800 2010-08-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1802         * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
1804         Font-lock '...' strings, plus various simplifications and fixes.
1805         * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
1806         (octave-font-lock-close-quotes): New function.
1807         (octave-font-lock-syntactic-keywords): New var.
1808         (octave-mode): Use it.  Set beginning-of-defun-function.
1809         (octave-mode-map): Don't override the <foo>-defun commands.
1810         (octave-mode-menu): Pass it directly to easy-menu-define;
1811         remove (now generic) <foo>-defun commands; use info-lookup-symbol.
1812         (octave-block-match-alist): Fix up last change so that
1813         octave-close-block uses the more specific keyword.
1814         (info-lookup-mode): Silence byte-compiler.
1815         (octave-beginning-of-defun): Not interactive any more.
1816         Optimize slightly.
1817         (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
1818         (octave-indent-defun, octave-send-defun): Use mark-defun instead.
1819         (octave-completion-at-point-function): Make sure point is within
1820         beg..end.
1821         (octave-reindent-then-newline-and-indent):
1822         Use reindent-then-newline-and-indent.
1823         (octave-add-octave-menu): Remove.
1825 2010-08-17  Jan Djärv  <jan.h.d@swipnet.se>
1827         * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
1828         (report-emacs-bug-can-use-xdg-email): New functions.
1829         (report-emacs-bug): Set can-xdg-email to result of
1830         report-emacs-bug-can-use-xdg-email.  If can-xdg-email bind
1831         \C-cm to report-emacs-bug-insert-to-mailer and add help text
1832         about it.
1834         * net/browse-url.el (browse-url-default-browser): Add cond
1835         for browse-url-xdg-open.
1836         (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
1838 2010-08-17  Glenn Morris  <rgm@gnu.org>
1840         * progmodes/cc-engine.el (c-new-BEG, c-new-END)
1841         (c-fontify-recorded-types-and-refs): Define for compiler.
1842         * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
1843         before use.
1845         * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
1846         Fix format call.
1848 2010-08-17  Michael Albinus  <michael.albinus@gmx.de>
1850         * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
1851         properties.
1852         (tramp-handle-process-file): Call the program in a subshell, in
1853         order to preserve working directory.
1854         (tramp-action-password): Hide password prompt before next run.
1855         (tramp-process-actions): Widen connection buffer for the trace.
1857 2010-08-16  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
1859         * net/rcirc.el (rcirc-log-process-buffers): New option.
1860         (rcirc-print): Use it.
1861         (rcirc-generate-log-filename): New function.
1862         (rcirc-log-filename-function): Change default to
1863         rcirc-generate-log-filename (Bug#6828).
1865 2010-08-16  Chong Yidong  <cyd@stupidchicken.com>
1867         * simple.el (deactivate-mark): If select-active-regions is `only',
1868         only set selection for temporarily active regions.
1870         * cus-start.el: Change defcustom for select-active-regions.
1872 2010-08-15  Chong Yidong  <cyd@stupidchicken.com>
1874         * mouse.el (mouse--drag-set-mark-and-point): New function.
1875         (mouse-drag-track): Use LOCATION arg to push-mark.
1876         Use mouse--drag-set-mark-and-point to take click-count into
1877         consideration when updating point and mark (Bug#6840).
1879 2010-08-15  Chong Yidong  <cyd@stupidchicken.com>
1881         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1882         Give the Ruby rule a lower priority than Gnu (Bug#6778).
1884 2010-08-14  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
1886         * font-lock.el (lisp-font-lock-keywords-2):
1887         Add combine-after-change-calls, condition-case-no-debug,
1888         with-demoted-errors, and with-silent-modifications (Bug#6025).
1890 2010-08-14  Kevin Ryde  <user42@zip.com.au>
1892         * emacs-lisp/copyright.el (copyright-update-year)
1893         (copyright-update): Temporary switch-to-buffer to ensure the
1894         buffer change being queried is visible (Bug#5394).
1896 2010-08-14  Tom Tromey  <tromey@redhat.com>
1898         * progmodes/etags.el (tags-file-name): Mark safe if stringp
1899         (Bug#6733).
1901 2010-08-14  Eli Zaretskii  <eliz@gnu.org>
1903         * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
1904         MS-DOS.  (Bug#6689)
1906 2010-08-13  Jan Djärv  <jan.h.d@swipnet.se>
1908         * menu-bar.el (menu-bar-set-tool-bar-position): New function.
1909         (menu-bar-showhide-tool-bar-menu-customize-enable-left)
1910         (menu-bar-showhide-tool-bar-menu-customize-enable-right)
1911         (menu-bar-showhide-tool-bar-menu-customize-enable-top)
1912         (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
1913         Call menu-bar-set-tool-bar-position.
1915 2010-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1917         * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
1918         comment style (bug#6834).
1919         * progmodes/scheme.el (scheme-mode-syntax-table):
1920         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
1921         "b" flag in "' 14b" syntax.
1923         * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
1924         for (un)commenting the region and performing completion.
1925         (octave-mode-menu): Use standard commands for help and completion.
1926         (octave-mode-syntax-table): Support %{..%} comments (sort of).
1927         (octave-mode): Use define-derived-mode.
1928         Set completion-at-point-functions and don't set columns.
1929         Don't disable adaptive-fill-regexp.
1930         (octave-describe-major-mode, octave-comment-region)
1931         (octave-uncomment-region, octave-comment-indent)
1932         (octave-indent-for-comment): Remove.
1933         (octave-indent-calculate): Rename from calculate-octave-indent.
1934         (octave-indent-line, octave-fill-paragraph): Update caller.
1935         (octave-initialize-completions): No need to make an alist.
1936         (octave-completion-at-point-function): New function.
1937         (octave-complete-symbol): Use it.
1938         (octave-insert-defun): Use define-skeleton.
1940         * progmodes/octave-mod.el (octave-mode): Set comment-add.
1941         (octave-mode-map): Use comment-dwim (bug#6829).
1943 2010-08-12  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
1945         * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
1946         indentation of inserted comment.
1948 2010-08-11  Jan Djärv  <jan.h.d@swipnet.se>
1950         * faces.el (region): Add type gtk that uses gtk colors.
1952         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
1953         Handle theme-name change.
1955 2010-08-10  Michael R. Mauger  <mmaug@yahoo.com>
1957         * progmodes/sql.el: Version 2.5
1958         (sql-product-alist): Add :prompt-cont-regexp property for several
1959         database products.
1960         (sql-prompt-cont-regexp): New variable.
1961         (sql-output-newline-count, sql-output-by-send):
1962         New variables.  Record number of newlines in input text.
1963         (sql-send-string): Handle multiple filters and count newlines.
1964         (sql-send-magic-terminator): Count terminator newline.
1965         (sql-interactive-remove-continuation-prompt): Filters output to
1966         remove continuation prompts; one for each newline.
1967         (sql-interactive-mode): Set up new variables, prompt regexp and
1968         output filter.
1969         (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
1970         (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
1972 2010-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1974         * emacs-lisp/pcase.el: New file.
1976 2010-08-10  Michael Albinus  <michael.albinus@gmx.de>
1978         * net/tramp.el (tramp-vc-registered-read-file-names): Read input
1979         as here-document, otherwise the command could exceed maximum
1980         length of command line.
1981         (tramp-handle-vc-registered): Call script accordingly.
1982         Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
1984 2010-08-10  Kenichi Handa  <handa@m17n.org>
1986         * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
1987         composable pattern.
1989 2010-08-09  Chong Yidong  <cyd@stupidchicken.com>
1991         * emacs-lisp/package.el (package-version-split)
1992         (package--version-first-nonzero, package-version-compare):
1993         Functions removed.
1994         (package-directory-list, package-load-all-descriptors)
1995         (package--built-in, package-activate, define-package)
1996         (package-installed-p, package-compute-transaction)
1997         (package-read-all-archive-contents)
1998         (package--add-to-archive-contents, package-buffer-info)
1999         (package-tar-file-info, package-list-packages-internal):
2000         Use version-to-list and version-list-*.
2002         * emacs-lisp/package-x.el (package-upload-buffer-internal):
2003         Use version-to-list.
2004         (package-upload-buffer-internal): Use version-list-<=.
2006 2010-08-09  Kenichi Handa  <handa@m17n.org>
2008         * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
2009         composable pattern.
2011 2010-08-08  Chong Yidong  <cyd@stupidchicken.com>
2013         * tutorial.el (tutorial--default-keys): C-d is now bound to
2014         delete-forward-char (Bug#6826).
2016         * mouse.el (mouse-drag-track): Remove accidentally-removed check
2017         for `double' value of mouse-1-click-follows-link (Bug#6807).
2019 2010-08-08  Johan Bockgård  <bojohan@gnu.org>
2021         * replace.el (replace-highlight): Bind isearch-forward and
2022         isearch-error, ensuring that highlighting is updated if the user
2023         switches the search direction (Bug#6808).
2025         * isearch.el (isearch-lazy-highlight-forward): New var.
2026         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
2027         (isearch-lazy-highlight-update): Use it.
2029 2010-08-08  Kenichi Handa  <handa@m17n.org>
2031         * international/mule.el (define-charset): Store NAME as :base property.
2032         (ctext-non-standard-encodings-table): Pay attention to charset aliases.
2033         (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
2034         current priority.  Force using the designation of the specific
2035         charset by adding `charset' text property.  Improve the whole algorithm.
2037 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
2039         * emulation/pc-select.el (pc-selection-mode-hook)
2040         (copy-region-as-kill-nomark, beginning-of-buffer-mark)
2041         (pc-selection-mode): Fix typos in docstrings.
2043 2010-08-08  Kenichi Handa  <handa@m17n.org>
2045         * language/cyrillic.el: Don't add "microsoft-cp1251" to
2046         ctext-non-standard-encodings-alist here.
2048         * international/mule.el (ctext-non-standard-encodings-alist):
2049         Add "koi8-r" and "microsoft-cp1251".
2050         (ctext-standard-encodings): New variable.
2051         (ctext-non-standard-encodings-table): List only elements for
2052         non-standard encodings.
2053         (ctext-pre-write-conversion): Adjust for the above change.
2054         Check ctext-standard-encodings.
2056         * international/mule-conf.el (compound-text): Doc fix.
2057         (ctext-no-compositions): Doc fix.
2058         (compound-text-with-extensions): Doc fix.
2060 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2062         * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
2064 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
2066         * progmodes/which-func.el (which-func-format): Split help-echo text
2067         into lines, like other mode-line tooltips.
2069         * server.el (server-start): When using TCP sockets, force IPv4
2070         and use a literal 127.0.0.1 for localhost.  (Related to bug#6781.)
2072 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2074         * bindings.el (complete-symbol): Run completion-at-point as a fallback.
2076 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
2078         * term.el (term-delimiter-argument-list): Reflow docstring.
2079         (term-read-input-ring, term-write-input-ring, term-send-input)
2080         (term-bol, term-erase-in-display, serial-supported-or-barf):
2081         Fix typos in docstrings.
2083 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2085         * bindings.el (function-key-map): Add a S-tab => backtab fallback.
2087 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
2089         * dabbrev.el (dabbrev-completion): Fix typo in docstring.
2091 2010-08-08  MON KEY  <monkey@sandpframing.com>  (tiny change)
2093         * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
2094         Fix typo in docstring (bug#6747).
2096 2010-08-08  Leo  <sdl.web@gmail.com>
2098         * eshell/esh-io.el (eshell-get-target): Better detection of
2099         read-only file (Bug#6762).
2101 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
2103         * align.el (align-default-spacing): Doc fix.
2104         (align-region-heuristic, align-regexp): Fix typos in docstrings.
2106 2010-08-08  Stephen Peters  <speters@itasoftware.com>
2108         * calendar/icalendar.el
2109         (icalendar--split-value): Fix splitting regexp.  (Bug#6766)
2110         (icalendar--get-weekday-numbers): New.
2111         (icalendar--convert-recurring-to-diary): Handle multiple byday
2112         values in weekly rules.  (Bug#6766)
2114 2010-08-08  Ulf Jasper  <ulf.jasper@web.de>
2116         * calendar/icalendar.el (icalendar-uid-format): Doc fix.
2117         (icalendar--create-uid, icalendar-export-region)
2118         (icalendar--parse-summary-and-rest): Code formatting.
2120 2010-08-08  Jay Belanger  <jay.p.belanger@gmail.com>
2122         * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
2123         to italicize headers.
2124         (calc-highlight-selections-with-faces): New variable.
2125         (calc-selected-face, calc-nonselected-face): New faces.
2127         * calc/calccomp.el (math-comp-highlight-string): Use
2128         `calc-highlight-selections-with-faces' to determine how to highlight
2129         sub-formulas.
2131         * calc/calc-sel.el (calc-show-selections): Change message to when
2132         using faces to highlight selections.
2134 2010-08-07  Michael R. Mauger  <mmaug@yahoo.com>
2136         * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
2137         Add SQLite 3 keywords, functions and datatypes.
2138         (sql-interactive-mode): Remove `comint-process-echoes' set to t
2139         (Bug#6686).
2141 2010-08-07  Chong Yidong  <cyd@stupidchicken.com>
2143         * simple.el (select-active-regions): Move to keyboard.c.
2144         (deactivate-mark): Used saved-region-selection.
2145         (select-active-region): Function removed.
2146         (activate-mark, set-mark, push-mark-command)
2147         (handle-shift-selection): Don't call it.
2148         (keyboard-quit): Avoid adding the region to the window selection.
2150         * mouse.el (mouse-drag-track): Remove hacks to deal with old
2151         select-active-regions implementation.
2152         (mouse-yank-at-click): Doc fix.
2154         * cus-start.el: Add custom declaration for select-active-regions.
2156 2010-08-07  Eli Zaretskii  <eliz@gnu.org>
2158         * simple.el (delete-forward-char): Doc fix.
2160         * tutorial.el (help-with-tutorial): Hack safe file-local variables
2161         after reading the tutorial.
2163 2010-08-06  Alan Mackenzie  <bug-cc-mode@gnu.org>
2165         * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
2166         for the case that a C style comment has its delimiters alone on
2167         their respective lines.
2169 2010-08-06  Michael Albinus  <michael.albinus@gmx.de>
2171         * net/tramp.el (tramp-handle-start-file-process): Set connection
2172         property "vec".
2173         (tramp-process-sentinel): Use it for flushing the cache.  We
2174         cannot do it via the process buffer, the buffer could be deleted
2175         already when running the sentinel.
2177 2010-08-06  Jürgen Hötzel  <juergen@archlinux.org>  (tiny change)
2179         * comint.el (comint-mode): Make directory tracking functions
2180         functional on remote files.  (Bug#6764)
2182 2010-08-06  Dan Nicolaescu  <dann@ics.uci.edu>
2184         * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
2186 2010-08-05  Eli Zaretskii  <eliz@gnu.org>
2188         * emacs-lisp/find-gc.el (find-gc-source-files): Rename
2189         unexec.c => unexcoff.c.
2191         * emacs-lisp/authors.el (authors-fixed-entries): Rename
2192         unexec.c => unexcoff.c.
2194 2010-08-05  Michael Albinus  <michael.albinus@gmx.de>
2196         * net/tramp.el (tramp-handle-dired-uncache): Flush directory
2197         cache, not only file cache.
2198         (tramp-process-sentinel): New defun.
2199         (tramp-handle-start-file-process): Use it, in order to invalidate
2200         file caches.
2202 2010-08-03  Leo  <sdl.web@gmail.com>
2204         * server.el (server-start): Simplify loop.
2206 2010-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2208         * frame.el (screen-height, screen-width, set-screen-width)
2209         (set-screen-height): Remove ancient compatibility aliases.
2211         * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
2212         when justifying.  It seems useless and harmful for ncols=1 (bug#6738).
2214         * emacs-lisp/timer.el (timer-event-handler): Protect against timers
2215         that change current buffer.
2217 2010-08-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2219         * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
2220         beginning of the string.  Use `string-match-p'.  (Bug#6765)
2222 2010-08-01  Jan Djärv  <jan.h.d@swipnet.se>
2224         * cus-start.el (x-gtk-use-system-tooltips): New variable.
2226 2010-08-01  Chong Yidong  <cyd@stupidchicken.com>
2228         * emacs-lisp/package.el (package--list-packages): Fix column alignment.
2229         (package--builtins): Tweak descriptions.
2230         (package-print-package): Upcase descriptions if necessary.
2231         Show all built-in packages in font-lock-builtin-face.
2232         (package-list-packages-internal): Omit "emacs" package.
2233         Show status of built-in packages as "built-in".
2235 2010-07-31  Chong Yidong  <cyd@stupidchicken.com>
2237         * mouse.el (mouse-save-then-kill): Doc fix.  Deactivate mark
2238         before killing to preserve the primary selection (Bug#6701).
2240         * term/x-win.el (x-select-text): Doc fix.
2242 2010-07-31  Nathaniel Flath  <flat0103@gmail.com>
2244         Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
2245         The following functions were modified or created:
2247         * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
2248         (objc-font-lock-extra-types):
2249         * progmodes/cc-mode.el (c-basic-common-init):
2250         * progmodes/cc-langs.el (c-make-mode-syntax-table)
2251         (c++-make-template-syntax-table)
2252         (c-identifier-syntax-modifications, c-symbol-start, c-operators)
2253         (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
2254         (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
2255         (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
2256         * progmodes/cc-fonts.el (c-make-inverse-face)
2257         (c-basic-matchers-after):
2258         * progmodes/cc-engine.el (c-forward-keyword-clause)
2259         (c-forward-<>-arglist, c-forward-<>-arglist-recur)
2260         (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
2261         (c-guess-continued-construct, c-guess-basic-syntax):
2263 2010-07-31  Jan Djärv  <jan.h.d@swipnet.se>
2265         * faces.el (face-all-attributes): Improve documentation (Bug#6767).
2267 2010-07-31  Eli Zaretskii  <eliz@gnu.org>
2269         * files.el (bidi-paragraph-direction): Define safe local values.
2271         * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
2272         language-info-alist.  Remove outdated FIXME in a comment.
2274 2010-07-31  Alan Mackenzie  <acm@muc.de>
2276         * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
2277         Auto-fill broken in C/C++ modes.
2279 2010-07-29  Jan Djärv  <jan.h.d@swipnet.se>
2281         * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
2282         (menu-bar-showhide-tool-bar-menu-customize-disable)
2283         (menu-bar-showhide-tool-bar-menu-customize-enable-right)
2284         (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
2285         (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
2286         (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
2287         make a menu for Options => toolbar that can move it.
2289 2010-07-29  Chong Yidong  <cyd@stupidchicken.com>
2291         * emacs-lisp/package-x.el (package--make-rss-entry):
2292         (package-maint-add-news-item, package--update-news)
2293         (package-upload-buffer-internal): New arg ARCHIVE-URL.
2295         * emacs-lisp/package.el (package-archive-url): Rename from
2296         package-archive-id.
2297         (package-install): Doc fix.
2298         (package-download-single, package-download-tar, package-install)
2299         (package-menu-view-commentary): Callers changed.
2301 2010-07-29  Michael Albinus  <michael.albinus@gmx.de>
2303         * net/tramp.el (tramp-handle-start-file-process): Check only for
2304         `remote-tty' process property.
2305         (tramp-open-shell): Don't check for tty.
2306         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
2307         process property.
2309         * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
2310         host.
2312 2010-07-28  Chong Yidong  <cyd@stupidchicken.com>
2314         * emacs-lisp/package.el (package-load-list, package-archives)
2315         (package-archive-contents, package-user-dir)
2316         (package-directory-list, package--builtins, package-alist)
2317         (package-activated-list, package-obsolete-alist): Mark as risky.
2319 2010-07-28  Phil Hagelberg  <phil@evri.com>
2321         Add support for non-default package repositories.
2322         * emacs-lisp/package.el (package-archive-base): Var deleted.
2323         (package-archives): New variable.
2324         (package-archive-contents): Doc fix.
2325         (package-load-descriptor): Do nothing if descriptor file is missing.
2326         (package--write-file-no-coding): New function.
2327         (package-unpack-single): Use it.
2328         (package-archive-id): New function.
2329         (package-download-single, package-download-tar)
2330         (package-menu-view-commentary): Use it.
2331         (package-installed-p): Make second argument optional.
2332         (package-read-all-archive-contents): New function.
2333         (package-initialize): Use it.
2334         (package-read-archive-contents): Add ARCHIVE argument.
2335         (package--add-to-archive-contents): New function.
2336         (package-install): Don't call package-read-archive-contents.
2337         (package--download-one-archive): Store archive file in a
2338         subdirectory of package-user-dir.
2339         (package-menu-execute): Remove spurious line movement.
2341 2010-07-28  Jan Djärv  <jan.h.d@swipnet.se>
2343         * cus-start.el (tool-bar-style): Add text-image-horiz.
2345 2010-07-28  Michael Albinus  <michael.albinus@gmx.de>
2347         * progmodes/gud.el (gud-common-init): Check for remoteness of
2348         `file', and not of `default-directory'.
2350 2010-07-28  Michael Albinus  <michael.albinus@gmx.de>
2352         * net/tramp.el (tramp-methods): Move hostname to the end in all
2353         ssh `tramp-login-args'.
2354         (tramp-verbose): Describe verbose level 9.
2355         (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
2356         (tramp-open-connection-setup-interactive-shell): Trace stty
2357         settings if `tramp-verbose' >= 9.
2358         (tramp-handle-start-file-process): Implement tty setting.
2359         (Bug#4604, Bug#6360)
2361         * net/tramp-cmds.el (tramp-bug): Recommend setting of
2362         `tramp-verbose' to 9.
2364 2010-07-27  Aaron S. Hawley  <ashawley@burlingtontelecom.net>
2366         * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
2367         (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
2368         Remove references to package `lisp-re' (bug#4369).
2370 2010-07-27  Tom Tromey  <tromey@redhat.com>
2372         * progmodes/js.el (js-mode):
2373         * progmodes/make-mode.el (makefile-mode):
2374         * progmodes/simula.el (simula-mode):
2375         * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
2377 2010-07-27  Juanma Barranquero  <lekktu@gmail.com>
2379         * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
2381         * cedet/semantic/db-file.el (object-write): Fix typo in docstring.
2383         * time.el (display-time-day-and-date): Remove spurious * in docstring.
2384         (display-time-world-buffer-name, display-time-world-mode-map):
2385         Fix typos in docstrings.
2387 2010-07-27  Shyam Karanatt  <shyam@swathanthran.in>  (tiny change)
2389         * image-mode.el (image-display-size): New function.
2390         (image-forward-hscroll, image-next-line, image-eol, image-eob)
2391         (image-mode-fit-frame): Use it (Bug#6639).
2393 2010-07-27  Chong Yidong  <cyd@stupidchicken.com>
2395         * dired.el (dired-buffers-for-dir): Handle list values of
2396         dired-directory (Bug#6636).
2398 2010-07-26  Sam Steingold  <sds@gnu.org>
2400         * mouse.el (mouse-yank-primary, mouse-yank-secondary):
2401         Do not call `x-get-selection' the second time, reuse the value.
2403 2010-07-26  Daiki Ueno  <ueno@unixuser.org>
2405         * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
2406         which consist of control chars only.  Suggested by Richard Stallman.
2408 2010-07-25  Daiki Ueno  <ueno@unixuser.org>
2410         * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
2411         exists before passing an error to find-file-not-found-functions
2412         (bug#6723).
2414 2010-07-23  Lukas Huonker  <l.huonker@gmail.com>
2416         * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
2417         Remove leading nil element, adjust values.
2418         (tetris-shapes, tetris-shape-scores):
2419         Change representation of shapes and remove some redundancy.
2420         (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
2421         (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
2422         Adjust for working with new representation of shapes.
2423         (tetris-shape-rotations): New function.
2424         (tetris-move-bottom, tetris-move-left, tetris-move-right)
2425         (tetris-rotate-prev, tetris-rotate-next):
2426         Adjust for working with the new version of tetris-test-shape.
2428 2010-07-23  Markus Triska  <markus.triska@gmx.at>
2430         * progmodes/ps-mode.el: Use comint (bug#5954).
2431         (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
2432         (ps-mode-other-newline): Simplify.
2433         (ps-run-mode): Derive from comint-mode instead of
2434         fundamental-mode, yielding input history etc.
2435         (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
2436         (ps-run-send-string): Adapt for comint-mode.
2437         (ps-run-newline): Remove now unneeded function.
2439 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
2441         * net/tramp.el (tramp-methods): Move hostname to the end in all
2442         plink `tramp-login-args'.
2444 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
2446         * net/tramp.el (tramp-open-shell): New defun.
2447         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
2448         Use it.
2450 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
2452         * net/tramp.el (tramp-file-name-regexp-unified)
2453         (tramp-completion-file-name-regexp-unified): On W32 systems, do
2454         not regard the volume letter as remote filename.  (Bug#5447)
2456 2010-07-23  Juanma Barranquero  <lekktu@gmail.com>
2458         * custom.el (custom-declare-variable): Give a clearer error message
2459         when the docstring is missing (bug#6476).
2461 2010-07-22  Michael R. Mauger  <mmaug@yahoo.com>
2463         * progmodes/sql.el: Version 2.4.  Improved Login prompting.
2464         (sql-login-params): New widget definition.
2465         (sql-oracle-login-params, sql-mysql-login-params)
2466         (sql-solid-login-params, sql-sybase-login-params)
2467         (sql-informix-login-params, sql-ingres-login-params)
2468         (sql-ms-login-params, sql-postgres-login-params)
2469         (sql-interbase-login-params, sql-db2-login-params)
2470         (sql-linter-login-params): Use it.
2471         (sql-sqlite-login-params): Use it; Define "database" parameter as
2472         a file name.
2473         (sql-sqlite-program): Change to "sqlite3".
2474         (sql-comint-sqlite): Make sure database name is complete.
2475         (sql-for-each-login): New function.
2476         (sql-connect, sql-save-connection): Use it.
2477         (sql-get-login-ext): New function.
2478         (sql-get-login): Use it.
2479         (sql-make-alternate-buffer-name): Handle :file parameters.
2481 2010-07-22  Juanma Barranquero  <lekktu@gmail.com>
2483         * dired.el (dired-no-confirm): Document value t and fix defcustom to
2484         accept it (bug#6597).  Suggested by Drew Adams <drew.adams@oracle.com>.
2486 2010-07-22  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
2488         * dired.el (dired-mode-map): Use command remapping (bug#6632).
2490 2010-07-22  Lawrence Mitchell  <wence@gmx.li>
2492         * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
2494 2010-07-21  Michael Albinus  <michael.albinus@gmx.de>
2496         * net/tramp.el (tramp-get-ls-command)
2497         (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
2498         instead of "/".
2500 2010-07-20  Michael R. Mauger  <mmaug@yahoo.com>
2502         * progmodes/sql.el: Version 2.3.
2503         (sql-connection-alist): Changed keys from symbols to strings;
2504         enhanced the widget definition.
2505         (sql-mode-menu): Added submenu to select connections.
2506         (sql-interactive-mode-menu): Added "Save Connection" item.
2507         (sql-add-product): Fixed menu item.
2508         (sql-get-product-feature): Improved error handling.
2509         (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
2510         (sql-make-alternate-buffer-name): Simplified.
2511         (sql-product-interactive): Handle missing product.
2512         (sql-connect): Support string keys, minor improvements.
2513         (sql-save-connection): New function.
2514         (sql-connection-menu-filter): New function.
2516 2010-07-20  Michael Albinus  <michael.albinus@gmx.de>
2518         * net/tramp.el (tramp-file-name-handler): Trace 'quit.
2519         (tramp-open-connection-setup-interactive-shell): Apply
2520         workaround for IRIX64 bug.  Move argument of last
2521         `tramp-send-command' where it belongs to.
2523 2010-07-20  Michael Albinus  <michael.albinus@gmx.de>
2525         * net/tramp.el (tramp-perl-file-attributes)
2526         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
2527         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
2528         front of `login-args'.
2530 2010-07-19  Juanma Barranquero  <lekktu@gmail.com>
2532         * time.el (display-time-world-mode): Define with `define-derived-mode'.
2533         Set `show-trailing-whitespace' to nil.
2534         (display-time-world-display): Simplify.
2536 2010-07-18  Alan Mackenzie  <acm@muc.de>
2538         Enhance `c-file-style' in file/directory local variables.
2539         * progmodes/cc-mode.el (c-count-cfss): New function.
2540         (c-before-hack-hook): Call `c-set-style' differently according to
2541         whether c-file-style was set in file or directory local
2542         variables.
2544 2010-07-18  Michael R. Mauger  <mmaug@yahoo.com>
2546         * progmodes/sql.el: Version 2.2.
2547         (sql-product, sql-user, sql-database, sql-server, sql-port): Use
2548         defcustom :safe keyword rather than putting safe-local-variable
2549         property.
2550         (sql-password): Use defcustom :risky keyword rather than putting
2551         risky-local-variable property.
2552         (sql-oracle-login-params, sql-sqlite-login-params)
2553         (sql-solid-login-params, sql-sybase-login-params)
2554         (sql-informix-login-params, sql-ingres-login-params)
2555         (sql-ms-login-params, sql-postgres-login-params)
2556         (sql-interbase-login-params, sql-db2-login-params)
2557         (sql-linter-login-params): Add `port' option.
2558         (sql-get-product-feature): Added NO-INDIRECT parameter.
2559         (sql-comint-oracle, sql-comint-sybase)
2560         (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
2561         (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
2562         (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
2563         (sql-comint-linter): Renamed sql-connect-* functions to
2564         sql-comint-*.
2565         (sql-product-alist, sql-mode-menu): Renamed as above and
2566         :sqli-connect-func to :sqli-comint-func.
2567         (sql-connection): New variable.
2568         (sql-interactive-mode): Set it.
2569         (sql-connection-alist): New variable.
2570         (sql-connect): New function.
2571         (sql--alt-buffer-part, sql--alt-if-not-empty)
2572         (sql-make-alternate-buffer-name): Improved alternative buffer name.
2574 2010-07-17  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2576         * image-mode.el (image-bookmark-make-record): Do not set context
2577         in an image (Bug#6650).
2579 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
2581         * simple.el (select-active-region): New function.
2582         (push-mark-command, set-mark, activate-mark)
2583         (handle-shift-selection): Use it.
2584         (deactivate-mark): Don't check for size of region.
2586         * mouse.el (mouse-drag-track): Use select-active-region.
2588 2010-07-17  Michael Albinus  <michael.albinus@gmx.de>
2590         * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
2591         "--dired" stronger.
2593 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
2595         * term/x-win.el (x-select-enable-primary): Change default to nil.
2596         (x-select-enable-clipboard): Add :version keyword.
2598         * mouse.el (mouse-drag-copy-region):
2599         * simple.el (select-active-regions): Likewise.
2601 2010-07-16  Reiner Steib  <Reiner.Steib@gmx.de>
2603         * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
2604         (vc-coding-system-for-diff): Use it to decide whether to inherit
2605         from the file the EOL format for reading the diffs of that file.
2606         (Bug#4451)
2608 2010-07-16  Eli Zaretskii  <eliz@gnu.org>
2610         * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
2611         unibyte, so compressed attachments are not compressed again.
2613 2010-07-16  Michael Albinus  <michael.albinus@gmx.de>
2615         * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
2616         "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
2617         (tramp-find-shell): Simplify setting connection property.
2618         (tramp-get-ls-command): Make test for "--color=never" stronger.
2620 2010-07-15  Simon South  <ssouth@member.fsf.org>
2622         * progmodes/delphi.el (delphi-previous-indent-of): Indent case
2623         blocks within record declarations (i.e. variant parts) correctly.
2625 2010-07-15  Simon South  <ssouth@member.fsf.org>
2627         * progmodes/delphi.el (delphi-token-at): Give newlines precedence
2628         over literal tokens when parsing so newlines aren't "absorbed" by
2629         single-line comments.  Corrects the indentation of case blocks
2630         that have a comment on the first line.
2632 2010-07-14  Karl Fogel  <kfogel@red-bean.com>
2634         * bookmark.el (bookmark-load-hook): Fix doc string as suggested
2635         by Drew Adams (Bug#5504).
2637 2010-07-14  Jan Djärv  <jan.h.d@swipnet.se>
2639         * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
2640         now that Unicode is used (Bug#6594).
2642 2010-07-14  Chong Yidong  <cyd@stupidchicken.com>
2644         * term/x-win.el (x-select-enable-clipboard): Default to t.
2645         (x-initialize-window-system): Don't overwrite Paste menu item.
2647         * simple.el (select-active-regions): Default to t.
2648         (push-mark-command): Don't overwrite primary with empty string.
2650         * mouse.el: Bind mouse-2 to mouse-yank-primary.
2651         (mouse-drag-copy-region): Default to nil.
2653         * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
2654         Cut/Copy/Paste menu bar items.
2656 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2658         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
2659         Patch applied by Karl Fogel.
2661         * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
2662         and `bookmark-current-buffer' if they have been already set in
2663         another buffer (e.g gnus-art).
2665 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
2666             Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2668         Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
2670         * bookmark.el (bookmark-make-record-default): Allow unneeded
2671         information to be omitted from the record.
2673         Adjust declarations and calls:
2675         * info.el (bookmark-make-record-default): Adjust declaration.
2676         (Info-bookmark-make-record): Adjust call.
2678         * woman.el (bookmark-make-record-default): Adjust declaration.
2679         (woman-bookmark-make-record): Adjust call.
2681         * man.el (bookmark-make-record-default): Adjust declaration.
2682         (Man-bookmark-make-record): Adjust call.
2684         * image-mode.el (bookmark-make-record-default): Adjust declaration.
2686         * doc-view.el (bookmark-make-record-default): Adjust declaration.
2688 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
2690         * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
2691         This is also from Thierry Volpiatto's patch in bug #6444.  However,
2692         because it was extraneous to the functional change in that patch,
2693         and causes a re-indendation, I am committing it separately.
2695 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2697         * bookmark.el (bookmark-show-annotation): Ensure annotations show,
2698         e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
2699         Patch applied by Karl Fogel (Bug#6444).
2701 2010-07-13  Chong Yidong  <cyd@stupidchicken.com>
2703         * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
2705 2010-07-13  Adrian Robert  <Adrian.B.Robert@gmail.com>
2707         * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
2708         Dempsky; bug#5084).  Remove incorrect binding for S-tab.
2709         (ns-alternatives-map): Change S-tab binding to backtab
2710         (bug#6616).
2712         * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
2713         under ns.
2715 2010-07-12  Andreas Schwab  <schwab@linux-m68k.org>
2717         * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
2718         (Bug#5806)
2720         * language/tv-util.el (tai-viet-re): Remove format.
2722 2010-07-12  Kenichi Handa  <handa@m17n.org>
2724         * language/hebrew.el: Remove no-byte-compile declaration.
2725         Change coding: tag to utf-8.  Register hebrew-shape-gstring in
2726         composition-function-table for 3-character looking back.
2727         (hebrew-font-get-precomposed): New function.
2728         (hebrew-shape-gstring): Utilize precomposed glyphs if available.
2730 2010-07-11  Chong Yidong  <cyd@stupidchicken.com>
2732         * mouse.el (mouse-drag-track): Handle select-active-regions
2733         (Bug#6612).
2735 2010-07-11  Magnus Henoch  <magnus.henoch@gmail.com>
2737         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
2738         empty argument to gvfs-copy.
2740 2010-07-10  Glenn Morris  <rgm@gnu.org>
2742         * calendar/calendar.el (calendar-week-end-day): New function.
2743         * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
2744         Respect calendar-week-start-day.  (Bug#6606)
2745         (cal-tex-insert-day-names, cal-tex-insert-blank-days)
2746         (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
2747         (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
2748         respect calendar-week-start-day.
2750 2010-07-10  Chong Yidong  <cyd@stupidchicken.com>
2752         * simple.el (use-region-p): Doc fix (Bug#6607).
2754 2010-07-10  Aleksei Gusev  <aleksei.gusev@gmail.com>  (tiny change)
2756         * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
2757         regexps for cucumber and ruby.
2759 2010-07-08  Daiki Ueno  <ueno@unixuser.org>
2761         * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
2762         (epa-file-insert-file-contents): Hack to prevent
2763         find-file from opening empty buffer when decryption failed
2764         (bug#6568).
2766 2010-07-07  Agustín Martín  <agustin.martin@hispalinux.es>
2768         * textmodes/ispell.el (ispell-alternate-dictionary):
2769         Use file-readable-p.
2770         Return nil if no word-list is found at default locations.
2771         (ispell-complete-word-dict): Default to nil.
2772         (ispell-command-loop): Use 'word-list' when using lookup-words.
2773         (lookup-words): Use ispell-complete-word-dict or
2774         ispell-alternate-dictionary.  Check for word-list availability
2775         and handle errors if needed with better messages (Bug#6539).
2776         (ispell-complete-word): Use ispell-complete-word-dict or
2777         ispell-alternate-dictionary.
2779 2010-07-07  Christoph Scholtes  <cschol2112@gmail.com>
2781         * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
2782         builtins (BufferError, BytesWarning, WindowsError; callables
2783         bin, bytearray, bytes, format, memoryview, next, print; __package__).
2785 2010-07-07  Glenn Morris  <rgm@gnu.org>
2787         * play/zone.el (top-level): Do not require timer, tabify, or cl.
2788         (zone-shift-left): Ignore intangibility, and any errors from
2789         forward-char.
2790         (zone-shift-right): Remove no-op end-of-line.  Ignore intangibility.
2791         (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
2792         deleting, and copying text properties.
2793         (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
2794         (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
2795         to point-max is hard.
2796         (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
2797         (zone-fill-out-screen): Ignore intangibility.
2799 2010-07-05  Chong Yidong  <cyd@stupidchicken.com>
2801         * menu-bar.el (menu-bar-mode):
2802         * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
2803         if it has been set.
2805         * mouse.el (mouse-drag-track): Call mouse-start-end to handle
2806         word/line selection (Bug#6565).
2808 2010-07-04  Juanma Barranquero  <lekktu@gmail.com>
2810         * net/dbus.el (dbus-send-signal): Declare function.
2812 2010-07-04  Michael Albinus  <michael.albinus@gmx.de>
2814         * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
2815         (dbus-register-property): New optional argument EMITS-SIGNAL.
2816         (dbus-property-handler): Send signal "PropertiesChanged" if requested.
2818 2010-07-03  Chong Yidong  <cyd@stupidchicken.com>
2820         * mouse.el (mouse-drag-overlay): Variable deleted.
2821         (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
2822         (mouse--remap-link-click-p): New function.
2823         (mouse-drag-track): Handle dragging by using temporary Transient
2824         Mark mode, instead of a special overlay.
2825         (mouse-kill-ring-save, mouse-save-then-kill): Don't call
2826         mouse-show-mark.
2828         * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
2829         deleted.
2831 2010-07-02  Juri Linkov  <juri@jurta.org>
2833         * autoinsert.el (auto-insert-alist): Fix readability
2834         by using dotted pair notation for lambda.
2836 2010-07-02  Juri Linkov  <juri@jurta.org>
2838         * faces.el (read-face-name): Rename arg `string-describing-default'
2839         to `default'.  Doc fix.  Display the default value in quotes
2840         in the prompt.  With empty input, return the `default' arg,
2841         unless the default value is a string (in which case return nil).
2842         (describe-face): Replace the string `default' arg of `read-face-name'
2843         with the symbol `default'.
2845 2010-07-02  Chong Yidong  <cyd@stupidchicken.com>
2847         * emulation/viper-cmd.el (viper-delete-backward-char)
2848         (viper-del-backward-char-in-insert)
2849         (viper-del-backward-char-in-replace, viper-change)
2850         (viper-backward-indent): Replace delete-backward-char with
2851         delete-char (Bug#6552).
2853 2010-07-01  Chong Yidong  <cyd@stupidchicken.com>
2855         * ruler-mode.el (ruler--save-header-line-format): Fix typos.
2857 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
2859         * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
2860         argument passed to frame-creation-function (Bug#5378).
2862         * faces.el (x-handle-named-frame-geometry)
2863         (x-handle-reverse-video, x-create-frame-with-faces)
2864         (face-set-after-frame-default, tty-create-frame-with-faces): Don't
2865         separately consult default-frame-alist.  It is now passed as the
2866         PARAMETER argument.
2868 2010-06-30  Andreas Schwab  <schwab@linux-m68k.org>
2870         * startup.el (command-line): Don't call tool-bar-setup in a
2871         tty-only build.
2873 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
2875         * ruler-mode.el (ruler--save-header-line-format): New fun.
2876         (ruler-mode): Use it as a setter function, so as not to overwrite
2877         ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
2879 2010-06-29  Chong Yidong  <cyd@stupidchicken.com>
2881         * vc/vc.el (vc-deduce-backend): New fun.  Handle diff buffers.
2882         (vc-root-diff, vc-print-root-log, vc-log-incoming)
2883         (vc-log-outgoing): Use it.
2884         (vc-diff-internal): Set diff-vc-backend.
2886         * vc/diff-mode.el (diff-vc-backend): New var.
2888 2010-06-28  Jan Djärv  <jan.h.d@swipnet.se>
2890         * dynamic-setting.el (font-setting-change-default-font): Remove
2891         call to message.
2893 2010-06-28  Kenichi Handa  <handa@m17n.org>
2895         * international/quail.el (quail-insert-kbd-layout): Fix the
2896         showing of untranslated characters.
2898 2010-06-28  Chong Yidong  <cyd@stupidchicken.com>
2900         * simple.el (delete-active-region): New option.
2901         (delete-backward-char): Implement in Lisp.
2902         (delete-forward-char): New command.
2904         * mouse.el (mouse-region-delete-keys): Deleted.
2905         (mouse-show-mark): Simplify.
2907         * bindings.el (global-map): Bind delete and DEL, the former to
2908         delete-forward-char.
2910 2010-06-27  Lennart Borgman  <lennart.borgman@gmail.com>
2912         * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
2913         (ruby-mode): Bind indent-line-function (Bug#5119).
2915 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
2917         * startup.el (command-line): Recognize "0" X resource value.
2919 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
2921         * startup.el (command-line): Use X resources to set the value of
2922         menu-bar-mode and tool-bar-mode, before calling frame-initialize.
2924         * menu-bar.el (menu-bar-mode):
2925         * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
2926         Set init-value to t.
2928         * frame.el (frame-notice-user-settings): Don't change
2929         default-frame-alist based on menu-bar-mode and tool-bar-mode, or
2930         vice versa (Bug#2249).
2932 2010-06-26  Eli Zaretskii  <eliz@gnu.org>
2934         * w32-fns.el (w32-convert-standard-filename): Doc fix.
2936 2010-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
2938         * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
2939         Make sure `flyspell-word' re-checks word after function run (Bug#6504).
2941         * textmodes/ispell.el (ispell-init-process): Make sure ispell and
2942         default directories are expanded (Bug#6143).
2944 2010-06-24  Juri Linkov  <juri@jurta.org>
2946         * minibuffer.el (completions-format): Change default from nil to
2947         `horizontal'.  Remove `nil' value from :type.  Doc fix.  (Bug#6459)
2949 2010-06-24  Juri Linkov  <juri@jurta.org>
2951         * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
2952         buffer-locally to lambda that re-runs the vc diff command.
2953         (Bug#6447)
2955 2010-06-24  Chong Yidong  <cyd@stupidchicken.com>
2957         * kmacro.el (kmacro-call-macro): Don't issue hint message if the
2958         echo area is in use (Bug#3412).
2960 2010-06-22  Glenn Morris  <rgm@gnu.org>
2962         * textmodes/texinfmt.el (texinfo-format-region)
2963         (texinfo-raise-lower-sections, texinfo-format-separate-node)
2964         (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
2965         (texinfo-format-option, texinfo-noindent):
2966         Use line-beginning-position and line-end-position.
2968         * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
2969         * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
2970         * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
2971         utf-8 characters.
2973 2010-06-21  Karl Fogel  <kfogel@red-bean.com>
2975         * play/zone.el (zone-fall-through-ws): Fix next-line ->
2976         forward-line fallout.
2978 2010-07-06  Chong Yidong  <cyd@stupidchicken.com>
2980         * mouse.el (mouse-appearance-menu): Add docstring.
2982         * help.el (describe-key): Print up-event using key-description.
2984 2010-07-03  Michael Albinus  <michael.albinus@gmx.de>
2986         * net/zeroconf.el (zeroconf-resolve-service)
2987         (zeroconf-service-resolver-handler): Use
2988         `dbus-byte-array-to-string'.
2989         (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
2991 2010-07-03  Jan Moringen  <jan.moringen@uni-bielefeld.de>
2993         * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
2995 2010-06-30  Dan Nicolaescu  <dann@ics.uci.edu>
2997         Avoid displaying files with a nil state in vc-dir.
2998         * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
2999         cases that cause insertion.
3000         (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
3001         with a nil state.
3003 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
3005         * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
3007 2010-06-29  Leo  <sdl.web@gmail.com>
3009         * emacs-lisp/rx.el (rx): Doc fix.  (Bug#6537)
3011 2010-06-27  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
3013         * generic-x.el (bat-generic-mode): Fix regexp for command line
3014         switches (Bug#5719).
3016 2010-06-27  Masatake YAMATO  <yamato@redhat.com>
3018         * htmlfontify.el (hfy-face-attr-for-class): Use append instead
3019         of nconc to avoid pure storage error (Bug#6239).
3021 2010-06-27  Christoph  <cschol2112@googlemail.com>  (tiny change)
3023         * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
3024         (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
3025         bindings of bookmark-automatically-show-annotations (Bug#6515).
3027 2010-06-25  Eli Zaretskii  <eliz@gnu.org>
3029         * arc-mode.el (archive-zip-extract): Don't quote the file name on
3030         MS-Windows and MS-DOS.  (Bug#6467, Bug#6144)
3032 2010-06-24  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
3034         * comint.el (make-comint, make-comint-in-buffer): Mention return
3035         value in the docstrings.  (Bug#6498)
3037 2010-06-24  Yoni Rabkin  <yoni@rabkins.net>
3039         * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
3040         since it is not present when using some non-default switches.
3042 2010-06-23  Karl Fogel  <kfogel@red-bean.com>
3044         * simple.el (compose-mail): Fix doc string to refer to
3045         `compose-mail-user-agent-warnings', instead of to the
3046         nonexistent `compose-mail-check-user-agent'.
3048 2010-06-21  Alan Mackenzie  <bug-cc-mode@gnu.org>
3050         Fix an indentation bug:
3052         * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
3053         (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
3054         of existing values.
3056         * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
3057         (c-clear->-pair-props-if-match-before): now return t when they've
3058         cleared properties, nil otherwise.
3059         (c-before-change-check-<>-operators): Set c-new-beg/end correctly
3060         by taking account of the existing value.
3062         * progmodes/cc-defs.el
3063         (c-clear-char-property-with-value-function): Fix this to clear the
3064         property rather than overwriting it with nil.
3066 2010-06-20  Chong Yidong  <cyd@stupidchicken.com>
3068         * emacs-lisp/package.el (package-print-package): Add link to
3069         package description via describe-package.
3070         (describe-package-1): List package requirements.  Add button to
3071         perform installation.
3072         (package-menu-describe-package): New command.
3074         * help-mode.el (help-package): New button type.
3076 2010-06-19  Chong Yidong  <cyd@stupidchicken.com>
3078         * emacs-lisp/package.el: Move package-list-packages binding to
3079         menu-bar.el.
3080         (describe-package, describe-package-1, package--dir): New funs.
3081         (package-activate-1): Use package--dir.
3083         * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
3085         * help-mode.el (help-package-def): New button type.
3087         * menu-bar.el: Move package-list-packages binding here from
3088         package.el.
3090 2010-06-19  Gustav Hållberg  <gustav@gmail.com>  (tiny change)
3092         * descr-text.el (describe-char): Avoid trailing whitespace.  (Bug#6423)
3094 2010-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
3096         * emacs-lisp/edebug.el (edebug-read-list):
3097         Phase out old-style backquotes.
3099 2010-06-17  Juri Linkov  <juri@jurta.org>
3101         * help-mode.el (help-mode): Set buffer-local variable
3102         revert-buffer-function to help-mode-revert-buffer.
3103         (help-mode-revert-buffer): New function.
3105         * info.el (Info-revert-find-node): Check for major-mode Info-mode
3106         before popping to "*info*" (like in other Info functions).
3107         Keep buffer-name in old-buffer-name.  Keep Info-history-forward in
3108         old-history-forward.  Pop to old-buffer-name or "*info*" to
3109         recreate the killed buffer.  Set Info-history-forward from
3110         old-history-forward.
3111         (Info-breadcrumbs-depth): Add :group and :version.
3113 2010-06-17  Dan Nicolaescu  <dann@ics.uci.edu>
3115         * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
3117 2010-06-17  Agustín Martín  <agustin.martin@hispalinux.es>
3119         * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
3120         for languages like Portuguese with pt_{BR,PT} and no plain pt.
3122 2010-06-17  Juanma Barranquero  <lekktu@gmail.com>
3124         * emacs-lisp/package.el (package-menu-mode-map):
3125         Move initialization into declaration.
3127         * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
3129 2010-06-17  Chong Yidong  <cyd@stupidchicken.com>
3131         * emacs-lisp/package.el (package-archive-base): Point to
3132         elpa.gnu.org.
3133         (package-enable, package-load-list): New defcustoms.
3134         (package-user-dir, package-directory-list): Turn into defcustoms.
3135         Don't include package-user-dir in package-directory-list.
3136         (package--builtins-base): Don't include Emacs as a "package".
3137         (package-subdirectory-regexp): New var.
3138         (package-load-all-descriptors, package-compute-transaction)
3139         (package-download-transaction): Obey package-load-list.
3140         (package-activate-1): Rename from package-do-activate.
3141         (package-list-packages-internal): Check package-load-list.
3142         (package-load-descriptor, package-generate-autoloads)
3143         (package-unpack, package-unpack-single)
3144         (package--read-archive-file, package-delete): Use
3145         expand-file-name.
3147         * emacs-lisp/package-x.el: New file.  Package uploading
3148         functionality split out from package.el.
3150         * startup.el (command-line): Load packages after reading init
3151         file.
3153 2010-06-17  Tom Tromey  <tromey@redhat.com>
3155         * emacs-lisp/package.el: New file.
3157 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
3159         Fix vc-annotate for renamed files when using Git.
3160         * vc-git.el (vc-git-find-revision): Deal with empty results from
3161         ls-files.  Doe not pass the object as a file name to cat-file, it
3162         is not a file name.
3163         (vc-git-annotate-command): Pass the file name using -- to avoid
3164         ambiguity with the revision.
3165         (vc-git-previous-revision): Pass a relative file name.
3167 2010-06-22  Glenn Morris  <rgm@gnu.org>
3169         * progmodes/js.el (js-mode-map): Use standard capitalization and
3170         ellipses for menu entries.
3172         * wid-edit.el (widget-complete): Doc fix.
3174 2010-06-22  Jürgen Hötzel  <juergen@hoetzel.info>  (tiny change)
3176         * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
3178 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
3180         Fix annotating other revisions for renamed files in vc-annotate.
3181         * vc-annotate.el (vc-annotate): Add an optional argument for the
3182         VC backend.  Use it when non-nil.
3183         (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
3184         (Bug#6487)
3186         Fix vc-annotate-show-changeset-diff-revision-at-line for git.
3187         * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
3188         Do not pass the file name to the 'previous-revision call when we
3189         don't want a file diff.  (Bug#6489)
3191 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
3193         Fix finding revisions for renamed files in vc-annotate.
3194         * vc.el (vc-find-revision): Add an optional argument for
3195         the VC backend.  Use it when non-nil.
3196         * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
3197         backend to vc-find-revision.  (Bug#6487)
3199 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
3201         Fix reading file names in Git annotate buffers.
3202         * vc-git.el (vc-git-annotate-extract-revision-at-line): Remove
3203         trailing whitespace.  Suggested by Eric Hanchrow.  (Bug#6481)
3205 2010-06-20  Alan Mackenzie  <acm@muc.de>
3207         * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
3208         in file local variables, set it first.
3210 2010-06-19  Glenn Morris  <rgm@gnu.org>
3212         * descr-text.el (describe-char-unicode-data): Insert separating
3213         space when needed.  (Bug#6422)
3215         * progmodes/idlwave.el (idlwave-action-and-binding):
3216         Fix typo in 2009-12-03 change.  (Bug#6450)
3218 2010-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3220         * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
3221         handling for `lambda' (misunderstanding).
3223 2010-06-16  Jay Belanger  <jay.p.belanger@gmail.com>
3225         * calc/calc-poly.el (math-accum-factors): Make sure that
3226         constants aren't distributed after they are factored out.
3228 2010-06-16  Juri Linkov  <juri@jurta.org>
3230         * facemenu.el (list-colors-display): Call `pop-to-buffer' before
3231         `list-colors-print'.  (Bug#6332)
3233         * subr.el (read-quoted-char): Fix up last change (bug#6290).
3235 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3237         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
3238         specially, since it's a macro.  Fix up wrong hint passed to maybe-cons.
3240         * font-lock.el (font-lock-major-mode): Rename from
3241         font-lock-mode-major-mode to distinguish it from
3242         global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
3243         (font-lock-set-defaults):
3244         * font-core.el (font-lock-default-function): Adjust users.
3245         (font-lock-mode): Don't set it at all.
3247 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3249         * vc-annotate.el (vc-annotate): Use vc-read-revision.
3251 2010-06-16  Glenn Morris  <rgm@gnu.org>
3253         * calendar/appt.el (appt-time-msg-list): Doc fix.
3254         (appt-check): Let-bind appt-warn-time.
3255         (appt-add): Make the 3rd argument optional.
3256         Simplify argument names.  Doc fix.  Check for integer WARNTIME.
3257         Only add WARNTIME to the output list if non-nil.
3259 2010-06-16  Ivan Kanis  <apple@kanis.eu>
3261         * calendar/appt.el (appt-check): Let the 3rd element of
3262         appt-time-msg-list specify the warning time.
3263         (appt-add): Add new argument with the warning time.  (Bug#5176)
3265 2010-06-16  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
3267         * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
3268         older than version 1.6.  (Bug#6361)
3270 2010-06-16  Helmut Eller  <eller.helmut@gmail.com>
3272         * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
3273         used by cl-do-arglist.  (Bug#6408)
3275 2010-06-16  Agustín Martín  <agustin.martin@hispalinux.es>
3277         * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
3278         portuguese casechars/not-casechars for missing 'çÇ'.
3279         Suggested by Rolando Pereira (bug#6434).
3281 2010-06-15  Juanma Barranquero  <lekktu@gmail.com>
3283         * facemenu.el (list-colors-sort): Doc fix.
3285 2010-06-15  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
3287         * progmodes/sql.el (sql-connect-mysql): Fix typo.
3289 2010-06-14  Juri Linkov  <juri@jurta.org>
3291         Add sort option `list-colors-sort'.  (Bug#6332)
3292         * facemenu.el (color-rgb-to-hsv): New function.
3293         (list-colors-sort): New defcustom.
3294         (list-colors-sort-key): New function.
3295         (list-colors-display): Doc fix.  Sort list according to the option
3296         `list-colors-sort'.
3297         (list-colors-print): Add HSV values to `help-echo' property of
3298         RGB strings.
3300 2010-06-14  Juri Linkov  <juri@jurta.org>
3302         * compare-w.el: Move to the "vc" subdirectory.
3304 2010-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3306         * image-mode.el (image-mode-map): Remap left-char and right-char.
3308         * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
3310 2010-06-12  Chong Yidong  <cyd@stupidchicken.com>
3312         * term/common-win.el (x-colors): Add all the color names defined
3313         in rgb.txt (Bug#6332).
3315         * facemenu.el (list-colors-print): Don't print extra names if it
3316         will overflow the window width.
3318         * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
3319         change (Bug#6343).
3321 2010-06-12  Eli Zaretskii  <eliz@gnu.org>
3323         * files.el (make-directory): Doc fix (bug#6396).
3325 2010-06-12  Michael Albinus  <michael.albinus@gmx.de>
3327         * net/tramp.el (tramp-remote-process-environment): Protect version
3328         string by apostroph.
3329         (tramp-shell-prompt-pattern): Do not use a shy group in case of
3330         XEmacs.
3331         (tramp-file-name-for-operation): Add `call-process-region'.
3332         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
3334         * net/tramp-compat.el (top): Do not autoload
3335         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
3336         only when `start-file-process' is not bound.
3337         (tramp-advice-file-expand-wildcards): Do not use
3338         `tramp-handle-file-remote-p'.
3339         (tramp-compat-make-temp-file): Handle the case, that
3340         `make-temp-file' has no third argument EXTENSION.
3342 2010-06-11  Juanma Barranquero  <lekktu@gmail.com>
3344         * makefile.w32-in (WINS_BASIC): Include new directory vc.
3346         * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
3348 2010-06-11  Juri Linkov  <juri@jurta.org>
3350         * finder.el (finder-known-keywords): Add keyword "vc"
3351         for version control.
3353         * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
3354         * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
3355         * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
3356         * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
3358 2010-06-11  Juri Linkov  <juri@jurta.org>
3360         Move version control related files to the "vc" subdirectory.
3361         * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
3362         * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
3363         * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
3364         * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
3365         * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
3366         * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
3367         * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
3368         * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
3369         Move files to the "vc" subdirectory.
3371 2010-06-11  Chong Yidong  <cyd@stupidchicken.com>
3373         * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
3374         (Bug#6367).
3376 2010-06-11  Stephen Eglen  <stephen@gnu.org>
3378         * shell.el: Bind `shell-resync-dirs' to M-RET.
3380 2010-06-10  Michael Albinus  <michael.albinus@gmx.de>
3382         * notifications.el: Move file from lisp/net, because it is
3383         supposed to talk locally to the user.
3385 2010-06-10  Julien Danjou  <julien@danjou.info>
3387         * net/notifications.el (notifications-on-action-signal)
3388         (notifications-on-closed-signal): Pass notification id as first
3389         argument to the callback functions.  Add docstrings.
3390         (notifications-notify): Fix docstring.
3392 2010-06-10  Glenn Morris  <rgm@gnu.org>
3394         * emacs-lisp/authors.el (authors-ignored-files)
3395         (authors-valid-file-names): Add some files.
3397 2010-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3399         * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
3400         merge conflict, giving preference to the emacs-23 version of the code.
3402 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3404         * emacs-lisp/advice.el (ad-compile-function):
3405         Define warning-suppress-types before we let-bind it (bug#6275).
3407         * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
3408         declare it, make it buffer-local and permanent-local (bug#6324).
3409         (vc-resynch-window): Adjust name.
3410         * vc-hooks.el (vc-find-file-hook): Adjust name.
3412 2010-06-09  Michael Albinus  <michael.albinus@gmx.de>
3414         * net/notifications.el (notifications-notify): Fix docstring.
3416 2010-06-09  Juanma Barranquero  <lekktu@gmail.com>
3418         Update to Unicode 6.0.0 beta.
3419         * international/charprop.el: Update copyright.
3420         * international/mule-cmds.el (ucs-names): Update character ranges.
3421         * international/uni-bidi.el:
3422         * international/uni-category.el:
3423         * international/uni-combining.el:
3424         * international/uni-comment.el:
3425         * international/uni-decimal.el:
3426         * international/uni-decomposition.el:
3427         * international/uni-digit.el:
3428         * international/uni-lowercase.el:
3429         * international/uni-mirrored.el:
3430         * international/uni-name.el:
3431         * international/uni-numeric.el:
3432         * international/uni-old-name.el:
3433         * international/uni-titlecase.el:
3434         * international/uni-uppercase.el: Regenerate.
3436 2010-06-09  Juanma Barranquero  <lekktu@gmail.com>
3438         * emacs-lisp/smie.el (comment-string-strip): Declare function.
3439         (smie-precs-precedence-table): Fix typo in docstring.
3441         * vc-mtn.el (log-edit-extract-headers): Declare function.
3443         * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
3445         * net/notifications.el (dbus-register-signal): Declare function.
3446         (notifications-notify): Fix typos and reflow docstring.
3448 2010-06-09  Dan Nicolaescu  <dann@ics.uci.edu>
3450         Improve VC create/retrieve tag/branch.
3451         * vc.el (vc-create-tag): Do not read the directory name for VCs
3452         with repository revision granularity.  Adjust the tag/branch
3453         prompt.  Reset VC properties.
3454         (vc-retrieve-tag): Do not read the directory name for VCs
3455         with repository revision granularity.  Reset VC properties.
3457 2010-06-09  Julien Danjou  <julien@danjou.info>
3459         * net/notifications.el: New file.
3461 2010-06-09  Dan Nicolaescu  <dann@ics.uci.edu>
3463         Add optional support for resetting VC properties.
3464         * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
3465         call vc-file-clearprops when true.
3466         (vc-resynch-buffer): Add new optional argument, pass it down.
3467         (vc-resynch-buffers-in-directory): Likewise.
3469         Improve support for special markup in the VC commit message.
3470         * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
3471         * vc-hg.el (vc-hg-checkin): Add support for Date:.
3472         * vc-git.el (vc-git-checkin):
3473         * vc-bzr.el (vc-bzr-checkin): Likewise.
3475 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3477         * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
3478         can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
3480 2010-06-07  Martin Pohlack  <mp26@os.inf.tu-dresden.de>
3482         * iimage.el: Remove images as soon as the underlying text is modified.
3483         (iimage-modification-hook): New function.
3484         (iimage-mode-buffer): Use it.
3486 2010-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3488         * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
3489         smie-indent-offset-after.  Add :prev case.  Make a bit more generic.
3490         (smie-indent-virtual): Remove `virtual' arg.  Update callers.
3491         (smie-indent-keyword): Add handling of open-paren keywords.
3492         (smie-indent-comment-continue): Don't assume comment-continue.
3494 2010-06-07  Martin Rudalics  <rudalics@gmx.at>
3496         * window.el (pop-to-buffer): Remove the conditional that
3497         compares new-window and old-window, so it will reselect
3498         the selected window unconditionally.
3499         http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
3501 2010-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3503         * emacs-lisp/smie.el (smie-indent-offset-after)
3504         (smie-indent-forward-token, smie-indent-backward-token): New functions.
3505         (smie-indent-after-keyword): Use them.
3506         (smie-indent-fixindent): Only applies to the indentation of the BOL.
3507         (smie-indent-keyword): Tweak the black magic.
3508         (smie-indent-comment-continue): Strip comment-continue before use.
3509         (smie-indent-functions): Indent comments before keywords.
3511 2010-06-06  Juri Linkov  <juri@jurta.org>
3513         * isearch.el (isearch-lazy-highlight-search): Fix looping
3514         by checking for empty match.  This syncs this loop with the
3515         similar loop in `isearch-search'.  (Bug#6362)
3517 2010-06-05  Juanma Barranquero  <lekktu@gmail.com>
3519         * net/dbus.el (dbus-register-method): Declare function.
3520         (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
3521         (dbus-introspect): Doc fix.
3522         (dbus-event-bus-name, dbus-introspect-get-interface)
3523         (dbus-introspect-get-argument): Reflow docstrings.
3525 2010-06-05  Dan Nicolaescu  <dann@ics.uci.edu>
3527         vc-log-incoming/vc-log-outgoing fixes for Git.
3528         * vc-git.el (vc-git-log-view-mode): Fix font lock for
3529         incoming/outgoing logs.
3530         (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
3531         instead of vc-git-compute-remote.
3532         (vc-git-compute-remote): Remove.
3534 2010-06-04  Chong Yidong  <cyd@stupidchicken.com>
3536         * term/common-win.el (x-colors): Add "dark green" and "dark
3537         turquoise" (Bug#6332).
3539 2010-06-04  Juri Linkov  <juri@jurta.org>
3541         * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
3542         Instead of setting `replace' to t and replacing the same string
3543         with itself, don't do certain actions when
3544         kill-do-not-save-duplicates is non-nil and string is equal to car
3545         of kill-ring: don't call menu-bar-update-yank-menu, don't push
3546         interprogram-paste strings to kill-ring, and don't push the input
3547         argument `string' to kill-ring.
3548         http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
3550 2010-06-04  Juanma Barranquero  <lekktu@gmail.com>
3552         * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
3554 2010-06-04  Michael Albinus  <michael.albinus@gmx.de>
3556         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
3557         (tramp-gvfs-handler-mounted-unmounted)
3558         (tramp-gvfs-connection-mounted-p): Handle default-location.
3560         * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
3561         move files to trash.
3563 2010-06-04  Juanma Barranquero  <lekktu@gmail.com>
3565         * international/mule-cmds.el (nonascii-insert-offset)
3566         (nonascii-translation-table): Add obsolescence information.
3568         * international/mule.el (make-translation-table-from-vector): Doc fix.
3570 2010-06-03  Eric Ludlam  <zappo@gnu.org>
3572         * cedet/semantic/lex-spp.el
3573         (semantic-lex-spp-table-write-slot-value): Instead of erroring on
3574         invalid values during save, just save a nil (Bug#6324).
3576 2010-06-03  Glenn Morris  <rgm@gnu.org>
3578         * desktop.el (desktop-clear-preserve-buffers):
3579         Add "*Warnings*" buffer.  (Bug#6336)
3581 2010-06-03  Dan Nicolaescu  <dann@ics.uci.edu>
3583         vc-log-incoming/vc-log-outgoing improvements for Git.
3584         * vc-git.el (vc-git-log-outgoing): Use the same format as the
3585         short log.
3586         (vc-git-log-incoming): Likewise.  Run "git fetch" before the log command.
3588         Add bindings for vc-log-incoming and vc-log-outgoing.
3589         * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
3590         and vc-log-outgoing.
3591         * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
3592         and vc-log-outgoing.
3594 2010-06-03  Chong Yidong  <cyd@stupidchicken.com>
3596         * net/rcirc.el (rcirc-sort-nicknames): Remove.
3597         (rcirc-handler-366): Always sort nicknames.
3599 2010-06-03  Juanma Barranquero  <lekktu@gmail.com>
3601         * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
3603 2010-06-03  Chong Yidong  <cyd@stupidchicken.com>
3605         * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
3607 2010-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3609         * net/rcirc.el (rcirc-sort-nicknames): Change default.
3610         (rcirc-sort-nicknames-join): Avoid setq.
3612 2010-06-03  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
3614         * net/rcirc.el (rcirc-sort-nicknames): New custom.
3615         (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
3616         (rcirc-handler-366): Use them.
3618 2010-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3620         Split smie-indent-calculate into more manageable chunks.
3621         * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
3622         (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
3623         (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
3624         (smie-indent-exps): Extract from smie-indent-calculate.
3625         (smie-indent-functions): New var.
3626         (smie-indent-functions): Use them.
3628 2010-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3630         * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
3631         (smie-indent-calculate): Simplify and cleanup.
3633 2010-06-02  Michael Albinus  <michael.albinus@gmx.de>
3635         * net/tramp-gvfs.el (top): Require url-util.
3636         (tramp-gvfs-mount-point): Remove.
3637         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
3638         New defuns.
3639         (with-tramp-dbus-call-method): Format trace message.
3640         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
3641         Implement backup call, when operation on local files fails.
3642         Use progress reporter.  Flush properties of changed files.
3643         (tramp-gvfs-handle-make-directory): Make more traces.
3644         (tramp-gvfs-url-file-name): Hexify file name in url.
3645         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
3646         into account for the resulting file name.
3647         (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
3648         the answer is "no".  See `tramp-gvfs-maybe-open-connection'.
3649         (tramp-gvfs-handler-mounted-unmounted)
3650         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
3651         attribute "default_location".  Set "prefix" property.
3652         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
3653         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
3654         exists.  Raise an error, if not (due to a corresponding answer
3655         "no" in interactive questions, for example).
3657 2010-06-02  Dan Nicolaescu  <dann@ics.uci.edu>
3659         * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
3661 2010-06-01  Juanma Barranquero  <lekktu@gmail.com>
3663         * emacs-lisp/eldoc.el: Add completions for new commands left-* and
3664         right-*.  (Bug#6265)
3666 2010-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
3668         Add support for vc-log-incoming, improve vc-log-outgoing for Git.
3669         * vc-git.el (vc-git-compute-remote): New function.
3670         (vc-git-log-outgoing): Use it instead of hard coding a value.
3671         (vc-git-log-incoming): New function.
3673         Improve state updating for VC tag commands.
3674         * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
3675         to update the state of all buffers in the directory.
3677         * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
3679 2010-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3681         * vc-bzr.el (vc-bzr-revision-completion-table): Apply
3682         `file-directory-p' to the filename part rather than to the whole text.
3684 2010-05-31  Jonathan Marchand  <jonathlela@gmail.com>  (tiny change)
3686         * cedet/ede/cpp-root.el (ede-set-project-variables): Fix feature name
3687         (bug#6231).
3689 2010-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3691         * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
3693 2010-05-31  Drew Adams  <drew.adams@oracle.com>
3695         * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
3697 2010-05-31  Juanma Barranquero  <lekktu@gmail.com>
3699         * subr.el (momentary-string-display): Just use read-event to read
3700         the exit event (Bug#6238).
3702 2010-05-30  Eli Zaretskii  <eliz@gnu.org>
3704         * international/mule.el (define-coding-system): Doc fix (bug#6313).
3706 2010-05-30  Juanma Barranquero  <lekktu@gmail.com>
3708         * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
3709         Suggested by Eli Zaretskii <eliz@gnu.org>.
3711 2010-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3713         * minibuffer.el (completion-file-name-table): Don't return a boundary
3714         past the end of `string' (bug#6299).
3715         (completion--file-name-table): Delegate to completion-file-name-table
3716         for the `boundaries' case.
3718 2010-05-30  Juanma Barranquero  <lekktu@gmail.com>
3720         * emulation/cua-base.el: Recognize `right-char' and `left-char' as
3721         movement commands.
3723         * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
3724         `path-separator', but maintain compatibility with Emacs 20.2.
3726 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
3728         * server.el (server-process-filter): Receive parent-id argument
3729         from emacsclient.
3730         (server-create-window-system-frame): New arg.  Pass parent-id as
3731         frame parameter.
3733 2010-05-29  Eli Zaretskii  <eliz@gnu.org>
3735         Bidi-sensitive word movement with arrow keys.
3736         * subr.el (right-arrow-command, left-arrow-command): Move to
3737         bindings.el.
3739         * bindings.el (right-char, left-char): Move from subr.el and
3740         rename from right-arrow-command and left-arrow-command.
3741         (right-word, left-word): New functions.
3742         (global-map) <right>: Bind to right-char.
3743         (global-map) <left>: Bind to left-char.
3744         (global-map) <C-right>: Bind to right-word.
3745         (global-map) <C-left>: Bind to left-word.
3747         * ls-lisp.el (ls-lisp-classify-file): New function.
3748         (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
3749         (ls-lisp-classify): Call ls-lisp-classify-file.
3750         (insert-directory): Remove blanks from switches.
3752 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
3754         * ansi-color.el: Delete unused escape sequences (Bug#6085).
3755         (ansi-color-drop-regexp): New constant.
3756         (ansi-color-apply, ansi-color-filter-region)
3757         (ansi-color-apply-on-region): Delete unrecognized control sequences.
3758         (ansi-color-apply): Build string list before calling concat.
3760 2010-05-28  Juri Linkov  <juri@jurta.org>
3762         * image-dired.el (image-dired-dired-toggle-marked-thumbs):
3763         Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
3764         (Bug#5270)
3766 2010-05-28  Michael Albinus  <michael.albinus@gmx.de>
3768         * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
3769         to ignored backtrace functions.
3770         (with-progress-reporter): Expand docstring.
3771         (tramp-handle-delete-file): Implement TRASH argument.
3772         (tramp-get-remote-trash): New defun.
3774 2010-05-28  Michael Albinus  <michael.albinus@gmx.de>
3776         * net/tramp-compat.el (tramp-compat-delete-file): Use
3777         `symbol-value' for backward compatibility.
3779         * net/tramp.el (tramp-handle-make-symbolic-link)
3780         (tramp-handle-load)
3781         (tramp-do-copy-or-rename-file-via-buffer)
3782         (tramp-do-copy-or-rename-file-directly)
3783         (tramp-do-copy-or-rename-file-out-of-band)
3784         (tramp-handle-process-file, tramp-handle-call-process-region)
3785         (tramp-handle-shell-command, tramp-handle-file-local-copy)
3786         (tramp-handle-insert-file-contents, tramp-handle-write-region)
3787         (tramp-delete-temp-file-function): Use `delete-file' instead
3788         of `tramp-compat-delete-file'.
3790         * net/tramp-fish.el (tramp-fish-handle-delete-directory)
3791         (tramp-fish-handle-make-symbolic-link)
3792         (tramp-fish-handle-process-file): Use `delete-file' instead
3793         of `tramp-compat-delete-file'.
3795         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
3796         `delete-file' instead of `tramp-compat-delete-file'.
3798         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
3799         (tramp-gvfs-handle-write-region): Use `delete-file' instead of
3800         `tramp-compat-delete-file'.
3802         * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
3803         `delete-file' instead of `tramp-compat-delete-file'.
3805         * net/tramp-smb.el (tramp-smb-handle-copy-file)
3806         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3807         (tramp-smb-handle-write-region): Use `delete-file' instead of
3808         `tramp-compat-delete-file'.
3809         (tramp-smb-handle-delete-directory): Use 'trash as arg.
3811 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
3813         * dired.el (dired-delete-file): New arg TRASH.
3814         (dired-internal-do-deletions): New arg TRASH.  Use progress reporter.
3815         (dired-do-flagged-delete, dired-do-delete): Use trash.
3817         * speedbar.el (speedbar-item-delete): Allow trashing.
3819         * files.el (delete-directory): New arg TRASH.
3821         * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
3822         (ange-ftp-rename-remote-to-remote)
3823         (ange-ftp-rename-local-to-remote)
3824         (ange-ftp-rename-remote-to-local, ange-ftp-load)
3825         (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
3826         `delete-file'.
3827         (ange-ftp-delete-directory): Add optional arg to `delete-file', to
3828         allow trashing.
3830         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
3831         handle new TRASH arg of `delete-file'.
3833         * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
3834         (tramp-handle-make-symbolic-link, tramp-handle-load)
3835         (tramp-do-copy-or-rename-file-via-buffer)
3836         (tramp-do-copy-or-rename-file-directly)
3837         (tramp-do-copy-or-rename-file-out-of-band)
3838         (tramp-handle-process-file, tramp-handle-call-process-region)
3839         (tramp-handle-shell-command, tramp-handle-file-local-copy)
3840         (tramp-handle-insert-file-contents, tramp-handle-write-region)
3841         (tramp-delete-temp-file-function): Use null TRASH arg in
3842         tramp-compat-delete-file call.
3844         * net/tramp-fish.el (tramp-fish-handle-delete-directory)
3845         (tramp-fish-handle-delete-file)
3846         (tramp-fish-handle-make-symbolic-link)
3847         (tramp-fish-handle-process-file): Use null TRASH arg in
3848         `tramp-compat-delete-file' call.
3850         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
3851         arg in `tramp-compat-delete-file' call.
3853         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
3854         (tramp-gvfs-handle-write-region): Use null TRASH arg in
3855         `tramp-compat-delete-file' call.
3857         * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
3858         (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
3859         `tramp-compat-delete-file' call.
3861         * net/tramp-smb.el (tramp-smb-handle-copy-file)
3862         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3863         (tramp-smb-handle-write-region): Use null TRASH arg in
3864         tramp-compat-delete-file call.
3865         (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
3866         (tramp-smb-handle-delete-file): Rename arg.
3868         * diff.el (diff-sentinel):
3869         * epg.el (epg--make-temp-file, epg-decrypt-string)
3870         (epg-verify-string, epg-sign-string, epg-encrypt-string):
3871         * jka-compr.el (jka-compr-partial-uncompress)
3872         (jka-compr-call-process, jka-compr-write-region):
3873         * server.el (server-sentinel): Remove optional arg from
3874         delete-file, reverting 2010-05-03 change.
3876 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
3878         * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
3879         font-lock-constant-face, not obsolete font-lock-reference-face.
3881 2010-05-27  Kenichi Handa  <handa@m17n.org>
3883         * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
3884         element of GSTRING is nil.
3886 2010-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3888         * emacs-lisp/smie.el (smie-forward-token-function)
3889         (smie-backward-token-function): New vars.
3890         (smie-backward-sexp, smie-forward-sexp)
3891         (smie-indent-hanging-p, smie-indent-calculate): Use them.
3892         (smie-default-backward-token): Rename from smie-backward-token and
3893         skip comments.
3894         (smie-default-forward-token): Rename from smie-forward-token and
3895         skip comments.
3896         (smie-next-sexp): Handle nil results from next-token.
3897         (smie-indent-calculate): Add a new case for special `fixindent' comments.
3899 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
3901         * progmodes/verilog-mode.el (verilog-type-font-keywords):
3902         Use font-lock-constant-face, not obsolete font-lock-reference-face.
3904 2010-05-27  Masatake YAMATO  <yamato@redhat.com>
3906         * htmlfontify.el (hfy-face-resolve-face): New function.
3907         (hfy-face-to-style): Use it (Bug#6279).
3909 2010-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3911         * progmodes/ada-xref.el (ada-gnat-parse-gpr):
3912         * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
3914 2010-05-26  Glenn Morris  <rgm@gnu.org>
3916         * emulation/edt.el (edt-load-keys): Use locate-library.
3918 2010-05-25  Chong Yidong  <cyd@stupidchicken.com>
3920         * log-edit.el (log-edit-strip-single-file-name): Default to nil.
3921         (log-edit-changelog-entries): Doc fix.
3922         (log-edit-changelog-insert-entries): Args changed.
3923         Rename relative filenames in ChangeLog entries.  Delete tabs.
3924         (log-edit-insert-changelog-entries): Reorganize return value of
3925         `log-edit-changelog-entries' to pass filenames to
3926         log-edit-changelog-insert-entries.
3928 2010-05-25  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3930         * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
3931         `image-dired-dired-insert-marked-thumbs' to
3932         `image-dired-dired-toggle-marked-thumbs'.
3934         * image-dired.el: Require cl when compiling.
3935         (image-dired-dired-toggle-marked-thumbs): Rename from
3936         `image-dired-dired-insert-marked-thumbs'.  Add ARG.  Doc fix.
3937         Use interactive spec "P".  Set LOCALP arg of `dired-get-filename'
3938         to 'no-dir.  Skip files whose names don't match
3939         `image-file-name-regexp'.  When file has a thumbnail overlay,
3940         delete it.  (Bug#5270)
3942 2010-05-25  Juri Linkov  <juri@jurta.org>
3944         * image-mode.el (image-mode): Add image-after-revert-hook to
3945         after-revert-hook.
3946         (image-after-revert-hook): New function.  (Bug#5669)
3948 2010-05-25  Juri Linkov  <juri@jurta.org>
3950         * image.el (image-animated-p): When delay between animated images
3951         is 0, set it to 10 (0.1 sec).  (Bug#6258)
3953 2010-05-25  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
3955         * net/tramp.el (tramp-handle-insert-directory): Don't use
3956         `forward-word', its default syntax could be changed.
3958 2010-05-25  Michael Albinus  <michael.albinus@gmx.de>
3960         * net/tramp.el (tramp-progress-reporter-update): New defun.
3961         (with-progress-reporter): Use it.
3962         (tramp-process-actions):
3963         * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
3964         current message, in order to let progress reporter continue
3965         afterwards.  (Bug#6257)
3967 2010-05-25  Glenn Morris  <rgm@gnu.org>
3969         * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
3970         Add :version.
3972 2010-05-25  Ryan Yeske  <rcyeske@gmail.com>
3974         * net/rcirc.el (rcirc-default-user-name): Change to "user".
3975         (rcirc-default-full-name): Change to "unknown".
3976         (rcirc-user-name-history): Add variable.
3978 2010-05-25  Ryan Yeske  <rcyeske@gmail.com>
3979             Jonathan Rockway  <jon@jrock.us>
3981         * net/rcirc.el (rcirc-server-alist): Add :pass.
3982         (rcirc): When prompting for connection parameters, also prompt for
3983         username and password.
3984         (rcirc-connect): Take a PASS argument.  If PASS is non-nil, send
3985         value to server when connecting.
3987 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3989         * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
3990         (smie-merge-prec2s): Pass the tables as separate args.
3991         (smie-bnf-precedence-table): Adjust call accordingly.
3992         (smie-prec2-levels): Set levels at the end.
3994         Replace Lisp calls to delete-backward-char by delete-char.
3995         * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
3996         * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
3997         * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
3998         * calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
3999         * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
4000         * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
4001         * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
4002         * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
4003         * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
4004         * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
4005         * progmodes/ps-mode.el, progmodes/verilog-mode.el,
4006         * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
4007         * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
4008         * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
4009         delete-backward-char by calls to delete-char.
4011 2010-05-25  Kenichi Handa  <handa@m17n.org>
4013         * language/hebrew.el (hebrew-shape-gstring): New function.
4014         Register it in composition-function-table for all Hebrew combining
4015         characters.
4017 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4019         * epa.el (epa--select-keys): Don't explicitly delete the window since
4020         that can fail (e.g. sole window in frame).  Use dedication instead.
4022 2010-05-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
4024         * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
4026 2010-05-22  Chong Yidong  <cyd@stupidchicken.com>
4028         * image.el (image-refresh): Define as an alias for image-flush.
4030         * image-mode.el (image-toggle-display-image): Caller changed.
4032 2010-05-21  Juri Linkov  <juri@jurta.org>
4034         * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
4035         Remove "all" from grep-files-aliases.  Split grep-files-aliases by
4036         whitespace, call wildcard-to-regexp on substrings and concat them
4037         with "\\|".  (Bug#6114)
4039 2010-05-21  Alan Mackenzie  <acm@muc.de>
4041         * progmodes/cc-engine.el (c-parse-state-get-strategy):
4042         Replace parameter `here' with `here-' and `here-plus', which sandwich
4043         any pertinent CPP construct.
4044         (c-remove-stale-state-cache-backwards): Fix a bug which happens
4045         when doing (c-parse-state) in a CPP construct: Exclude any "new"
4046         CPP construct from taking part in the scanning.
4048 2010-05-21  Michael Albinus  <michael.albinus@gmx.de>
4050         * net/tramp.el (tramp-do-copy-or-rename-file)
4051         (tramp-handle-file-local-copy, tramp-maybe-open-connection):
4052         Tune `with-progress-reporter' messages.
4053         (tramp-handle-vc-registered):
4054         * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
4055         (tramp-fish-handle-insert-file-contents)
4056         (tramp-fish-maybe-open-connection):
4057         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
4058         * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
4059         (tramp-imap-handle-insert-file-contents)
4060         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
4062 2010-05-21  Juanma Barranquero  <lekktu@gmail.com>
4064         * add-log.el (change-log-font-lock-keywords):
4065         Highlight all authors in multi-author entries.
4067         * smerge-mode.el (smerge-refine-ignore-whitespace)
4068         (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
4069         Fix typos in docstrings.
4070         (smerge-resolve, smerge-refine-subst): Reflow docstrings.
4072 2010-05-21  Glenn Morris  <rgm@gnu.org>
4074         * progmodes/fortran.el (fortran-mode):
4075         * progmodes/f90.el (f90-mode): Derive from prog-mode.
4077         * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
4078         having a relative path in src/Makefile.in.
4080 2010-05-20  Kevin Ryde  <user42@zip.com.au>
4082         * help-mode.el (help-make-xrefs): For Info node links turn
4083         newlines into spaces.  Link node names with newlines are matched
4084         by help-xref-info-regexp and buttonized, this change ensures they
4085         can be followed successfully with RET.  (Bug#6206)
4087 2010-05-20  Juri Linkov  <juri@jurta.org>
4089         * locate.el (locate): Use pop-to-buffer instead of
4090         switch-to-buffer-other-window.  (Bug#6204)
4092 2010-05-20  Juri Linkov  <juri@jurta.org>
4094         * replace.el (replace-highlight): Fix lazy-highlighting
4095         for `M-s w str M-% str RET'.
4097 2009-12-15  Masatake YAMATO  <yamato@redhat.com>
4099         * isearch.el (isearch-yank-word-or-char): Pull next subword
4100         when `subword-mode' is activated.  (Bug#6220)
4102 2010-05-20  Mark A. Hershberger  <mah@everybody.org>
4104         * isearch.el (isearch-update-post-hook): New hook.
4105         (isearch-update): Use the new hook.  (Bug#6225)
4107 2010-05-20  Juri Linkov  <juri@jurta.org>
4109         * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
4110         [f1], [help], and (char-to-string help-char) instead of "\C-h".
4111         (Bug#6222)
4113 2010-05-20  Juri Linkov  <juri@jurta.org>
4115         * isearch.el (isearch-yank-string): Use isearch-process-search-string.
4116         (Bug#6223)
4118 2010-05-20  Juri Linkov  <juri@jurta.org>
4120         * dired-x.el (dired-jump, dired-jump-other-window): Add arg
4121         FILE-NAME to read from the minibuffer when called interactively
4122         with prefix argument instead of using buffer-file-name.
4123         http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
4125         * dired.el: Update autoloads.
4127 2010-05-20  Chong Yidong  <cyd@stupidchicken.com>
4129         * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
4130         nxml-finish-element, for consistency with SGML mode.
4132         * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
4133         octave-close-block.
4135 2010-05-20  Juanma Barranquero  <lekktu@gmail.com>
4137         * composite.el: Require cl when compiling.
4138         (reference-point-alist, compose-gstring-for-graphic)
4139         (compose-gstring-for-terminal): Fix typos in docstrings.
4141 2010-05-19  Juri Linkov  <juri@jurta.org>
4143         * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
4144         set-window-parameter.
4146 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
4148         * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
4149         where appropriate.
4150         (tramp-maybe-open-connection): Use it.
4152 2010-05-19  Eli Zaretskii  <eliz@gnu.org>
4154         * simple.el (move-end-of-line): Make sure we are at line beginning
4155         before backing up to end of previous line.
4157 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
4159         * password-cache.el (password-cache-remove): Fix docstring.
4161         * net/secrets.el: Autoload the widget functions.
4162         (secrets-search-items, secrets-create-item)
4163         (secrets-get-attributes, secrets-expand-item): Attributes will be
4164         stored on the password database without leading ":", as all other
4165         clients do as well.
4166         (secrets-mode): Fix docstring.
4167         (secrets-show-secrets): Provide it as autoloaded command only when
4168         D-Bus support is available.  Check existence of Secret Service API.
4170 2010-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4172         * indent.el (indent-region): Deactivate region (bug#6200).
4174 2010-05-19  Glenn Morris  <rgm@gnu.org>
4176         * vc-dir.el (vc-dir): Don't pop-up-windows.  (Bug#6204)
4178 2010-05-19  Kenichi Handa  <handa@m17n.org>
4180         * composite.el: Register compose-gstring-for-graphic in
4181         composition-function-table only for combining characters (Mn, Mc, Me).
4183 2010-05-18  Jay Belanger  <jay.p.belanger@gmail.com>
4185         * calc/calc-trail.el (calc-trail-isearch-forward)
4186         (calc-trail-isearch-backward): Ensure that the new window
4187         point is set correctly.
4189 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4191         * subr.el (read-quoted-char): Resolve modifiers after key
4192         remapping (bug#6212).
4194 2010-05-18  Michael Albinus  <michael.albinus@gmx.de>
4196         Add visualization code for secrets.
4197         * net/secrets.el (secrets-mode): New major mode.
4198         (secrets-show-secrets, secrets-show-collections)
4199         (secrets-expand-collection, secrets-expand-item)
4200         (secrets-tree-widget-after-toggle-function)
4201         (secrets-tree-widget-show-password): New defuns.
4203 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4205         * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
4206         (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
4207         handled in smie-next-sexp.
4208         (smie-indent-calculate): Provide a starting indentation (so the
4209         recursion is well-founded ;-).
4211         Fix handling of non-associative equal levels.
4212         * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
4213         when it's not needed.
4214         (smie-op-left, smie-op-right): New functions.
4215         (smie-next-sexp): New function, extracted from smie-backward-sexp.
4216         Better handle equal levels to distinguish the associative case from
4217         the "multi-keyword construct" case.
4218         (smie-backward-sexp, smie-forward-sexp): Use it.
4220 2010-05-18  Juanma Barranquero  <lekktu@gmail.com>
4222         * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
4224         * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
4225         (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
4227 2010-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4229         Provide a simple generic indentation engine and use it for Prolog.
4230         * emacs-lisp/smie.el: New file.
4231         * progmodes/prolog.el (prolog-smie-op-levels)
4232         (prolog-smie-indent-rules): New var.
4233         (prolog-mode-variables): Use them to configure SMIE.
4234         (prolog-indent-line, prolog-indent-level): Remove.
4236 2010-05-17  Jay Belanger  <jay.p.belanger@gmail.com>
4238         * calc/calc-vec.el (math-vector-avg): Put the vector elements in
4239         order before computing the averages.
4241 2010-05-16  Jay Belanger  <jay.p.belanger@gmail.com>
4243         * calc/calc-vec.el (calc-histogram):
4244         (calcFunc-histogram): Allow vectors as inputs.
4245         (math-vector-avg): New function.
4247         * calc/calc-ext.el (math-group-float): Have the number of digits
4248         being grouped depend on the radix (Bug#6189).
4250 2010-05-15  Ken Raeburn  <raeburn@raeburn.org>
4252         * version.el (emacs-copyright, emacs-version): Don't define here,
4253         now that emacs.c defines it.
4255 2010-05-15  Eli Zaretskii  <eliz@gnu.org>
4257         * international/mule-cmds.el (mule-menu-keymap): Fix definition of
4258         "Describe Language Environment" menu item.
4260         * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
4262         Bidi-sensitive movement with arrow keys.
4263         * subr.el (right-arrow-command, left-arrow-command): New functions.
4265         * bindings.el (global-map): Bind them to right and left arrow keys.
4267         Don't override standard definition of convert-standard-filename.
4268         * files.el (convert-standard-filename): Call
4269         w32-convert-standard-filename and dos-convert-standard-filename on
4270         the corresponding systems.
4272         * w32-fns.el (w32-convert-standard-filename): Rename from
4273         convert-standard-filename.  Doc fix.
4275         * dos-fns.el (dos-convert-standard-filename): Doc fix.
4276         (convert-standard-filename): Don't defalias.
4277         (register-name-alist, make-register, register-value)
4278         (set-register-value, intdos): Obsolete aliases for the
4279         corresponding dos-* functions and variables.
4280         (dos-intdos): Add a doc string.
4282 2010-05-15  Jay Belanger  <jay.p.belanger@gmail.com>
4284         * calc/calc-aent.el (math-read-token, math-find-user-tokens):
4285         * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
4286         (math-compose-tex-func):
4287         * calc/calccomp.el (math-compose-expr):
4288         * calc/calc-ext.el (math-format-flat-expr-fancy):
4289         * calc/calc-store.el (calc-read-var-name):
4290         * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
4292         * calc/calc.el (var-π, var-φ, var-γ): New variables.
4293         * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
4294         * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
4295         (math-standard-units): Add units.
4297 2010-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4299         * progmodes/asm-mode.el (asm-mode):
4300         * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
4302         * pcomplete.el (pcomplete-completions-at-point): New function,
4303         extracted from pcomplete-std-complete.
4304         (pcomplete-std-complete): Use it.
4306 2010-05-15  Glenn Morris  <rgm@gnu.org>
4308         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
4309         Remove references to CVS, RCS and Old directories.
4311 2010-05-14  Jay Belanger  <jay.p.belanger@gmail.com>
4313         * calc/calc-bin.el (math-format-twos-complement): Group digits when
4314         appropriate.
4316 2010-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4318         * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
4319         (sh-mode-syntax-table): Give it a default value instead.
4320         (sh-header-marker): Make buffer-local.
4321         (sh-mode): Move make-local-variable to the corresponding setq.
4322         (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
4323         Use complete-with-action.
4325         * simple.el (prog-mode): New (abstract) major mode.
4326         * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
4327         * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
4329 2010-05-14  Juanma Barranquero  <lekktu@gmail.com>
4331         * progmodes/sql.el (sql-oracle-program): Reflow docstring.
4332         (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
4333         (sql-add-product-keywords, sql-highlight-product, sql-set-product)
4334         (sql-make-alternate-buffer-name, sql-placeholders-filter)
4335         (sql-escape-newlines-filter, sql-input-sender)
4336         (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
4338 2010-05-13  Chong Yidong  <cyd@stupidchicken.com>
4340         Add TeX open-block and close-block keybindings to SGML, and vice versa.
4342         * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
4343         latex-open-block and C-c / to latex-close-block.
4345         * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
4346         and C-c C-e to sgml-close-tag.
4348 2010-05-13  Michael Albinus  <michael.albinus@gmx.de>
4350         * net/tramp.el (with-progress-reporter): Create reporter object
4351         only when the message would be displayed.  Handle nested calls.
4352         (tramp-handle-load, tramp-handle-file-local-copy)
4353         (tramp-handle-insert-file-contents, tramp-handle-write-region)
4354         (tramp-maybe-send-script, tramp-find-shell):
4355         Use `with-progress-reporter'.
4356         (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
4357         Fix message text.
4359         * net/tramp-smb.el (tramp-smb-handle-copy-file)
4360         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
4361         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
4362         Use `with-progress-reporter'.
4364 2010-05-13  Agustín Martín  <agustin.martin@hispalinux.es>
4366         * textmodes/ispell.el (ispell-init-process): Do not kill ispell
4367         process everytime when spellchecking from the minibuffer (bug#6143).
4369 2010-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4371         * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
4373         * dos-fns.el: Add "dos-" prefix for namespace control.
4374         (convert-standard-filename): Define as alias for
4375         dos-convert-standard-filename but only if applicable.
4377 2010-05-12  Alan Mackenzie  <acm@muc.de>
4379         * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
4380         Push the mark at the start of these functions when appropriate.
4382 2010-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4384         * minibuffer.el (completion-cycle-threshold): New custom var.
4385         (completion--do-completion): Use it.
4386         (minibuffer-complete): Use cycling if appropriate.
4388 2010-05-11  Juanma Barranquero  <lekktu@gmail.com>
4390         * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
4391         buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
4393 2010-05-11  Juri Linkov  <juri@jurta.org>
4395         * scroll-all.el (scroll-all-check-to-scroll):
4396         Add `scroll-up-command' and `scroll-down-command' (bug#6164).
4398 2010-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4400         * iimage.el (iimage-mode-map): Move initialization into declaration.
4401         (iimage-mode-buffer): Use with-silent-modifications.
4402         Simplify calling convention.  Adjust callers.
4403         (iimage-mode): Don't run hook redundantly.
4405         * minibuffer.el (completion-pcm--pattern->regex):
4406         Fix last change (bug#6160).
4408 2010-05-10  Juri Linkov  <juri@jurta.org>
4410         Remove nodes visited during Isearch from the Info history.
4411         * info.el (Info-isearch-initial-history)
4412         (Info-isearch-initial-history-list): New variables.
4413         (Info-isearch-start): Record initial values of
4414         Info-isearch-initial-history and Info-isearch-initial-history-list.
4415         Add Info-isearch-end to isearch-mode-end-hook.
4416         (Info-isearch-end): New function.
4418 2010-05-10  Michael Albinus  <michael.albinus@gmx.de>
4420         * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
4421         format string, in order to work around a bug in pdksh.
4422         Reported by Gilles Pion <gpion@lfdj.com>.
4423         (tramp-handle-verify-visited-file-modtime): Do not send a command
4424         when the connection is not established.
4425         (tramp-handle-set-file-times): Simplify the check for utc.
4427 2010-05-10  Juanma Barranquero  <lekktu@gmail.com>
4429         Fix use of `filter-buffer-substring' (rework previous change).
4430         * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
4431         (cua-repeat-replace-region):
4432         * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
4433         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4434         (cua-cut-region-to-global-mark): Use it.
4436 2010-05-09  Michael R. Mauger  <mmaug@yahoo.com>
4438         * progmodes/sql.el: Version 2.1.
4439         (sql-product-alist): Redesign structure of product info.
4440         (sql-product, sql-user, sql-server, sql-database): Safe variables.
4441         (sql-port, sql-port-history): New variables.
4442         (sql-interactive-product): New variable.
4443         (sql-send-terminator): New variable.
4444         (sql-imenu-generic-expression): Add "Types" imenu entry.
4445         (sql-oracle-login-params, sql-sqlite-login-params)
4446         (sql-mysql-login-params, sql-solid-login-params)
4447         (sql-sybase-login-params, sql-informix-login-params)
4448         (sql-ingres-login-params, sql-ms-login-params)
4449         (sql-postgres-login-params, sql-interbase-login-params)
4450         (sql-db2-login-params, sql-linter-login-params)
4451         (sql-oracle-scan-on): New variables.
4452         (sql-mode-map): Add C-c C-i to start interactive mode.
4453         (sql-mode-menu): Update existing menu entries.
4454         (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
4455         (sql-mode-oracle-font-lock-keywords)
4456         (sql-mode-postgres-font-lock-keywords)
4457         (sql-mode-ms-font-lock-keywords)
4458         (sql-mode-sybase-font-lock-keywords)
4459         (sql-mode-informix-font-lock-keywords)
4460         (sql-mode-interbase-font-lock-keywords)
4461         (sql-mode-ingres-font-lock-keywords)
4462         (sql-mode-solid-font-lock-keywords)
4463         (sql-mode-mysql-font-lock-keywords)
4464         (sql-mode-sqlite-font-lock-keywords)
4465         (sql-mode-db2-font-lock-keywords)
4466         (sql-mode-linter-font-lock-keywords): Update initialization to
4467         reduce run-time complexity.
4468         (sql-add-product, sql-del-product): New functions.
4469         (sql-set-product-feature, sql-get-product-feature): New functions.
4470         (sql-product-font-lock): Update product API.
4471         (sql-add-product-keywords): New function.
4472         (sql-highlight-product): Update product API.
4473         (sql-help-list-products): New function.
4474         (sql-help): Dynamically lists free and non-free products.
4475         (sql-get-login): Correct bug in handling history and added
4476         prompt for port.
4477         (sql-copy-column): Copy without properties.
4478         (sqli-input-sender): Apply filters to SQLi input.
4479         (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
4480         Implement as a filter.
4481         (sql-escape-newlines-filter): Implement as a filter.
4482         (sql-remove-tabs-filter): New function.
4483         (sql-send-magic-terminator): New function.
4484         (sql-send-string): Implement magic terminator.
4485         (sql-send-region): Use `sql-send-string'.
4486         (sql-interactive-mode): Use product API.
4487         (sql-product-interactive): Use product API.
4488         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
4489         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
4490         (sql-db2, sql-linter): Use `sql-product-interactive'.
4491         (sql-connect): New function.
4492         (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
4493         (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
4494         (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
4495         (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
4496         Use `sql-connect'.
4498 2010-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4500         * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
4501         New custom variable.
4502         (completion-pcm--string->pattern): Use it.
4503         (completion-pcm--pattern->regex, completion-pcm--pattern->string):
4504         Make it handle any symbol as `any'.
4505         (completion-pcm--merge-completions): Extract common suffix for the new
4506         `prefix' symbol as well.
4507         (completion-substring--all-completions): Use the new `prefix' symbol.
4509 2010-05-09  Michael Albinus  <michael.albinus@gmx.de>
4511         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
4512         not bound.
4513         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
4514         (tramp-compat-funcall): New defmacro.
4515         (tramp-compat-line-beginning-position)
4516         (tramp-compat-line-end-position)
4517         (tramp-compat-temporary-file-directory)
4518         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
4519         (tramp-compat-copy-file, tramp-compat-copy-directory)
4520         (tramp-compat-delete-file, tramp-compat-delete-directory)
4521         (tramp-compat-number-sequence, tramp-compat-process-running-p)
4522         * net/tramp.el (top, with-progress-reporter)
4523         (tramp-rfn-eshadow-setup-minibuffer)
4524         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
4525         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
4526         (tramp-completion-mode-p, tramp-check-for-regexp)
4527         (tramp-open-connection-setup-interactive-shell)
4528         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
4529         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
4530         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
4531         * net/tramp-cmds.el (tramp-cleanup-all-connections)
4532         (tramp-reporter-dump-variable, tramp-load-report-modules)
4533         (tramp-append-tramp-buffers)
4534         * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
4536         * net/tramp-imap.el (top): Autoload `epg-make-context'.
4538 2010-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4540         * progmodes/compile.el (compilation-buffer-modtime): Rename from
4541         buffer-modtime.  Adjust users.
4543 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
4545         * international/mule.el (auto-coding-alist): Only purecopy
4546         car of each item, not the whole list (Bug#6083).
4548 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
4550         * progmodes/js.el (js-mode): Make paragraph variables local before
4551         calling c-setup-paragraph-variables (Bug#6071).
4553 2010-05-08  Eli Zaretskii  <eliz@gnu.org>
4555         * composite.el (compose-region, reference-point-alist): Fix typos
4556         in the doc strings.
4558 2010-05-08  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
4560         * calc/calc-graph.el (calc-graph-plot): Use the proper form for
4561         gnuplot's "set" command.
4563 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
4565         * abbrev.el (last-abbrev-text): Doc fix.
4566         (abbrev-prefix-mark): Don't escape parenthesis.
4568 2010-05-08  Andreas Schwab  <schwab@linux-m68k.org>
4570         * composite.el (find-composition): Doc fix.
4572 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
4574         * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
4575         (sql-oracle-program, sql-sqlite-options)
4576         (sql-query-placeholders-and-send): Doc fixes.
4577         (sql-set-product, sql-interactive-mode): Reflow docstrings.
4578         (sql-imenu-generic-expression, sql-buffer)
4579         (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
4580         (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
4581         (sql-mode-sybase-font-lock-keywords)
4582         (sql-mode-informix-font-lock-keywords)
4583         (sql-mode-interbase-font-lock-keywords)
4584         (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
4585         (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
4586         (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
4587         (sql-product-feature, sql-highlight-product)
4588         (comint-line-beginning-position, sql-rename-buffer)
4589         (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
4590         (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
4591         (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
4592         Fix typos in docstrings.
4594 2010-05-08  Juri Linkov  <juri@jurta.org>
4596         * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
4597         property instead of `invisible' and `after-string' (bug#5998).
4599 2010-05-08  Juri Linkov  <juri@jurta.org>
4601         * image-mode.el (image-mode-as-text): Fix typo in docstring.
4603 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
4605         * filecache.el (file-cache-add-directory-list)
4606         (file-cache-add-directory-recursively): Fix typos in docstrings.
4608 2010-05-08  Kenichi Handa  <handa@m17n.org>
4610         * language/indian.el (gurmukhi-composable-pattern): Fix typo.
4611         (gujarati-composable-pattern): Fix typo.
4613 2010-05-08  Kenichi Handa  <handa@m17n.org>
4615         * language/indian.el (oriya-composable-pattern)
4616         (tamil-composable-pattern, malayalam-composable-pattern):
4617         Add two-part vowels to "v" (vowel sign).
4619 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
4621         * files.el (copy-directory): Handle symlinks (Bug#5982).
4623 2010-05-08  Dan Nicolaescu  <dann@ics.uci.edu>
4625         * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
4626         (vc-hg-working-revision): Likewise.  Use hg parents, not hg parent
4627         (Bug#5846).
4629 2010-05-08  Glenn Morris  <rgm@gnu.org>
4631         * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
4633         * minibuffer.el (completion-at-point): Doc fix.
4635 2010-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4637         * electric.el (Electric-command-loop): Minor tweak.
4639         * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
4640         better with dedicated windows.
4642 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
4644         * Version 23.2 released.
4646 2010-05-07  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
4647             Stefan Monnier  <monnier@iro.umontreal.ca>
4649         Highlight vendor specific properties.
4650         * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
4651         (css-proprietary-property): New face.
4652         (css-font-lock-keywords): Use them.
4654 2010-05-07  Eli Zaretskii  <eliz@gnu.org>
4656         * cus-start.el (all): Add native condition for tool-bar-* symbols.
4658 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4660         * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
4661         * files.el (auto-mode-alist): Remove redundant entries.
4663         * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
4664         * simple.el (auto-save-mode): Move from files.el.
4665         * minibuffer.el (completion--common-suffix): Fix copy&paste error.
4667 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
4669         * lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
4671 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4673         * mail/binhex.el (binhex-decode-region-internal)
4674         * mail/uudecode.el (uudecode-decode-region-internal)
4675         * net/dns.el (dns-read-string-name, dns-write, dns-read)
4676         (dns-read-type, dns-query)
4677         * pgg-parse.el (pgg-parse-armor)
4678         * pgg.el (pgg-verify-region)
4679         * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
4680         XEmacs.
4682         * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
4684 2010-05-07  Juanma Barranquero  <lekktu@gmail.com>
4686         * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
4688         Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
4689         * emulation/cua-base.el (cua-repeat-replace-region):
4690         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
4691         (cua-cut-region-to-global-mark):
4692         Remove text properties with `set-text-properties'.
4694 2010-05-06  Michael Albinus  <michael.albinus@gmx.de>
4696         * net/tramp.el (top, with-progress-reporter):
4697         Use `symbol-function' inside `funcall'.
4699         * net/tramp-compat.el (tramp-compat-file-attributes)
4700         (tramp-compat-delete-file, tramp-compat-delete-directory):
4701         Handle only `wrong-number-of-arguments' error.
4703         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
4704         (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
4705         inside `funcall'.
4707 2010-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4709         * minibuffer.el (completion--sreverse, completion--common-suffix):
4710         New functions.
4711         (completion-pcm--merge-completions): Extract common suffix when safe.
4713         * emacs-lisp/easy-mmode.el (define-minor-mode):
4714         Make :variable more flexible.
4715         * files.el (auto-save-mode): Use it to define using define-minor-mode.
4717 2010-05-05  Juri Linkov  <juri@jurta.org>
4719         Add `slow' and `history' tags to the desktop data.
4721         * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
4722         (Info-virtual-files) [*Apropos*]: Add `slow' tag.
4723         (Info-finder-find-node): Require `finder.el' to be able
4724         to restore node from the desktop.
4725         (Info-desktop-buffer-misc-data): Save all nodes.  Save additional
4726         data `Info-history' and `slow' tag in the assoc list.
4727         (Info-restore-desktop-buffer): Don't restore nodes with the
4728         `slow' tag.  Restore `Info-history'.
4730 2010-05-05  Michael Albinus  <michael.albinus@gmx.de>
4732         Add FORCE argument to `delete-file'.
4734         * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
4735         forcing to delete the temporary file.
4736         (ange-ftp-delete-file): Add FORCE arg.
4737         (ange-ftp-rename-remote-to-remote)
4738         (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
4739         (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
4740         Force file deletion.
4742         * net/tramp-compat.el (tramp-compat-delete-file): New defun.
4744         * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
4745         (tramp-handle-make-symbolic-link, tramp-handle-load)
4746         (tramp-do-copy-or-rename-file-via-buffer)
4747         (tramp-do-copy-or-rename-file-directly)
4748         (tramp-do-copy-or-rename-file-out-of-band)
4749         (tramp-handle-process-file, tramp-handle-call-process-region)
4750         (tramp-handle-shell-command, tramp-handle-file-local-copy)
4751         (tramp-handle-insert-file-contents, tramp-handle-write-region)
4752         (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
4754         * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
4755         (tramp-fish-handle-make-symbolic-link)
4756         (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
4758         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
4759         Use `tramp-compat-delete-file'.
4761         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
4762         (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
4764         * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
4765         (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
4767         * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
4768         (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
4769         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
4770         `tramp-compat-delete-file'.
4772 2010-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4774         Minor cleanups.
4775         * subr.el (add-minor-mode): Use push.
4776         * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
4777         * emulation/edt.el (edt-select-mode): Simplify.
4779         Use define-minor-mode in more cases.
4780         * term/tvi970.el (tvi970-set-keypad-mode):
4781         * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
4782         (normal-erase-is-backspace-mode):
4783         * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
4784         (set-scroll-bar-mode-1): (Re)move to its sole caller.
4785         (get-scroll-bar-mode): New function.
4786         * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
4788         Use define-minor-mode for less obvious cases.
4789         * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
4790         * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
4791         * international/iso-ascii.el (iso-ascii-mode):
4792         * frame.el (auto-raise-mode, auto-lower-mode):
4793         * composite.el (global-auto-composition-mode): Use define-minor-mode.
4795 2010-05-04  Michael Albinus  <michael.albinus@gmx.de>
4797         * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
4798         in order to see error messages for failed logins.
4800 2010-05-03  Chong Yidong  <cyd@stupidchicken.com>
4802         * diff.el (diff-sentinel):
4804         * epg.el (epg--make-temp-file, epg-decrypt-string)
4805         (epg-verify-string, epg-sign-string, epg-encrypt-string):
4807         * jka-compr.el (jka-compr-partial-uncompress)
4808         (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
4810         * server.el (server-sentinel): Use delete-file's new FORCE arg
4811         (Bug#6070).
4813 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4815         Use define-minor-mode where applicable.
4816         * view.el (view-mode):
4817         * type-break.el (type-break-query-mode)
4818         (type-break-mode-line-message-mode):
4819         * textmodes/reftex.el (reftex-mode):
4820         * term/vt100.el (vt100-wide-mode):
4821         * tar-mode.el (tar-subfile-mode):
4822         * savehist.el (savehist-mode):
4823         * ibuf-ext.el (ibuffer-auto-mode):
4824         * composite.el (auto-composition-mode):
4825         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
4826         Use define-minor-mode.
4827         (vhdl-mode): Use static mode-line format.
4828         (vhdl-mode-line-update): Delete.
4829         (vhdl-create-mode-menu, vhdl-activate-customizations)
4830         (vhdl-hs-minor-mode): Don't bother calling it.
4832 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4834         * simple.el (with-wrapper-hook): Move.
4835         (buffer-substring-filters): Mark obsolete.
4836         (filter-buffer-substring-functions): New variable.
4837         (filter-buffer-substring): Use it.  Remove unused arg `noprops'.
4839         Use a mode-line spec rather than a static string in Semantic.
4840         * cedet/semantic/util-modes.el:
4841         (semantic-minor-modes-format): New var to replace...
4842         (semantic-minor-modes-status): Remove.
4843         (semantic-mode-line-update): Construct a mode-line spec rather than
4844         a static string so that mouse buttons can be used on individual minor
4845         modes and so that semantic-mode-line-update only needs to be called
4846         when global settings are changed.
4847         (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
4848         Call semantic-mode-line-update.
4849         (semantic-toggle-minor-mode-globally): Don't assume mode is on
4850         minor-mode-alist, check semantic-minor-mode-alist as well.
4851         (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
4852         (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
4853         (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
4854         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
4855         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
4856         (define-semantic-idle-service, semantic-idle-summary-mode):
4857         * cedet/semantic/decorate/mode.el (semantic-decoration-mode):
4858         Don't call semantic-mode-line-update any more.
4860 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4862         Use define-minor-mode in CEDET where applicable.
4864         * cedet/srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
4865         Use define-minor-mode.
4867         * cedet/semantic/util-modes.el (semantic-add-minor-mode):
4868         Remove unused arg `keymap' and code redundant with define-minor-mode.
4869         (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
4870         (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
4871         (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
4872         (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
4873         (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
4874         (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
4875         Use define-minor-mode.
4876         (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
4877         (semantic-show-unmatched-syntax-mode-setup)
4878         (semantic-show-parser-state-mode-setup)
4879         (semantic-highlight-func-mode-setup): Inline into sole caller.
4881         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
4882         (semantic-mru-bookmark-mode): Use define-minor-mode.
4883         (semantic-mru-bookmark-mode-setup): Inline into sole caller.
4885         * cedet/semantic/idle.el (define-semantic-idle-service):
4886         Use define-minor-mode and inline setup function into its sole caller.
4887         (semantic-idle-scheduler-mode-setup)
4888         (semantic-idle-summary-mode-setup): Inline into sole caller.
4889         (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
4890         Use define-minor-mode.
4892         * cedet/semantic/decorate/mode.el (global-semantic-decoration-mode)
4893         (semantic-decoration-mode): Use define-minor-mode.
4894         (semantic-decoration-mode-setup): Inline into sole caller.
4896         * cedet/ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
4897         (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
4898         (ede-dired-add-to-target): Use dolist.
4900 2010-05-01  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
4901             Michael Albinus  <michael.albinus@gmx.de>
4903         Implement compression for inline methods.
4905         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
4906         (tramp-copy-size-limit): Allow also nil.
4907         (tramp-inline-compress-commands): New defconst.
4908         (tramp-find-inline-compress, tramp-get-inline-compress)
4909         (tramp-get-inline-coding): New defuns.
4910         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
4911         replaced by `tramp-get-inline-coding'.
4912         (tramp-handle-file-local-copy, tramp-handle-write-region)
4913         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
4915 2010-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4917         * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
4918         Remove unused functions.
4920         * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
4921         Set find-tag-default-function as a variable rather than a property.
4923         * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
4924         * progmodes/etags.el (tags-completion-at-point-function):
4925         Remove left over interactive spec.  Add autoloading stub.
4926         (complete-tag): Use tags-completion-at-point-function.
4928 2010-04-30  Chong Yidong  <cyd@stupidchicken.com>
4930         * minibuffer.el (tags-completion-at-point-function): Fix return value.
4932 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
4934         * ido.el (ido-init-completion-maps): Remove C-v binding.
4935         (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
4937 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
4939         * minibuffer.el (tags-completion-at-point-function): New function.
4940         (completion-at-point-functions): Use it.
4942         * cedet/semantic.el (semantic-completion-at-point-function):
4943         New function.
4944         (semantic-mode): Use semantic-completion-at-point-function for
4945         completion-at-point-functions instead.
4947         * progmodes/etags.el (complete-tag): Revert last change.
4949 2010-04-29  Alan Mackenzie  <acm@muc.de>
4951         * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
4952         off-by-one error (in end of macro position).
4954 2010-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4956         * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
4957         firefox is absent.  Don't autoload.
4958         (browse-url-galeon-program): Don't autoload.
4960 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
4962         * bindings.el (complete-symbol): Move into minibuffer.el.
4964         * minibuffer.el (complete-tag): Move from etags.el.  If tags
4965         completion cannot be performed, return nil instead of signalling
4966         an error.
4967         (completion-at-point): Make it an alias for complete-symbol.
4968         (complete-symbol): Move from bindings.el, and replace with the
4969         body of completion-at-point.
4971         * progmodes/etags.el (complete-tag): Move to minibuffer.el.
4973         * cedet/semantic.el (semantic-mode): When enabled, add
4974         semantic-ia-complete-symbol to completion-at-point-functions.
4976         * cedet/semantic/ia.el (semantic-ia-complete-symbol): Return nil
4977         if Semantic is not active.
4979 2010-04-28  Michael Albinus  <michael.albinus@gmx.de>
4981         * net/tramp.el (tramp-remote-selinux-p): New defun.
4982         (tramp-handle-file-selinux-context)
4983         (tramp-handle-set-file-selinux-context): Use it.
4985 2010-04-28  Sam Steingold  <sds@gnu.org>
4987         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
4988         `safe-local-variable' if the value is a string or a symbol with
4989         the property `bug-reference-url-format'.
4991 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
4993         * progmodes/bug-reference.el (bug-reference-url-format):
4994         Revert 2010-04-27 change due to security risk.
4996 2010-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4998         Make it possible to locally disable a globally enabled mode.
4999         * simple.el (fundamental-mode): Run fundamental-mode-hook.
5000         * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
5001         rather than kill-all-local-variables so it runs fundamental-mode-hook.
5002         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
5003         Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
5004         that subsequent hooks get a chance to disable it.
5006 2010-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5008         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
5009         Avoid re-enabling a minor mode after the user turned the minor mode
5010         off if MODE-enable-in-buffers is run twice (typically once from
5011         fundamental-mode's after-change-major-mode-hook and a second time from
5012         run-mode-hook's own after-change-major-mode-hook).
5014         * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
5016 2010-04-27  Sam Steingold  <sds@gnu.org>
5018         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
5019         `safe-local-variable' if the value is a string or a function, as
5020         documented and implemented on 2010-04-02.
5022 2010-04-27  Juanma Barranquero  <lekktu@gmail.com>
5024         * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
5025         when method is 'kill.
5027 2010-04-27  Agustín Martín  <agustin.martin@hispalinux.es>
5029         * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
5030         condition in default directory check.
5031         (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
5032         Kill ispell process when killing its associated buffer.
5034 2010-04-27  Jan Djärv  <jan.h.d@swipnet.se>
5036         * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
5037         but we aren't using it.
5039 2010-04-25  Jan Djärv  <jan.h.d@swipnet.se>
5041         * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
5042         checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
5044 2010-04-24  Glenn Morris  <rgm@gnu.org>
5046         * emacs-lisp/authors.el (authors-obsolete-files-regexps):
5047         Ignore VCS-ignore files, and deleted nextstep preferences files.
5048         (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
5049         (authors-ambiguous-files): New list.
5050         (authors-valid-file-names): Add some deleted files.
5051         (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
5052         (authors-disambiguate-file-name): New function.  (Bug#5501)
5053         (authors-canonical-file-name): Doc fix.
5054         Don't warn about obsolete files.
5055         (authors-canonical-file-name, authors-scan-el):
5056         Use authors-disambiguate-file-name.
5058         * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
5059         Add autoload cookies.
5060         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
5061         (generated-autoload-file): Set file-local value to "htmlfontify.el".
5062         * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
5063         They have definitions / compiler macros in cl.el.
5064         (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
5065         Replace manual autoloads with generated ones.
5066         (htmlfontify-unload-rgb-file): Remove autoload.
5067         * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
5069 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5071         * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
5072         (byte-compile-setq-default): Optimize for the
5073         single-var case and don't call byte-compile-form in this case to avoid
5074         inf-loop with byte-compile-set-default.
5076         * progmodes/compile.el (compilation-start): Abbreviate default directory.
5078 2010-04-23  Michael Albinus  <michael.albinus@gmx.de>
5080         Implement SELINUX backends.
5082         * net/tramp.el (tramp-file-name-handler-alist):
5083         Add `file-selinux-context' and `set-file-selinux-context'.
5084         (tramp-handle-file-selinux-context)
5085         (tramp-handle-set-file-selinux-context): New defuns.
5086         (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
5087         Handle PRESERVE-SELINUX-CONTEXT.
5089         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
5090         Add `file-selinux-context' and `set-file-selinux-context'.
5091         (tramp-gvfs-handle-file-selinux-context)
5092         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
5093         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
5095         * net/ange-ftp.el (ange-ftp-copy-file):
5096         * net/tramp-fish.el (tramp-fish-handle-copy-file):
5097         * net/tramp-imap.el (tramp-imap-handle-copy-file):
5098         * net/tramp-smb.el (tramp-smb-handle-copy-file):
5099         Add PRESERVE-SELINUX-CONTEXT.
5101 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
5103         Synchronize with Tramp repository.
5105         * net/tramp.el (with-connection-property, tramp-completion-mode-p)
5106         (tramp-action-process-alive, tramp-action-out-of-band)
5107         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
5108         (tramp-exists-file-name-handler): Fix docstring.
5109         (with-progress-reporter): New defmacro.
5110         (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
5111         (tramp-maybe-open-connection): Use it.
5113 2010-04-22  Noah Lavine  <noah549@gmail.com>  (tiny change)
5115         Detect ssh 'ControlMaster' argument automatically in some cases.
5117         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
5118         (tramp-default-method): Use it.
5120 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
5122         * net/tramp.el (tramp-handle-copy-file): Add new optional
5123         parameter `preserve-selinux-context'.
5124         (tramp-file-name-for-operation): Add `set-file-selinux-context'.
5126 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
5128         * net/tramp.el (tramp-completion-handle-file-name-all-completions):
5129         Ensure, that non remote files are still checked.  Oops.
5131 2010-04-21  Michael Albinus  <michael.albinus@gmx.de>
5133         Fix Bug#5840.
5135         * icomplete.el (icomplete-completions): Use `non-essential'.
5137         * net/tramp.el (tramp-connectable-p): New defun.
5138         (tramp-handle-expand-file-name)
5139         (tramp-completion-handle-file-name-all-completions)
5140         (tramp-completion-handle-file-name-completion): Use it.
5142 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5144         * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
5146 2010-04-21  Jan Djärv  <jan.h.d@swipnet.se>
5148         * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
5150         * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
5152         * loadup.el: Load dynamic-setting.el if feature dynamic-setting
5153         is present.
5155         * info.el (info-tool-bar-map): Add labels.
5157         * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
5159         * cus-edit.el (custom-commands): Add labels for tool bar.
5160         (custom-buffer-create-internal, Custom-mode): Adjust for
5161         labels in custom-commands.
5163         * dynamic-setting.el: Renamed from font-setting.el.
5165 2010-04-21  John Wiegley  <jwiegley@gmail.com>
5167         * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
5168         toggles the use of virtual buffers.
5169         (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
5170         (ido-toggle-virtual-buffers): New function.
5172 2010-04-21  Juanma Barranquero  <lekktu@gmail.com>
5174         Use `define-derived-mode'; fix window selection; doc fixes.
5175         * play/tetris.el (tetris, tetris-update-speed-function)
5176         (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
5177         (tetris-move-left, tetris-move-right, tetris-rotate-prev)
5178         (tetris-rotate-next, tetris-end-game, tetris-start-game)
5179         (tetris-pause-game): Fix typos in docstrings.
5180         (tetris-mode-map, tetris-null-map):
5181         Move initialization into declaration.
5182         (tetris-mode): Define with `define-derived-mode';
5183         set show-trailing-whitespace to nil.
5184         (tetris): Prefer window already displaying the "*Tetris*" buffer.
5186 2010-04-21  Karel Klíč  <kklic@redhat.com>
5188         * files.el (backup-buffer): Handle SELinux context, and return it
5189         if a backup was made by renaming.
5190         (backup-buffer-copy): Set SELinux context to the target file.
5191         (basic-save-buffer): Set SELinux context of the newly written file.
5192         (basic-save-buffer-1): Now it also returns any SELinux context.
5193         (basic-save-buffer-2): Set SELinux context of the newly created file,
5194         and return it.
5195         * net/tramp.el (tramp-file-name-for-operation):
5196         Add file-selinux-context.
5198 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5200         Make the log-edit comments use RFC822 format throughout.
5202         * vc.el (vc-checkin, vc-modify-change-comment):
5203         Adjust to new vc-start/finish-logentry.
5204         (vc-find-conflicted-file): New command.
5205         (vc-transfer-file): Adjust to new vc-checkin.
5206         (vc-next-action): Improve scoping.
5208         * vc-hg.el (vc-hg-log-edit-mode): Remove.
5209         (vc-hg-checkin): Remove extra arg.  Use log-edit-extract-headers.
5211         * vc-git.el (vc-git-log-edit-mode): Remove.
5212         (vc-git-checkin): Remove extra arg.  Use log-edit-extract-headers.
5213         (vc-git-commits-coding-system): Rename from git-commits-coding-system.
5215         * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
5216         (vc-start-logentry): Remove argument `extra'.
5217         (vc-finish-logentry): Remove extra args.
5219         * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
5220         (vc-bzr-checkin): Remove extra arg.  Use log-edit-extract-headers.
5221         (vc-bzr-conflicted-files): New function.
5223         * log-edit.el (log-edit-extra-flags)
5224         (log-edit-before-checkin-process): Remove.
5225         (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
5226         (log-edit-headers-alist): New var.
5227         (log-edit-header-contents-regexp): New const.
5228         (log-edit-match-to-eoh): New function.
5229         (log-edit-font-lock-keywords): Use them.
5230         (log-edit): Insert a "Summary:" header as default.
5231         (log-edit-mode): Mark font-lock rules as case-insensitive.
5232         (log-edit-done): Cleanup headers.
5233         (log-view-process-buffer): Remove.
5234         (log-edit-extract-headers): New function to replace it.
5236 2010-04-20  Juanma Barranquero  <lekktu@gmail.com>
5238         * subr.el (default-direction-reversed): Remove obsolescence info.
5240 2010-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5242         * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
5243         windows/frames.
5245         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
5246         I.e. include text after point in the completion region.
5247         Also, return nil when we're not after/in a symbol.
5249         * international/mule-cmds.el (view-hello-file): Don't fiddle with the
5250         default enable-multibyte-characters.
5252 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5254         * international/mule.el: Help the user choose a valid coding-system.
5255         (read-buffer-file-coding-system): New function.
5256         (set-buffer-file-coding-system): Use it.  Prompt the user if the
5257         coding-system cannot encode all the chars.
5259         * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
5260         (vc-bzr-shelve-show, vc-bzr-shelve-apply)
5261         (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
5262         Don't use *vc-bzr-shelve*.
5264 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
5266         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables):
5267         Don't destroy list before using it.
5269 2010-04-19  Dan Nicolaescu  <dann@ics.uci.edu>
5271         Fix the version number for added files.
5272         * vc-hg.el (vc-hg-working-revision): Check if the file is
5273         registered after hg parent fails (Bug#5961).
5275 2010-04-19  Glenn Morris  <rgm@gnu.org>
5277         * htmlfontify.el (htmlfontify-buffer)
5278         (htmlfontify-copy-and-link-dir): Autoload entry points.
5280 2010-04-19  Magnus Henoch  <magnus.henoch@gmail.com>
5282         * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
5283         name relative to the project root (Bug#5960).
5285 2010-04-19  Glenn Morris  <rgm@gnu.org>
5287         * vc-git.el (vc-git-print-log): Doc fix.
5289 2010-04-19  Óscar Fuentes  <ofv@wanadoo.es>
5291         * ido.el (ido-file-internal): Fix 2009-12-02 change.
5293 2010-04-19  Christoph  <cschol2112@googlemail.com>  (tiny change)
5295         * progmodes/grep.el (grep-compute-defaults): Fix handling of host
5296         default settings (Bug#5928).
5298 2010-04-19  Glenn Morris  <rgm@gnu.org>
5300         * progmodes/fortran.el (fortran-match-and-skip-declaration):
5301         New function.
5302         (fortran-font-lock-keywords-3): Use it.  (Bug#1385)
5304 2010-04-19  Kenichi Handa  <handa@m17n.org>
5306         * language/indian.el (malayalam-composable-pattern): Fix previous
5307         change (add U+0D4D "SIGN VIRAMA").
5308         (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
5309         (tamil-composable-pattern): Fix typo in the regexp.
5310         (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
5311         (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
5312         (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
5314 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
5316         * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
5317         paragraph-separate (Bug#5821).
5319 2010-04-19  Juri Linkov  <juri@jurta.org>
5321         Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
5323         * info.el (Info-find-node-2): Comment out code that skips
5324         breadcrumbs line.
5325         (Info-mouse-follow-link): New command.
5326         (Info-link-keymap): New keymap.
5327         (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
5328         Return a string with links instead of inserting breadcrumbs
5329         to the Info buffer.
5330         (Info-fontify-node): Comment out code that inserts breadcrumbs.
5331         Instead of putting the `invisible' text property over the Info
5332         header, make an overlay over the Info header with the `invisible'
5333         property and `after-string' set to the string returned by
5334         `Info-breadcrumbs'.
5336 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
5338         * help.el (help-window-setup-finish): Doc fix (Bug#5830).
5339         Reported by monkey@sandpframing.com.
5341 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5343         * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
5344         (tmm-get-keymap): Add key-binding shortcuts now that they're not
5345         available in the "keyseq cache" any more.
5347         * custom.el (defcustom): Add edebug spec.
5349 2010-04-18  Juri Linkov  <juri@jurta.org>
5351         Test for special mode-class in view-buffer instead of view-file (bug#5513).
5353         * view.el (view-file, view-buffer): Move test for special mode-class
5354         from view-file to view-buffer.
5356         * tar-mode.el (tar-extract): Turn if's into one cond
5357         like in arc-mode.el.
5359 2010-04-18  Juri Linkov  <juri@jurta.org>
5361         Add 7z archive format support (bug#5475).
5363         * arc-mode.el (archive-zip-extract): Try to find 7z executable.
5364         (archive-7z-extract): New defcustom.
5365         (archive-find-type): Add magic string for 7z.
5366         (archive-extract-by-stdout): Add new optional arg `stderr-file'.
5367         If `stderr-file' is non-nil, use `(t stderr-file)' for the
5368         `buffer' arg of `call-process'.
5369         (archive-zip-extract): Check `archive-zip-extract' for "7z" and
5370         call the function `archive-7z-extract' with the variable
5371         `archive-7z-extract' let-bound to `archive-zip-extract'.
5372         (archive-7z-summarize, archive-7z-extract): New functions.
5374         * international/mule.el (auto-coding-alist):
5375         * files.el (auto-mode-alist): Add 7z file extension.
5377 2010-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5379         * loadup.el: Setup hash-cons for pure data.
5381         Fix duplicate entries in cedet's loaddefs.el files.
5382         * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
5383         Should make most file-local generated-autoload-file unnecessary.
5384         (print-readably): Silence warnings.
5385         (autoload-find-destination): Take load-name as an arg to make sure
5386         it's the same as the one that will be in the file.
5387         (autoload-generate-file-autoloads): Adjust to above changes.
5388         Try to make the dataflow a bit simpler.
5390         * cvs-status.el (cvs-refontify): Remove unused.
5392 2010-04-18  Jay Belanger  <jay.p.belanger@gmail.com>
5394         * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
5396         * calc-bin.el (calc-radix): Have the "O" option turn on
5397         twos-complement mode.
5399 2010-04-17  Jay Belanger  <jay.p.belanger@gmail.com>
5401         * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
5402         Add `calc-option-prefix-help' to calc-help autoloads.
5403         (calc-inverse): Add "Option" to message, as appropriate.
5404         (calc-hyperbolic): Add "Option" to message, as appropriate.
5405         (calc-option, calc-is-option): New functions.
5407         * calc-help.el (calc-full-help): Add `calc-option-help'.
5408         (calc-option-prefix-help): New function.
5410         * calc-misc.el (calc-help): Add "Option" entry.
5412         * calc.el (calc-local-var-list): Add `calc-option-flag'.
5413         (calc-option-flag): New variable.
5414         (calc-do): Set `calc-option-flag to nil.
5415         (calc-set-mode-line): Add "Opt " as appropriate.
5417 2010-04-16  Juri Linkov  <juri@jurta.org>
5419         Move scrolling commands from simple.el to window.el
5420         because their primitives are implemented in window.c.
5422         * simple.el (scroll-error-top-bottom)
5423         (scroll-up-command, scroll-down-command, scroll-up-line)
5424         (scroll-down-line, scroll-other-window-down)
5425         (beginning-of-buffer-other-window, end-of-buffer-other-window):
5426         * window.el (scroll-error-top-bottom)
5427         (scroll-up-command, scroll-down-command, scroll-up-line)
5428         (scroll-down-line, scroll-other-window-down)
5429         (beginning-of-buffer-other-window, end-of-buffer-other-window):
5430         Move from simple.el to window.el because their primitives are
5431         implemented in window.c.
5433 2010-04-16  Juri Linkov  <juri@jurta.org>
5435         * isearch.el (isearch-lookup-scroll-key): Check both
5436         `isearch-scroll' and `scroll-command' properties.
5437         (scroll-up, scroll-down): Remove `isearch-scroll' property.
5439         * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
5441         * simple.el (scroll-up-command, scroll-down-command)
5442         (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
5444 2010-04-15  Juri Linkov  <juri@jurta.org>
5446         * simple.el (scroll-up-command, scroll-down-command)
5447         (scroll-up-line, scroll-down-line): Put `scroll-command'
5448         property on the these symbols.  Remove them from
5449         `scroll-preserve-screen-position-commands'.
5451         * mwheel.el (mwheel-scroll): Put `scroll-command' and
5452         `isearch-scroll' properties on the `mwheel-scroll' symbol.
5453         Remove it from `scroll-preserve-screen-position-commands'.
5455         * isearch.el (isearch-allow-scroll): Doc fix.
5457 2010-04-15  Michael Albinus  <michael.albinus@gmx.de>
5459         * net/tramp.el (tramp-error-with-buffer): Don't show the
5460         connection buffer when we are in completion mode.
5461         (tramp-file-name-handler): Catch the error for some operations
5462         when we are in completion mode.  This gives the user the chance to
5463         correct the file name in the minibuffer.
5465 2010-04-15  Glenn Morris  <rgm@gnu.org>
5467         * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
5469 2010-04-15  Juanma Barranquero  <lekktu@gmail.com>
5471         Simplify by using `define-derived-mode'.
5472         * info.el (Info-mode):
5473         * calendar/todo-mode.el (todo-mode):
5474         * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
5475         (gomoku-mode-map): Move initialization into declaration.
5477 2010-04-14  Michael Albinus  <michael.albinus@gmx.de>
5479         Fix Bug#5840.
5480         * ido.el (ido-file-name-all-completions-1):
5481         * minibuffer.el (minibuffer-completion-help):
5482         * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
5484 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5486         * simple.el (non-essential): New var.
5488         Add a new field `location' to bookmarks for non-file bookmarks.
5489         * bookmark.el (bookmark-location): Use the new field, if present.
5490         (bookmark-insert-location): Undo last change, not needed any more.
5491         * man.el (Man-bookmark-make-record):
5492         * woman.el (woman-bookmark-make-record): Add `location' field.
5494 2010-04-14  Juri Linkov  <juri@jurta.org>
5496         * simple.el (scroll-error-top-bottom): New defcustom.
5497         (scroll-up-command, scroll-down-command): Use it.  Doc fix.
5499         * emulation/pc-select.el (pc-select-override-scroll-error):
5500         Obsolete in favor of `scroll-error-top-bottom'.
5502 2010-04-14  Juri Linkov  <juri@jurta.org>
5504         * tutorial.el (tutorial--default-keys): Rebind `C-v' to
5505         `scroll-up-command' and `M-v' to `scroll-down-command'.
5507         * emulation/cua-rect.el (cua--init-rectangles):
5508         * forms.el (forms--change-commands):
5509         * image-mode.el (image-mode-map):
5510         Remap scroll-down-command and scroll-up-command
5511         in addition to scroll-down and scroll-up.
5513 2010-04-14  Juri Linkov  <juri@jurta.org>
5515         * mwheel.el (scroll-preserve-screen-position-commands):
5516         Add mwheel-scroll to this list of commands.
5518         * simple.el (scroll-preserve-screen-position-commands):
5519         Add scroll-up-command, scroll-down-command, scroll-up-line,
5520         scroll-down-line to this list of commands.
5522 2010-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5524         * obsolete/complete.el: Move from lisp/complete.el.
5526         * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
5528         * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
5529         to the minor mode function now turns the mode ON unconditionally.
5531 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5533         * vc-dir.el (vc-dir-kill-line): New command.
5534         (vc-dir-mode-map): Bind it to C-k.
5536         * bookmark.el (bookmark-insert-location): Handle a nil filename.
5538         * woman.el: Add bookmark declarations to silence the compiler.
5539         (bookmark-prop-get): Use `man-args' rather than `filename' as a first
5540         step to compatibility between man and woman bookmarks.
5541         Adjust for Man-default-bookmark-title renaming.
5542         (woman-bookmark-jump): Adjust accordingly.  Don't forget to autoload.
5544         * man.el: Add bookmark declarations to silence the compiler.
5545         (Man-name-local-regexp): Make it match NAME as well.
5546         (Man-getpage-in-background): Return the buffer.
5547         (Man-notify-when-ready): Use `case'.
5548         (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
5549         Don't hardcode "NAME".  Simplify.
5550         (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
5551         Rename from Man-bookmark-make-record.
5552         (Man-bookmark-jump): Rename from man-bookmark-jump.  Simplify now that
5553         we have the actual man-args.  Use Man-getpage-in-background rather
5554         than `man' since the arg is already processed.  Let bookmark.el do the
5555         window handling.  Only wait for the relevant process.
5556         Don't forget to autoload.
5558         * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
5560 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5562         * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
5563         New functions.
5564         (woman-mode): Setup bookmark support.
5566         * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
5567         (man-bookmark-jump): New functions.
5568         (Man-mode): Setup bookmark support.
5570 2010-04-10  Jari Aalto  <jari.aalto@cante.net>
5572         * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
5573         recognize ssh-keygen prompt (Bug#2817).
5575 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
5577         * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
5579 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
5581         Synchronize with Tramp repository.
5583         * net/tramp.el (tramp-completion-function-alist)
5584         (tramp-file-name-regexp, tramp-chunksize)
5585         (tramp-local-coding-commands, tramp-remote-coding-commands):
5586         Fix docstring.
5587         (tramp-remote-process-environment): Use `format' instead of `concat'.
5588         (tramp-handle-directory-files-and-attributes)
5589         (tramp-get-remote-path): Use `copy-tree'.
5590         (tramp-handle-file-name-all-completions): Backward/ XEmacs
5591         compatibility: Use `completion-ignore-case' if
5592         `read-file-name-completion-ignore-case' does not exist.
5593         (tramp-do-copy-or-rename-file-directly): Do not use
5594         `tramp-handle-file-remote-p'.
5595         (tramp-do-copy-or-rename-file-out-of-band):
5596         Use `tramp-compat-delete-directory'.
5597         (tramp-do-copy-or-rename-file-out-of-band)
5598         (tramp-compute-multi-hops, tramp-maybe-open-connection):
5599         Use `format-spec-make'.
5600         (tramp-find-foreign-file-name-handler)
5601         (tramp-advice-make-auto-save-file-name)
5602         (tramp-set-auto-save-file-modes): Remove superfluous check for
5603         `stringp'.  This is done inside `tramp-tramp-file-p'.
5604         (tramp-debug-outline-regexp): New defconst.
5605         (tramp-get-debug-buffer): Use it.
5606         (tramp-check-for-regexp): Use (forward-line 1).
5607         (tramp-set-auto-save-file-modes): Adapt version check.
5609         * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
5610         Wrap call of `featurep' for 2nd argument.
5611         (tramp-compat-make-temp-file): Simplify fallback implementation.
5612         (tramp-compat-copy-tree): Remove function.
5613         (tramp-compat-delete-directory): Provide implementation for older
5614         Emacsen.
5616         * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
5617         Do not use `tramp-fish-handle-file-attributes.
5619         * net/trampver.el: Update release number.
5621 2010-04-10  Glenn Morris  <rgm@gnu.org>
5623         * progmodes/compile.el (compilation-save-buffers-predicate):
5624         Add missing :version tag.
5626 2010-04-09  Sam Steingold  <sds@gnu.org>
5628         * progmodes/compile.el (compilation-save-buffers-predicate):
5629         Remove the "autoload" cookie.
5631         * progmodes/bug-reference.el (turn-on-bug-reference-mode)
5632         (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
5633         and `bug-reference-prog-mode' can be used in hooks directly.
5635 2010-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
5637         Add --author support to git commit.
5638         * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
5639         (vc-git-log-edit-mode): New minor mode.
5640         (log-edit-mode, log-edit-extra-flags, log-edit-mode):
5641         New declarations.
5643 2010-04-09  Eric Raymond  <esr@snark.thyrsus.com>
5645         * vc-hooks.el, vc-git.el: Improve documentation comments.
5647 2010-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5649         Fix some of the problems in defsubst* (bug#5728).
5650         * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
5651         (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
5653 2010-04-07  Sam Steingold  <sds@gnu.org>
5655         * progmodes/compile.el (compilation-save-buffers-predicate):
5656         New custom variable.
5657         (compile, recompile): Pass it to `save-some-buffers'.
5659 2010-04-07  Jan Djärv  <jan.h.d@swipnet.se>
5661         * wid-edit.el (widget-choose): Move cursor to the second line of
5662         the buffer (Bug#5695).
5664 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
5666         Add new VC methods: vc-log-incoming and vc-log-outgoing.
5667         * vc.el (vc-print-log-setup-buttons): New function split out from
5668         vc-print-log-internal.
5669         (vc-log-internal-common): New function, a parametrized version of
5670         vc-print-log-internal.
5671         (vc-print-log-internal): Just call vc-log-internal-common with the
5672         right arguments.
5673         (vc-incoming-outgoing-internal):
5674         (vc-log-incoming, vc-log-outgoing): New functions.
5675         (vc-log-view-type): New permanent local variable.
5677         * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
5679         * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
5680         of the dynamic bound vc-short-log.
5681         (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
5683         * vc-git.el (vc-git-log-outgoing): New function.
5684         (vc-git-log-view-mode): Use vc-log-view-type instead
5685         of the dynamic bound vc-short-log.
5687         * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
5688         of the dynamic bound vc-short-log.  Highlight the tag.
5689         (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
5690         (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
5691         (vc-hg-incoming-mode): Remove.
5692         (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
5694 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
5696         Fix default-directory for vc-root-diff.
5697         * vc.el (vc-root-diff): Bind default-directory to the root
5698         directory for the diff command.
5700 2010-04-07  Michael McNamara  <mac@mail.brushroad.com>
5702         * progmodes/verilog-mode.el (verilog-forward-sexp):
5703         (verilog-calc-1): Support "disable fork" and "fork wait" multi
5704         word keywords, suggested by Steve Pearlmutter.
5705         (verilog-pretty-declarations): Support lineup of declarations in
5706         port lists.
5707         (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
5708         fix bug for /* / comments.
5709         (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
5710         Speed up and simplfy as this is never called with a bound.
5711         (verilog-pretty-declarations): Enhance to line up declarations
5712         inside a parameter list, suggested by Alan Morgan.
5713         (verilog-pretty-expr): Tune assignment regular expression match
5714         string for corner cases; also use markers instead of character
5715         number as indent changes the later.
5717 2010-04-07  Wilson Snyder  <wsnyder@wsnyder.org>
5719         * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
5720         as missing keyword.
5721         (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
5722         causing truncation of AUTOWIRE signals.  Reported by Bruce Tennant.
5723         (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
5724         AUTO_TEMPLATEs needing multiple array bits.  Suggested by Bruce
5725         Tennant.
5726         (verilog-keywords):
5727         (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
5728         1800-2009 keywords, including "global.".
5730 2010-04-06  John Wiegley  <jwiegley@gmail.com>
5732         * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
5733         appearing in buffer list (if a live buffer name matched a recentf
5734         file basename).  Should use uniquify to offer a real solution.
5736 2010-04-06  John Wiegley  <jwiegley@gmail.com>
5738         * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
5739         comment to code, and add a :version tag.
5740         (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
5742 2010-04-06  Juanma Barranquero  <lekktu@gmail.com>
5744         Enable recentf-mode if using virtual buffers.
5745         * ido.el (recentf-list): Declare for byte-compiler.
5746         (ido-virtual-buffers): Move up to silence byte-compiler.  Add docstring.
5747         (ido-make-buffer-list): Simplify.
5748         (ido-add-virtual-buffers-to-list): Simplify.  Enable recentf-mode.
5750 2010-04-05  Juri Linkov  <juri@jurta.org>
5752         Scrolling commands which scroll a line instead of full screen.
5753         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
5755         * simple.el (scroll-up-line, scroll-down-line): New commands.
5756         Put property isearch-scroll=t on them.
5758         * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
5759         Remove commands.
5761 2010-04-05  Juri Linkov  <juri@jurta.org>
5763         Scrolling commands which do not signal errors at top/bottom.
5764         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
5766         * simple.el (scroll-up-command, scroll-down-command): New commands.
5767         Put property isearch-scroll=t on them.
5769         * bindings.el (global-map): Rebind [prior] from `scroll-down' to
5770         `scroll-down-command' and [next] from `scroll-up' to
5771         `scroll-up-command'.
5773         * emulation/cua-base.el: Put property CUA=move on
5774         `scroll-up-command' and `scroll-down-command'.
5775         (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
5776         and `scroll-down-command' to `cua-scroll-down'.
5778 2010-04-05  Juanma Barranquero  <lekktu@gmail.com>
5780         * help.el (describe-mode): Return nil.
5782 2010-04-04  John Wiegley  <jwiegley@gmail.com>
5784         * ido.el (ido-use-virtual-buffers): New variable to indicate
5785         whether "virtual buffer" support is enabled for IDO.
5786         (ido-virtual): Face used to indicate virtual buffers in the list.
5787         (ido-buffer-internal): If a buffer is chosen, and no such buffer
5788         exists, but a virtual buffer of that name does (which would be why
5789         it was in the list), recreate the buffer by reopening the file.
5790         (ido-make-buffer-list): If virtual buffers are being used, call
5791         `ido-add-virtual-buffers-to-list' before the make list hook.
5792         (ido-virtual-buffers): New variable which contains a copy of the
5793         current contents of the `recentf-list', albeit pared down for the
5794         sake of speed, and with proper faces applied.
5795         (ido-add-virtual-buffers-to-list): Using the `recentf-list',
5796         create a list of "virtual buffers" to present to the user in
5797         addition to the currently open set.  Note that this logic could
5798         get rather slow if that list is too large.  With the default
5799         `recentf-max-saved-items' of 200, there is little speed penalty.
5801 2010-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5803         * font-lock.el: Require CL when compiling.
5804         (font-lock-turn-on-thing-lock): Use `case'.
5806 2010-04-03  Eli Zaretskii  <eliz@gnu.org>
5808         * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
5809         Zaretskii.
5811 2010-04-02  Juanma Barranquero  <lekktu@gmail.com>
5813         * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
5814         (semantic-create-imenu-directory-index): Fix typos in docstrings.
5815         (semantic-imenu-goto-function): Reflow docstring.
5817 2010-04-02  Juri Linkov  <juri@jurta.org>
5819         * ehelp.el (electric-help-orig-major-mode):
5820         New buffer-local variable.
5821         (electric-help-mode): Set it to original major-mode.  Doc fix.
5822         (with-electric-help): Use `electric-help-orig-major-mode' instead
5823         of (default-value 'major-mode).  Doc fix.
5824         http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
5826 2010-04-02  Sam Steingold  <sds@gnu.org>
5828         * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
5829         `vc-hg-command' with a list of flags.
5831         * progmodes/bug-reference.el (bug-reference-bug-regexp):
5832         Also accept "patch" and "RFE".
5833         (bug-reference-fontify): `bug-reference-url-format' can also be a
5834         function to be able to handle the bug kind.
5835         (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
5837 2010-04-02  Jan Djärv  <jan.h.d@swipnet.se>
5839         * tmm.el (tmm-get-keymap): Check with symbolp before passing
5840         value to fboundp, it may not be a symbol.
5842 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
5844         * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
5846 2010-03-31  Juri Linkov  <juri@jurta.org>
5848         * simple.el (next-line, previous-line): Re-throw a signal
5849         with `signal' instead of using `ding'.
5850         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
5852 2010-03-31  Juri Linkov  <juri@jurta.org>
5854         * simple.el (keyboard-escape-quit): Raise deselecting the active
5855         region higher than exiting the minibuffer.
5856         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
5858 2010-03-31  Juri Linkov  <juri@jurta.org>
5860         * image.el (image-animated-p): Use `image-metadata' instead of
5861         `image-extension-data'.  Get GIF extenstion data from metadata
5862         property `extension-data'.
5864 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5866         * simple.el (append-to-buffer): Simplify.
5868 2010-03-31  Tomas Abrahamsson  <tab@lysator.liu.se>
5870         * textmodes/artist.el (artist-mode): Fix typo in docstring.
5871         Reported by Alex Schröder <kensanata@gmail.com>.  (Bug#5807)
5873 2010-03-31  Kenichi Handa  <handa@m17n.org>
5875         * language/sinhala.el (composition-function-table): Fix regexp for
5876         the new Unicode specification.
5878         * language/indian.el (devanagari-composable-pattern)
5879         (tamil-composable-pattern, kannada-composable-pattern)
5880         (malayalam-composable-pattern): Adjust for the new Unicode
5881         specification.
5882         (bengali-composable-pattern, gurmukhi-composable-pattern)
5883         (gujarati-composable-pattern, oriya-composable-pattern)
5884         (telugu-composable-pattern): New variables to cope with the new
5885         Unicode specification.  Use them in composition-function-table.
5887 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5889         Make tmm-menubar work for the Buffers menu again (bug#5726).
5890         * tmm.el (tmm-prompt): Also handle keymap entries in the form of
5891         vectors rather than cons cells, as used in menu-bar-update-buffers.
5893 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
5895         * progmodes/js.el (js-auto-indent-flag, js-mode-map)
5896         (js-insert-and-indent): Revert 2009-08-15 change, restoring
5897         electric punctuation for "{}();,:" (Bug#5586).
5899         * mail/sendmail.el (mail-default-directory): Doc fix.
5901 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
5903         * mail/sendmail.el (mail-default-directory): Doc fix.
5905 2010-03-31  Eli Zaretskii  <eliz@gnu.org>
5907         * subr.el (version-regexp-alist, version-to-list)
5908         (version-list-<, version-list-=, version-list-<=)
5909         (version-list-not-zero, version<, version<=, version=): Doc fix.
5910         (Bug#5744).
5912 2010-02-31  Dan Nicolaescu  <dann@ics.uci.edu>
5914         * vc.el (vc-root-diff): Doc fix.
5916 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
5918         * vc.el (vc-print-log, vc-print-root-log): Doc fix.
5920         * simple.el (append-to-buffer): Fix last change.
5922 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
5924         * simple.el (append-to-buffer): Ensure that point is preserved if
5925         BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
5926         (Bug#5749)
5928 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5930         * files.el (auto-mode-case-fold): Change default to t.
5932 2010-03-30  Juri Linkov  <juri@jurta.org>
5934         * dired-x.el (dired-omit-mode): Doc fix.
5936 2010-03-30  Juri Linkov  <juri@jurta.org>
5938         * replace.el (occur-accumulate-lines): Move occur-engine related
5939         functions `occur-accumulate-lines' and `occur-engine-add-prefix'
5940         to be located after `occur-engine'.
5942 2010-03-30  Juri Linkov  <juri@jurta.org>
5944         Make occur handle multi-line matches cleanly with context.
5945         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
5947         * replace.el (occur-accumulate-lines): Add optional arg `pt'.
5948         (occur-engine): Add local variables `ret', `prev-after-lines',
5949         `prev-lines'.  Use more arguments for `occur-context-lines'.
5950         Set first elem of its returned list to `data', and the second elem
5951         to `prev-after-lines'.  Don't print the separator line.
5952         In the end, print remaining context after-lines.
5953         (occur-context-lines): Add new arguments `begpt', `endpt',
5954         `lines', `prev-lines', `prev-after-lines'.  Rewrite to combine
5955         after-lines of the previous match with before-lines of the
5956         current match and not overlap them.  Return a list with two
5957         values: the output line and the list of context after-lines.
5959 2010-03-30  Juri Linkov  <juri@jurta.org>
5961         * replace.el (occur-accumulate-lines): Fix a bug where the first
5962         context line at the beginning of the buffer was missing.
5964 2010-03-30  Eli Zaretskii  <eliz@gnu.org>
5966         * files.el: Make bidi-display-reordering safe variable for boolean
5967         values.
5969 2010-03-29  Phil Hagelberg  <phil@evri.com>
5970             Chong Yidong  <cyd@stupidchicken.com>
5972         * subr.el: Extend progress reporters to perform "spinning".
5973         (progress-reporter-update, progress-reporter-do-update):
5974         Handle non-numeric value arguments.
5975         (progress-reporter--pulse-characters): New var.
5977 2010-03-28  Chong Yidong  <cyd@stupidchicken.com>
5979         * progmodes/compile.el (compilation-start): Fix regexp detection
5980         of initial cd command (Bug#5771).
5982 2010-03-28  Stefan Guath  <stefan@automata.se>  (tiny change)
5984         * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
5986 2010-03-27  Nick Roberts  <nickrob@snap.net.nz>
5988         Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
5989         * lisp/progmodes/gdb-mi.el: Restore.
5990         * lisp/progmodes/gdb-ui.el: Remove.
5991         * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
5993 2010-03-25  Glenn Morris  <rgm@gnu.org>
5995         * desktop.el (desktop-save-buffer-p): Don't mistakenly include
5996         all dired buffers, even tramp ones.  (Bug#5755)
5998 2010-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6000         Add "union tags" in mpc.el.
6001         * mpc.el: Remove backward compatibility code.
6002         (mpc-browser-tags): Change default.
6003         (mpc--find-memoize-union-tags): New var.
6004         (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
6005         (mpc-cmd-find): Handle the case where the playlist does not exist.
6006         Handle union-tags.
6007         (mpc-cmd-list): Use mpc-cmd-special-tag-p.  Handle union-tags.
6008         (mpc-cmd-add): Use mpc-cmd-flush.
6009         (mpc-tagbrowser-tag-name): New fun.
6010         (mpc-tagbrowser-buf): Use it.
6011         (mpc-songs-refresh): Use cond.  Move to point-min as a fallback.
6013 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6015         Misc cleanup.
6016         * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
6017         Use replace-regexp-in-string.
6018         (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
6019         (makefile-imake-mode-syntax-table): Move init into defvar.
6020         (makefile-mode): Use define-derived-mode.
6022         * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
6023         (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
6024         not be present any more.
6026 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
6028         * faces.el (set-face-attribute): Fix typo in docstring.
6029         (face-valid-attribute-values): Reflow docstring.
6031         * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
6033 2010-03-24  Glenn Morris  <rgm@gnu.org>
6035         * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
6037 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
6039         * indent.el (indent-for-tab-command): Doc fix.
6041 2010-03-24  Alan Mackenzie  <acm@muc.de>
6043         * progmodes/cc-engine.el (c-remove-stale-state-cache):
6044         Fix off-by-one error.  Fixes bug #5747.
6046 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
6048         * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
6049         (image-dired-read-comment): Doc fix.
6051         * json.el (json-object-type, json-array-type, json-key-type)
6052         (json-false, json-null, json-read-number):
6053         * minibuffer.el (completion-in-region-functions):
6054         * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
6055         (cal-tex-cursor-week):
6056         * emacs-lisp/trace.el (trace-function):
6057         * eshell/em-basic.el (eshell/printnl):
6058         * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
6059         (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
6060         * obsolete/levents.el (allocate-event, event-key, event-object)
6061         (event-point, event-process, event-timestamp, event-to-character)
6062         (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
6063         * textmodes/reftex-vars.el (reftex-index-macros-builtin)
6064         (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
6065         (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
6066         (reftex-highlight-selection): Fix typos in docstrings.
6068 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
6070         * minibuffer.el (completion-in-region-functions): Fix docstring typos.
6072 2010-03-24  Glenn Morris  <rgm@gnu.org>
6074         * mail/rmail.el (rmail-highlight-face): Restore option deleted
6075         2008-02-13 without comment; mark it obsolete.
6076         (rmail-highlight-headers): Use rmail-highlight-face once more.
6078 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
6080         * woman.el (woman2-process-escapes): Only consume the newline if
6081         the filler character is on a line by itself (Bug#5729).
6083 2010-03-24  Kenichi Handa  <handa@m17n.org>
6085         * language/indian.el (devanagari-composable-pattern): Add more
6086         consonants.
6088 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
6090         * net/trampver.el: Update release number.
6092 2010-03-24  Glenn Morris  <rgm@gnu.org>
6094         * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
6096 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
6098         * net/tramp.el (tramp-find-executable):
6099         Use `tramp-get-connection-buffer'.  Make the regexp for checking
6100         output of "wc -l" more robust.
6101         (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
6102         (tramp-open-connection-setup-interactive-shell): Remove workaround
6103         for OpenSolaris bug, it is not needed anymore.
6105 2010-03-24  Eric M. Ludlam  <zappo@gnu.org>
6107         * cedet/semantic/imenu.el: New file, from the CEDET repository
6108         (Bug#5412).
6110 2010-03-24  Glenn Morris  <rgm@gnu.org>
6112         * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie.  (Bug#4427)
6114 2010-03-24  Wilson Snyder  <wsnyder@wsnyder.org>
6116         * files.el (auto-mode-alist): Accept more verilog file patterns.
6118 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6120         * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
6122 2010-03-24  Glenn Morris  <rgm@gnu.org>
6124         * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
6125         log-edit-before-checkin-process.
6127         * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
6129         * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
6131         * vc-dispatcher.el (vc-start-logentry): Doc fix.
6132         (log-view-process-buffer, log-edit-extra-flags): Declare.
6134         * log-edit.el (log-edit-before-checkin-process): Doc fix.
6136         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
6137         Consistently check ede-object is bound throughout.
6139         * cedet/ede/project-am.el (ede-shell-run-something): Declare.
6141 2010-03-23  Sam Steingold  <sds@gnu.org>
6143         Fix bug#5620: recalculate all markers on compilation buffer
6144         modifications, not on file modifications.
6145         * progmodes/compile.el (buffer-modtime): New buffer-local variable:
6146         the buffer modification time, for buffers not associated with files.
6147         (compilation-mode): Create it.
6148         (compilation-filter): Update it.
6149         (compilation-next-error-function): Use it instead of
6150         `visited-file-modtime' for timestamp.
6152 2010-03-23  Juri Linkov  <juri@jurta.org>
6154         Implement Occur multi-line matches.
6155         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
6157         * replace.el (occur): Doc fix.
6158         (occur-engine): Set `begpt' to the beginning of the first line.
6159         Set `endpt' to the end of the last match line.  At first, count
6160         line numbers between `origpt' and `begpt'.  Split out code from
6161         `out-line' variable to new let-bindings `match-prefix' and
6162         `match-str'.  In `out-line' add non-numeric prefix to all
6163         non-first lines of multi-line matches.  Finally, count lines
6164         between `begpt' and `endpt' and add to `lines'.
6166 2010-03-23  Juri Linkov  <juri@jurta.org>
6168         * replace.el (occur-accumulate-lines, occur-engine):
6169         Use `occur-engine-line' instead of duplicate code.
6170         (occur-engine-line): New function created from duplicate code
6171         in `occur-accumulate-lines' and `occur-engine'.
6173         * replace.el (occur-engine-line): Add optional arg `keep-props'.
6174         (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
6176 2010-03-23  Juri Linkov  <juri@jurta.org>
6178         * finder.el: Remove TODO tasks.
6180         * info.el (Info-finder-find-node): Add node "all"
6181         with all package info.  Handle a list of multiple keywords
6182         separated by comma.
6183         (info-finder): In interactive use with a prefix argument,
6184         use `completing-read-multiple' to read a list of keywords
6185         separated by comma.
6187 2010-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6189         Add a new completion style `substring'.
6190         * minibuffer.el (completion-basic--pattern): New function.
6191         (completion-basic-try-completion, completion-basic-all-completions):
6192         Use it.
6193         (completion-substring--all-completions)
6194         (completion-substring-try-completion)
6195         (completion-substring-all-completions): New functions.
6196         (completion-styles-alist): New style `substring'.
6198 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6200         Get rid of .elc files after removal of the corresponding .el.
6201         * Makefile.in (compile-clean): New target.
6202         (compile-main): Use it.
6204 2010-03-22  Jan Djärv  <jan.h.d@swipnet.se>
6206         * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
6207         don't do make there.  When compiling with separate object dir, there
6208         is no Makefile there.
6210 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6212         Get rid of the ELCFILES abomination, again.
6213         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
6214         (all, compile): Don't call compile-last.
6215         (compile-main): Build the "elcfiles" list dynamically.
6216         (compile-targets): New (internal) target.
6218 2010-03-21  Andreas Schwab  <schwab@linux-m68k.org>
6220         * Makefile.in (top_srcdir): Define.
6221         (abs_top_builddir): Define.
6222         (srcdir): Don't append `/..'.
6223         (EMACS): Use ${abs_top_builddir}.
6224         (all, compile, compile-always, compile-last): Don't set emacswd.
6225         (update-subdirs, update-authors): Use $(top_srcdir) instead of
6226         $(srcdir).
6227         (lisp): Use $(srcdir) instead of @srcdir@.
6229 2010-03-21  Juri Linkov  <juri@jurta.org>
6231         Fix message of multi-line occur regexps and multi-buffer header lines.
6232         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
6234         * replace.el (occur-1): Don't display regexp if it is longer
6235         than window-width.  Use `query-replace-descr' to display regexp.
6236         (occur-engine): Don't display regexp in the buffer header for
6237         multi-buffer occur.  Display a separate header line with total
6238         match count and regexp for multi-buffer occur.
6239         Use `query-replace-descr' to display regexp.
6241 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
6243         * net/secrets.el: Fix parenthesis.
6244         (secrets-enabled): Fix parenthesis.
6246 2010-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6248         Use more relative file and directory names.
6249         * Makefile.in (EMACS): Arrange for it to work when we chdir.
6250         (setwins, setwins_almost, setwins_for_subdirs):
6251         Don't `cd'; output relative names.
6252         (all, compile, compile-always, compile-last): Set emacswd.
6253         (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
6254         Just cd to the lisp source dir so we can use relative file names.
6256         * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
6258 2010-03-20  Glenn Morris  <rgm@gnu.org>
6260         * textmodes/rst.el: Use faces for font-lock customization, and make the
6261         old -face variables obsolete.
6262         (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
6263         (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
6264         (rst-block-face, rst-external-face, rst-definition-face)
6265         (rst-directive-face, rst-comment-face, rst-emphasis1-face)
6266         (rst-emphasis2-face, rst-literal-face, rst-reference-face):
6267         Make obsolete.
6268         (rst-font-lock-keywords-function): Update for above changes.
6270 2010-03-20  Juri Linkov  <juri@jurta.org>
6272         * s-region.el:
6273         * obsolete/s-region.el: Move to obsolete.
6275 2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
6277         * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
6279 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
6281         * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
6283 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
6285         Add special markup processing for commit logs.
6286         * log-edit.el (log-edit-extra-flags): New variable.
6287         (log-edit): Add new argument MODE.  Use that mode when non-nil
6288         instead of the log-view-mode.
6289         (log-view-process-buffer): New function.
6291         * vc.el: Document that the checkin method takes optional
6292         arguments.  Document new backend specific method: log-view-mode.
6293         (vc-default-log-edit-mode): New function.
6294         (vc-checkin): Use a backend specific log-view-mode.
6295         Pass extra arguments to the checkin method.
6296         (vc-modify-change-comment): Pass a dummy extra argument.
6298         * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
6299         log-edit.
6300         (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
6301         (vc-finish-logentry): Process the log buffer before passing it
6302         down.  Pass log-edit-extra-flags.
6304         * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
6305         command.
6306         (log-edit-extra-flags, log-edit-before-checkin-process):
6307         New declarations.
6309         * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
6310         command.
6311         (log-edit-extra-flags, log-edit-before-checkin-process):
6312         New declarations.
6313         (vc-hg-log-edit-mode): New derived mode.
6315         * vc-arch.el (vc-arch-checkin):
6316         * vc-cvs.el (vc-cvs-checkin):
6317         * vc-git.el (vc-git-checkin):
6318         * vc-mtn.el (vc-mtn-checkin):
6319         * vc-rcs.el (vc-rcs-checkin):
6320         * vc-sccs.el (vc-sccs-checkin):
6321         * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
6323 2010-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6325         * outline.el (hide-sublevels): Don't hide trailing newline (and fix
6326         parent typo).
6328 2010-03-19  Glenn Morris  <rgm@gnu.org>
6330         * password-cache.el (password-cache, password-cache-expiry): Autoload.
6332 2010-03-18  Glenn Morris  <rgm@gnu.org>
6334         * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
6336         * replace.el (query-replace-history): Give it a doc string.
6337         (map-query-replace-regexp): Use query-replace-from-history-variable
6338         and query-replace-to-history-variable.
6340         * mail/hashcash.el (declare-function): Remove duplicate definition.
6342         * mail/emacsbug.el (report-emacs-bug-pretest-address):
6343         Make it an obsolete alias for report-emacs-bug-address.
6344         (message-strip-special-text-properties): Declare.
6345         (report-emacs-bug): Remove test for a pretest bug address.
6346         Combine message-mode-specific code.
6348         * mail/supercite.el: Don't require sendmail.
6349         (mh-in-header-p): Declare rather than using with-no-warnings.
6350         (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
6351         mail-header-end.  Don't bind mysterious variable `kill-lines-magic'.
6353         * calendar/cal-french.el: Convert to utf-8.
6355         * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
6356         Emacs scripts.
6358 2010-03-16  Michael Albinus  <michael.albinus@gmx.de>
6360         * net/secrets.el (secrets-enabled): New variable.  Use it instead
6361         of a subfeature.
6363 2010-03-15  Michael Albinus  <michael.albinus@gmx.de>
6365         * net/secrets.el (top): Register the D-Bus signals only when the
6366         service "org.freedesktop.secrets" can be pinged.
6367         Provide subfeature `enabled'.
6369 2010-03-14  Juri Linkov  <juri@jurta.org>
6371         Add finder unknown keywords.
6373         * finder.el (finder-unknown-keywords): New function.
6375         * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
6376         to create a Finder node with unknown keywords.
6378 2010-03-14  Juri Linkov  <juri@jurta.org>
6380         * finder.el (finder-compile-keywords): Replace `princ' with
6381         `prin1' on a list of symbols interned from keyword strings.
6383         * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
6384         a comma, then split keywords using a comma and optional whitespace.
6385         Otherwise, split by whitespace.
6387         * complete.el:
6388         * face-remap.el:
6389         * log-view.el:
6390         * net/hmac-def.el:
6391         * net/hmac-md5.el:
6392         * net/netrc.el:
6393         * progmodes/mixal-mode.el: Fix keywords.
6395 2010-03-13  Michael Albinus  <michael.albinus@gmx.de>
6397         * Makefile.in (ELCFILES): Add net/secrets.elc.
6399         * net/secrets.el: New file.
6401 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
6403         * facemenu.el (list-colors-display, list-colors-print): New arg
6404         callback.  Use it to allow selecting colors.
6406         * wid-edit.el (widget-image-insert): Insert image prop even if the
6407         current display is non-graphic.
6408         (widget-field-value-set): New fun.
6409         (editable-field): Use it.
6410         (widget-field-value-get): Clean up unused var.
6411         (widget-color-value-create, widget-color--choose-action):
6412         New funs.  Allow using list-colors-display to choose color.
6414 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
6416         * cus-edit.el: Resort topmost custom groups.
6417         (custom-buffer-sort-alphabetically): Default to t.
6418         (customize-apropos): Use apropos-parse-pattern.
6419         (custom-search-field): New var.
6420         (custom-buffer-create-internal): Add custom-apropos search field.
6421         (custom-add-parent-links): Don't display parent doc.
6422         (custom-group-value-create): Don't sort top-level custom group.
6423         (custom-magic-value-create): Show visibility button before option name.
6425         (custom-variable-state): New fun, from custom-variable-state-set.
6426         (custom-variable-state-set): Use it.
6427         (custom-group-value-create): Hide options with standard values
6428         using the :hidden-states property.  Use progress reporter.
6430         (custom-show): Simplify.
6431         (custom-visibility): Disable images by default.
6432         (custom-variable): New property :hidden-states.
6433         (custom-variable-value-create): Enable images for
6434         custom-visibility widgets.  Use :hidden-states property to
6435         determine initial visibility.
6437         * wid-edit.el (widget-image-find): Give images center ascent.
6438         (visibility): Add :on-image and :off-image properties.
6439         (widget-visibility-value-create): Use them.
6441 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
6443         * cus-edit.el (processes): Remove from development group.
6444         (oop, hypermedia): Delete group.
6445         (comm): Promote to top-level group.
6447         * net/browse-url.el (browse-url):
6448         * net/xesam.el (xesam):
6449         * net/tramp.el (tramp):
6450         * net/goto-addr.el (goto-address):
6451         * net/ange-ftp.el (ange-ftp): Put in comm group.
6453         * view.el (view): Remove from editing group.
6455         * uniquify.el (uniquify): Put in files group.
6457         * net/browse-url.el (browse-url):
6458         * ps-print.el (postscript): Put in external group.
6460         * cus-edit.el (outlines):
6461         * textmodes/text-mode.el (text-mode-hook):
6462         * textmodes/table.el (table):
6463         * textmodes/picture.el (picture):
6464         * outline.el (outlines): Put in wp group.
6466         * nxml/nxml-mode.el (nxml): Remove from wp group.
6468         * net/tramp-imap.el (tramp-imap): Put in tramp group.
6470         * mail/metamail.el (metamail): Remove from hypermedia group.
6472         * cus-edit.el (abbrev):
6473         * whitespace.el (whitespace):
6474         * vcursor.el (vcursor):
6475         * reveal.el (reveal):
6476         * hl-line.el (hl-line): Put in convenience group.
6478         * epg-config.el (epg): Put in data group.
6480         * emulation/pc-select.el (pc-select): Put in emulations group.
6482         * calculator.el (calculator): Put in applications group.
6484 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
6486         Add .dir-locals.el support for file-less buffers.
6487         * files.el (hack-local-variables): Split out code to apply local
6488         variable settings ...
6489         (hack-local-variables-apply): ... here.  New function.
6490         (hack-dir-local-variables): Use the default directory for when the
6491         buffer does not have an associated file.
6492         (hack-dir-local-variables-non-file-buffer): New function.
6493         * diff-mode.el (diff-mode):
6494         * vc-annotate.el (vc-annotate-mode):
6495         * vc-dir.el (vc-dir-mode):
6496         * log-edit.el (log-edit-mode):
6497         * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
6499 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
6501         Add support for shelving snapshots and for showing shelves.
6502         * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
6503         (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
6504         New functions.
6505         (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
6506         (vc-bzr-extra-menu-map): Map them.
6508 2010-03-11  Glenn Morris  <rgm@gnu.org>
6510         * cus-edit.el (customize-changed-options-previous-release):
6511         Bump to 23.1.
6513         * image.el (image-animate-max-time): Fix :version tag.
6515 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
6517         * Branch for 23.2.
6519 2010-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6521         * vc-git.el (vc-git-revision-table): Include remote branches.
6523 2010-03-10  Kim F. Storm  <storm@cua.dk>
6525         Animated image API.
6526         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
6528         * image.el (image-animate-max-time): New defcustom.
6529         (image-animated-types): New defconst.
6530         (create-animated-image, image-animate-timer)
6531         (image-animate-start, image-animate-stop, image-animate-timeout)
6532         (image-animated-p): New functions.
6534         * image-mode.el (image-toggle-display-image):
6535         Replace `create-image' with `create-animated-image'.
6537 2010-03-09  Miles Bader  <miles@gnu.org>
6539         * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
6540         instead of "format:"; this ensures that the output is
6541         newline-terminated.
6543 2010-03-08  Chong Yidong  <cyd@stupidchicken.com>
6545         * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
6546         that all errors are caught, and that the return value is always a
6547         list (Bug#5692).
6549 2010-03-08  Kenichi Handa  <handa@m17n.org>
6551         * language/misc-lang.el (windows-1256): New coding system.
6552         (cp1256): New alias of windows-1256 (bug#5690).
6554 2010-03-07  Andreas Schwab  <schwab@linux-m68k.org>
6556         * mail/rfc822.el (rfc822-addresses): Move catch clause down around
6557         call to rfc822-bad-address.  (Bug#5692)
6559 2010-03-07  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
6561         * vc-git.el (vc-git-annotate-extract-revision-at-line):
6562         Use vc-git-root as default directory for revision path (Bug#5657).
6564 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
6566         * calculator.el (calculator): Don't bind split-window-keep-point
6567         (Bug#5674).
6569 2010-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6571         * vc-git.el: Re-flow to fit into 80 columns.
6572         (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
6573         Remove spurious `quote' element in each case alternative.
6574         (vc-git-show-log-entry): Use prog1.
6575         (vc-git-after-dir-status-stage): Remove unused var `remaining'.
6577 2010-03-06  Glenn Morris  <rgm@gnu.org>
6579         * cedet/semantic/grammar.el (semantic-grammar-header-template):
6580         Update template copyright to GPLv3+.
6582 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6584         * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
6586 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
6588         * macros.el (insert-kbd-macro): Look up keyboard macro using the
6589         definition, not the name (Bug#5481).
6591 2010-03-03  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
6593         * subr.el (momentary-string-display): Don't overwrite the MESSAGE
6594         argument with a local variable.  (Bug#5670)
6596 2010-03-02  Juri Linkov  <juri@jurta.org>
6598         * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
6600 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
6602         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
6603         error when FILENAME and NEWNAME are existing remote directories.
6605         * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
6606         parameter DIR-FLAG.
6608 2010-03-02  Glenn Morris  <rgm@gnu.org>
6610         * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
6611         of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
6613 2010-03-01  Kenichi Handa  <handa@m17n.org>
6615         * language/burmese.el (burmese-composable-pattern): Rename from
6616         myanmar-composable-pattern.
6618         * international/characters.el (script-list):
6619         * international/fontset.el (script-representative-chars):
6620         Change myanmar to burmese.
6621         (otf-script-alist): Likewise.
6622         (setup-default-fontset): Likewise.  Re-fix :otf spec.
6624 2010-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6626         * menu-bar.el (menu-bar-manuals-menu): Fix typo.
6628 2010-02-28  Jan Djärv  <jan.h.d@swipnet.se>
6630         * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
6632 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
6634         * net/tramp.el (tramp-handle-write-region): START can be a string.
6635         Take care in the checks.  Reported by Dan Davison
6636         <davison@stats.ox.ac.uk>.
6638 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
6640         * net/dbus.el (dbus-introspect, dbus-get-property)
6641         (dbus-set-property, dbus-get-all-properties):
6642         Use `dbus-call-method' when noninteractive.  (Bug#5645)
6644 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
6646         * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
6647         * emacs-lisp/elint.el (elint-add-required-env):
6648         * cedet/semantic/db-find.el
6649         (semanticdb-find-translate-path-brutish-default):
6650         * cedet/ede/make.el (ede-make-check-version):
6651         * calendar/icalendar.el (icalendar--add-diary-entry):
6652         * calc/calcalg2.el (math-tracing-integral):
6653         * files.el (recover-session-finish): Use with-current-buffer
6654         instead of save-excursion.
6656 2010-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6658         Fix in-buffer completion when after-change-functions modify the buffer.
6659         * minibuffer.el (completion--replace): New function.
6660         (completion--do-completion): Use it and use relative movement.
6662 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
6664         * international/fontset.el (setup-default-fontset): Fix :otf spec.
6666 2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
6668         * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
6669         Allow the characters _<> in the stack entry (Bug#5653).
6671 2010-02-26  Kenichi Handa  <handa@m17n.org>
6673         * language/burmese.el: Fix entries in composition-function-table.
6674         (myanmar-composable-pattern): New variable.
6676         * international/fontset.el (setup-default-fontset): Add an entry
6677         for myanmar.
6679         * international/characters.el (script-list): Add Myanmar
6680         Extended-A.
6682 2010-02-26  Glenn Morris  <rgm@gnu.org>
6684         * custom.el (custom-initialize-delay): Doc fix.
6686         * mail/sendmail.el (send-mail-function): Autoload the call
6687         to custom-initialize-delay, not otherwise preserved in loaddefs.el.
6689 2010-02-24  Chong Yidong  <cyd@stupidchicken.com>
6691         * files.el (hack-local-variables-filter): For eval forms, also
6692         check safe-local-variable-p (Bug#5636).
6694 2010-02-24  Eduard Wiebe  <usenet@pusto.de>
6696         * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
6697         and use c(ad)r of cddr (Bug#5640).
6699 2010-02-22  Michael Albinus  <michael.albinus@gmx.de>
6701         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
6702         setting the modes by `ignore-errors'.  It might fail, for example
6703         if the file is not owned by the user but the group.
6704         (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
6706 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
6708         * files.el (directory-listing-before-filename-regexp): Use
6709         stricter matching for iso-style dates, to avoid false matches with
6710         date-like filenames (Bug#5597).
6712         * htmlfontify.el (htmlfontify): Doc fix.
6714         * eshell/eshell.el (eshell): Doc fix.
6716         * startup.el (fancy-about-screen): In mode-line, apply
6717         mode-line-buffer-id face only to the buffer name (Bug#5613).
6719 2010-02-20  Kevin Ryde  <user42@zip.com.au>
6721         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6722         In `watcom' anchor regexp to start of line, to avoid slowness
6723         (Bug#5599).
6725 2010-02-20  Eli Zaretskii  <eliz@gnu.org>
6727         * subr.el (remove-yank-excluded-properties): Explain in a comment
6728         why `category' property is removed.
6730 2010-02-19  Chong Yidong  <cyd@stupidchicken.com>
6732         * isearch.el (isearch-update-post-hook, isearch-update): Revert
6733         2010-02-17 change.
6735 2010-02-19  Ulf Jasper  <ulf.jasper@web.de>
6737         * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
6738         (icalendar--convert-weekly-to-ical)
6739         (icalendar--convert-yearly-to-ical)
6740         (icalendar--convert-block-to-ical)
6741         (icalendar--convert-cyclic-to-ical)
6742         (icalendar--convert-anniversary-to-ical): Take care of time
6743         specifications where hour has 1-digit only (Bug#5549).
6745 2010-02-19  Nick Roberts  <nickrob@snap.net.nz>
6747         * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
6748         of disassemble output in GDB 7.1.
6750 2010-02-19  Glenn Morris  <rgm@gnu.org>
6752         * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
6753         property.  (Bug#5593)
6755 2010-02-18  Sam Steingold  <sds@gnu.org>
6757         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
6759 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6761         Use abbreviated file names in bookmarks (bug#5591).
6762         * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
6763         calls to expand-file-name.
6764         (bookmark-relocate): Use abbreviated file names in bookmarks.
6765         (bookmark-load): Use abbreviated file names in messages.
6767 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
6769         * net/tramp.el (tramp-handle-directory-files): When FULL, do not
6770         expand "." and "..".  Reported by Thierry Volpiatto
6771         <thierry.volpiatto@gmail.com>.
6773 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
6775         * net/tramp.el (tramp-handle-insert-file-contents): Set always the
6776         permissions of the temporary file to "0600".  In case the remote
6777         file has no read permissions for the owner, there might be
6778         problems otherwise.  Reported by Ole Laursen <olau@iola.dk>.
6780 22010-02-18  Glenn Morris  <rgm@gnu.org>
6782         * emacs-lisp/authors.el (authors-renamed-files-alist):
6783         Add entries for INSTALL.CVS.
6785 2010-02-17  Mark A. Hershberger  <mah@everybody.org>
6787         * vc-bzr.el: Fix typo in Known Bugs section.
6789         * isearch.el (isearch-update-post-hook): New hook.
6790         (isearch-update): Use the new hook.
6792 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
6794         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
6795         Fix errors in copying directories.
6796         (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
6797         (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
6798         (tramp-handle-delete-file)
6799         (tramp-handle-dired-recursive-delete-directory)
6800         (tramp-handle-write-region): Flush also the cache for the upper
6801         directory.
6803 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
6805         * simple.el (save-interprogram-paste-before-kill): Doc fix.
6807         * cus-edit.el (hardware): Doc fix.
6809         * man.el (man): Add to external custom group.
6811         * delim-col.el (columns): Move to wp custom group.
6813         * doc-view.el (doc-view): Add to data custom group.
6815         * cedet/data-debug.el (data-debug): Move to extensions group.
6817         * cedet/ede.el (ede):
6818         * cedet/srecode.el (srecode):
6819         * cedet/semantic.el (semantic): Put in tools and extensions group.
6821         * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
6823         * textmodes/flyspell.el (flyspell-word): Obey the offset specified
6824         by ispell-parse-output (Bug#5575).
6826 2010-02-16  Kenichi Handa  <handa@m17n.org>
6828         * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
6829         (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
6830         (skkdic-convert): Use `euc-japan' coding system for writing.
6832 2010-02-16  Glenn Morris  <rgm@gnu.org>
6834         * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
6835         tex-main-file before using it.  (Bug#5562)
6837 2010-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6839         * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
6840         warnings, since it is annoying for the user to see them each time he
6841         runs the code.
6843 2010-02-15  Michael Albinus  <michael.albinus@gmx.de>
6845         * net/tramp.el (tramp-process-actions, tramp-read-passwd):
6846         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
6847         instead of PROC for caching "first-password-request".  Otherwise,
6848         new processes would not profit from passwords already entered.
6850         * net/tramp-cache.el (tramp-dump-connection-properties):
6851         Don't save "first-password-request" property.
6853 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
6855         * outline.el (outline-head-from-level):
6856         * simple.el (with-wrapper-hook):
6857         * cedet/ede.el (ede-run-target, project-delete-target)
6858         (project-dist-files, ede-name, ede-documentation, ede-parent-project)
6859         (ede-adebug-project, ede-adebug-project-parent)
6860         (ede-adebug-project-root):
6861         * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
6862         (elint-defun, elint-buffer-env, elint-top-form-logged)
6863         (elint-unbound-variable):
6864         * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
6865         Fix typos in docstrings.
6867 2010-02-14  Michael Albinus  <michael.albinus@gmx.de>
6869         * files.el (insert-directory): When WILDCARD-REGEXP and
6870         FULL-DIRECTORY-P are nil, insert the file entry instead of the
6871         whole directory.  (Bug#5551)
6873         * net/ange-ftp.el (ange-ftp-insert-directory): Insert "  " for
6874         dired's alignment sanity.  (Bug#5516)
6876 2010-02-14  Juri Linkov  <juri@jurta.org>
6878         * man.el (Man-fontify-manpage, Man-cleanup-manpage):
6879         Remove remaining ^H with their preceding chars.  (Bug#5566)
6881 2010-02-13  Glenn Morris  <rgm@gnu.org>
6883         * simple.el (transpose-subr): Give it a doc-string.
6885         * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
6886         Doc fixes.
6888 2010-02-12  Juri Linkov  <juri@jurta.org>
6890         * arc-mode.el (archive-unique-fname): Make directories for nested
6891         archives.  (Bug#5540)
6893 2010-02-12  Juri Linkov  <juri@jurta.org>
6895         * ffap.el (dired-at-point): Fix docstring.  (Bug#5565)
6897 2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6899         * subr.el (copy-overlay): Handle deleted overlays.
6901         * man.el (Man-completion-table): Don't signal an error if we can't run
6902         manual-program (bug#4056).
6904 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
6906         * textmodes/artist.el (artist-mt): Fix typos in docstring.
6908 2010-02-10  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6910         * info.el (Info-bookmark-jump): Simplify.
6912         * bookmark.el (bookmark-handle-bookmark): Catch the right error.
6913         (bookmark-default-handler): Accept new bookmark field `buffer'.
6915 2010-02-10  Chong Yidong  <cyd@stupidchicken.com>
6917         * iswitchb.el (iswitchb-completions): Revert last change.
6919 2010-02-10  Michael Albinus  <michael.albinus@gmx.de>
6921         * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
6922         FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
6923         This prevents file names like "~/" being listed literally.
6925 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
6927         * term/xterm.el (xterm-maybe-set-dark-background-mode):
6928         Remove dead code.  (Bug#5546)
6930 2010-02-09  Chong Yidong  <cyd@stupidchicken.com>
6932         * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
6933         correctly (Bug#5548).
6935 2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
6937         * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
6938         (ada-adjust-case): Don't adjust case in hexadecimal number literals.
6940 2010-02-08  Kenichi Handa  <handa@m17n.org>
6942         * international/mule-util.el (with-coding-priority): Add autoload
6943         cookie for putting `lisp-indent-function'.
6945 2010-02-07  Glenn Morris  <rgm@gnu.org>
6947         * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
6948         Move F2003 named interfaces from keywords-2 to keywords-1, and
6949         use function-name-face rather than constant-face.
6950         Simplify "abstract interface" regexp.
6952 2010-02-07  Chong Yidong  <cyd@stupidchicken.com>
6954         * eshell/esh-util.el (eshell-file-attributes): New optional arg
6955         ID-FORMAT.  Pass it to `file-attributes'.
6957         * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
6959 2010-02-07  sj  <prime.wizard+emacs@gmail.com>  (tiny change)
6961         * faces.el (set-face-attribute): Allow calling
6962         internal-set-lisp-face-attribute with 'unspecified family and
6963         foundry argument (Bug#5536).
6965 2010-02-07  Glenn Morris  <rgm@gnu.org>
6967         * progmodes/f90.el (f90-font-lock-keywords-2)
6968         (f90-looking-at-type-like, f90-looking-at-program-block-end):
6969         Handle F2003 named interfaces.
6971 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
6973         * progmodes/cc-mode.el (c-common-init): Bind temporary variables
6974         beg and end before calling c-get-state-before-change-functions.
6976 2010-02-06  Dan Nicolaescu  <dann@ics.uci.edu>
6978         * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
6980 2010-02-05  Juri Linkov  <juri@jurta.org>
6982         * doc-view.el (doc-view-mode):
6983         * image-mode.el (image-mode): Put property mode-class=special.
6984         (Bug#4896)
6986 2010-02-05  Mark A. Hershberger  <mah@everybody.org>
6988         * vc-svn.el (vc-svn-revision-table): New function.
6990 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
6992         * net/ange-ftp.el (ange-ftp-insert-directory):
6993         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
6994         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
6995         Handle also directories.  (Bug#5478)
6997 2010-02-05  Glenn Morris  <rgm@gnu.org>
6999         * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
7001 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
7003         * startup.el (command-line-1): Convert options beginning with a
7004         single dash as well (Bug#5519).
7006 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7008         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
7009         * minibuffer.el (completion-initials-expand): Only check the presence
7010         of delims *within* the boundaries, since otherwise the / delim is
7011         always found for files.
7013         Fix up various corner case problems.
7014         * doc-view.el (doc-view-last-page-number): New function.
7015         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
7016         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
7017         (doc-view-kill-proc): Avoid inf-loop in freak cases.
7018         (doc-view-reconvert-doc): Use the new recursive delete-directory.
7019         (doc-view-convert-current-doc): Don't create the resolution.el file
7020         here any more.
7021         (doc-view-pdf/ps->png): Do it here instead.
7022         (doc-view-already-converted-p): Check that resolution.el is present.
7023         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
7024         windows that are not yet showing images.
7026 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
7028         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
7029         `dired-uncache' for every elemnt which is an absolute file name.
7031         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
7032         directory, handle its directory component.
7033         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
7034         function is called permanently and creates noise, otherwise.
7036         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
7037         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
7038         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
7040 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
7042         * macros.el (apply-macro-to-region-lines):
7043         Minor simplification.  (Bug#5485)
7045 2010-02-04  Glenn Morris  <rgm@gnu.org>
7047         * mail/rmail.el (rmail-show-message-1): Handle malformed
7048         quoted-printable text.  (Bug#5441)
7050         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
7052         * simple.el (visual-line-mode): Capitalize lighter.
7054 2010-02-03  John Wiegley  <jwiegley@gmail.com>
7056         * iswitchb.el (iswitchb-completions): Add bookmark files to the
7057         list of files considered for "virtual buffer" completions.
7059 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
7061         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
7062         also in case of (and (not full) (not wildcard)).  This is needed
7063         when dired is called with a list of files, which are not in
7064         `default-directory'.  (Bug#5478)
7066 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7068         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
7070 2010-02-02  Juri Linkov  <juri@jurta.org>
7072         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
7073         from unidiff to allow function-line after @@.
7075 2010-02-02  Juri Linkov  <juri@jurta.org>
7077         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
7078         '(RCS SCCS) with inverted condition.
7080 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
7082         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
7083         messages.
7085 2010-02-01  Juri Linkov  <juri@jurta.org>
7087         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
7088         compare with "pkunzip" and "pkzip" instead of only "pkzip".
7089         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
7090         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
7092 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7094         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
7095         (doc-view-revert-buffer): New command.
7096         (doc-view-mode-map): Use it.
7098 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
7100         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
7101         pending merge is detected.
7103 2010-01-31  Juri Linkov  <juri@jurta.org>
7105         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
7106         beginning of interactive spec like all other grep commands do.
7107         Put "all" in front of "gz".  (Bug#5260)
7109 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
7111         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
7113 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
7115         * dirtrack.el (dirtrack): Warn instead of signalling error if the
7116         regexp is incorrect (Bug#5476).
7118 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
7120         * net/tramp.el (tramp-handle-insert-directory): Handle also
7121         symlinks, when FILENAME is not in `default-directory'.
7123 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
7125         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
7126         FILE is not in `default-directory'.  (Bug#5478)
7128         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
7129         of SWITCHES.  Handle the case, FILENAME is not in
7130         `default-directory'.  (Bug#5478)
7131         (tramp-register-file-name-handlers): Add safe-magic property.
7133 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
7135         * arc-mode.el (archive-zip-extract): Quote the argument passed to
7136         unzip (Bug#5475).
7138 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
7140         * progmodes/flymake.el (flymake-allowed-file-name-masks)
7141         (flymake-master-make-header-init): Add other C++ filename masks.
7142         (flymake-find-possible-master-files)
7143         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
7145 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
7147         Fix some busybox annoyances.
7149         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
7150         not responding." string.
7151         (tramp-open-connection-setup-interactive-shell): Dump stty
7152         settings.  Enable "neveropen" arg for all `tramp-send-command'
7153         calls.  Handle "=" in variable values properly.
7154         (tramp-find-inline-encoding): Raise an error, when no encoding is
7155         found.
7156         (tramp-wait-for-output): Check, whether PROC buffer is available.
7157         Remove spurious " ^H" sequences, sent by busybox.
7158         (tramp-get-ls-command): Suppress coloring, if possible.
7160 2010-01-28  Glenn Morris  <rgm@gnu.org>
7162         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
7164         * log-edit.el (log-edit-strip-single-file-name): Add missing
7165         :safe, :group, and :version tags.
7167 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
7169         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
7170         buffers.  (Bug#5477)
7172 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
7174         * files.el (delete-directory): Handle moving to trash without
7175         first doing recursion (Bug#5436).
7177 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
7179         * vc-hooks.el (vc-path): Mark as obsolete.
7181 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
7183         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
7184         names too.
7186         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
7187         for the short log.
7188         (vc-bzr-log-view-mode): Adjust regexp for the above change.
7190 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
7192         * progmodes/python.el: Replace reference to obsolete c-subword-mode.
7194         * vc-bzr.el (vc-bzr-revision-table): New function.
7196 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
7198         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
7199         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
7201 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
7203         Remove support for adding --signoff on commit.
7204         Future support will use an incompatible generic mechanism.
7205         * vc-git.el (vc-git-add-signoff): Remove variable.
7206         (vc-git-toggle-signoff): Remove function.
7207         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
7209         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
7210         from xterm-set-background-mode.  Return t if the background mode
7211         was set.
7212         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
7213         earlier, call it again in case the background mode has changed.
7215 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
7217         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
7218         (Bug#3541).
7220 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
7222         * emacs-lisp/assoc.el (aelement): Doc fix.
7223         (aput, adelete, amake): Use lexical-let (Bug#5450).
7225 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
7227         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
7228         is the same as subprogram call, not declaration.  (Bug#5435).
7230 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
7232         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
7233         (tramp-smb-maybe-open-connection): Use it.
7235 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
7237         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
7239 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7241         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
7242         just because we see "encoding: 8bit".
7243         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
7245 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
7247         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
7249 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
7251         * jka-compr.el (jka-compr-load): If load-file is not in
7252         load-history, try its file-truename version.  (bug#5447)
7254 2010-01-21  Alan Mackenzie  <acm@muc.de>
7256         Fix a situation where deletion of a cpp construct throws an error.
7257         * progmodes/cc-engine.el (c-invalidate-state-cache):
7258         Before invoking c-with-all-but-one-cpps-commented-out, check that the
7259         special cpp construct is still in the buffer.
7260         (c-parse-state): Record the special cpp with markers, not numbers.
7262 2010-01-21  Kenichi Handa  <handa@m17n.org>
7264         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
7265         process last-command-event, as it is now decoded first (Bug#5380).
7267 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
7269         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
7271 2010-01-20  Glenn Morris  <rgm@gnu.org>
7273         * indent.el (tab-always-indent): Fix custom-type.
7275 2010-01-19  Alan Mackenzie  <acm@muc.de>
7277         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
7278         buffer throws "args out of range".
7279         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
7280         playing the role of delimiter.
7282 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
7284         * progmodes/ada-mode.el: Fix bug#5400.
7285         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
7286         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
7287         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
7288         Improve comments in "is" portion.  Handle null procedure declaration.
7289         (ada-move-to-end): Improve doc string.
7291 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
7293         * ido.el (ido-cur-list): Initialize to nil.
7294         Remove obsolete information from commentary.
7295         (ido-choice-list): Initialize to nil.
7296         (ido-get-bufname): Reject minibuffers.
7297         (ido-make-buffer-list): If "default" is a nonexistent
7298         buffer, ignore it, as per the function's comment.
7299         (ido-kill-buffer-internal): New function.
7300         (ido-kill-buffer-at-head): Use it.
7301         (ido-visit-buffer): Likewise.
7303 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
7305         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
7307 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
7309         * cedet/ede/locate.el (ede-locate-file-in-project)
7310         (ede-locate-file-in-project-impl): Fix typos in docstrings.
7311         (ede-enable-locate-on-project): Fix typos in error messages.
7313         * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
7314         (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
7315         (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
7316         (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
7317         (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
7318         Fix typos in menu help.
7320         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
7321         Fix typos in chart titles.
7323         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
7324         * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
7325         (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
7326         (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
7327         (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
7328         (semantic-parse-stream, semantic-parse-region)
7329         (semantic-parse-region-default, semantic--set-buffer-cache)
7330         (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
7331         (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
7332         (semantic-default-submodes):
7333         * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
7334         (semanticdb-create-ebrowse-database)
7335         (semanticdb-find-tags-for-completion-method)
7336         (semanticdb-find-tags-by-class-method)
7337         (semanticdb-deep-find-tags-by-name-method)
7338         (semanticdb-deep-find-tags-for-completion-method):
7339         * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
7340         (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
7341         (semanticdb-find-tags-for-completion-method)
7342         (semanticdb-find-tags-by-class-method)
7343         (semanticdb-deep-find-tags-for-completion-method):
7344         * cedet/semantic/db-find.el (semanticdb-find-translate-path)
7345         (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
7346         (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
7347         (semanticdb-find-tags-by-name-method)
7348         (semanticdb-find-tags-by-name-regexp-method)
7349         (semanticdb-find-tags-for-completion-method)
7350         (semanticdb-find-tags-by-class-method)
7351         (semanticdb-find-tags-external-children-of-type-method)
7352         (semanticdb-find-tags-subclasses-of-type-method)
7353         (semanticdb-deep-find-tags-by-name-method)
7354         (semanticdb-deep-find-tags-by-name-regexp-method)
7355         (semanticdb-deep-find-tags-for-completion-method):
7356         * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
7357         (semanticdb-enable-gnu-global-in-buffer)
7358         (semanticdb-find-tags-for-completion-method)
7359         (semanticdb-deep-find-tags-by-name-method)
7360         (semanticdb-deep-find-tags-for-completion-method):
7361         * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
7362         (javascript-mode, semanticdb-find-translate-path)
7363         (semanticdb-find-tags-for-completion-method)
7364         (semanticdb-find-tags-by-class-method)
7365         (semanticdb-deep-find-tags-by-name-method)
7366         (semanticdb-deep-find-tags-for-completion-method)
7367         (semanticdb-find-tags-external-children-of-type-method):
7368         * cedet/semantic/idle.el (semantic-idle-work-core-handler)
7369         (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
7370         (global-semantic-idle-scheduler-mode):
7371         * cedet/srecode/dictionary.el (srecode-field-value)
7372         (srecode-dictionary-add-section-dictionary):
7373         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
7374         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
7375         (describe-class, eieio-describe-generic, describe-generic):
7376         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
7377         (eieio-speedbar-expand):
7378         * emulation/viper-cmd.el (viper-exec-form-in-vi)
7379         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
7380         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
7381         (viper-del-backward-char-in-replace, viper-backward-indent)
7382         (viper-brac-function, viper-register-to-point, viper-submit-report):
7383         * net/tramp.el (tramp-remote-coding-commands):
7384         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
7385         Fix typos in docstrings.
7387 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
7389         * mail/sendmail.el (mail-yank-original): Set the mark if the
7390         specified function for yanking does not do it.
7392 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
7394         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
7396         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
7397         resyncing a directory.
7399 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
7401         * progmodes/ada-mode.el: Fix bug#1920.
7402         (ada-ident-re): Delete ., allow multibyte characters.
7403         (ada-goto-label-re): New; matches goto labels.
7404         (ada-block-label-re): New; matches block labels.
7405         (ada-label-re): New; matches both.
7406         (ada-named-block-re): Deleted; callers changed to use
7407         `ada-block-label-re' instead.
7408         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
7409         Use `ada-block-label-re'.
7410         (ada-indent-on-previous-lines): Improve handling of goto labels.
7411         (ada-get-indent-block-start): Special-case block label.
7412         (ada-get-indent-label): Split into `ada-indent-block-label' and
7413         `ada-indent-goto-label'.
7414         (ada-goto-stmt-start, ada-goto-next-non-ws):
7415         Optionally ignore goto labels.
7416         (ada-goto-next-word): Simplify.
7417         (ada-indent-newline-indent-conditional): Insert newline before
7418         trying to fix indentation; doc fix.
7420 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
7422         * calc/calc.el (calc-command-flags): Give it an initial value.
7424 2010-01-17  Glenn Morris  <rgm@gnu.org>
7426         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
7428 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
7430         * cedet/semantic.el (semantic-mode):
7431         * files.el (minibuffer-with-setup-hook):
7432         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
7433         (artist-key-draw-continously, artist-key-do-continously-continously)
7434         (artist-key-set-point-continously, artist-mouse-draw-continously):
7435         Fix typos in docstrings.
7437 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
7439         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
7440         return t (Bug#3898).
7442 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
7444         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
7445         can parse the output of the external commands (Bug#5279).
7447 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
7449         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
7451 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
7453         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
7455         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
7457         * startup.el (command-line): Remove unused --icon-type arg.
7458         Handle --display arg, passing it to command-line-1 (Bug#5392).
7460 2010-01-16  Mario Lang  <mlang@delysid.org>
7462         * cedet/ede/cpp-root.el (ede-cpp-root-project):
7463         * cedet/ede/files.el (ede-expand-filename):
7464         * cedet/ede/simple.el (ede-simple-project):
7465         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
7466         (semantic-complete-inline-tag-engine):
7467         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
7468         * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
7469         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
7470         * cedet/semantic/db.el (semanticdb-equivalent-mode):
7471         * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
7472         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
7473         * emacs-lisp/chart.el (chart-translate-namezone):
7474         * textmodes/artist.el (artist-compute-popup-menu-table):
7475         Remove duplicated words in doc-strings.
7477 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
7479         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
7480         to mairix-search to suppress threading (Bug#5342).
7482 2010-01-15  Kenichi Handa  <handa@m17n.org>
7484         * international/mule-cmds.el (canonicalize-coding-system-name):
7485         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
7487 2010-01-15  Glenn Morris  <rgm@gnu.org>
7489         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
7491         * wid-edit.el (widget-keymap): Doc fix.
7493         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
7494         former seems to be more widely accepted by various svn versions.
7496 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
7498         * find-cmd.el (find-constituents):
7499         * vc-arch.el (vc-arch-root):
7500         * window.el (window-body-height, pop-up-frames):
7501         * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
7502         (semantic-no-reparse-needed-change-hook):
7503         * cedet/srecode/insert.el (srecode-resolve-argument-list)
7504         (srecode-template-inserter-blank, srecode-template-inserter-variable)
7505         (srecode-template-inserter-ask, srecode-template-inserter-width)
7506         (srecode-template-inserter-section-start)
7507         (srecode-template-inserter-section-end, srecode-insert-method):
7508         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
7509         * progmodes/ada-stmt.el (ada-if):
7510         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
7511         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
7512         (ispell-encoding8-command, ispell-aspell-supports-utf8)
7513         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
7515         * progmodes/flymake.el (flymake-post-syntax-check):
7516         Fix typo in error message.
7518 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
7520         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
7521         which is always a string.  (Bug#5313)
7523 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
7525         * progmodes/ada-xref.el (ada-default-prj-properties):
7526         Simplify previous change.
7528 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
7530         * progmodes/ada-xref.el (ada-default-prj-properties):
7531         Default ada_project_path to $ADA_PROJECT_PATH.
7533 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
7535         * progmodes/ada-mode.el (ada-create-keymap):
7536         Override `narrow-to-defun' with `ada-narrow-to-defun'.
7538 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
7540         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
7541         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
7542         (ada-get-current-indent, ada-imenu-generic-expression)
7543         (ada-which-function): Check for it.
7545 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
7547         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
7548         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
7550 2010-01-14  Glenn Morris  <rgm@gnu.org>
7552         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
7554 2010-01-14  Kenichi Handa  <handa@m17n.org>
7556         * composite.el (auto-composition-mode): Make it a buffer local
7557         variable (permanent-local).
7558         (auto-composition-function): Set the default value to
7559         auto-compose-chars.
7560         (auto-composition-mode): Make it a simple function, not a minor mode.
7561         (global-auto-composition-mode): Likewise.
7562         (turn-on-auto-composition-if-enabled): Delete it.
7564 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
7566         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
7568 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
7570         * files.el (copy-directory): Compute target for recursive
7571         directories with identical names.  (Bug#5343)
7573 2010-01-12  Glenn Morris  <rgm@gnu.org>
7575         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
7576         it to bug-gnu-emacs rather than emacs-pretest-bug.
7578 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
7580         * cedet/data-debug.el (data-debug): Fix customization group reference.
7582 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
7584         * cedet/semantic/analyze.el (semantic-analyze-push-error)
7585         (semantic-analyze-context, semantic-analyze-context-assignment)
7586         (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
7587         * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
7588         (semantic-java-doc-keywords-map):
7589         * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
7590         (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
7591         (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
7592         (semantic-c-classname, semantic-format-tag-uml-prototype)
7593         (semantic-c-dereference-namespace, semantic-analyze-type-constants):
7594         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
7595         (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
7596         (semantic-get-local-variables, semantic-end-of-command)
7597         (semantic-beginning-of-command, semantic-ctxt-current-class-list)
7598         (lisp-mode):
7599         * cedet/semantic/bovine/make.el (makefile-mode):
7600         * cedet/semantic/wisent/python.el (wisent-python-string-re)
7601         (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
7602         (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
7603         (semantic-lex, semantic-get-local-variables, python-mode):
7604         * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
7605         * cedet/srecode/extract.el (srecode-extract-state-set)
7606         (srecode-extract-method): Fix typos in docstrings.
7608 2010-01-11  Sam Steingold  <sds@gnu.org>
7610         * imenu.el (imenu-default-create-index-function): Detect infinite
7611         loops caused by imenu-prev-index-position-function.
7613 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
7615         * htmlfontify.el (htmlfontify-load-rgb-file)
7616         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
7617         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
7618         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
7619         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
7620         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
7621         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
7622         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
7623         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
7624         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
7625         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
7626         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
7627         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
7628         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
7629         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
7630         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
7631         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
7632         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
7633         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
7634         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
7635         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
7636         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
7637         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
7638         backslash-quoting from parentheses, etc.
7640 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
7642         * progmodes/js.el: Autoload javascript-mode alias.
7644 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
7646         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
7647         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
7648         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
7649         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
7650         Fix typos in docstrings.
7651         (ffap-url-regexp): Doc fix.
7652         (ffap-at-mouse): Fix typo in message.
7654 2010-01-11  Glenn Morris  <rgm@gnu.org>
7656         * version.el (emacs-copyright): Set copyright year to 2010.
7658 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7660         * format.el (format-annotate-function): Only set
7661         write-region-post-annotation-function after running to-fn so as not to
7662         affect nested write-region calls (bug#5273).
7664 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
7666         * cedet/semantic.el (semantic-new-buffer-setup-functions):
7667         Add python parser.
7669         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
7670         wisent/python.el.
7672 2010-01-10  Richard Kim  <emacs18@gmail.com>
7674         * cedet/semantic/wisent/python-wy.el:
7675         * cedet/semantic/wisent/python.el: New files.
7677 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
7679         * man.el (Man-goto-section): Signal error if the section is not
7680         found (Bug#5317).
7682 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
7684         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
7685         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
7687 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
7689         * progmodes/compile.el: Don't treat compile-command as safe if
7690         compilation-read-command might be nil (Bug#4218).
7692 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
7694         * startup.el (command-line-1): Use orig-argi to check for ignored X and
7695         NS options.
7697 2010-01-08  Kenichi Handa  <handa@m17n.org>
7699         * international/fontset.el (build-default-fontset-data):
7700         Exclude characters in scripts kana, hangul, han, or cjk-misc.
7702 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
7704         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
7705         to `create-file-buffer' as it expects, not just a buffer name.
7706         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
7707         to help uniquify.  (Bug#3224)
7709 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
7711         * font-setting.el (font-setting-change-default-font): Use user-spec
7712         instead of name.
7714 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
7716         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
7718 2010-01-05  Tom Tromey  <tromey@redhat.com>
7720         * progmodes/python.el (python-font-lock-keywords):
7721         Handle qualified decorators (Bug#881).
7723 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
7725         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
7726         in a lightweight checkout.
7728 2010-01-05  Kenichi Handa  <handa@m17n.org>
7730         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
7732 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
7734         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
7736 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
7738         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
7739         checkouts.  (Bug#618)
7740         (vc-bzr-log-view-mode): Also highlight the author.
7741         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
7742         (vc-bzr-shelve-menu-map):
7743         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
7744         (vc-bzr-shelve-apply): Make prompt more explicit.
7746 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
7748         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
7749         They are valid characters in URL paths (rfc3986), and at least
7750         Firefox does not understand the encoded version (Bug#3166).
7752 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
7754         * progmodes/octave-mod.el (octave-end-keywords)
7755         (octave-block-begin-or-end-regexp, octave-block-match-alist):
7756         Add "end" keyword (Bug#3061).
7757         (octave-end-as-array-index-p): New function.
7758         (calculate-octave-indent): Use it.
7760 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7762         * bookmark.el: Consistently put the text property on the bookmark name.
7763         (bookmark-bmenu-marks-width): Bump back to 2, to include
7764         annotation marks.
7765         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
7766         property on the bookmark name, instead of not putting it at all.
7767         (bookmark-bmenu-list): Fix where we put the text property.
7769 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7771         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
7772         for showing buffer modified state (as added in the previous change).
7774 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7776         * bookmark.el: Show modified state of bookmark buffer more accurately.
7777         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
7778         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
7779         (with-buffer-modified-unmodified): New macro.
7780         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7781         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
7782         Use new macro to preserve the buffer modified state.
7784 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7786         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
7787         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
7788         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
7789         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
7790         (bookmark-bmenu-rename, bookmark-bmenu-locate)
7791         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
7792         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
7794 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
7796         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7797         Make the lines in the generated doc string shorter.  (Bug#4668)
7799 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
7801         * net/rcirc.el: Add follow-link binding (Bug#4738).
7803 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
7805         * Makefile.in (bzr-update): Rename from cvs-update.
7806         (cvs-update): New target for backward compatibility.
7808         * makefile.w32-in (bzr-update): Rename from cvs-update.
7809         (cvs-update): New target for backward compatibility.
7811 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7813         * bookmark.el: Remove gratuitous gratitude.
7815 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7817         * bookmark.el (bookmark-bmenu-any-marks): New function.
7818         (bookmark-bmenu-save): Clear buffer modification if no marks.
7820 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7822         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
7823         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
7824         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
7825         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
7827         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
7828         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
7829         To: emacs-devel {_AT_} gnu.org
7830         Subject: bookmark.el bug report
7831         Date: Mon, 28 Dec 2009 14:19:16 +0800
7832         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
7834 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
7836         * bookmark.el: Improvements suggested by Drew Adams:
7837         (bookmark-bmenu-ensure-position): New name for
7838         `bookmark-bmenu-check-position'.  Just ensure the position,
7839         don't return any meaningful value.
7840         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
7841         New constants.
7843 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
7845         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
7846         (bookmark-yank-point, bookmark-bmenu-check-position):
7847         Fix typos in docstrings.
7848         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
7849         (bookmark-name-from-full-record, bookmark-get-position)
7850         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
7851         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
7852         Remove useless quoting of parenthesis, etc. in docstrings.
7854         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
7855         (ediff-append-custom-diff): Fix typo in error message.
7856         (ediff-meta-mark-equal-files): Fix typos in messages.
7858         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
7860         * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
7861         Fix typo in docstring.
7863         * net/imap-hash.el (imap-hash-make): Doc fix.
7864         (imap-hash-test): Fix typo in error message; reflow docstring.
7865         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
7866         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
7867         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
7868         Fix typos in docstrings.
7869         (imap-hash-open-connection): Fix typo in error message.
7871         * play/gomoku.el (gomoku): Fix typos in docstring.
7873         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
7874         (gdb-jsonify-buffer): Fix typos in docstring.
7875         (gdb-goto-breakpoint): Fix typo in error message.
7876         ("Display Other Windows"): Fix typo in help message.
7877         (gdb-speedbar-expand-node): Fix typo in question.
7879         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
7880         (idlwave-html-system-help-location, idlwave-html-help-location)
7881         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
7882         (idlwave-help-browser-generic-args, idlwave-help-directory)
7883         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
7884         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
7885         (idlwave-online-help, idlwave-help-html-link)
7886         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
7887         Fix typos in docstrings.
7888         (idlwave-help-with-source, idlwave-help-find-routine-definition):
7889         Reflow docstrings.
7890         (idlwave-help-assistant-start): Fix typo in error message.
7892         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
7893         (octave-electric-space): Fix typos in docstrings.
7895 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
7897         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
7899 2010-01-01  Juri Linkov  <juri@jurta.org>
7901         * comint.el (comint-input-ring-size): Make it a defcustom and
7902         increase the default to 500 (Bug#5148).
7904 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
7906         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
7907         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
7908         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
7910 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
7912         Show working revision correctly for mercurial.
7913         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
7914         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
7916 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
7918         Declare some functions for the byte-compiler.
7919         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
7920         (speedbar-timer-fn, speedbar-change-expand-button-char)
7921         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
7923 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
7925         This changeset reverts GDB Graphical Interface to use annotations.
7926         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
7928 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
7930         Make vc-dir work on subdirectories of the bzr root.
7931         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
7932         file names relative to it.
7933         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
7934         relative directory to vc-bzr-after-dir-status.
7936 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
7938         * font-lock.el (font-lock-refresh-defaults): New function, which
7939         can be used to let font-lock react to external changes in
7940         variables like font-lock-defaults and keywords.
7941         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
7943 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
7945         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
7947         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
7949 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
7951         Supersede color.diff settings in git log (bug#5211).
7953         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
7954         escape chars in its output when the user has color.diff set to `always'.
7955         This fix works on git 1.4.2 and newer (released on 2006-08-13).
7957 2009-12-26  Kevin Ryde  <user42@zip.com.au>
7959         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
7960         node.  Keep previous "Index" name to work with past coreutils too.
7962         * man.el (man): Revise docstring a bit to show -a and -l as
7963         examples.  Add -k description since support for it has otherwise
7964         been a secret.  (Further to bug#3717.)
7965         (Man-bgproc-sentinel): When "-k foo" produces no output show error
7966         "no matches" rather than "Can't find manpage", as the latter reads
7967         like -k was interpreted as a page name, which is not so.  (Bug#5431)
7969 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
7971         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
7972         switches.  Check also for //SUBDIRED// line.
7974 2009-12-25  Kenichi Handa  <handa@m17n.org>
7976         * language/indian.el (devanagari-composable-pattern): Fixed to
7977         handle ZWNJ and ZWJ.  Use it in composition-function-table for
7978         Devanagari.
7979         (malayalam-composable-pattern): Fix previous change.
7981 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7983         * ps-print.el (ps-face-attributes): It was not returning the
7984         attribute face for faces specified as string.  Reported by harven
7985         <harven@free.fr>.  (Bug#5254)
7986         (ps-print-version): New version 7.3.5.
7988 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
7990         * calendar/icalendar.el (icalendar--convert-tz-offset):
7991         Fix timezone names.
7992         (icalendar--convert-tz-offset): Fix the "last-day-problem".
7993         (icalendar--add-diary-entry): Remove the trailing blank that
7994         diary-make-entry inserts.
7996 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
7998         Make `file-expand-wildcards' work for remote files.
8000         * files.el (file-expand-wildcards): In case of remote files, check
8001         only local file name part for wildcards.  Provide feature 'files
8002         and subfeature 'remote-wildcards.  (Bug#5198)
8004         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
8005         if there is already an established connection.
8006         (tramp-advice-file-expand-wildcards): Remove it.
8008         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
8009         (tramp-advice-file-expand-wildcards): Move from tramp.el.
8010         Activate advice for older GNU Emacs versions.  (Bug#5237)
8012 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
8014         Some doc fixes (more needed).
8016         * find-cmd.el (find-constituents): Reflow docstring.
8017         (find-cmd, find-prune, find-command): Fix typos in docstrings.
8018         (find-generic): Doc fix.
8020 2009-12-17  Juri Linkov  <juri@jurta.org>
8022         Fix regression from 23.1 to allow multiple modes in Local Variables.
8024         * files.el (hack-local-variables-filter): While ignoring duplicates,
8025         don't take `mode' into account.
8026         (hack-local-variables-filter, hack-dir-local-variables):
8027         Don't remove duplicate `mode' from local-variables-alist (like `eval').
8029 2009-12-17  Juri Linkov  <juri@jurta.org>
8031         Make `dired-diff' safer.  (Bug#5225)
8033         * dired-aux.el (dired-diff): Signal an error when `file' equals to
8034         `current' or when `file' is a directory of the `current' file.
8036 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
8038         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
8039         unconditionally preloaded files.
8041 2009-12-16  Juri Linkov  <juri@jurta.org>
8043         Revert to old 23.1 logic of using the file at the mark as default.
8044         * dired-aux.el (dired-diff): Use the file at the mark as default
8045         if it's not the same as the current file, and the target dir is
8046         the current dir or the mark is active.  Add the current file
8047         as the arg of `dired-dwim-target-defaults'.  Use the default file
8048         in the prompt.  (Bug#5225)
8050 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
8052         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
8053         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
8054         (tramp-check-for-regexp): Check also, when an echoing shell stops
8055         to echo sent commands.
8057 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
8059         * Makefile.in: Revert last change (Bug#5191).
8061 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
8063         * vc-hg.el (vc-hg-print-log): Fix argument order.
8064         (vc-hg-working-revision): Make sure the command is executed in a
8065         known environment so that we can parse the output.  (Bug#4417)
8067 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
8069         * progmodes/python.el (python-symbol-completions): Remove text
8070         properties from symbol string before calling python-send-receive.
8072 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
8074         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
8075         when there are values for both file and line.  (Bug#5060)
8077 2009-12-14  Juri Linkov  <juri@jurta.org>
8079         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
8080         whitespace after the file name of the first line of unified format,
8081         because git-diff doesn't output whitespace and file modification time
8082         after the file name.
8084 2009-12-14  David Kastrup  <dak@gnu.org>
8086         * info.el (Info-hide-cookies-node): Before hiding a cookie,
8087         check if it already has the `display' property added by
8088         `Info-display-images-node', and not put the `invisible' property
8089         in this case.
8091 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
8093         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
8094         (semantic-mru-bookmark-mode): Doc fixes.
8096         * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
8097         of assert.
8099 2009-12-13  Glenn Morris  <rgm@gnu.org>
8101         * mail/emacsbug.el (message-sort-headers): Define for compiler.
8102         (report-emacs-bug): In message-mode, sort manually before storing
8103         original report text.  (Bug#5178)
8104         Remove superfluous save-excursion.
8106 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
8108         * net/dbus.el (dbus-property-handler): Filter lambda forms out
8109         when responding to "GetAll" properties.
8111 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
8113         * simple.el (compose-mail): Remove mail-setup-with-from from
8114         customization checks.
8116 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
8118         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
8119         RAR archives created on Unix systems.
8121 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8123         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
8124         the varalias that was accidentally removed by the 2009-11-19 change
8125         (bug#5186).
8127 2009-12-12  Kenichi Handa  <handa@m17n.org>
8129         * language/indian.el (indian-compose-regexp): New function.
8130         (malayalam-composable-pattern): Fix the pattern.
8131         (composition-function-table): Set malayalam-composable-pattern for
8132         Malayalam characters.
8134 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
8136         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
8137         rather than down-mouse-1, based on follow-link conventions.
8139         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
8140         are compiled.
8142 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
8144         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
8145         (verilog-vmm-statement-re, verilog-ovm-statement-re)
8146         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
8147         (verilog-leap-to-head, verilog-backward-token):
8148         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
8150 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
8152         * progmodes/verilog-mode.el (verilog-auto-lineup)
8153         (verilog-nameable-item-re): Cleanup user-visible spelling and
8154         documentation errors.  One reported by Gary Delp.
8155         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
8156         (verilog-read-decls): Fix AUTOWIRE with types declared in a
8157         package, bug195.  Reported by Pierre-David Pfister.
8159 2009-12-11  Glenn Morris  <rgm@gnu.org>
8161         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
8163         * mail/emacsbug.el: No longer require sendmail.
8164         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
8165         (report-emacs-bug-orig-text): Doc fix.
8166         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
8167         New local variables, to adapt to different mail-user-agents.
8168         (report-emacs-bug): Fix test for a gnu.org address.
8169         Use overlays for emphasis, since font-lock defeats 'face property.
8170         Pretest bugs also end up at the newsgroup these days.
8171         Stop message-mode stripping text properties.
8172         Set and use the new buffer-local variables.
8173         (report-emacs-bug-hook): Add doc-string.
8174         Remove some unnecessary save-excursions and simplify.
8175         Use the appropriate hook and send-command.
8177         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
8178         capitalization of some menu entries.
8180 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
8182         * whitespace.el (whitespace-display-char-on):
8183         Ensure `buffer-display-table' is unique when two or more windows are
8184         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
8185         New version 12.1.
8187 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
8189         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
8190         characters in the Attribute field.
8192 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
8194         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
8196 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8198         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
8199         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
8200         Disregard autoload-excludes.
8201         (update-directory-autoloads): Obey autoload-excludes here instead.
8202         But don't store its contents in no-autoloads and remove entries that
8203         refer to excludes files.
8205 2009-12-10  Glenn Morris  <rgm@gnu.org>
8207         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
8208         (expand-mail-aliases): Define for compiler.
8210         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
8211         Define for compiler.
8213         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
8214         appropriate for the mail-user-agent in use.
8216 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
8218         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
8220 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
8222         Fix short log parsing and fontification.
8223         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
8224         Fix fontification for the [merge] label.
8226 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
8228         Drop some properties to avoid surprises (bug#5002).
8229         * htmlfontify.el (hfy-ignored-properties): New defcustom.
8230         (hfy-fontify-buffer): Use it.
8232 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8234         Minor cleanup.
8235         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
8236         Adjust all callers.
8237         (ffap-locate-file): Remove unused arg `dir-ok' and make other
8238         args compulsory.  Adjust callers.
8239         (ffap-gopher-at-point): Remove unused var `name'.
8241         Get rid of the ELCFILES abomination.
8242         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
8243         (compile-elcfiles): New phony target.
8244         (compile-main): Compute ELCFILES dynamically.
8245         (compile-clean): New target to remove left-over elc files.
8246         (compile, all): Use it.
8248 2009-12-09  Kenichi Handa  <handa@etlken>
8250         * international/mule-diag.el: Require help-mode instead of help-fns.
8252 2009-12-09  Kenichi Handa  <handa@m17n.org>
8254         * international/mule-cmds.el (ucs-names): Supply sufficiently
8255         fine ranges instead of pre-calculating accurate ranges.
8256         Iterate with bigger gc-cons-threshold.
8258 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
8260         Add support for stashing a snapshot of the current tree.
8261         * vc-git.el (vc-git-stash-snapshot): New function.
8262         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
8264 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
8266         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
8267         instead of `(beginning|end)-of-line'.
8269 2009-12-08  Glenn Morris  <rgm@gnu.org>
8271         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
8273         * Makefile.in (ELCFILES): Regenerate.
8275 2009-12-07  Juri Linkov  <juri@jurta.org>
8277         Don't lazy-highlight the comint output in history Isearch mode.
8279         * comint.el (comint-history-isearch-search): Instead of
8280         `comint-line-beginning-position', use `comint-after-pmark-p'
8281         to check if point if before the process mark, and go to
8282         `process-mark' in this case.
8284 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8286         * textmodes/tex-mode.el (latex-complete)
8287         (latex-indent-or-complete): Remove.
8288         (latex-mode): Set completion-at-point-functions instead.
8290         Provide a standard completion command and hook it into TAB.
8291         * minibuffer.el (completion-at-point-functions): New var.
8292         (completion-at-point): New command.
8293         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
8294         * progmodes/python.el (python-mode-map): Use completion-at-point.
8295         (python-completion-at-point): Rename from python-partial-symbol and
8296         adjust for use in completion-at-point-functions.
8297         (python-mode): Setup completion-at-point for Python completion.
8298         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
8299         extracted from lisp-complete-symbol.
8300         (lisp-complete-symbol): Use it.
8301         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
8302         setup completion-at-point for Elisp completion.
8303         (emacs-lisp-mode-map, lisp-interaction-mode-map):
8304         Use completion-at-point.
8305         * ielm.el (ielm-map): Use completion-at-point.
8306         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
8307         * progmodes/sym-comp.el: Move to...
8308         * obsolete/sym-comp.el: Move from progmodes.
8310 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
8312         Prevent save-buffer in Rmail buffers from using the coding-system
8313         of the current message, and from clobbering the encoding mnemonics
8314         in the mode line (Bug#4623).
8316         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
8317         flag, too.
8318         (rmail-message-encoding): New variable.
8319         (rmail-write-region-annotate): Record the encoding of the current
8320         message in rmail-message-encoding.
8321         (rmail-after-save-hook): New function, restores the encoding of
8322         the current message after the message collection is saved.
8324 2009-12-07  Juri Linkov  <juri@jurta.org>
8326         * progmodes/grep.el (grep-read-files): Use `completing-read'
8327         instead of `read-string'.  Set its `collection' arg to
8328         `read-file-name-internal'.  (Bug#4301)
8330 2009-12-07  Juri Linkov  <juri@jurta.org>
8332         Correctly restore original Isearch point.  (Bug#4994)
8334         * isearch.el (isearch-mode): Move `isearch-push-state' after
8335         `(run-hooks 'isearch-mode-hook)'.
8336         (isearch-cancel): When `isearch-push-state-function' is defined,
8337         let-bind `isearch-cmds' to the first state (the last element of
8338         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
8339         function and restores the original point).  Otherwise, move point
8340         to `isearch-opoint'.
8342 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8344         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
8345         chars that don't have names, so the table can be built much faster at
8346         run-time.
8348 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
8350         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
8351         change.  Suggested by David Kastrup.
8353         * simple.el (compose-mail): Check for incompatibilities and warn.
8354         (compose-mail-user-agent-warnings): New option.
8356 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
8358         Support showing a single log entry from vc-annotate.
8359         * vc.el (print-log): Add a new argument: START-REVISION.
8360         (vc-print-log-internal): Add a new optional argument and
8361         pass it to the backend.
8362         (vc-print-log, vc-print-root-log): Adjust callers.
8363         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
8364         buffer already displays the requested log entry, use it.
8365         Otherwise display only the log entry in question.
8366         * vc-svn.el (vc-svn-print-log):
8367         * vc-mtn.el (vc-mtn-print-log):
8368         * vc-hg.el (vc-hg-state):
8369         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
8370         (vc-git-show-log-entry): Return t on success.
8371         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
8372         (vc-bzr-show-log-entry): Return t on success.
8373         * vc-rcs.el (vc-rcs-print-log):
8374         * vc-sccs.el (vc-sccs-print-log):
8375         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
8377 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
8379         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
8380         Add menus to the meta mode.  (Bug#5043)
8382 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
8384         * ediff-init.el (ediff-event-key): Use event-to-character instead of
8385         event-key.
8387         * ediff.el (ediff-buffers-internal): Add unwind-protect.
8389 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
8391         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
8392         Berbain <raphael.berbain@gmail.com>.
8394         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
8395         characters.
8396         (tramp-initial-end-of-output): New defconst.
8397         (tramp-methods, tramp-find-shell)
8398         (tramp-open-connection-setup-interactive-shell)
8399         (tramp-maybe-open-connection): Use it.
8400         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
8401         existence of `#' and `$'.
8403         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
8404         `tramp-initial-end-of-output'.
8406 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
8408         Get the background mode from the terminal for xterm, and set
8409         faces accordingly.
8410         * term/xterm.el (xterm-set-background-mode): New function.
8411         (terminal-init-xterm): Use it in case xterm supports background
8412         color queries.  Recompute faces after getting the background
8413         color.
8415 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
8417         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
8418         number comment back on its own line, for easier parsing.
8420 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8422         Make it work for non-file buffers (bug#5102).
8423         * doc-view.el (doc-view-current-cache-dir):
8424         Use doc-view-buffer-file-name rather than buffer-file-name.
8425         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
8427 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
8429         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
8430         author field is too short.
8432 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
8434         * vc-git.el (vc-git-print-log): Handle a limit argument.
8435         Display the short log in graph form and with labels.
8436         (vc-git-log-view-mode): Handle labels.
8438         Make vc-revert change VC state from 'added to 'unregistered.
8439         * vc-git.el (vc-git-revert): Call git reset first.
8441 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
8443         * net/newst-backend.el, net/newst-plainview.el:
8444         * net/newst-reader.el, net/newst-ticker.el:
8445         * net/newst-treeview.el, net/newsticker.el:
8446         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
8448 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
8450         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
8452         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
8453         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
8454         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
8455         Update annotation regexp.
8457         * simple.el (beginning-of-visual-line): Constrain to field
8458         boundaries (Bug#5106).
8460 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
8462         * xml.el (xml-substitute-numeric-entities): Move
8463         newsticker--decode-numeric-entities in newst-backend.el to
8464         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
8465         * net/newst-backend.el (newsticker--parse-generic-feed)
8466         (newsticker--parse-generic-items)
8467         (newsticker--decode-numeric-entities): Move
8468         newsticker--decode-numeric-entities in newst-backend.el to
8469         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
8471 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
8473         * progmodes/js.el (js--js-not): Add null to the list of values.
8475 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
8477         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
8479 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
8481         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
8482         delimiter if it is at the end of the current line.
8483         (bibtex-generate-url-list): Fix docstring.
8485 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8487         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
8488         minibuffer's content with itself.
8489         Fold the confirm-after-completion case into the `confirm' case.
8490         (completion-pcm-word-delimiters): Add : and / to the delimiters.
8492 2009-12-06  Kevin Ryde  <user42@zip.com.au>
8494         * ffap.el (ffap-rfc-path): Make this a defcustom since
8495         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
8497         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
8498         manuals, similar to existing setup for help-mode.  (Bug#3913.)
8500 2009-12-05  Juri Linkov  <juri@jurta.org>
8502         Save and restore dired buffer's point positions too.  (Bug#4880)
8504         * dired.el (dired-save-positions): Return in the first element
8505         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
8506         Doc fix.
8507         (dired-restore-positions): First restore buffer's position.
8508         While restoring window's positions, check if window still displays
8509         the original buffer.
8511 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
8513         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
8514         if possible.
8516         * cedet/semantic/ia.el (semantic-ia-complete-symbol):
8517         Make argument optional.
8519         * shell.el (shell): Require ansi-color (Bug#5113).
8521         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
8523         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
8525 2009-12-05  Alan Mackenzie  <acm@muc.de>
8527         * progmodes/cc-mode.el (c-before-hack-hook)
8528         (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
8529         `c-file-style' to work again.  This reversion restores the current
8530         software to its state in Emacs 23.1.  (Bug#4146)
8532 2009-12-05  Kevin Ryde  <user42@zip.com.au>
8534         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
8535         comment-start-skip to comment-end-skip as comment (Bug#4781).
8537 2009-12-05  Juri Linkov  <juri@jurta.org>
8539         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
8540         for virtual nodes.  (Bug#4147)
8541         (Info-find-node-2): Set `Info-current-node-virtual' to nil
8542         when moving from a virtual node.
8543         (Info-mode-menu): Add `Info-virtual-index' to the menu.
8544         (Info-mode): Add `Info-virtual-index' to the docstring.
8546 2009-12-05  Eric Ludlam  <zappo@gnu.org>
8548         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
8549         Describe project macro symbols.
8551         * cedet/semantic/complete.el (semantic-complete-do-completion):
8552         Don't call semantic-collector-current-exact-match.
8554         * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
8555         ede-objects as targets.
8557         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
8558         a target's object list even if compiler vars are already in the
8559         Makefile.
8561         * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
8562         list of headers producing necessary macros.
8564 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
8566         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
8567         track of the buffer position of the end of a BibTeX entry as this
8568         position may change during reformatting.
8569         (bibtex-format-entry): Remove whitespace before processing
8570         numerical fields so that we recognize the latter properly.
8571         (bibtex-reformat): Do not use push which changes the global value
8572         of bibtex-entry-format.
8573         (bibtex-field-braces-alist, bibtex-field-strings-alist)
8574         (bibtex-field-re-init): Replace only space characters by regexp
8575         for whitespace.
8576         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
8577         (bibtex-initialize): Also update bibtex-strings.
8578         (bibtex-kill-field): Preserve white space at end of entry.
8579         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
8580         Update bibtex-reference-keys.
8582 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8584         * minibuffer.el (completion-pcm--merge-try): Also consider placing
8585         point after a star, if that's the only place where modifications can
8586         make progress.
8588 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
8590         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
8591         in docstrings.
8593 2009-12-04  Juri Linkov  <juri@jurta.org>
8595         * proced.el (proced): Call `(proced-update t)' to update process
8596         information instead of only running proced-post-display-hook.
8597         (proced-send-signal): Add a leading space to the buffer name
8598         " *Marked Processes*" to make this buffer ephemeral.
8600 2009-12-04  Juri Linkov  <juri@jurta.org>
8602         * dired.el (dired-auto-revert-buffer): New defcustom.
8603         (dired-internal-noselect): Use it.
8605 2009-12-04  Juri Linkov  <juri@jurta.org>
8607         Change roles of modes and functions in image-mode.el (Bug#5062).
8609         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
8610         in `auto-mode-alist'.
8611         (image-mode-previous-major-mode): New variable.
8612         (image-minor-mode-map): Rename from `image-mode-text-map'.
8613         (image-mode): Move graceful error-handling code from
8614         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
8615         (image-minor-mode): Remove all image-handling code.
8616         Replace `image-mode-text-map' with `image-minor-mode-map'.
8617         Check for `image-type' in mode-line format string.
8618         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
8619         (image-mode-as-text): New function with most code from
8620         `image-mode-maybe'.
8621         (image-toggle-display-text): Move code that removes image
8622         properties from `image-toggle-display' to here.
8623         (image-toggle-display-image): New function with code that adds
8624         image properties copied from `image-toggle-display'.
8625         (image-toggle-display): Remove most code with leaving only code
8626         that toggles between `image-mode-as-text' and `image-mode'.
8628 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
8630         * net/newst-treeview.el
8631         (newsticker--treeview-list-highlight-start): Restored call to
8632         save-excursion: Selected item was stuck.
8633         (newsticker--treeview-list-select): New.
8634         (newsticker--treeview-item-show-text)
8635         (newsticker--treeview-item-show)
8636         (newsticker--treeview-item-update): Use new
8637         newsticker-treeview-item-mode.
8638         (newsticker-treeview-update): Keep current item.
8639         (newsticker-treeview-next-new-or-immortal-item): Doc change.
8640         (newsticker--treeview-first-feed): Doc change.
8641         (newsticker-treeview-list-menu)
8642         (newsticker-treeview-item-menu): Added menu entries.
8643         (newsticker-treeview-item-mode): New.
8645         * net/newst-backend.el (newsticker-customize): Delete other
8646         windows.
8648 2009-12-04  Sam Steingold  <sds@gnu.org>
8650         * log-view.el (log-view-mode-map): "q" calls quit-window,
8651         like in all the other non-self-insert buffers.
8653 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8655         Minor cleanup.
8656         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
8657         key decoding rather than do it manually via last-input-event +
8658         ascii-character.
8659         (term-exec): Use delete-and-extract-region.
8660         (term-handle-ansi-terminal-messages): Remove unused var `end'.
8661         (term-process-pager): Remove unused var `i'.
8662         (term-dynamic-simple-complete): Make obsolete.
8663         (serial-update-config-menu): Remove unused vars `y' and `str'.
8664         (term-update-mode-line): Remove unused var `temp'.
8666 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
8668         Limit the number of log entries displayed by default.
8669         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
8670         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
8671         using a prefix argument.
8673 2009-12-03  Glenn Morris  <rgm@gnu.org>
8675         * progmodes/idlwave.el (class): Restore still useful declaration.
8677 2009-12-03  Alan Mackenzie  <acm@muc.de>
8679         Enhance `c-parse-state' to run efficiently in "brace deserts".
8681         * progmodes/cc-mode.el (c-basic-common-init):
8682         Call c-state-cache-init.
8683         (c-neutralize-syntax-in-and-mark-CPP): Rename from
8684         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
8685         placing `category' properties value 'c-cpp-delimiter at its boundaries.
8687         * progmodes/cc-langs.el (c-before-font-lock-function):
8688         c-extend-and-neutralize-syntax-in-CPP has been renamed
8689         c-neutralize-syntax-in-and-mark-CPP.
8691         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
8692         with `category' properties now, not `syntax-table' ones.
8694         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
8695         enhanced (but slower) version of c-end-of-macro that won't land
8696         inside a literal or on another awkward character.
8697         (c-state-cache-too-far, c-state-cache-start)
8698         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
8699         (c-state-nonlit-pos-cache-limit, c-state-point-min)
8700         (c-state-point-min-lit-type, c-state-point-min-lit-start)
8701         (c-state-min-scan-pos, c-state-brace-pair-desert)
8702         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
8703         buffer local variables.
8704         (c-state-literal-at, c-state-lit-beg)
8705         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
8706         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
8707         (c-state-cache-top-paren, c-state-cache-after-top-paren)
8708         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
8709         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
8710         (c-renarrow-state-cache)
8711         (c-append-lower-brace-pair-to-state-cache)
8712         (c-state-push-any-brace-pair, c-append-to-state-cache)
8713         (c-remove-stale-state-cache)
8714         (c-remove-stale-state-cache-backwards, c-state-cache-init)
8715         (c-invalidate-state-cache-1, c-parse-state-1)
8716         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
8717         (c-parse-state): Enhance and refactor.
8718         (c-debug-parse-state): Amend to deal with all the new variables.
8720         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
8721         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
8722         modify to use category text properties rather than syntax-table ones.
8723         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
8724         to switch off/on the syntactic paren property of C++ template
8725         delimiters using the category property.
8726         (c-with-<->-as-parens-suppressed): Macro to invoke code with
8727         template delims suppressed.
8728         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
8729         New constant/macros which apply category properties to the start
8730         and end of preprocessor constructs.
8731         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
8732         "comment out" the syntactic value of characters in preprocessor
8733         constructs.
8734         (c-with-cpps-commented-out)
8735         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
8736         with characters in all or all but one preprocessor constructs
8737         "commented out".
8739 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
8741         * proced.el (proced-filter-alist): Use regexp-quote.
8743 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
8745         Cleanup.
8746         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
8747         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
8748         arguments.  Expand `default-directory'.
8750         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
8751         the benefit of returning an expanded localname.
8752         (tramp-tramp-file-p): Handle the case NAME is not a string.
8754 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
8756         Add support for bzr shelve/unshelve.
8757         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
8758         (vc-bzr-extra-menu-map): New variables.
8759         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
8760         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
8761         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
8762         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
8763         (vc-bzr-dir-extra-headers): Display shelves.
8765         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
8767 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8769         * textmodes/bibtex.el (bibtex-complete-internal):
8770         Use completion-in-region.
8771         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
8773 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
8775         Support applying stashes.  Improve UI.
8776         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
8777         (vc-git-stash-apply, vc-git-stash-pop)
8778         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
8779         (vc-git-stash-menu): New functions.
8780         (vc-git-stash-menu-map): New variable.
8781         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
8783 2009-12-03  Glenn Morris  <rgm@gnu.org>
8785         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
8786         (vc-print-log-internal): Fix previous change.
8787         (vc-revert): Correct pluralization.
8789 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8791         * progmodes/make-mode.el (makefile-special-targets-list): No need for
8792         it to be an alist any more.
8793         (makefile-complete): Use completion-in-region.
8795         * progmodes/octave-mod.el (octave-complete-symbol):
8796         Use completion-in-region.
8798         Misc cleanup.
8799         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
8800         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
8801         (idlwave-complete-class): Don't quote lambda.
8802         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
8803         (idlwave-mode-map): Move initialization into declaration.
8804         (idlwave-action-and-binding): Use backquotes.
8805         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
8806         Simplify.
8807         (idlwave-is-pointer-dereference): Remove unused var `pos'.
8808         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
8809         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
8810         `parts', and `all-parts'.
8811         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
8812         (idlwave-convert-xml-system-routine-info): Remove unused string
8813         `version-string'.
8814         (idlwave-display-user-catalog-widget): Use dolist.
8815         (idlwave-scanning-lib): Declare dynamically-scoped var.
8816         (idlwave-scan-library-catalogs): Remove unused var `flags'.
8817         (completion-highlight-first-word-only): Declare to silence bytecomp.
8818         (idlwave-popup-select): Tighten scope of `resp'.
8819         (idlwave-find-struct-tag): Remove unused var `beg'.
8820         (idlwave-after-load-rinfo-hook): Declare.
8821         (idlwave-sintern-class-info): Remove unused var `taglist'.
8822         (idlwave-find-class-definition): Remove unused var `list'.
8823         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
8824         (idlwave-what-module-find-class): Remove unused var `classes'.
8826 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
8828         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
8830 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8832         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
8833         buffers visited.  Remove redundant current-buffer-saving.
8835 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8837         Use completion-in-buffer and remove uses of dynamic scoping.
8838         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
8839         (pascal-buffer-to-use, pascal-flag): Don't declare.
8840         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
8841         (pascal-get-completion-decl, pascal-keyword-completion):
8842         Add `pascal-str' argument, save-excursion,
8843         return the found completions, and don't filter with pascal-pred.
8844         (pascal-completion-cache): New var.
8845         (pascal-completion): Don't switch buffer any more (it was never
8846         necessary).  Don't save-excursion any more (it's done by the called
8847         subroutines).  Use a cache to avoid redundant computations.
8848         Use complete-with-action rather than pascal-completion-response and
8849         let it apply the predicate as well.
8850         (pascal-complete-word): Use completion-in-buffer when
8851         pascal-toggle-completions is nil.
8852         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
8853         not used any more.
8854         (pascal-comp-defun): Don't change buffer any more.
8855         Use complete-with-action rather than pascal-completion-response and
8856         let it apply the predicate as well.
8857         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
8858         when neded.
8860 2009-12-02  Kenichi Handa  <handa@m17n.org>
8862         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
8863         shape for all Indic scripts.
8865 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8867         Use completion-in-buffer.
8868         * wid-edit.el (widget-field-text-end): New function.
8869         (widget-field-value-get): Use it.
8870         (widget-string-complete, widget-file-complete)
8871         (widget-color-complete): Use it and completion-in-region.
8872         (widget-complete): Don't narrow the buffer.
8874 2009-12-02  Glenn Morris  <rgm@gnu.org>
8876         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
8877         (rmail-select-summary): Use rmail-pop-to-buffer.
8878         * mail/rmailsum.el: Replace all pop-to-buffer calls with
8879         rmail-pop-to-buffer, to prevent horizontal splits.
8881         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
8882         save-excursion with save-current-buffer.
8883         Widen before searching.  (Bug#5093)
8884         (diary-list-sexp-entries): Remove superfluous save-excursion.
8886 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
8888         * woman.el (woman-make-bufname): Handle man-pages with "." in the
8889         name.  (Bug#5038)
8891 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
8893         * ido.el (ido-file-internal): Handle filenames at point that do
8894         not have a directory part.  (Bug#5049)
8896 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
8898         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
8899         (mpc-songs-jump-to, mpc-resume): Doc fixes.
8901 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
8903         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
8904         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
8905         any more.
8907 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8909         * comint.el (comint-insert-input): Ignore clicks to the right of
8910         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
8912         * vc.el (vc-print-log-internal): Don't wait for the process to
8913         terminate before setting up the major mode.
8915         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
8916         in case.
8918         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
8919         the last element.
8921         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
8923 2009-12-01  Glenn Morris  <rgm@gnu.org>
8925         * window.el (window--display-buffer-2): Fix previous changes.
8927 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
8929         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
8931 2009-12-01  Glenn Morris  <rgm@gnu.org>
8933         * Makefile.in (ELCFILES): Add mpc.elc.
8935 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8937         * mpc.el: New file.
8939 2009-12-01  Glenn Morris  <rgm@gnu.org>
8941         * window.el (window-to-use): Define for compiler.
8943         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
8944         consistent with others (no final period).
8946         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
8947         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
8949 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
8951         Make vc-print-log buttons work.
8952         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
8954 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
8956         * savehist.el (savehist-autosave-interval): Allow setting to nil
8957         through customize.  (Bug#5056)
8959 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
8961         Fix references to jit-lock properties.
8962         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
8963         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
8964         (perl-font-lock-special-syntactic-constructs):
8965         Quote jit-lock-defer-multiline property.
8967 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
8969         * vc-git.el (vc-git-registered): Call vc-git-root only once.
8971 2009-11-30  Juri Linkov  <juri@jurta.org>
8973         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
8974         value `buffer' of `multi-isearch-next-buffer-current-function'.
8975         Use `(current-buffer)' when `buffer' is nil.
8976         (multi-isearch-next-buffer-from-list): Don't fallback to
8977         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
8979 2009-11-30  Juri Linkov  <juri@jurta.org>
8981         * misearch.el (multi-isearch-read-buffers): Move canonicalization
8982         of buffers with `get-buffer' to `multi-isearch-buffers'.
8983         (multi-isearch-buffers, multi-isearch-buffers-regexp):
8984         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
8985         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
8986         FILES with `expand-file-name' converting relative file names
8987         to absolute.  Doc fix.  (Bug#4727)
8989 2009-11-30  Juri Linkov  <juri@jurta.org>
8991         * misearch.el (multi-isearch-read-buffers)
8992         (multi-isearch-read-matching-buffers): New functions.
8993         (multi-isearch-buffers, multi-isearch-buffers-regexp):
8994         Use them in the `interactive' spec.  Doc fix.
8995         (multi-isearch-read-files, multi-isearch-read-matching-files):
8996         New functions.
8997         (multi-isearch-files, multi-isearch-files-regexp):
8998         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
9000 2009-11-30  Juri Linkov  <juri@jurta.org>
9002         * doc-view.el (doc-view-continuous):
9003         Rename from `doc-view-continuous-mode'.
9004         (doc-view-menu): Move "Toggle display" to the top.
9005         Add submenu "Continuous" with radio buttons "Off"/"On"
9006         and "Save as Default".
9007         (doc-view-scroll-up-or-next-page)
9008         (doc-view-scroll-down-or-previous-page)
9009         (doc-view-next-line-or-next-page)
9010         (doc-view-previous-line-or-previous-page): Rename
9011         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
9013 2009-11-30  Juri Linkov  <juri@jurta.org>
9015         * comint.el (comint-mode-map): Rebind `M-r' from
9016         `comint-previous-matching-input' to
9017         `comint-history-isearch-backward-regexp'.
9018         Unbind `M-s' to allow global key binding `M-s'.
9019         Add menu items for `comint-history-isearch-backward' and
9020         `comint-history-isearch-backward-regexp'.  (Bug#3746)
9022 2009-11-30  Juri Linkov  <juri@jurta.org>
9024         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
9025         For def=recenter, replace `recenter' with `recenter-top-bottom'
9026         that is called with `this-command' and `last-command' let-bound
9027         to `recenter-top-bottom'.  When the last `def' was not `recenter',
9028         set `recenter-last-op' to nil.  (Bug#4981)
9030 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9032         Minor cleanup and simplification.
9033         * filecache.el (file-cache-add-directory)
9034         (file-cache-add-directory-recursively)
9035         (file-cache-add-from-file-cache-buffer)
9036         (file-cache-delete-file-regexp, file-cache-delete-directory)
9037         (file-cache-files-matching-internal, file-cache-display): Use dolist.
9038         (file-cache-temp-minibuffer-message): Delete function.
9039         (file-cache-minibuffer-complete): Use minibuffer-message instead.
9041         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
9042         Don't signal an error when bumping into EOB in tr, s, or y.
9044 2009-11-29  Juri Linkov  <juri@jurta.org>
9046         * startup.el (fancy-about-text): Fix wording of Guided Tour.
9047         (Bug#4960)
9049         * descr-text.el (describe-char-unidata-list): Use lowercase name
9050         for "Unicode name" like in other tags.
9052 2009-11-29  Juri Linkov  <juri@jurta.org>
9054         * ediff-util.el (ediff-minibuffer-with-setup-hook):
9055         New compatibility macro.
9056         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
9058 2009-11-29  Juri Linkov  <juri@jurta.org>
9060         Add defcustom to define the cycling order of `recenter-top-bottom'.
9061         (Bug#4981)
9063         * window.el (recenter-last-op): Doc fix.
9064         (recenter-positions): New defcustom.
9065         (recenter-top-bottom): Rewrite to use `recenter-positions'.
9066         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
9068 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
9070         Improve integration of Tramp and ange-ftp in eshell.
9072         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
9073         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
9074         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
9076         * eshell/esh-util.el (top): Require also Tramp when compiling.
9077         (eshell-directory-files-and-attributes): Check for FTP remote
9078         connection.
9079         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
9080         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
9081         (eshell-file-attributes): Handle ".".  Return `entry'.
9083         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
9084         (ange-ftp-directory-files-and-attributes)
9085         (ange-ftp-real-directory-files-and-attributes): New defuns.
9087         * net/tramp.el (tramp-maybe-open-connection): Open the remote
9088         shell with "exec" when possible.  This prevents trailing prompts
9089         in `start-file-process'.
9091 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9093         Try and remove assumptions about point-min==1.
9094         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
9095         (rng-compute-mode-line-string): Show the validation percentage in
9096         terms of the narrowed text, not the widened text.
9097         (rng-do-some-validation): Don't catch internal errors when debugging.
9098         (rng-first-error): Simplify.
9099         (rng-after-change-function): Remove work around.  AFAIK the bug has
9100         been fixed a while ago.
9102         * image-mode.el (image-minor-mode): Exit more gracefully when the image
9103         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
9105         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
9107         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
9108         `cd' doesn't always do it for us (bug#5067).
9110         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
9111         on 2009-10-25 as part of some other change (bug#5067).
9113 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9115         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
9116         `suspicious'.
9117         (byte-compile-warnings): Use byte-compile-warning-types.
9118         (byte-compile-save-excursion): Warn about use of set-buffer right
9119         after save-excursion.
9121         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
9122         the excursion as well.
9124 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
9126         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
9127         providing a Tramp related implementation of "su" and "sudo".
9128         (eshell-unix-initialize): Add "su" and "sudo".
9130 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
9132         * net/socks.el (socks-send-command): Convert binary request to
9133         unibyte before sending.  This fixes mishandling of some port
9134         numbers such as 129.
9136 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9138         * help.el (describe-bindings-internal): Remove `interactive'.
9140         * man.el (Man-completion-table): Trim a terminating "(".
9141         Remove the space between name page a section.
9142         Add the command's description on the `help-echo' property.
9143         Remove `process-connection-type' binding since it's unused by
9144         call-process.
9145         Provide completion for the "<section> <name>" format as well.
9146         (Man-default-man-entry): Remove spurious var shadowing the argument.
9148 2009-11-26  Kevin Ryde  <user42@zip.com.au>
9150         * log-view.el: Add "Keywords: tools", since its other keywords
9151         aren't in finder-known-keywords, and following vc.el.
9153         * sha1.el (sha1-string-external): default-directory "/" in case
9154         otherwise non-existent.  process-connection-type pipe for touch of
9155         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
9157 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9159         Misc coding convention cleanups.
9160         * htmlfontify.el (hfy-init-kludge-hook): Rename from
9161         hfy-init-kludge-hooks.
9162         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
9163         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
9164         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
9165         and push.
9166         (hfy-slant, hfy-weight): Use tables rather than code.
9167         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
9168         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
9169         (hfy-face-attr-for-class): Initialize `face-spec' directly.
9170         (hfy-face-to-css): Remove `nconc' with single arg.
9171         (hfy-p-to-face-lennart): Use `or'.
9172         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
9173         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
9174         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
9175         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
9176         (hfy-force-fontification): Use run-hooks.
9178 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
9180         Various minor fixes.
9181         * htmlfontify.el (hfy-default-header): Add toggle_invis since
9182         Javascript belongs in the header, not the body.
9183         (hfy-javascript): Remove.
9184         (hfy-fontify-buffer): Don't insert it any more.
9185         (hfy-face-at): Handle (face0 face1 face2) style face properties.
9186         Fix bug in invis handling when there were no invis props in a chunk.
9188 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9190         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
9192 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
9194         * finder.el (finder-mode-map): Add a menu.
9196 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
9198         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
9199         "unsigned" structs.
9201         (verilog-leap-to-head, verilog-backward-token): Handle "disable
9202         fork" statement better.
9204 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
9206         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
9207         (verilog-delete-auto, verilog-delete-empty-auto-pair)
9208         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
9209         Reported by Clay Douglass.
9211         (verilog-auto-inst, verilog-auto-star-safe)
9212         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
9213         Fix removing "// Interfaces" when saving .* expansions.  Reported by
9214         Pierre-David Pfister.
9216 2009-11-26  Glenn Morris  <rgm@gnu.org>
9218         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
9219         the scope.
9221 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
9223         * vc-annotate.el (vc-annotate-revision-previous-to-line):
9224         Really use previous revision.
9226 2009-11-25  Kevin Ryde  <user42@zip.com.au>
9228         * man.el (Man-completion-table): default-directory "/" in case
9229         doesn't otherwise exist.  process-environment COLUMNS=999 so as
9230         not to truncate long names.  process-connection-type pipe to avoid
9231         any chance of hitting the pseudo-tty TIOCGWINSZ.
9232         (man): completion-ignore-case t for friendliness and since man
9233         itself is case-insensitive on the command line.
9234         Further to Bug#3717.
9236         * arc-mode.el: Add "Keywords: files", so the details in its
9237         commentary can be reached from finder-by-keyword.
9238         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
9239         editing mode, but it's comms related and sgml-mode.el has "comm"
9240         on that basis too.
9241         * textmodes/bibtex-style.el: Add "Keywords: tex".
9242         * international/isearch-x.el, international/ja-dic-cnv.el:
9243         * international/ja-dic-utl.el, international/kkc.el:
9244         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
9246 2009-11-25  Juri Linkov  <juri@jurta.org>
9248         * man.el (Man-completion-table): Modify regexp to include
9249         section names to completion strings.  (Bug#3717)
9251 2009-11-25  Juri Linkov  <juri@jurta.org>
9253         Search recursively in gzipped files.  (Bug#4982)
9255         * progmodes/grep.el (grep-highlight-matches): Add new options
9256         `always' and `auto'.  Doc fix.
9257         (grep-process-setup): Check `grep-highlight-matches' for
9258         `auto-detect' to determine the need to compute grep defaults.
9259         Move Windows/DOS specific --colors settings handling
9260         to `grep-compute-defaults'.  Check `grep-highlight-matches'
9261         to get the value of "--color=".
9262         (grep-compute-defaults): Compute `grep-highlight-matches' when it
9263         has the value `auto-detect'.  Move Windows/DOS specific settings
9264         from `grep-process-setup'.
9265         (zrgrep): New command with alias `rzgrep'.
9267 2009-11-25  Juri Linkov  <juri@jurta.org>
9269         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
9270         to nil instead of switching off view-mode.  (Bug#4896)
9272 2009-11-25  Juri Linkov  <juri@jurta.org>
9274         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
9276         * mwheel.el (mwheel-scroll-up-function)
9277         (mwheel-scroll-down-function): New defvars.
9278         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
9279         `scroll-up', and `mwheel-scroll-down-function' instead of
9280         `scroll-down'.
9282         * doc-view.el (doc-view-scroll-up-or-next-page)
9283         (doc-view-scroll-down-or-previous-page): Add optional ARG.
9284         Use this ARG in the call to image-scroll-up/image-scroll-down.
9285         Change `interactive' spec to "P".  Goto next/previous page only
9286         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
9287         SPC/DEL case).  Doc fix.
9288         (doc-view-next-line-or-next-page)
9289         (doc-view-previous-line-or-previous-page): Rename arg to ARG
9290         for consistency.
9291         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
9292         `doc-view-scroll-up-or-next-page', and buffer-local
9293         `mwheel-scroll-down-function' to
9294         `doc-view-scroll-down-or-previous-page'.
9296 2009-11-25  Juri Linkov  <juri@jurta.org>
9298         Provide additional default values (directories at other Dired
9299         windows) via M-n in the minibuffer of some Dired commands.
9301         * dired-aux.el (dired-diff, dired-compare-directories)
9302         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
9303         `minibuffer-default' in `minibuffer-with-setup-hook'.
9304         (dired-dwim-target-directory): Find a window that displays Dired
9305         buffer instead of failing when the next window is not Dired.
9306         Use `get-window-with-predicate' to find for the next Dired window.
9307         (dired-dwim-target-defaults): New function.
9309         * ediff-util.el (ediff-read-file-name):
9310         Use `dired-dwim-target-defaults' to set `minibuffer-default'
9311         in `minibuffer-with-setup-hook'.
9313 2009-11-25  Juri Linkov  <juri@jurta.org>
9315         Provide additional default values (file name at point or at the
9316         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
9318         * minibuffer.el (read-file-name-defaults): New function.
9319         (read-file-name): Reset `minibuffer-default' to nil when
9320         it duplicates initial input `insdef'.
9321         Bind `minibuffer-default-add-function' to lambda that
9322         calls `read-file-name-defaults' in `minibuffer-selected-window'.
9323         (minibuffer-insert-file-name-at-point): New command.
9325         * files.el (file-name-at-point-functions): New defcustom.
9326         (find-file-default): Remove defvar.
9327         (find-file-read-args): Don't use `find-file-default'.
9328         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
9329         to `read-file-name'.
9330         (find-file-literally): Use `read-file-name' with
9331         `confirm-nonexistent-file-or-buffer'.
9333         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
9335         * dired.el (dired-read-dir-and-switches):
9336         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
9337         to `read-file-name'.
9338         (dired-file-name-at-point): New function.
9339         (dired-mode): Add hook `dired-file-name-at-point' to
9340         `file-name-at-point-functions'.
9342 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
9344         Really make the *Completions* window soft-dedicated (bug#5030).
9345         * window.el (window--display-buffer-2): Add `dedicated' argument.
9346         (display-buffer): Pass it when needed so the dedicated flag is set
9347         after calling set-window-buffer, which would otherwise reset it.
9349 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
9351         * progmodes/meta-mode.el (meta-complete-symbol):
9352         * progmodes/etags.el (complete-tag):
9353         * mail/mailabbrev.el (mail-abbrev-complete-alias):
9354         Use completion-in-region.
9356         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
9357         (dabbrev-completion): Use completion-in-region.
9358         (dabbrev--abbrev-at-point): Simplify regexp.
9360         * abbrev.el (abbrev--before-point): Use word-motion functions
9361         if :regexp is not specified (bug#5031).
9363         * subr.el (string-prefix-p): New function.
9365         * man.el (Man-completion-cache): New var.
9366         (Man-completion-table): Use it.
9368         * vc.el (vc-print-log-internal): Make `limit' optional for better
9369         compatibility (e.g. with vc-annotate.el).
9371 2009-11-24  Kevin Ryde  <user42@zip.com.au>
9373         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
9374         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
9376         * emacs-lisp/elint.el (elint-add-required-env): Better error message
9377         when .el source file not found or other error.
9379 2009-11-24  Markus Triska  <markus.triska@gmx.at>
9381         * linum.el (linum-update-window): Ignore intangible (bug#4996).
9383 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9385         Handle the [back] button properly (bug#4979).
9386         * descr-text.el (describe-text-properties): Add a `buffer' argument.
9387         Use help-setup-xref, help-buffer, and with-help-window.
9388         (describe-char): Add `buffer' argument.
9389         Pass proper command to help-setup-xref.  Don't meddle with
9390         help-xref-stack-item directly.
9391         (describe-text-category): Use with-help-window and help-buffer.
9393         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
9394         for the displayed buffer (bug#4887).
9396         * man.el (Man-completion-table): New function.
9397         (man): Use it.
9399 2009-11-24  David Reitter  <david.reitter@gmail.com>
9401         * vc-git.el (vc-git-registered): Use checkout directory (where
9402         .git is) rather than the file's directory and a relative path spec
9403         to work around a bug in git.
9405 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
9407         Improve handling of processes on remote hosts.
9409         * eshell/esh-util.el (eshell-path-env): New defvar.
9410         (eshell-parse-colon-path): New defun.
9411         (eshell-file-attributes): Use `eshell-parse-colon-path'.
9413         * eshell/esh-ext.el (eshell-search-path):
9414         Use `eshell-parse-colon-path'.
9415         (eshell-remote-command): Remove argument HANDLER.
9416         (eshell-external-command): Check for FTP remote connection.
9418         * eshell/esh-proc.el (eshell-gather-process-output):
9419         Use `file-truename', in order to start also symlinked files.
9420         Apply `start-file-process' instead of `start-process'.
9421         Shorten `command' to the local file name part.
9423         * eshell/em-cmpl.el (eshell-complete-commands-list):
9424         Use `eshell-parse-colon-path'.
9426         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
9428         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
9429         to `eshell-directory-change-hook'.
9431 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
9433         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
9434         because it could be enabled automatically if view-read-only is non-nil.
9436 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
9438         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
9439         made on 2009-11-22.
9441 2009-11-24  Glenn Morris  <rgm@gnu.org>
9443         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
9444         deleted variable bookmark-bmenu-bookmark-column.
9446         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
9447         Move after definition of global-semantic-idle-tag-highlight-mode.
9449 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9451         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
9453 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
9455         * net/browse-url.el (browse-url-filename-alist): On Windows, add
9456         two slashes to the "file:" prefix.
9457         (browse-url-file-url): De-munge Cygwin filenames before passing
9458         them to Windows browser.
9459         (browse-url-default-windows-browser): Use call-process.
9461 2009-11-23  Juri Linkov  <juri@jurta.org>
9463         Implement DocView Continuous mode.  (Bug#4896)
9464         * doc-view.el (doc-view-continuous-mode): New defcustom.
9465         (doc-view-mode-map): Bind C-n/<down> to
9466         `doc-view-next-line-or-next-page', C-p/<up> to
9467         `doc-view-previous-line-or-previous-page'.
9468         (doc-view-next-line-or-next-page)
9469         (doc-view-previous-line-or-previous-page): New commands.
9471 2009-11-23  Juri Linkov  <juri@jurta.org>
9473         Implement Isearch in comint input history.  (Bug#3746)
9474         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
9475         `isearch-mode-hook'.
9476         (comint-history-isearch): New defcustom.
9477         (comint-history-isearch-backward)
9478         (comint-history-isearch-backward-regexp): New commands.
9479         (comint-history-isearch-message-overlay): New buffer-local variable.
9480         (comint-history-isearch-setup, comint-history-isearch-end)
9481         (comint-goto-input, comint-history-isearch-search)
9482         (comint-history-isearch-message, comint-history-isearch-wrap)
9483         (comint-history-isearch-push-state)
9484         (comint-history-isearch-pop-state): New functions.
9486 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
9488         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
9489         return.
9490         (tramp-handle-make-symbolic-link)
9491         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
9492         Quote file names.
9493         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
9494         (tramp-handle-process-file): Use it.
9496 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9498         * window.el (move-to-window-line-last-op): Remove.
9499         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
9501 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
9503         Make M-r mirror the new cycling behavior of C-l.
9504         * window.el (move-to-window-line-last-op): New var.
9505         (move-to-window-line-top-bottom): New command.
9506         (global-map): Bind M-r move-to-window-line-top-bottom.
9508 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
9510         * dired-x.el (dired-guess-shell-alist-default):
9511         Support xz format.  (Bug#4953)
9513 2009-11-22  Chong Yidong  <cyd@stupidchicken.com>
9515         * cedet/srecode/map.el (srecode-get-maps):
9516         * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
9517         * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
9518         * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
9519         (semantic-toggle-decoration-style):
9520         * cedet/semantic/decorate/include.el
9521         (semantic-decoration-include-describe)
9522         (semantic-decoration-unknown-include-describe)
9523         (semantic-decoration-unparsed-include-describe)
9524         (semantic-decoration-all-include-summary):
9525         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
9526         * cedet/semantic/analyze/complete.el
9527         (semantic-analyze-possible-completions):
9528         * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
9529         (semantic-show-unmatched-syntax-mode)
9530         (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
9531         (semantic-highlight-func-mode):
9532         * cedet/semantic/util.el (semantic-describe-buffer):
9533         * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
9534         (semantic-symref-find-tags-by-name)
9535         (semantic-symref-find-tags-by-regexp)
9536         (semantic-symref-find-tags-by-completion)
9537         (semantic-symref-find-file-references-by-name)
9538         (semantic-symref-find-text):
9539         * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
9540         (senator-yank-tag):
9541         * cedet/semantic/scope.el (semantic-calculate-scope):
9542         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
9543         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
9544         (define-semantic-idle-service):
9545         * cedet/semantic/complete.el (semantic-complete-analyze-inline)
9546         (semantic-complete-analyze-inline-idle):
9547         * cedet/semantic/analyze.el (semantic-analyze-current-context):
9548         * cedet/mode-local.el (describe-mode-local-bindings)
9549         (describe-mode-local-bindings-in-mode):
9550         * cedet/ede/make.el (ede-make-check-version):
9551         * cedet/ede/locate.el (ede-enable-locate-on-project):
9552         * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
9553         (cedet-idutils-version-check):
9554         * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
9555         (cedet-gnu-global-version-check):
9556         * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
9557         (cedet-cscope-version-check): Use called-interactively-p instead
9558         of interactive-p.
9560         * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
9561         Use semantic-format-tag-prototype.
9563 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
9565         * emulation/viper-cmd.el: Use viper-last-command-char instead of
9566         last-command-char/last-command-event.
9567         (viper-prefix-arg-value): Do correct conversion of event-char for
9568         XEmacs.
9570         * emulation/viper-util.el, emulation/viper.el:
9571         Use viper-last-command-char instead of
9572         last-command-char/last-command-event.
9574         * ediff-init.el, ediff-mult.el, ediff-util.el:
9575         Replace last-command-char and last-command-event
9576         with (ediff-last-command-char) everywhere.
9578         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
9579         created in fundamental mode.
9581         * ediff.el (ediff-version): Revert the change of interactive-p to
9582         called-interactively-p.
9584 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
9586         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
9587         generation from word-movement command names.
9589 2009-11-21  Chong Yidong  <cyd@stupidchicken.com>
9591         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
9592         (semantic-complete-jump-local, semantic-complete-jump):
9593         Improve prompt string.
9595 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
9597         * cus-start.el (all): Add native condition for font-use-system-font.
9599 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
9601         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9602         Correct the patch from 2009-11-18.  (Bug#3910)
9604 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
9606         * progmodes/subword.el: Rename from lisp/subword.el.
9608         * subword.el: Rename to progmodes/subword.el.
9610         * Makefile.in (ELCFILES): Adapt to subword.el move.
9612 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
9613             Stefan Monnier  <monnier@iro.umontreal.ca>
9615         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
9616         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
9617         (bookmark-bmenu-show-filenames): Use push.
9618         (bookmark-bmenu-hide-filenames): Use local var instead of
9619         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
9620         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
9621         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
9622         filenames now that the bookmark names are always available.
9624 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9626         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
9627         (bookmark-search-pattern): Move and leave unbound.
9628         (bookmark-bmenu-mode-map): Change binding.
9629         (bookmark-read-search-input): Simplify.
9630         Don't use text-char-description.  Don't error on non-char events.
9631         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
9632         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
9633         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
9634         Use a local var for the timer.
9635         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
9636         (i.e. bookmark-bmenu-search).
9638 2009-11-21  Glenn Morris  <rgm@gnu.org>
9640         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
9642 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
9644         * net/browse-url.el (browse-url-default-windows-browser):
9645         Use cygstart for cygwin.
9647 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
9649         * bookmark.el: Formatting and doc fixes only:
9650         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
9651         (bookmark-bmenu-search): Wrap to fit within 80 columns.
9652         Minor grammar and punctuation fixes in doc string.
9653         (bookmark-read-search-input): Adjust to fit within 80 columns.
9655 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
9657         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
9658         (c-backward-into-nomenclature): Adapt to subword renaming.
9660         * subword.el (subword-forward, subword-backward, subword-mark)
9661         (subword-kill, subword-backward-kill, subword-transpose)
9662         (subword-downcase, subword-upcase, subword-capitalize)
9663         (subword-forward-internal, subword-backward-internal):
9664         Rename from forward-subword, backward-subword, mark-subword,
9665         kill-subword, backward-kill-subword, transpose-subwords,
9666         downcase-subword, upcase-subword, capitalize-subword,
9667         forward-subword-internal, backward-subword-internal.
9669 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
9671         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
9672         New options.
9673         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
9674         New vars.
9675         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
9676         (bookmark-bmenu-filter-alist-by-regexp)
9677         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
9678         (bookmark-bmenu-search): New command.
9679         (bookmark-bmenu-mode-map): Bind it.
9681 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
9683         * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
9685         * cedet/semantic/idle.el (define-semantic-idle-service)
9686         (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
9688 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
9690         * progmodes/cc-cmds.el: declare-functioned forward-subword and
9691         backward-subword to quit the byte-compiler.
9693         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
9695         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
9697         * progmodes/cc-cmds.el (c-update-modeline)
9698         (c-forward-into-nomenclature, c-backward-into-nomenclature):
9699         Refer to subword.el functions instead of cc-subword.el.
9701         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
9702         subword.el functions instead of cc-subword.el.
9704         * progmodes/cc-subword.el: Rename to subword.el.
9705         * subword.el: Rename from progmodes/cc-subword.el.
9706         (subword-mode-map): Rename from c-subword-mode-map.
9707         (subword-mode): Rename from c-subword-mode.
9708         (global-subword-mode): New global minor mode.
9709         (forward-subword): Rename from c-forward-subword.
9710         (backward-subword): Rename from c-backward-subword.
9711         (mark-subword): Rename from c-mark-subword.
9712         (kill-subword): Rename from c-kill-subword.
9713         (backward-kill-subword): Rename from c-backward-kill-subword.
9714         (transpose-subwords): Rename from c-tranpose-subword.
9715         (downcase-subword): Rename from c-downcase-subword.
9716         (capitalize-subword): Rename from c-capitalize-subword.
9717         (forward-subword-internal): Rename from c-forward-subword-internal.
9718         (backward-subword-internal): Rename from c-backward-subword-internal.
9720 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
9722         * vc.el (vc-deduce-fileset): Allow non-state changing operations
9723         from a dired buffer.
9724         (vc-dired-deduce-fileset): New function.
9725         (vc-root-diff, vc-print-root-log): Use it.
9727         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
9728         nil LIMIT argument to vc-print-log-internal.
9730 2009-11-20  Glenn Morris  <rgm@gnu.org>
9732         * Makefile.in (ELCFILES): Regenerate.
9734 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
9736         * cedet/cedet.el (cedet-menu-map): Re-order menu items.
9738         * cedet/semantic.el: Enable idle-mode menu items only if
9739         global-semantic-idle-scheduler-mode is enabled.
9740         (semantic-default-submodes): Doc fix.
9742         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
9743         When turning off, disable other idle modes.
9745 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
9747         * calc/calc.el (calc-set-mode-line):
9748         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9749         (math-format-number): Rename `math-format-complement-signed' to
9750         `math-format-twos-complement'.
9752         * calc/calc-bin.el (math-format-twos-complement): Rename from
9753         math-format-complement-signed.
9754         (calc-radix): Rename `calc-complement-signed-mode' to
9755         `calc-twos-complement-mode'.
9756         (calc-octal-radix, calc-hex-radix): Add an argument for
9757         two's complement.
9759         * calc/calc-embed.el (calc-embedded-mode-vars):
9760         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9762         * calc/calc-ext.el (calc-init-extensions):
9763         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
9764         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
9766         * calc/calc-units.el (math-build-units-table-buffer):
9767         Let `calc-twos-complement-mode' be nil.
9769         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
9770         entries.
9772         * calc/calc-vec.el (calcFunc-vunpack):
9773         * calc/calc-aent.el (calc-do-calc-eval):
9774         * calc/calc-forms.el (math-format-date):
9775         * calc/calc-graph.el (calc-graph-plot):
9776         * calc/calc-math.el (math-use-emacs-fn):
9777         * calc/calccomp.el (math-compose-expr):
9778         Let `calc-twos-complement-mode' be nil.
9780 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9782         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
9783         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
9784         * minibuffer.el (completion-in-region-functions): New hook.
9785         (completion-in-region): New function.
9786         * emacs-lisp/lisp.el (lisp-complete-symbol):
9787         * pcomplete.el (pcomplete-std-complete): Use it.
9789 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9791         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
9792         (latex-complete-alist): New vars.
9793         (latex-string-prefix-p, latex-complete-bibtex-keys)
9794         (latex-complete-envnames, latex-complete-refkeys)
9795         (latex-complete-data): New functions.
9796         (latex-complete, latex-indent-or-complete): New commands.
9798         * window.el (display-buffer-mark-dedicated): New var.
9799         (display-buffer): Obey it.
9800         * minibuffer.el (minibuffer-completion-help): Use it.
9802         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
9804         * filecache.el (file-cache-add-file): Use push and cons.
9805         (file-cache-delete-file-regexp): Use push.
9806         (file-cache-complete): Use completion-in-region.
9808         * simple.el (with-wrapper-hook): Fix thinko.
9810         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
9811         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
9812         Use with-current-buffer and string-to-number.
9813         (hfy-fallback-colour-values): Use assoc-string.
9814         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
9815         (hfy-face-at): Remove unused var `found-face'.
9816         (hfy-compile-stylesheet): Remove unused var `css'.
9817         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
9818         and `orig-buffer'.
9819         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
9820         Use with-current-buffer.
9821         (hfy-text-p): Use expand-file-name and fewer setq.
9823 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
9825         * htmlfontify.el, hfy-cmap.el: New files.
9827 2009-11-19  Juri Linkov  <juri@jurta.org>
9829         * minibuffer.el (completions-format): New defcustom.
9830         (completion--insert-strings): Implement vertical format.
9832         * simple.el (switch-to-completions): Move point to the first
9833         completion when point was at the beginning of the buffer.
9835 2009-11-19  Juri Linkov  <juri@jurta.org>
9837         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
9839         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
9841 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
9843         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
9844         (mail-signature): Change default to t.
9845         (mail-from-style): Deprecate `system-default' value.
9846         (mail-insert-from-field): For default value of mail-from-style,
9847         default to `angles' unless `angles' needs quoting and `parens'
9848         does not.
9849         (mail-citation-prefix-regexp): Use citation regexp from
9850         message-mode.
9852 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
9854         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
9855         Set variables for computing the prompt for reading password.
9857 2009-11-19  Glenn Morris  <rgm@gnu.org>
9859         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
9861         * textmodes/flyspell.el (sgml-lexical-context): Declare.
9863         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
9864         (newsticker-treeview-listwindow-height): Fix custom type.
9866 2009-11-19  Kenichi Handa  <handa@m17n.org>
9868         * descr-text.el (describe-char-padded-string): Compose with TAB
9869         only if there's a font for CH.
9870         (describe-char): Fix the condition for detecting a trivial composition.
9872 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
9874         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
9875         more accurate version of the regexp.  (Bug#3910)
9877 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
9879         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
9881 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
9883         * font-setting.el (font-use-system-font): Declare for byte-compiler.
9884         (font-setting-change-default-font): Fix typo in docstring.
9886 2009-11-18  Alan Mackenzie  <acm@muc.de>
9888         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
9890 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
9892         * font-setting.el (font-use-system-font): Move ...
9894         * cus-start.el (all): ... to here.
9896 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
9898         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
9899         Don't set `ad-return-value' if `ad-do-it' doesn't.
9901         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
9902         modification time.
9904 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
9906         * menu-bar.el: Put "Use system font" in Option-menu.
9907         (menu-bar-options-save): Add font-use-system-font.
9909         * loadup.el: If feature system-font-setting or font-render-setting is
9910         there, load font-setting.
9912         * Makefile.in (ELCFILES): Add font-settings.el.
9913         * font-setting.el: New file.
9915 2009-11-17  Glenn Morris  <rgm@gnu.org>
9917         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
9919         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
9920         Preserve point in the list buffer.  (Bug#4939)
9921         Use point-at-eol.
9922         (newsticker--treeview-list-update-highlight)
9923         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
9925 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
9927         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
9928         Remove.
9930         * calc/calc-ext.el (calc-init-extensions): Remove references to
9931         symclip.
9933         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
9935         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
9936         * calc/calc-help.el (calc-b-prefix-help): Remove references to
9937         `calc-symclip'.
9939 2009-11-16  Kevin Ryde  <user42@zip.com.au>
9941         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
9942         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
9944         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
9945         (lm-keywords-list): Allow comma-only separator like "foo,bar".
9946         Ignore trailing spaces by omit-nulls to split-string (fixing
9947         regression from Emacs 21 due to the incompatible split-string
9948         change).  (Bug #4928.)
9950 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
9952         * vc.el (vc-log-show-limit): Default to 2000.
9953         (vc-print-log-internal): Insert buttons to request more entries
9954         when limiting the output.
9956         * vc-sccs.el (vc-sccs-print-log):
9957         * vc-rcs.el (vc-rcs-print-log):
9958         * vc-cvs.el (vc-cvs-print-log):
9959         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
9960         LIMIT is non-nil.
9962 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
9964         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
9965         error when `tramp-gvfs-dbus-event-vector' is set.
9966         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
9968 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9970         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
9972 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
9974         * net/dbus.el (dbus-unregister-service): New defun.
9975         (dbus-register-property): Register the handlers of
9976         "org.freedesktop.DBus.Properties" for SERVICE.
9977         (dbus-property-handler): Fix docstring.
9979 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9981         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
9982         Quote doc string reference in defvaralias as it is not in special form.
9983         (byte-compile-output-docform): Doc fix.
9985 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
9987         * calc/calc.el (math-2-word-size, math-half-2-word-size)
9988         (calc-complement-signed-mode): New variables.
9989         (calc-set-mode-line): Add indicator for twos-complements.
9990         (math-format-number): Format twos-complement notation.
9992         * calc/calc-bin.el (calc-word-size): Reset the variables
9993         `math-2-word-size' and `math-half-2-word-size'.
9994         (math-format-complement-signed, math-symclip, calcFunc-symclip)
9995         (calc-symclip): New functions.
9997         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
9999         * calc/calc-embed.el (calc-embedded-mode-vars):
10000         Add `calc-complement-signed-mode' to the list of modes.
10002         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
10003         (calc-b-oper-keys): Add `calc-symclip' to list.
10005         * calc/calc-ext.el (math-read-number-fancy): Read complement
10006         signed numbers.
10007         (calc-init-extensions): Add binding for `calc-symclip'.
10008         Add autoload for `calcFunc-symclip' and `calc-symclip'.
10010         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
10011         `calc-symclip'.
10012         (calc-modes-menu): Add item for twos complement mode.
10014         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
10016 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
10018         * register.el (jump-to-register, insert-register): Handle Semantic
10019         tags.  From commented-out advice in semantic/senator.el.
10021 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
10023         * vc.el (vc-log-show-limit): New variable.
10024         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
10025         when using a prefix argument.
10026         (vc-print-log-internal): Add new argument LIMIT.
10028         * vc-svn.el (vc-svn-print-log):
10029         * vc-mtn.el (vc-mtn-print-log):
10030         * vc-hg.el (vc-hg-print-log):
10031         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
10032         pass it to the log command when set.  Make the BUFFER argument
10033         non-optional.
10035         * vc-sccs.el (vc-sccs-print-log):
10036         * vc-rcs.el (vc-rcs-print-log):
10037         * vc-git.el (vc-git-print-log):
10038         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
10039         ignore it.  Make the BUFFER argument non-optional
10041         * bindings.el (mode-line-buffer-identification): Do not purecopy.
10043 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
10045         * dired.el (dired-mode-map): Move encryption items to "Operate"
10046         menu (Bug#4703).
10048         * strokes.el (strokes-update-window-configuration): Make strokes
10049         buffer current before erasing (Bug#4906).
10051         * cedet/semantic/idle.el (semantic-idle-summary-mode)
10052         (semantic-idle-summary-mode): Define using define-minor-mode
10053         instead of define-semantic-idle-service.
10054         (semantic-idle-summary-mode): New function.
10055         (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
10056         that mouse motion does not reset the echo area.
10058 2009-11-15  Juri Linkov  <juri@jurta.org>
10060         * simple.el (set-mark-default-inactive): Add :type, :group
10061         and :version.  (Bug#4876)
10063 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
10065         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
10066         (archive-unique-fname): ... here.  (Bug#4929)
10068 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10070         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
10071         with a real fix.
10073         * novice.el (disabled-command-function): Add useful args.
10074         Setup the help buffer so that [back] works.
10075         Remove redundant call to help-mode.
10076         (disabled-command-function): Use `case'.
10077         (en/disable-command): New function extracted from enable-command.
10078         (enable-command, disable-command): Use it.
10080 2009-11-14  Glenn Morris  <rgm@gnu.org>
10082         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
10083         constants.  (Bug#4913)
10085         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
10087 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
10089         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
10090         defined in C that have no doc-strings.  (Bug#1063)
10092 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
10094         * cus-edit.el (data, files):
10095         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
10097 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
10099         * simple.el (shell-command): Doc fix (Bug#4891).
10101         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
10103 2009-11-14  Glenn Morris  <rgm@gnu.org>
10105         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
10106         statements for vc-diff, emerge-quit, and rmail-cease-edit.
10107         If they are already loaded, eval-after-load will do the right thing.
10109         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
10110         compiling.
10112         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
10114         * simple.el (x-selection-owner-p): Declare.
10115         (read-mail-command): Use custom radio type rather than choice.
10116         (completion-no-auto-exit): Doc fix.
10118         * custom.el (defgroup):
10119         * epg-config.el (epg): Doc fixes.
10121 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
10123         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
10124         * international/ccl.el (define-ccl-program): Do not purecopy the
10125         docstring, defconst does it anyway.
10127 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10129         * add-log.el (add-change-log-entry): Avoid displaying the changelog
10130         a second time.
10132         * x-dnd.el (x-dnd-maybe-call-test-function):
10133         * window.el (split-window-vertically):
10134         * whitespace.el (whitespace-help-on):
10135         * vc-rcs.el (vc-rcs-consult-headers):
10136         * userlock.el (ask-user-about-lock-help)
10137         (ask-user-about-supersession-help):
10138         * type-break.el (type-break-force-mode-line-update):
10139         * time-stamp.el (time-stamp-conv-warn):
10140         * terminal.el (te-set-output-log, te-more-break, te-filter)
10141         (te-sentinel, terminal-emulator):
10142         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
10143         (term-write-input-ring, term-check-source, term-start-output-log):
10144         (term-display-buffer-line, term-dynamic-list-completions):
10145         (term-ansi-make-term, serial-term):
10146         * subr.el (selective-display):
10147         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
10148         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
10149         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
10150         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
10151         (speedbar-remove-localized-speedbar-support)
10152         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
10153         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
10154         (speedbar-buffers-line-directory):
10155         * simple.el (shell-command-on-region, append-to-buffer)
10156         (prepend-to-buffer):
10157         * shadowfile.el (shadow-save-todo-file):
10158         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
10159         (scroll-bar-maybe-set-window-start):
10160         * sb-image.el (speedbar-image-dump):
10161         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
10162         (load-save-place-alist-from-file):
10163         * ps-samp.el (ps-print-message-from-summary):
10164         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
10165         (ps-background-image, ps-begin-job, ps-do-despool):
10166         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
10167         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
10168         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
10169         (pr-call-process, pr-file-list, pr-interface-save):
10170         * novice.el (disabled-command-function)
10171         (enable-command, disable-command):
10172         * mouse.el (mouse-buffer-menu-alist):
10173         * mouse-copy.el (mouse-kill-preserving-secondary):
10174         * macros.el (kbd-macro-query):
10175         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
10176         * informat.el (batch-info-validate):
10177         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
10178         * hippie-exp.el (try-expand-dabbrev-visible):
10179         * help-mode.el (help-make-xrefs):
10180         * help-fns.el (describe-variable):
10181         * generic-x.el (bat-generic-mode-run-as-comint):
10182         * finder.el (finder-mouse-select):
10183         * find-dired.el (find-dired-sentinel):
10184         * filesets.el (filesets-file-close):
10185         * files.el (list-directory):
10186         * faces.el (list-faces-display, describe-face):
10187         * facemenu.el (list-colors-display):
10188         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
10189         * epg.el (epg--process-filter, epg-cancel):
10190         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
10191         (epa--read-signature-type):
10192         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
10193         (emerge-file-names):
10194         * ehelp.el (electric-helpify):
10195         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
10196         * ediff-vers.el (rcs-ediff-view-revision):
10197         * ediff-util.el (ediff-setup):
10198         * ediff-mult.el (ediff-append-custom-diff):
10199         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
10200         (ediff-wordify):
10201         * echistory.el (Electric-command-history-redo-expression):
10202         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
10203         * disp-table.el (describe-display-table):
10204         * dired.el (dired-find-buffer-nocreate):
10205         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
10206         * dabbrev.el (dabbrev--same-major-mode-p):
10207         * chistory.el (list-command-history):
10208         * apropos.el (apropos-documentation):
10209         * allout.el (allout-obtain-passphrase):
10210         (allout-copy-exposed-to-buffer):
10211         (allout-verify-passphrase): Use with-current-buffer.
10213 2009-11-13  Glenn Morris  <rgm@gnu.org>
10215         * Makefile.in (ELCFILES): Regenerate.
10217 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
10219         * net/dbus.el (dbus-registered-objects-table): Rename from
10220         `dbus-registered-functions-table', because it contains also properties.
10221         (dbus-unregister-object): Unregister also properties.
10222         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
10223         Use a timeout of 500 msec, in order to not block.
10224         (dbus-register-property, dbus-property-handler): New defuns.
10226 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10228         * simple.el (minibuffer-default-add-completions): Drop deprecated
10229         4th arg.
10231 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
10233         * textmodes/artist.el (artist-mouse-choose-operation):
10234         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
10235         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
10236         (artist-compute-up-event-key): New function.
10237         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
10239 2009-11-13  Kenichi Handa  <handa@m17n.org>
10241         * language/japan-util.el: Make sure that the value of jisx0208
10242         property is jisx0208 character.
10244 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
10246         * international/mule.el (auto-coding-regexp-alist): Only purecopy
10247         car or each item, not the whole list.
10249 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10251         * minibuffer.el (minibuffer-completion-help):
10252         Use minibuffer-hide-completions.
10254 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
10256         * dired.el (dired-save-positions, dired-restore-positions): New funs.
10257         (dired-revert): Use them (bug#4880).
10259 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
10261         * tooltip.el (tooltip-frame-parameters): Undo previous change.
10263 2009-11-12  Juri Linkov  <juri@jurta.org>
10265         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
10266         New functions.
10267         (find-file-literally-at-point): Alias of `ffap-literally'.
10269 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
10271         * textmodes/ispell.el (ispell-skip-region-alist):
10272         * textmodes/css-mode.el (auto-mode-alist):
10273         * progmodes/compile.el (auto-mode-alist):
10274         * international/mule.el (ctext-non-standard-encodings-alist)
10275         (ctext-non-standard-encodings-regexp):
10276         * simple.el (shell-command-switch, text-read-only):
10277         * replace.el (occur-mode-map):
10278         * paths.el (rmail-file-name):
10279         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
10280         * find-file.el (ff-special-constructs):
10281         * files.el (file-name-handler-alist):
10282         * composite.el: Purecopy strings.
10284         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
10286 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
10288         * widget.el (define-widget): Purecopy the docstring.
10289         * international/mule-cmds.el (charset): Do not purecopy the
10290         docstring here, define-widget does it.
10292         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
10293         * textmodes/bibtex-style.el (auto-mode-alist):
10294         * progmodes/inf-lisp.el (inferior-lisp-prompt):
10295         * progmodes/compile.el (compile-command):
10296         * language/korea-util.el (default-korean-keyboard):
10297         * international/mule-conf.el (file-coding-system-alist):
10298         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
10299         * tooltip.el (tooltip-frame-parameters):
10300         * newcomment.el (comment-end, comment-padding):
10301         * dired.el (dired-trivial-filenames):
10302         * comint.el (comint-file-name-prefix): Purecopy initial values.
10304 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
10306         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
10307         (tramp-advice-minibuffer-electric-tilde): Unload advices via
10308         `tramp-unload'.
10309         (tramp-advice-make-auto-save-file-name)
10310         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
10311         after removing the advice.
10313 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
10315         * progmodes/grep.el (grep-regexp-alist):
10316         * international/mule-cmds.el (iso-2022-control-alist):
10317         * emacs-lisp/timer.el (timer-duration-words):
10318         * subr.el (version-separator, version-regexp-alist):
10319         * minibuffer.el (completion-styles-alist):
10320         * faces.el (face-attribute-name-alist, list-faces-sample-text):
10321         Change defvars to defconsts.
10323         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
10324         * loadup.el ("international/mule-conf"): Load the byte compiled version.
10325         * international/mule-conf.el: Allow to be byte compiled.
10327         * international/mule.el (define-charset): Purecopy props.
10328         (load-with-code-conversion): Purecopy doc string and file name.
10329         (put-charset-property): Purecopy strings.
10330         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
10332         * international/mule-cmds.el (register-input-method): Purecopy arguments.
10333         (define-char-code-property): Correctly purecopy the table.
10335         * international/ccl.el (define-ccl-program): Purecopy the docstring.
10337         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
10339         * subr.el (add-hook): Purecopy strings.
10340         (eval-after-load): Purecopy load-history-regexp and the form.
10342         * custom.el (custom-declare-group): Purecopy load-file-name.
10344         * subr.el (menu-bar-separator): New defconst.
10345         * net/eudc.el (eudc-tools-menu):
10346         * international/mule-cmds.el (set-coding-system-map)
10347         (mule-menu-keymap):
10348         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
10349         * vc-hooks.el (vc-menu-map):
10350         * replace.el (occur-mode-map):
10351         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
10352         (menu-bar-edit-menu, menu-bar-goto-menu)
10353         (menu-bar-custom-menu, menu-bar-showhide-menu)
10354         (menu-bar-options-menu, menu-bar-tools-menu)
10355         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
10356         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
10357         (menu-bar-help-menu):
10358         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
10359         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
10361         * term/x-win.el (x-gtk-stock-map):
10362         * progmodes/vera-mode.el (auto-mode-alist):
10363         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
10364         (inferior-lisp-program, inferior-lisp-load-command):
10365         * progmodes/hideshow.el (hs-special-modes-alist):
10366         * progmodes/gud.el (same-window-regexps):
10367         * progmodes/grep.el (grep-program, find-program, xargs-program):
10368         * net/telnet.el (same-window-regexps):
10369         * net/rlogin.el (same-window-regexps):
10370         * language/ethiopic.el (font-ccl-encoder-alist):
10371         * vc-sccs.el (vc-sccs-master-templates):
10372         * vc-rcs.el (vc-rcs-master-templates):
10373         * subr.el (cl-assertion-failed):
10374         * simple.el (next-error-overlay-arrow-position):
10375         * lpr.el (lpr-command):
10376         * locate.el (locate-ls-subdir-switches):
10377         * info.el (same-window-regexps, info)
10378         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
10379         * image-mode.el (image-mode, auto-mode-alist):
10380         * hippie-exp.el (hippie-expand-ignore-buffers):
10381         * format.el (format-alist):
10382         * find-dired.el (find-ls-subdir-switches, find-grep-options)
10383         (find-name-arg):
10384         * facemenu.el (facemenu-keybindings):
10385         * dired.el (dired-listing-switches, dired-chown-program):
10386         * diff.el (diff-switches, diff-command):
10387         * cus-edit.el (same-window-regexps):
10388         * bindings.el (mode-line-mule-info)
10389         (mode-line-buffer-identification): Purecopy strings.
10391 2009-11-11  Juri Linkov  <juri@jurta.org>
10393         * simple.el (dired-get-filename) <declare-function>:
10394         Tell the byte-compiler about dired-get-filename.
10395         (shell-command): In Dired mode, get filename from the current line
10396         as the default value.
10398 2009-11-10  Glenn Morris  <rgm@gnu.org>
10400         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
10401         * calendar/holidays.el, progmodes/cperl-mode.el:
10402         Update x-popup-menu declarations.
10404         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
10405         (list-load-path-shadows): Use dolist.
10406         (list-load-path-shadows): Use with-current-buffer.
10408 2009-11-10  Juri Linkov  <juri@jurta.org>
10410         * minibuffer.el (read-file-name): Support a list of default values
10411         in `default-filename'.  Use the first file name where only one
10412         element is required.  Doc fix.
10414 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
10416         * net/dbus.el (dbus-unregister-object): Release service, if no
10417         other method is registered for it.
10419 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
10421         * bookmark.el (bookmark-completing-read): Sort bookmark names if
10422         bookmark-sort-flag is non-nil (Bug#4653).
10424 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
10426         * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
10427         the progress reporter entirely.
10429         * emulation/cua-base.el: Add CUA property to some CC mode commands
10430         (Bug#4100).
10432 2009-11-08  Kevin Ryde  <user42@zip.com.au>
10434         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
10435         at end of sentence (Bug#4818).
10437 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
10439         * progmodes/compile.el (compilation-error-regexp-alist-alist):
10440         Handle "see declaration of" MSFT statements (Bug#4100).
10442 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
10444         * net/tramp.el (tramp-advice-make-auto-save-file-name)
10445         (tramp-advice-file-expand-wildcards): Unload via
10446         `ad-remove-advice'.
10448         * net/trampver.el: Update release number.
10450 2009-11-08  Kevin Ryde  <user42@zip.com.au>
10452         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
10453         `ad-do-it'.
10455 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
10457         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
10458         in order to keep context in SELinux.
10460 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
10462         * dired-aux.el (dired-query): Place cursor in echo area and allow
10463         C-g.
10465         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
10466         menu item if not on a directory (Bug#4701).
10468 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
10470         Sync with Tramp 2.1.17.
10472         * net/tramp.el (tramp-handle-copy-directory): Don't use
10473         `file-remote-p' (due to compatibility).
10475         * net/tramp-compat.el (tramp-compat-copy-directory)
10476         (tramp-compat-delete-directory): New defuns.
10478         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
10479         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
10480         `tramp-compat-delete-directory'.
10482         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
10483         (tramp-smb-handle-delete-directory): Use
10484         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
10486         * net/trampver.el: Update release number.
10488 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
10490         * tar-mode.el (tar-copy): Call write-region on the right buffer
10491         (Bug#4857).
10493         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
10494         by hand, if necessary (Bug#4878).
10496 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
10498         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
10499         align size column (Bug#4839).
10501         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
10502         statement.
10504 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
10506         * progmodes/ld-script.el (auto-mode-alist):
10507         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
10509         * cus-face.el (custom-declare-face): Purecopy face spec.
10511 2009-11-06  Kenichi Handa  <handa@m17n.org>
10513         * international/uni-bidi.el: Re-generated.
10514         * international/uni-category.el: Re-generated.
10515         * international/uni-combining.el: Re-generated.
10516         * international/uni-mirrored.el: Re-generated.
10518 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
10520         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
10521         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
10522         (tex-start-options, slitex-run-command, latex-run-command)
10523         (tex-run-command, tex-directory):
10524         * textmodes/ispell.el (ispell-html-skip-alists)
10525         (ispell-tex-skip-alists, ispell-tex-skip-alists):
10526         * textmodes/fill.el (adaptive-fill-first-line-regexp):
10527         (adaptive-fill-regexp):
10528         * textmodes/dns-mode.el (auto-mode-alist):
10529         * progmodes/python.el (interpreter-mode-alist):
10530         * progmodes/etags.el (tags-compression-info-list):
10531         * progmodes/etags.el (tags-file-name):
10532         * net/browse-url.el (browse-url-galeon-program)
10533         (browse-url-firefox-program):
10534         * mail/sendmail.el (mail-signature-file)
10535         (mail-citation-prefix-regexp):
10536         * international/mule-conf.el (eight-bit):
10537         * international/latexenc.el (latex-inputenc-coding-alist):
10538         * international/fontset.el (x-pixel-size-width-font-regexp):
10539         * emacs-lisp/warnings.el (warning-type-format):
10540         * emacs-lisp/trace.el (trace-buffer):
10541         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
10542         (emacs-lisp-mode-map):
10543         * calendar/holidays.el (holiday-solar-holidays)
10544         (holiday-bahai-holidays, holiday-islamic-holidays)
10545         (holiday-christian-holidays, holiday-hebrew-holidays)
10546         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
10547         (hebrew-holidays-1, holiday-oriental-holidays)
10548         (holiday-general-holidays):
10549         * x-dnd.el (x-dnd-known-types):
10550         * tool-bar.el (tool-bar):
10551         * startup.el (site-run-file):
10552         * shell.el (shell-dumb-shell-regexp):
10553         * rfn-eshadow.el (file-name-shadow-tty-properties)
10554         (file-name-shadow-properties):
10555         * paths.el (remote-shell-program, news-directory):
10556         * mouse.el ([C-down-mouse-3]):
10557         * menu-bar.el (menu-bar-tools-menu):
10558         * jka-cmpr-hook.el (jka-compr-load-suffixes)
10559         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
10560         (jka-compr-compression-info-list):
10561         * isearch.el (search-whitespace-regexp):
10562         * image-file.el (image-file-name-extensions):
10563         * find-dired.el (find-ls-option):
10564         * files.el (directory-listing-before-filename-regexp)
10565         (directory-free-space-args, insert-directory-program)
10566         (list-directory-brief-switches, magic-fallback-mode-alist)
10567         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
10568         (automount-dir-prefix):
10569         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
10570         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
10571         (face-font-registry-alternatives, face-font-registry-alternatives)
10572         (face-font-family-alternatives):
10573         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
10574         (facemenu-foreground-menu, facemenu-face-menu):
10575         * epa-hook.el (epa-file-name-regexp):
10576         * dnd.el (dnd-protocol-alist):
10577         * textmodes/rst.el (auto-mode-alist):
10578         * button.el (default-button): Purecopy strings.
10580 2009-11-06  Glenn Morris  <rgm@gnu.org>
10582         * Makefile.in (ELCFILES): Update.
10584 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10586         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
10587         * emacs-lisp/levents.el: Move to obsolete/levents.el.
10589         * nxml/xsd-regexp.el (xsdre-gen-categories):
10590         * nxml/xmltok.el (xmltok-parse-entity):
10591         * nxml/rng-parse.el (rng-parse-validate-file):
10592         * nxml/rng-maint.el (rng-format-manual)
10593         (rng-manual-output-force-new-line):
10594         * nxml/rng-loc.el (rng-save-schema-location-1):
10595         * nxml/rng-cmpct.el (rng-c-parse-file):
10596         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
10597         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
10599 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
10601         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
10602         Remove extra save-excursions and make-variable-buffer-local's.
10603         Suggested by Stefan Monnier.
10605         (verilog-getopt-file, verilog-module-inside-filename-p)
10606         (verilog-set-define): Merge GNU 1.35 and repair changes from
10607         switching to using with-current-buffer.
10609         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
10610         being treated as a number and confusing AUTORESET.
10611         Reported by Dan Dever.
10613         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
10614         Add verilog-auto-ignore-concat to fix backward compatibility with
10615         older verilog-modes.  Reported by Dan Katz.
10617         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
10618         containing closing anchors "...$".
10620         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
10621         Reported by Wade Smith.
10623         (verilog-batch-execute-func): Comment on function usage.
10625 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
10627         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
10628         for labels.
10630         (verilog-label-re, verilog-calc-1): Support proper indent of named
10631         asserts.
10633         (verilog-backward-token, verilog-basic-complete-re)
10634         (verilog-beg-of-statement, verilog-indent-re): Support proper
10635         indent of the assert statement at the beginning of a block of text.
10637         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
10638         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
10639         tokens as begins.
10641 2009-11-05  Glenn Morris  <rgm@gnu.org>
10643         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
10644         Emacs 19.  (Bug#1531)
10645         (byte-compile-fix-header): Update for the above change.
10646         Drop test for epoch::version.
10648         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
10649         * cus-dep.el (custom-make-dependencies):
10650         * finder.el (finder-compile-keywords):
10651         Use autoload-rubric's feature argument.
10653         * calendar/diary-lib.el (top-level): Make load behave more like require.
10655         * vc-git.el (vc-git-stash-map): Move definition before use.
10657 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
10659         * custom.el (custom-declare-group): Purecopy standard-value.
10660         (custom-declare-group): Purecopy custom-prefix.
10662         * international/mule.el (load-with-code-conversion):
10663         Call do-after-load-evaluation unconditionally.
10665         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
10667 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10669         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
10671 2009-11-04  Glenn Morris  <rgm@gnu.org>
10673         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
10674         (byte-compile-compatibility): Remove option.
10675         (byte-compile-close-variables, byte-compile-fix-header)
10676         (byte-compile-insert-header, byte-compile-output-docform)
10677         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
10678         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
10679         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
10680         (byte-compile-insert, byte-compile-defun):
10681         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
10682         (byte-defop-compiler19): Remove.
10683         Without byte-compile-compatibility, the 'emacs19-opcode property is not
10684         used by anything.  Replace all calls with byte-defop-compiler.
10686 2009-11-04  Juri Linkov  <juri@jurta.org>
10688         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
10689         (menu-bar-options-menu): Don't quote the `prop' arg of
10690         `menu-bar-make-mm-toggle'.
10692 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
10694         * calendar/calendar.el (cal-loaddefs):
10695         * calendar/diary-lib.el (diary-loaddefs):
10696         * calendar/holidays.el (hol-loaddefs):
10697         * eshell/esh-module.el (esh-groups): Load rather than require.
10699 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10701         * calendar/todo-mode.el (todo-add-category): Don't hardcode
10702         point-min==1.
10703         (todo-top-priorities): Only display-buffer when called interactively.
10704         (todo-item-start): Don't save excursion point.
10705         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
10706         (todo-insert-item-here, todo-file-item, todo-remove-item):
10707         Adjust uses of todo-item-start and todo-item-end.
10709         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
10710         (autoload-rubric): Don't use any more.
10711         * cedet/semantic/fw.el (semantic/loaddefs):
10712         * cedet/srecode.el (srecode/loaddefs):
10713         * cedet/ede.el (ede/loaddefs): Load rather than require.
10714         * cedet/ede/cpp-root.el:
10715         * cedet/ede/emacs.el:
10716         * cedet/ede/files.el:
10717         * cedet/ede/linux.el:
10718         * cedet/ede/locate.el:
10719         * cedet/ede/make.el:
10720         * cedet/ede/shell.el:
10721         * cedet/ede/speedbar.el:
10722         * cedet/ede/system.el:
10723         * cedet/ede/util.el:
10724         * cedet/semantic/analyze.el:
10725         * cedet/semantic/bovine.el:
10726         * cedet/semantic/complete.el:
10727         * cedet/semantic/ctxt.el:
10728         * cedet/semantic/db-file.el:
10729         * cedet/semantic/db-find.el:
10730         * cedet/semantic/db-global.el:
10731         * cedet/semantic/db-mode.el:
10732         * cedet/semantic/db-typecache.el:
10733         * cedet/semantic/db.el:
10734         * cedet/semantic/debug.el:
10735         * cedet/semantic/dep.el:
10736         * cedet/semantic/doc.el:
10737         * cedet/semantic/edit.el:
10738         * cedet/semantic/find.el:
10739         * cedet/semantic/format.el:
10740         * cedet/semantic/html.el:
10741         * cedet/semantic/ia-sb.el:
10742         * cedet/semantic/ia.el:
10743         * cedet/semantic/idle.el:
10744         * cedet/semantic/lex-spp.el:
10745         * cedet/semantic/lex.el:
10746         * cedet/semantic/mru-bookmark.el:
10747         * cedet/semantic/scope.el:
10748         * cedet/semantic/senator.el:
10749         * cedet/semantic/sort.el:
10750         * cedet/semantic/symref.el:
10751         * cedet/semantic/tag-file.el:
10752         * cedet/semantic/tag-ls.el:
10753         * cedet/semantic/tag-write.el:
10754         * cedet/semantic/tag.el:
10755         * cedet/semantic/util-modes.el:
10756         * cedet/semantic/analyze/complete.el:
10757         * cedet/semantic/analyze/refs.el:
10758         * cedet/semantic/bovine/c.el:
10759         * cedet/semantic/bovine/gcc.el:
10760         * cedet/semantic/bovine/make.el:
10761         * cedet/semantic/bovine/scm.el:
10762         * cedet/semantic/decorate/include.el:
10763         * cedet/semantic/decorate/mode.el:
10764         * cedet/semantic/symref/cscope.el:
10765         * cedet/semantic/symref/global.el:
10766         * cedet/semantic/symref/grep.el:
10767         * cedet/semantic/symref/idutils.el:
10768         * cedet/semantic/symref/list.el:
10769         * cedet/semantic/wisent/java-tags.el:
10770         * cedet/semantic/wisent/javascript.el:
10771         * cedet/srecode/compile.el:
10772         * cedet/srecode/cpp.el:
10773         * cedet/srecode/document.el:
10774         * cedet/srecode/el.el:
10775         * cedet/srecode/expandproto.el:
10776         * cedet/srecode/getset.el:
10777         * cedet/srecode/insert.el:
10778         * cedet/srecode/java.el:
10779         * cedet/srecode/map.el:
10780         * cedet/srecode/mode.el:
10781         * cedet/srecode/template.el:
10782         * cedet/srecode/texi.el: Remove the file-local setting of
10783         generated-autoload-feature.
10785         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
10786         and only put a prop if it is non-nil.
10788 2009-11-03  Juri Linkov  <juri@jurta.org>
10790         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
10791         (menu-bar-options-menu): Fix list quoting (Bug#4429).
10793         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
10794         and "Menu" to make top-level menu item visually one unit (like
10795         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
10796         multi-word menu items).  Fix :help string for quit-window.
10798 2009-11-03  Glenn Morris  <rgm@gnu.org>
10800         * cedet/mode-local.el (with-mode-local): Doc fix.
10802         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
10803         (byte-compile-file-form-define-abbrev-table)
10804         (byte-compile-file-form-custom-declare-variable)
10805         (byte-compile-variable-ref, byte-compile-defvar):
10806         Whether or not a warning is enabled should only affect whether we issue
10807         the warning, not whether or not we collect the relevant data.
10808         Eg warnings can be turned on and off throughout the course of a file.
10810         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
10811         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
10813 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10815         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
10816         * play/mpuz.el (mpuz-create-buffer):
10817         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
10818         (lm-print-y,s,noise, lm-print-w0, lm-init):
10819         * play/gomoku.el (gomoku-prompt-for-move):
10820         * play/fortune.el (fortune-in-buffer):
10821         * play/dissociate.el (dissociated-press):
10822         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
10823         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
10824         * mail/supercite.el (sc-eref-show):
10825         * mail/smtpmail.el (smtpmail-send-it):
10826         * mail/rmailsum.el (rmail-summary-next-labeled-message)
10827         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
10828         (rmail-summary-undelete-many, rmail-summary-rmail-update)
10829         (rmail-summary-goto-msg, rmail-summary-expunge)
10830         (rmail-summary-get-new-mail, rmail-summary-search-backward)
10831         (rmail-summary-add-label, rmail-summary-output-menu)
10832         (rmail-summary-output-body):
10833         * mail/rfc822.el (rfc822-addresses):
10834         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
10835         * mail/mailpost.el (post-mail-send-it):
10836         * mail/hashcash.el (hashcash-generate-payment):
10837         * mail/feedmail.el (feedmail-run-the-queue)
10838         (feedmail-queue-send-edit-prompt-help-first)
10839         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
10840         (feedmail-deduce-address-list):
10841         * eshell/esh-ext.el (eshell-remote-command):
10842         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
10843         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
10844         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
10845         (viper-save-string-in-file, viper-valid-marker):
10846         * emulation/viper-keym.el (viper-toggle-key):
10847         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
10848         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
10849         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
10850         * emulation/viper-cmd.el (viper-exec-form-in-vi)
10851         (viper-exec-form-in-emacs, viper-brac-function):
10852         * emulation/viper.el (viper-delocalize-var):
10853         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
10854         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
10855         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
10856         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
10857         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
10858         * emulation/edt.el (edt-electric-helpify):
10859         * emulation/cua-rect.el (cua--rectangle-aux-replace):
10860         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
10861         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
10862         (cua-indent-to-global-mark-column):
10863         * calendar/diary-lib.el (calendar-mark-1):
10864         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
10865         Use with-current-buffer.
10866         * emulation/viper.el (viper-delocalize-var): Use dolist.
10868 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
10870         * comint.el (comint-replace-by-expanded-history-before-point):
10871         Replace !! with the previous input string literally (Bug#1795).
10873 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
10875         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
10876         to be made up of whitespace.
10878 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
10880         * minibuffer.el (read-file-name): Don't use file dialogs for
10881         remote directories (Bug#99).
10883 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
10885         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
10887 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
10889         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
10890         instead of deleting the window or frame.
10892 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
10894         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
10895         Support face colors.
10897         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
10898         New function.  Support face colors (Bug#1168).
10899         (tex-common-initialization): Use it.
10901         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
10902         mode allows it (Bug#1168).
10904 2009-10-31  Juri Linkov  <juri@jurta.org>
10906         * facemenu.el (list-colors-display): Don't mark buffer as
10907         modified (Bug#3948).
10909 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
10911         * international/mule-diag.el (list-character-sets-1): Minor
10912         message fix (Bug#3526).
10914         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
10915         face property (Bug#4834).
10916         (etags-list-tags, etags-tags-apropos-additional)
10917         (etags-tags-apropos, tags-select-tags-table): Add follow-link
10918         property.
10920         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
10921         items.
10923         * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
10924         items.
10926         * cedet/ede.el (ede-minor-mode):
10927         * cedet/semantic.el (semantic-mode): Toggle menu separators.
10929 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
10931         * textmodes/two-column.el (2C-split):
10932         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
10933         * textmodes/tex-mode.el (tex-set-buffer-directory):
10934         * textmodes/spell.el (spell-region, spell-string):
10935         * textmodes/reftex.el (reftex-erase-buffer):
10936         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
10937         * textmodes/reftex-toc.el (reftex-toc-promote-action):
10938         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
10939         (reftex-select-item):
10940         * textmodes/reftex-ref.el (reftex-label-info-update)
10941         (reftex-offer-label-menu):
10942         * textmodes/reftex-index.el (reftex-index-change-entry)
10943         (reftex-index-phrases-info):
10944         * textmodes/reftex-global.el (reftex-create-tags-file)
10945         (reftex-save-all-document-buffers, reftex-ensure-write-access):
10946         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
10947         (reftex-view-crossref-from-bibtex):
10948         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
10949         (reftex-extract-bib-entries-from-thebibliography)
10950         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
10951         * textmodes/refbib.el (r2b-capitalize-title):
10952         (r2b-convert-buffer, r2b-help):
10953         * textmodes/page-ext.el (pages-directory)
10954         (pages-directory-goto-with-mouse):
10955         * textmodes/bibtex.el (bibtex-validate-globally):
10956         * textmodes/bib-mode.el (bib-capitalize-title):
10957         * textmodes/artist.el (artist-clear-buffer, artist-system):
10958         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
10959         (local-set-scheme-interaction-buffer, xscheme-process-filter)
10960         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
10961         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
10962         (xscheme-send-control-g-interrupt, xscheme-start-process)
10963         (xscheme-process-sentinel, xscheme-cd):
10964         * progmodes/verilog-mode.el (verilog-read-always-signals)
10965         (verilog-set-define, verilog-getopt-file)
10966         (verilog-module-inside-filename-p):
10967         * progmodes/sh-script.el:
10968         * progmodes/python.el (python-pdbtrack-get-source-buffer)
10969         (python-pdbtrack-grub-for-buffer, python-execute-file):
10970         * progmodes/octave-inf.el (inferior-octave):
10971         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
10972         (idlwave-shell-compile-helper-routines, idlwave-set-local)
10973         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
10974         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
10975         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
10976         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
10977         (idlwave-shell-filter, idlwave-shell-examine-highlight)
10978         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
10979         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
10980         (idlwave-shell-examine-display, idlwave-shell-run-region)
10981         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
10982         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
10983         * progmodes/idlw-help.el (idlwave-help-get-special-help)
10984         (idlwave-help-get-help-buffer):
10985         * progmodes/gud.el (gud-basic-call, gud-find-class)
10986         (gud-tooltip-activate-mouse-motions-if-enabled):
10987         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
10988         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
10989         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
10990         (ebrowse-tags-next-file):
10991         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
10992         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
10993         (ebnf-eps-finish-and-write):
10994         * progmodes/cpp.el (cpp-edit-save):
10995         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
10996         * progmodes/cc-defs.el (c-emacs-features):
10997         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
10998         (antlr-directory-dependencies):
10999         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
11000         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
11001         (ada-find-any-references, ada-make-filename-from-adaname)
11002         (ada-make-body-gnatstub):
11003         * obsolete/rnews.el (news-list-news-groups):
11004         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
11005         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
11006         * net/rcirc.el (rcirc-debug):
11007         * net/newst-treeview.el (newsticker--treeview-list-add-item)
11008         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
11009         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
11010         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
11011         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
11012         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
11013         (newsticker--treeview-list-clear-highlight)
11014         (newsticker--treeview-list-update-highlight)
11015         (newsticker--treeview-list-highlight-start)
11016         (newsticker--treeview-tree-update-highlight)
11017         (newsticker--treeview-get-selected-item)
11018         (newsticker-treeview-mark-list-items-old)
11019         (newsticker--treeview-set-current-node):
11020         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
11021         * net/newst-backend.el (newsticker--get-news-by-funcall)
11022         (newsticker--get-news-by-wget, newsticker--image-get)
11023         (newsticker--image-sentinel):
11024         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
11025         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
11026         (eudc-ph-close-session):
11027         * net/eudc.el (eudc-save-options):
11028         * language/thai-word.el (thai-update-word-table):
11029         * language/japan-util.el (japanese-string-conversion):
11030         * international/titdic-cnv.el (tsang-quick-converter)
11031         (ziranma-converter, ctlau-converter):
11032         * international/mule-cmds.el (describe-language-environment):
11033         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
11034         (skkdic-convert-postfix, skkdic-convert-prefix):
11035         (skkdic-convert-okuri-nasi, skkdic-convert):
11036         * emacs-lisp/re-builder.el (reb-update-overlays):
11037         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
11038         * emacs-lisp/gulp.el (gulp-send-requests):
11039         * emacs-lisp/find-gc.el (trace-call-tree):
11040         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
11041         (eieio-describe-generic):
11042         * emacs-lisp/eieio-base.el (eieio-persistent-read):
11043         * emacs-lisp/edebug.el (edebug-outside-excursion):
11044         * emacs-lisp/debug.el (debugger-make-xrefs):
11045         * emacs-lisp/cust-print.el (custom-prin1-to-string):
11046         * emacs-lisp/chart.el (chart-new-buffer):
11047         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
11048         Use with-current-buffer.
11049         * textmodes/artist.el (artist-system): Don't call
11050         copy-sequence on a fresh string.
11051         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
11053 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
11055         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
11056         is no item to edit.  (Bug#4820)
11057         (todo-top-priorities): Restore point and restore narrowing in Todo
11058         buffer.  (Bug#4820)
11060 2009-10-31  Glenn Morris  <rgm@gnu.org>
11062         * net/ange-ftp.el (top-level): Don't require dired when compiling.
11063         (comint-last-output-start, comint-last-input-start)
11064         (comint-last-input-end): Don't defvar when compiling.
11065         (ange-ftp-process-file): Use bound-and-true-p.
11067         * pcmpl-rpm.el (top-level): Move provide statement to end.
11068         (pcmpl-rpm): Remove unused custom group.
11070         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
11072         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
11074         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
11075         (byte-compile-warnings): Add `constants' as an option.
11076         (byte-compile-callargs-warn, byte-compile-arglist-warn)
11077         (display-call-tree): Update for byte-compile-fdefinition possibly
11078         returning `(macro lambda ...)'.  (Bug#4778)
11079         (byte-compile-variable-ref, byte-compile-setq-default):
11080         Respect `constants' member of byte-compile-warnings.
11082         * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
11083         Use mapc rather than mapcar because the return value is never used.
11085         * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
11086         * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
11087         * cedet/semantic/html.el:
11088         Suppress harmless warnings about setting up semantic-imenu (not
11089         part of Emacs) variables.
11091 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11093         * vc-bzr.el (vc-bzr-revision-keywords): New var.
11094         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
11095         to "submit:".
11097         * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
11098         * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
11099         * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
11100         * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
11101         * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
11102         * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
11103         (semantic-analyzer-debug-global-symbol)
11104         (semantic-analyzer-debug-missing-innertype)
11105         (semantic-analyzer-debug-insert-include-summary):
11106         * cedet/semantic/util.el (semantic-file-tag-table):
11107         (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
11108         (semantic-recursive-find-nonterminal-by-name):
11109         * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
11110         * cedet/semantic/tag-file.el (semantic-prototype-file):
11111         * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
11112         * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
11113         * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
11114         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
11115         (semantic-idle-summary-maybe-highlight):
11116         * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
11117         (semantic-ia-sb-tag-info):
11118         * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
11119         * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
11120         * cedet/semantic/ede-grammar.el (project-compile-target):
11121         (ede-proj-makefile-insert-variables):
11122         * cedet/semantic/debug.el (semantic-debug-set-parser-location):
11123         (semantic-debug-set-source-location, semantic-debug-interface-layout)
11124         (semantic-debug-mode, semantic-debug):
11125         * cedet/semantic/db.el (semanticdb-needs-refresh-p):
11126         * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
11127         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
11128         * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
11129         (semanticdb-find-translate-path-includes--internal)
11130         (semanticdb-reset-log, semanticdb-find-log-activity):
11131         * cedet/semantic/db-file.el (object-write):
11132         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
11133         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
11134         (semanticdb-create-ebrowse-database):
11135         * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
11136         * cedet/semantic/complete.el (semantic-displayor-focus-request)
11137         (semantic-collector-calculate-completions-raw)
11138         (semantic-complete-read-tag-analyzer):
11139         * cedet/semantic/analyze.el (semantic-analyze-pulse):
11140         * cedet/ede/util.el (ede-update-version-in-source):
11141         * cedet/ede/proj.el (project-delete-target):
11142         * cedet/ede/proj-elisp.el (ede-update-version-in-source)
11143         (ede-proj-flush-autoconf):
11144         * cedet/ede/pconf.el (ede-proj-configure-synchronize)
11145         (ede-proj-configure-synchronize):
11146         * cedet/ede/locate.el (ede-locate-file-in-project-impl):
11147         * cedet/ede/linux.el (ede-linux-version):
11148         * cedet/ede/emacs.el (ede-emacs-version):
11149         * cedet/ede/dired.el (ede-dired-add-to-target):
11150         * cedet/ede.el (ede-buffer-header-file, ede-find-target)
11151         (ede-buffer-documentation-files, ede-project-buffers, ede-set)
11152         (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
11153         * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
11154         (cedet-idutils-lid-call, cedet-idutils-expand-filename)
11155         (cedet-idutils-version-check):
11156         * cedet/cedet-global.el (cedet-gnu-global-call):
11157         (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
11158         (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
11159         * cedet/cedet-cscope.el (cedet-cscope-call)
11160         (cedet-cscope-expand-filename, cedet-cscope-version-check):
11161         Use with-current-buffer.
11162         * cedet/ede.el (ede-make-project-local-variable)
11163         (ede-set-project-variables, ede-set): Use dolist.
11165 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
11167         * textmodes/ispell.el (ispell-skip-region-alist):
11168         * international/mule-conf.el (eight-bit):
11169         * international/fontset.el (font-encoding-alist):
11170         * startup.el (pure-space-overflow-message):
11171         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
11172         * paths.el (gnus-nntp-service, rmail-spool-directory)
11173         (term-file-prefix):
11174         * files.el (save-some-buffers-action-alist):
11175         * cmuscheme.el (same-window-buffer-names):
11176         * ielm.el (same-window-buffer-names):
11177         * shell.el (same-window-buffer-names):
11178         * mail/sendmail.el (same-window-buffer-names):
11179         * progmodes/inf-lisp.el (same-window-buffer-names):
11180         * bindings.el (mode-line-client)
11181         (mode-line-column-line-number-mode-map):
11182         * language/tibetan.el (tibetan-precomposition-rule-regexp)
11183         (tibetan-precomposed-regexp): Purecopy string arguments.
11185 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11187         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
11188         (calcDigit-nondigit):
11189         * calc/calc-yank.el (calc-copy-to-buffer):
11190         * calc/calc-units.el (calc-invalidate-units-table):
11191         * calc/calc-trail.el (calc-trail-yank):
11192         * calc/calc-store.el (calc-insert-variables):
11193         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
11194         * calc/calc-prog.el (calc-read-parse-table):
11195         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
11196         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
11197         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
11198         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
11199         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
11200         (calc-graph-name, calc-graph-find-command, calc-graph-view)
11201         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
11202         * calc/calc-ext.el (calc-realign):
11203         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
11204         (calc-embedded-finish-edit, calc-embedded-make-info)
11205         (calc-embedded-finish-command, calc-embedded-stack-change):
11206         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
11208         * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
11209         (overload-docstring-extension): Use that info.
11210         * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
11211         * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
11212         * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
11213         (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
11214         (semantic-nonterminal-full-name): Add the new `when' info.
11215         * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
11216         `assert'.
11218         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
11219         shell-dynamic-complete-filename in preference to
11220         comint-dynamic-complete-filename.
11222         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
11223         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
11224         Don't consider whether the display supports colors.
11225         (bookmark-import-new-list): Use dolist.
11226         (bookmark-bmenu-mode-map): Move initialization into declaration.
11227         (bookmark-bmenu-list): Use dolist, simplify.
11228         (bookmark-show-all-annotations): Use save-selected-window and dolist.
11229         (menu-bar-final-items): Use push.
11231 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
11233         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
11234         it works on remote files.
11235         (vc-hg-diff): Don't pass any `--cwd' argument.
11237 2009-10-27  Kevin Ryde  <user42@zip.com.au>
11239         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
11240         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
11241         (Further to Bug#3921).
11243 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
11245         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
11246         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
11247         calling `tramp-imap-put-file'.  Add file size to the call.
11248         (tramp-imap-get-file-entries): Compute also user name, file size,
11249         and date.
11250         (tramp-imap-handle-insert-directory): Insert uid and gid.
11251         (tramp-imap-handle-file-attributes): Transform uid and gid
11252         according to `id-format'.
11253         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
11254         size in header X-Size.
11256 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
11258         * simple.el (transpose-subr): Give clearer error when the mark
11259         is not set.  (Bug#4807)
11261 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
11263         * net/tramp.el (tramp-perl-file-truename): New defconst.
11264         Perl code contributed by yary <not.com@gmail.com> (tiny change).
11265         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
11266         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
11267         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
11269         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
11270         Ignore `dired-call-process'.
11271         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
11273 2009-10-26  Julian Scheid  <julians37@gmail.com>
11275         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
11276         (tramp-get-remote-readlink): New defun.
11277         (tramp-handle-file-truename): Use it.
11278         (tramp-handle-file-exists-p): Check file-attributes cache, assume
11279         file exists if cache value present.
11280         (tramp-check-cached-permissions): New defun.
11281         (tramp-handle-file-readable-p): Use it.
11282         (tramp-handle-file-writable-p): Likewise.
11283         (tramp-handle-file-executable-p): Likewise.
11284         (tramp-handle-file-name-all-completions): Try using Perl to get
11285         partial completions.  When perl not available, combine `cd' and
11286         `ls' into single remote operation and use shell expansion to get
11287         partial remote directory contents.  Set `file-exists-p' cache for
11288         directory and any files returned by ls.  Change cache handling to
11289         support partial directory contents.  Use error message emitted by
11290         remote `cd' or Perl code for local tramp-error.
11291         (tramp-do-copy-or-rename-file-directly): Avoid separate
11292         tramp-send-command-and-check call.
11293         (tramp-handle-process-file): Merge three remote ops into one.
11294         Do not flush all caches when `process-file-side-effects' is set.
11295         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
11296         file-attributes shows uid/gid to be set already.
11298 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
11300         * textmodes/tex-mode.el (tex-dvi-view-command)
11301         (tex-show-queue-command, tex-open-quote):
11302         * progmodes/ruby-mode.el (auto-mode-alist)
11303         (interpreter-mode-alist): Purecopy strings.
11305         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
11307         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
11308         string for the hook, keymap and abbrev table.
11310         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
11312         * x-dnd.el (x-dnd-xdnd-to-action):
11313         * startup.el (fancy-startup-text, fancy-about-text): Change to
11314         defconst from defvar.
11316         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
11318         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
11319         Purecopy initialization strings.
11321         * mail/sendmail.el (mail-header-separator)
11322         (mail-personal-alias-file):
11323         * mail/rmail.el (rmail-default-dont-reply-to-names)
11324         (rmail-ignored-headers, rmail-retry-ignored-headers)
11325         (rmail-highlighted-headers, rmail-secondary-file-directory)
11326         (rmail-secondary-file-regexp):
11327         * files.el (null-device, file-name-invalid-regexp)
11328         (locate-dominating-stop-dir-regexp)
11329         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
11330         (interpreter-mode-alist): Use mapcar instead of mapc.
11332         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
11334         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
11335         (completion-ignored-extensions):
11336         (debug-ignored-errors): Purecopy strings.
11338 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11340         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
11341         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
11342         (pcomplete--here): Use push.
11344         * subr.el (all-completions): Declare the 4th arg obsolete.
11346 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11348         * pcomplete.el (pcomplete-unquote-argument-function): New var.
11349         (pcomplete-unquote-argument): New function.
11350         (pcomplete--common-suffix): Always pay attention to case.
11351         (pcomplete--table-subvert): Quote and unquote the text.
11352         (pcomplete--common-quoted-suffix): New function.
11353         (pcomplete-std-complete): Use it and pcomplete-begin.
11355         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
11356         we're inside a dedicated or minibuffer window.
11358 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11360         * cedet/semantic/fw.el (semantic-alias-obsolete)
11361         (semantic-varalias-obsolete): Make the `when' arg mandatory.
11362         (define-mode-overload-implementation):
11363         * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
11364         * cedet/semantic/wisent.el (wisent-lex-make-token-table):
11365         * cedet/semantic/util.el (semantic-file-token-stream)
11366         (semantic-something-to-stream):
11367         * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
11368         (semantic-expand-nonterminal):
11369         * cedet/semantic/tag-file.el (semantic-find-nonterminal)
11370         (semantic-find-dependency, semantic-find-nonterminal)
11371         (semantic-find-dependency):
11372         * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
11373         (semantic-flex-text, semantic-flex-make-keyword-table)
11374         (semantic-flex-keyword-p, semantic-flex-keyword-put)
11375         (semantic-flex-keyword-get, semantic-flex-map-keywords)
11376         (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
11377         * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
11378         * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
11379         (semantic-after-idle-scheduler-reparse-hooks):
11380         * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
11381         * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
11382         * cedet/semantic.el (semantic-toplevel-bovine-table)
11383         (semantic-toplevel-bovine-cache)
11384         (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
11385         (semantic-init-mode-hooks, semantic-init-db-hooks)
11386         (semantic-bovination-working-type): Provide the `when' arg.
11388 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
11390         * bookmark.el: Update documentation, especially documentation
11391         of `bookmark-alist' and of the bookmark file format.
11392         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
11394 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
11396         * mail/emacsbug.el (report-emacs-bug): Clarify that the
11397         keybindings apply to the mail buffer (Bug#4003).  Shrink help
11398         window to buffer.
11400         * whitespace.el (whitespace-mode, whitespace-newline-mode)
11401         (global-whitespace-mode, global-whitespace-newline-mode)
11402         (whitespace-toggle-options, global-whitespace-toggle-options):
11403         Doc fix (Bug#3660).
11405         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
11406         of xmltok-start before the end tag was inserted (Bug#2840).
11408         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
11409         patterns that are preceded by an open-paren (Bug#1320).
11411 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
11413         * files.el (delete-directory): Delete symlinks to directories with
11414         delete-file (Bug#4739).
11416 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
11418         * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
11419         * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
11420         argument to make-obsolete.
11422         * cedet/semantic/fw.el (semantic-alias-obsolete)
11423         (semantic-varalias-obsolete): Add optional WHEN argument.
11425 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
11427         * vc.el (vc-backend-for-registration): Rename from
11428         vc-get-backend-for-registration.  Update callers.
11430         * international/mule-cmds.el (set-language-info-alist):
11431         Purecopy lang-env.
11432         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
11433         (charset): Purecopy the name.
11434         (define-char-code-property): Purecopy string arguments.
11436         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
11437         Purecopy string arguments.
11439         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
11440         * ediff-hook.el (menu-bar-ediff-menu):
11441         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
11442         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
11444 2009-10-24  Glenn Morris  <rgm@gnu.org>
11446         * comint.el (comint-dynamic-list-completions):
11447         * term.el (term-dynamic-list-completions): Use choose-completion rather
11448         than obsolete alias mouse-choose-completion.
11450         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
11451         file-cache-choose-completion.
11452         (file-cache-choose-completion): Handle an optional event argument.
11453         (file-cache-mouse-choose-completion): Make it an obsolete alias.
11455         * progmodes/octave-mod.el (octave-complete-symbol):
11456         Use choose-completion if mouse-choose-completion is ever removed.
11458         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
11459         use.
11461         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
11462         compiler.
11464         * vc-hooks.el (vc-responsible-backend): Fix declaration.
11466 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11468         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
11469         Ignore `pred' now that we receive one.
11470         Handle test-completion specially.
11472 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
11474         * vc.el (vc-responsible-backend): Throw an error if not backend is
11475         found.  Remove the REGISTER argument.  Move the code dealing with
11476         REGISTER ...
11477         (vc-get-backend-for-registration): ... here.  New function.
11478         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
11479         of vc-responsible-backend, pass the file name instead of the
11480         directory name.
11482 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11484         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
11485         New funs.
11486         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
11487         (pcomplete-comint-setup): Don't modify a global var via
11488         accidental side-effects.
11489         (pcomplete-shell-setup): Adjust call accordingly.
11490         (pcomplete-parse-comint-arguments): Use push.
11492 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
11494         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
11495         Allow uncapitalized info node names (Bug#3921).
11497         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
11498         to the DEBUG file (Bug#3781).
11500 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
11502         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
11503         dictionary entry (Bug#4579).
11505 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
11507         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
11508         from `rfn-eshadow-update-overlay-hook' when unloading.
11509         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
11510         "rsyncc".  Adjust doc string.
11511         (tramp-temp-buffer-file-name): New buffer-local defvar.
11512         (tramp-handle-insert-file-contents, tramp-handle-write-region):
11513         Keep temporary file when indicated by method ("rsync" and
11514         "rsyncc").
11515         (tramp-handle-write-region): Handle APPEND.
11516         (tramp-delete-temp-file-function): New defun.  Added to
11517         `kill-buffer-hook'.
11519 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
11521         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
11523 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
11525         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
11526         (color-name-rgb-alist, tty-standard-colors)
11527         (tty-color-mode-alist): Change to defconst.
11529         * simple.el (mark-inactive): Purecopy message.
11531         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
11532         (global-map, yank-menu):
11533         * textmodes/ispell.el (ispell-menu-map):
11534         * net/eudc.el (eudc-tools-menu):
11535         * international/mule-cmds.el (describe-language-environment-map)
11536         (setup-language-environment-map, set-coding-system-map)
11537         (mule-menu-keymap):
11538         * vc-hooks.el (vc-menu-entry, vc-menu-map):
11539         * replace.el (occur-mode-map):
11540         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
11542 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
11544         * calc/calc.el (math-read-number, math-read-number-simple): Use
11545         `save-match-data'.
11547 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11549         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
11550         rather than fiddling with global-map bindings, since it should only
11551         affect per-terminal settings.
11552         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
11554         * minibuffer.el (completion-table-with-terminator): Allow to specify
11555         the terminator-regexp.
11557         * simple.el (switch-to-completions): Look for *Completions* in other
11558         frames as well.
11560         * pcomplete.el: Allow the use of completion-tables.
11561         (pcomplete-std-complete): New command.
11562         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
11563         (pcomplete--here): Use a function for `form' rather than an expression,
11564         so it can be byte-compiled.
11565         (pcomplete-here, pcomplete-here*): Adjust accordingly.
11566         Add edebug declaration.
11567         (pcomplete-show-completions): Remove unused var `curbuf'.
11568         (pcomplete-do-complete, pcomplete-stub):
11569         Don't assume `completions' is a list of strings any more.
11571 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
11573         * find-dired.el (find-name-arg): Fix typo in docstring.
11575 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11577         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
11578         (pcmpl-linux-fs-types): Same, and update to new modules layout.
11580         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
11581         pcomplete-entries.
11583         * comint.el (comint-read-input-ring, comint-write-input-ring)
11584         (comint-substitute-in-file-name)
11585         (comint-dynamic-complete-as-filename)
11586         (comint-dynamic-simple-complete)
11587         (comint-dynamic-list-filename-completions)
11588         (comint-dynamic-list-completions)
11589         (comint-redirect-results-list-from-process): Minor simplifications.
11591 2009-10-21  Kevin Ryde  <user42@zip.com.au>
11593         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
11594         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
11595         the first form.  And insert a blank line after ";;; Code" since
11596         that's usual style.  (Bug#4612)
11598         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
11600 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11602         * minibuffer.el (completion-table-with-terminator): Properly implement
11603         boundaries, in case `terminator' appears in the suffix.
11604         (completion--embedded-envvar-table): Don't return boundaries if
11605         there's no valid completion.  Simplify.
11606         (completion-file-name-table): New completion table extracted from
11607         completion--file-name-table.
11608         (completion--file-name-table): Use it.
11609         (read-file-name-predicate): Declare obsolete.
11610         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
11611         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
11612         completion-file-name-table, and use the `pred' argument.
11613         * files.el (locate-file-completion-table): Use the `pred' arg rather
11614         than read-file-name-predicate.
11615         (abbreviate-file-name): Use \` rather than ^ for BOS.
11617 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
11619         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
11620         vc-responsible-backend to register, it causes problems.
11622 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11624         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
11626 2009-10-21  Eric Ludlam  <zappo@gnu.org>
11628         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
11629         (semantic-c-debug-mode-init-pch): New functions.
11630         (semantic-c-debug-mode-init-last-mode): New var.
11631         (semantic-c-parse-lexical-token): Use them.
11633         * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
11634         When extracting the argument list, limit only by point-max.
11636 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
11638         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
11639         (tramp-smb-handle-file-attributes): Use it.
11640         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
11641         (tramp-smb-handle-insert-directory): Use `mapc' rather than
11642         `mapcar'.  Use `tramp-smb-get-stat-capability'.
11643         Add `dired-filename' text properties.
11644         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
11645         (tramp-smb-maybe-open-connection): Simplify check for smbclient
11646         version.
11648 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11650         * subr.el (read-key-delay): Reduce to 0.01.
11651         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
11652         (bug#4751).
11654 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11656         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
11658         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
11659         (Info-menu): Remove unused vars `last' and `completions'.
11660         (Info-index-nodes): Remove unused var `node'.
11662         * info.el (Info-complete-menu-item): Use complete-with-action.
11664 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
11666         Make vc-annotate work through copies and renames.
11667         * vc-annotate.el (vc-annotate-extract-revision-at-line):
11668         Return the file name too.
11669         (vc-annotate-revision-at-line)
11670         (vc-annotate-find-revision-at-line)
11671         (vc-annotate-revision-previous-to-line)
11672         (vc-annotate-show-log-revision-at-line): Update to get the file
11673         name from vc-annotate-extract-revision-at-line.
11674         (vc-annotate-show-diff-revision-at-line-internal): Change the
11675         argument to mean whether to show a file diff or not.  Get the file
11676         name from vc-annotate-extract-revision-at-line.
11677         (vc-annotate-show-diff-revision-at-line):
11678         Update vc-annotate-show-diff-revision-at-line call.
11679         (vc-annotate-warp-revision): Add an optional file argument.
11681         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
11682         (vc-git-annotate-extract-revision-at-line): Also return the file
11683         name if found.
11685         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
11686         command.  Remove unused code.
11687         (vc-hg-annotate-re): Update to match --follow output.
11688         (vc-hg-annotate-extract-revision-at-line): Also return the file
11689         name if found.
11691         * vc.el: Update annotate-extract-revision-at-line documentation.
11693 2009-10-18  Kevin Ryde  <user42@zip.com.au>
11695         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
11696         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
11698         * net/browse-url.el (browse-url): Identify alist with "consp and
11699         not functionp" and let all other things go down the `apply' leg,
11700         as suggested by Stefan.  (Further to bug#4531.)
11702 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
11704         * minibuffer.el (read-file-name): Check for repeat before putting
11705         a default argument in file-name-history (Bug#4657).
11707         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
11708         read syntax (Bug#4737).
11710         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
11712 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
11714         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
11715         (html-tag-alist, html-tag-help): Add descriptions for undocumented
11716         entries and make note of obsolete tags.
11718 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11720         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
11722 2009-10-18  Glenn Morris  <rgm@gnu.org>
11724         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
11725         grep, so that binary files (eg international/uni-bidi.el) can match.
11726         Remove test for "UnicodeData" files, since it is hopefully unnecessary
11727         now, and in any case the file header format has changed.
11729 2009-10-17  Glenn Morris  <rgm@gnu.org>
11731         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
11732         (flyspell-get-word, flyspell-large-region)
11733         (flyspell-auto-correct-previous-word): Doc/error message fixes.
11735 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
11737         * Makefile.in (ELCFILES): Add ede/shell.
11739 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
11741         * term/common-win.el (x-colors): Purecopy it.
11743 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11745         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
11746         permissive for when the buffer is empty.
11747         (tar-header-block-tokenize): Decode the username and groupname.
11748         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
11750 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
11752         * cedet/srecode/srt.el:
11753         * cedet/srecode/compile.el:
11754         * cedet/semantic/mru-bookmark.el:
11755         * cedet/semantic/debug.el:
11756         * cedet/semantic/complete.el:
11757         * cedet/semantic/analyze.el: Require CL when compiling.
11759 2009-10-17  Eric Ludlam  <zappo@gnu.org>
11761         * cedet/semantic/scope.el
11762         (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
11763         tmpscope so that the regular scope will continue to work.
11765         * cedet/semantic/idle.el (semantic-idle-tag-highlight):
11766         Use semantic-idle-summary-highlight-face as the highlighting.
11768         * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
11769         contains multibyte characters, choose first applicable coding
11770         system automatically.
11772         * cedet/ede/project-am.el (project-run-target): New method.
11773         (project-run-target): New method.
11775         * cedet/ede.el (ede-target): Add run target menu item.
11776         (ede-project, ede-minor-keymap): Add ede-run-target binding.
11777         (ede-run-target): New function.
11778         (ede-target::project-run-target): New method.
11780         * cedet/ede/proj.el (project-run-target): New method.
11782         * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
11783         (ede-g++-libtool-shared-compiler): Remove SHELL.  Remove COMMANDS.
11784         Add :rules.
11785         (ede-proj-target-makefile-shared-object): Only libtool compilers
11786         now available.  Add linkers for libtool.
11787         (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
11788         (ede-proj-makefile-target-name): Always use .la extension.
11790         * cedet/ede/proj-prog.el (project-run-target): New method.
11792         * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
11793         (ede-g++-linker): Change Change link lines.
11795         * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
11796         When searching for old variables, go to the end of the buffer and
11797         search backward from there.
11798         (ede-proj-makefile-automake-insert-subdirs)
11799         (ede-proj-makefile-automake-insert-extradist): New methods.
11800         (ede-proj-makefile-create): Use them.
11802         * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
11803         Force FILE to expand to the current target.  Use file-exists-p to
11804         check that it exists.
11806         * cedet/ede/linux.el (ede-linux-version): Don't call "head".
11807         (ede-linux-load): Wrap dir in file-name-as-directory.
11808         Set :version slot.
11810         * cedet/ede/files.el (ede-get-locator-object): When enabling
11811         locate, do so on "top".
11813         * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
11814         file-name-as-directory during compare.
11815         (ede-emacs-version): Return Emacs/XEmacs differentiator.
11816         Get version number from different places.  Don't call egrep.
11817         (ede-emacs-load): Set :version slot.  Call file-name-as-directory
11818         to set the directory.
11820         * cedet/ede/shell.el: New file.
11822         * cedet/inversion.el (inversion-decoders): Allow for stray . in
11823         alpha/beta variants.
11825 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11827         * international/mule-cmds.el (select-safe-coding-system): If the file
11828         has a coding cookie, use it regardless of any other setting (bug#4712).
11830 2009-10-17  Glenn Morris  <rgm@gnu.org>
11832         * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
11833         All errors should have messages.
11835         * foldout.el (foldout-mouse-swallow-events):
11836         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
11838         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
11839         (dired-keep-marker-copy, dired-keep-marker-hardlink)
11840         (dired-keep-marker-symlink, dired-dwim-target)
11841         (dired-copy-preserve-time): Do not autoload these defcustoms.
11843         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
11844         messages from messing up the file coding.  (Bug#4623)
11846 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
11848         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
11849         if no match is found for the current dictionary.  (Bug#4578)
11851         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
11852         optional, since that is how it is documented, and this is often called
11853         with a nil argument.  (Bug#4577)
11854         (flyspell-external-point-words, flyspell-auto-correct-word)
11855         (flyspell-correct-word-before-point, flyspell-word-search-forward)
11856         (flyspell-word-search-backward): Remove nil argument in calls to
11857         flyspell-get-word, since it is not needed now.
11859 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
11861         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
11863 2009-10-16  Glenn Morris  <rgm@gnu.org>
11865         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
11867 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
11869         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
11870         (ange-ftp-file-size): New function.
11871         (ange-ftp-file-attributes): Use it.
11873 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
11875         * net/tramp-smb.el (tramp-smb-version): New defvar.
11876         (tramp-smb-maybe-open-connection): Use it, in order to avoid
11877         repeated checks.
11879 2009-10-16  Glenn Morris  <rgm@gnu.org>
11881         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
11882         Maybe copy some custom properties from old to new name.  (Bug#4706)
11884 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
11886         * subr.el (error, sit-for, start-process-shell-command)
11887         (start-file-process-shell-command): Set the calling convention
11888         after the function definition.
11890 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11892         * subr.el (error, sit-for, start-process-shell-command)
11893         (start-file-process-shell-command): Use the new
11894         set-advertised-calling-convention feature.
11896 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
11898         * international/ucs-normalize.el (ucs-normalize-version):
11899         Change to 1.2.
11900         (check-range): Adjust for Unicode 5.2.
11902 2009-10-15  Juri Linkov  <juri@jurta.org>
11904         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
11905         to the `menu-item' format.
11907 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
11909         * net/tramp.el (tramp-replace-environment-variables): Do not fail
11910         if the environment variable does not exist.
11912         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
11913         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
11914         parameter.
11915         (tramp-smb-handle-add-name-to-file)
11916         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
11917         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
11918         (tramp-smb-handle-file-attributes)
11919         (tramp-smb-do-file-attributes-with-stat)
11920         (tramp-smb-handle-file-local-copy)
11921         (tramp-smb-handle-insert-directory)
11922         (tramp-smb-handle-make-directory)
11923         (tramp-smb-handle-make-directory-internal)
11924         (tramp-smb-handle-make-symbolic-link)
11925         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
11926         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
11927         (tramp-smb-maybe-open-connection): Apply the changed parameters.
11928         (tramp-smb-read-file-entry): Read Disk names in compressed format.
11929         Handle long file names.
11930         (tramp-smb-get-cifs-capabilities): Check, whether the connection
11931         process is running.
11932         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
11933         Read share names with "-g" option.
11935 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
11937         * net/rcirc.el (rcirc-view-log-file): New command.
11938         (rcirc-track-minor-mode-map): Remove C-c ` binding.
11939         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
11940         specified.
11942 2009-10-15  Glenn Morris  <rgm@gnu.org>
11944         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
11945         from the second command-line argument.
11946         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
11947         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
11948         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
11949         w32-batch-update-autoloads.
11950         * emacs-lisp/autoload.el (autoload-make-program): New variable.
11951         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
11953         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
11954         the headers cannot be located.  Simplify, subtracting superflous
11955         save-excursions.
11957 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11959         Replace completion-base-size by completion-base-position to fix bugs
11960         such as (bug#4699).
11961         * simple.el (completion-base-position): New var.
11962         (completion-base-size): Mark as obsolete.
11963         (choose-completion): Make it work for mouse events as well.
11964         Pass the new base-position to choose-completion-string.
11965         (choose-completion-guess-base-position): New function, extracted from
11966         choose-completion-delete-max-match.
11967         (choose-completion-delete-max-match): Use it.  Make obsolete.
11968         (choose-completion-string): Use the new base-position info.
11969         (completion-root-regexp): Delete.
11970         (completion-setup-function): Preserve completion-base-position.
11971         Eliminate obsolete base-size manipulation.
11972         * minibuffer.el (display-completion-list): Don't mess with base-size.
11973         (minibuffer-completion-help): Set completion-base-position instead.
11974         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
11975         choose-completion.
11976         * textmodes/bibtex.el (bibtex-complete):
11977         * emacs-lisp/crm.el (crm--choose-completion-string):
11978         Adjust to new calling convention.
11979         * complete.el (partial-completion-mode): Use minibufferp to avoid
11980         bumping into incompatible change to choose-completion-string-functions.
11981         * ido.el (ido-choose-completion-string): Make its calling convention
11982         more permissive.
11983         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
11984         base-size manipulation.
11985         (comint-dynamic-list-input-ring): Use dotimes and push.
11986         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
11987         fundamental-mode.  Use `or'.
11989 2009-10-14  Juri Linkov  <juri@jurta.org>
11991         * misearch.el (multi-isearch-next-buffer-from-list)
11992         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
11994 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11996         * Makefile.in (compile-onefile): Load `bytecomp' rather than
11997         `bytecomp.el'.
11999         * minibuffer.el (completion-pcm--merge-completions): Make sure the
12000         string we return is all made up of text from the completions rather
12001         than part from the completions and part from the input (bug#4219).
12003         * ido.el (ido-everywhere): Use define-minor-mode.
12005         * buff-menu.el (list-buffers, ctl-x-map):
12006         Mark the entry points with ;;;###autoload cookies.
12008 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
12010         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
12011         correctly in the detached head case.
12012         (vc-git-print-log): Remove unused binding.
12014         * vc.el (vc-responsible-backend): When a directory is passed for
12015         for registration create a VC repository if no backend is
12016         responsible for the directory argument.
12017         (vc-deduce-fileset): Tell vc-responsible-backend to register.
12019         * vc.el: Move comments about RCS and SCCS ...
12020         * vc-rcs.el:
12021         * vc-sccs.el: ... here, respectively.
12023 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12025         * minibuffer.el (completion--file-name-table): Return nil if there's
12026         no file completion, even if substitute-in-file-name changed
12027         the string (bug#4708).
12029 2009-10-13  Juri Linkov  <juri@jurta.org>
12031         * files-x.el (read-file-local-variable-value): Don't filter out
12032         minor modes from mode name completion (bug#4664).
12034 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
12036         * international/mule-cmds.el (ucs-names): Remove exclusion of
12037         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
12039 2009-10-13  Kenichi Handa  <handa@m17n.org>
12041         * international/uni-name.el: Regenerated.
12043 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
12045         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
12046         should be automatically buffer-local, but isn't.)
12048 2009-10-12  Sam Steingold  <sds@gnu.org>
12050         * progmodes/compile.el (compilation-next-error-function): Fix the
12051         timestamps if the buffer has been visited before.
12052         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
12053         non-anchored patterns, like the perl one (bug#3928).
12055 2009-10-12  Glenn Morris  <rgm@gnu.org>
12057         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
12058         Let-bind `size'.
12060 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
12062         * proced.el (proced-unload-function): New function.
12064         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
12065         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
12066         Doc fix.
12068         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
12070 2009-10-11  Juri Linkov  <juri@jurta.org>
12072         * files-x.el (read-file-local-variable-value):
12073         Provide default value only for bound variables (bug#4664).
12075 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
12077         * net/tramp.el (tramp-local-host-p): Function shall return nil for
12078         connection methods like smb.
12080         * net/tramp-cache.el (tramp-flush-connection-property): The hash
12081         can be empty.
12083         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12084         (tramp-smb-file-name-handler-alist): Add handlers for
12085         `add-name-to-file', `make-symbolic-link'.
12086         (tramp-smb-handle-add-name-to-file)
12087         (tramp-smb-do-file-attributes-with-stat)
12088         (tramp-smb-handle-make-symbolic-link)
12089         (tramp-smb-get-cifs-capabilities): New defuns.
12090         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
12091         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
12092         (tramp-smb-handle-file-local-copy)
12093         (tramp-smb-handle-make-directory-internal)
12094         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
12095         The file name syntax depends on cifs capabilities.
12096         (tramp-smb-handle-file-attributes):
12097         Call `tramp-smb-do-file-attributes-with-stat' if possible.
12098         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
12099         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
12101 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
12103         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
12104         (eieio-defclass): Apply deftype handler and setf-method properties
12105         directly.
12106         (eieio-add-new-slot): Avoid union function from cl library.
12107         (eieio--typep): New function.
12108         (eieio-perform-slot-validation): Use it.
12110 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
12112         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
12113         Update documentation to refer to the variables documented in r1.135.
12114         (Bug#4188)
12116 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
12118         * bookmark.el (Info-suffix-list): Remove this unused variable.
12119         (bookmark-current-point): Remove this obsolete variable.
12120         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
12121         Adjust for removal of bookmark-current-point.
12123         (bookmarks-already-loaded, bookmark-current-buffer)
12124         (bookmark-yank-point): Document.  (Bug#4188)
12126 2009-10-10  Glenn Morris  <rgm@gnu.org>
12128         * frame.el (frame-height): Doc fix.
12130         * calendar/calendar.el (calendar-split-width-threshold): New option.
12131         (calendar-basic-setup): Use calendar-split-width-threshold.
12133 2009-10-10  Sascha Wilde  <wilde@sha-bang.de>
12135         * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
12136         Use .la for Automake.
12138 2009-10-09  Chong Yidong  <cyd@stupidchicken.com>
12140         * cedet/ede/pconf.el (ede-proj-configure-synchronize):
12141         Use "autoreconf -i".  Suggested by Andreas Schwab.
12143 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
12145         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
12146         Ideographic Supplement" range (U+1F200..U+1F2FF).
12148 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
12150         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
12151         since the list will have been rebuilt anyway.  (Bug#4349)
12153 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
12155         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
12156         (bookmark-bmenu-execute-deletions): Don't save here, as
12157         bookmark-delete will now do so if necessary.
12158         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
12159         (Bug#4348)
12161 2009-10-09  Glenn Morris  <rgm@gnu.org>
12163         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
12165 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
12167         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
12168         (bookmark-jump-other-window): Just invoke bookmark-jump with new
12169         argument now, so the two function's behaviors will match.  (Bug#3645)
12171 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
12173         * cedet/ede/proj.el (project-make-dist, project-compile-project):
12174         Fix filename test.
12175         (ede-proj-dist-makefile): Use expand-file-name instead of concat
12176         to expand file names.
12178 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
12180         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
12181         (tramp-file-name-real-host, tramp-file-name-port):
12182         Apply `save-match-data'.
12184         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
12185         case both directories are remote.
12186         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
12187         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
12189 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
12191         * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
12192         (ede-proj-target-makefile-objectcode): Use it.
12194         * cedet/ede/source.el (ede-want-any-source-files-p)
12195         (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
12196         Return search result.  This error was introduced while merging.
12198 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
12200         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
12202 2009-10-07  Glenn Morris  <rgm@gnu.org>
12204         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
12205         of concat.
12207 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12209         * files-x.el (read-file-local-variable): Include some
12210         non-user-variables in the completion table (bug#4664).
12212 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
12214         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
12215         message.
12217         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12218         (tramp-smb-file-name-handler-alist): Add handler for
12219         `copy-directory', `expand-file-name', `set-file-modes'.
12220         (tramp-smb-handle-copy-directory)
12221         (tramp-smb-handle-expand-file-name)
12222         (tramp-smb-handle-set-file-modes): New defuns.
12223         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
12224         (tramp-smb-handle-file-attributes): Simplify check for retrieving
12225         entry.
12226         (tramp-smb-handle-insert-directory): Don't flush the cache.
12227         (tramp-smb-maybe-open-connection): Check for samba client and
12228         server versions.
12230 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
12232         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
12233         to not error out of search for "^lisp=" fails.
12235 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
12237         * makefile.w32-in (WINS_UPDATES): New macro.
12238         (custom-deps, finder-data, autoloads): Use it.
12240 2009-10-07  Glenn Morris  <rgm@gnu.org>
12242         * Makefile.in (autoloads): Revert previous change.
12243         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
12244         the list of preloaded files passed on the command-line, get
12245         it from src/Makefile.
12247         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
12248         show the original buffer rather than a random one.
12250 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
12252         * help.el (describe-no-warranty): Place point in a slightly better
12253         position in the GPLv3 text.
12255 2009-10-06  Sam Steingold  <sds@gnu.org>
12257         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
12258         the comm attribute is present before calling regexp-quote.
12260 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
12262         * play/animate.el (animate-string): For good effect, make sure
12263         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
12265         * play/animate.el (animate-sequence, animate-birthday-present):
12266         * misc.el (butterfly): Don't set `indent-tabs-mode'.
12268 2009-10-06  Glenn Morris  <rgm@gnu.org>
12270         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
12272         * emacs-lisp/autoload.el (autoload-excludes): New variable.
12273         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
12274         (batch-update-autoloads): Process a string value of autoload-excludes,
12275         set during the build process.
12276         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
12278         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
12279         inside with-parsed...  macro so that `v' is defined.
12281         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
12282         * progmodes/fortran.el (fortran-end-of-block)
12283         (fortran-beginning-of-block):
12284         Also push mark in the macro case.
12286         * emerge.el (emerge-show-file-name):
12287         * calc/calc.el (calc-quit):
12288         * calc/calc-misc.el (calc-big-or-small):
12289         * calc/calc-graph.el (calc-graph-view):
12290         * calc/calc-ext.el (calc-reset):
12291         * calendar/calendar.el (calendar-basic-setup):
12292         Use window-full-height-p.
12294         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
12295         header we don't understand, don't insert another.  (Bug#4624)
12296         If changing mime charset, insert the new one in the right place.
12298 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
12300         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
12301         (cal-tex-cursor-month): Correctly increment the end date for diary and
12302         holiday listing.  (Bug#4626)
12304 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12306         * help-fns.el (describe-function-1): Don't burp if the function is not
12307         a symbol.
12309 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
12311         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
12312         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
12313         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
12314         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
12316         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
12317         (eieio-default-superclass): Reflow docstrings.
12318         (this, class-option-assoc, defclass, eieio-class-un-autoload)
12319         (eieio-unbind-method-implementations, defmethod)
12320         (eieio-validate-slot-value, eieio-validate-class-slot-value)
12321         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
12322         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
12323         (eieio-slot-originating-class-p, eieio-slot-name-index)
12324         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
12325         (constructor, initialize-instance, no-next-method, object-print)
12326         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
12327         Fix typos in docstrings.
12328         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
12329         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
12330         (next-method-p): Doc fixes.
12331         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
12332         Fix typos in error messages.
12333         (eieio-defmethod): Fix typo in description of generic method.
12335         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
12336         (eieio-persistent-save-interactive, slot-missing):
12337         Fix typos in docstrings.
12338         (eieio-instance-inheritor-slot-boundp): Doc fix.
12340         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
12341         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
12343         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
12344         (eieio-custom-object-apply-reset):
12345         Fix typos in docstrings and error messages.
12347         * emacs-lisp/eieio-datadebug.el (data-debug-show):
12348         Fix typo in docstring.
12350         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
12351         (eieio-browse-tree): Doc fix.
12352         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
12353         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
12354         Fix typos in docstrings.
12356         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
12357         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
12358         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
12359         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
12360         Reflow docstrings.
12362 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
12364         * vc-hg.el (log-view-vc-backend): Declare for compiler.
12365         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
12366         Set log-view-vc-backend so that diff can work.
12368         * log-view.el (log-view-diff): Use vc-diff-internal instead of
12369         vc-version-diff.
12370         (vc-diff-internal): Autoload this instead of vc-version-diff.
12372 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
12374         * simple.el (eval-expression): Doc fix.
12376         * progmodes/cwarn.el (cwarn-mode): Doc fix.
12378 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
12380         * files.el (directory-files-no-dot-files-regexp): New defconst.
12381         (delete-directory): Use it.
12382         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
12384         * net/tramp.el (tramp-verbose): Fix docstring.
12385         (tramp-methods): Add recursive option to `tramp-copy-args'.
12386         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
12387         "scp1_old", "scp2_old", "rsync", "rsyncc".
12388         (tramp-default-method): Check also for `auth-source-user-or-password'.
12389         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
12390         Add handler for `copy-directory'.
12391         (tramp-handle-copy-directory): New defun.
12392         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
12393         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
12394         Optimize sent command.
12396 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12398         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
12399         window if necessary.
12401         * calendar/calendar.el (calendar-basic-setup): Don't call
12402         switch-to-buffer in a dedicated window.
12404 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
12406         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
12407         don't do anything related to relocating, just return nil.
12408         (bookmark-error-no-filename): New error.
12409         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
12410         bookmark has no file.  Don't even attempt to handle things that
12411         are not files; the whole point of custom handlers is to keep that
12412         knowledge elsewhere anyway.  Tighten some comments.
12413         (bookmark-file-or-variation-thereof): Remove now-unused function.
12414         (bookmark-location): Doc string fix.
12415         (Bug#4250)
12417 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
12419         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
12420         don't use a file dialog, because they usually don't know how to read
12421         a directory target from the user.  (Bug#4230)
12422         Also, make sure the prompt can display directories as well as files.
12424 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
12426         * bookmark.el (bookmark-set, bookmark-buffer-name):
12427         Improve doc strings.  (Bug#1193)
12429 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
12431         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
12432         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
12433         (bookmark-get-annotation, bookmark-set-annotation)
12434         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
12435         (bookmark-set-position, bookmark-get-front-context-string)
12436         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
12437         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
12438         (bookmark-jump-other-window, bookmark-handle-bookmark)
12439         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
12440         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
12441         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
12442         Improve doc strings to say whether bookmark can be a string or
12443         a record or both, and make other consistency and clarity fixes.
12444         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
12445         (bookmark-default-annotation-text, bookmark-yank-word)
12446         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
12447         (bookmark-import-new-list, bookmark-maybe-rename)
12448         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
12449         (bookmark-bmenu-bookmark): Give these doc strings.
12450         (bookmark-bmenu-check-position): Give this a doc string, but also
12451         add a FIXME comment about how the function may be pointless.
12452         (bookmark-default-handler): Rework doc string and change a
12453         parameter name, to clarify that this takes a bookmark record
12454         not a bookmark name.
12455         (bookmark-set): Change a parameter name to indicate its meaning,
12456         and improve the doc string a bit.
12457         (Bug#4188)
12459 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
12461         * bookmark.el (bookmark-alist): Document the new `handler' element
12462         in the param alist.
12463         (bookmark-make-record-function): Adjust documentation for above.
12464         (Bug#4193)
12466 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
12468         * info.el (Info-bookmark-make-record): Document this function.
12469         (Info-bookmark-jump): Document with a doc string, not just a comment.
12470         (Bug#4203)
12472 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
12474         * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
12475         (semantic-new-buffer-fcn): Call parser setup functions here.
12476         (semantic-mode): Don't call parser setup functions here, it's done
12477         in semantic-new-buffer-fcn now.
12478         (semantic-mode): Parse all existing buffers when enabled.
12480         * cedet/srecode/compile.el (srecode-compile-file):
12481         Call semantic-new-buffer-fcn if the buffer has not been parsed.
12483 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
12485         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
12487         * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
12488         (proj-comp-insert-variable-once): New macro, renamed from
12489         ede-pmake-insert-variable-once in ede/pmake.edl.
12490         (ede-proj-makefile-insert-variables): Use it.
12492 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
12494         * files.el (copy-directory): New defun.
12496         * dired-aux.el (dired-copy-file-recursive): Use it.
12498 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
12500         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
12501         (makefile-end-of-command):
12502         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
12503         (semantic-end-of-context): Fix previous change.  Doc fixes.
12505 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
12507         * files-x.el (modify-dir-local-variable)
12508         (copy-dir-locals-to-file-locals-prop-line):
12509         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
12510         (makefile-end-of-command):
12511         * cedet/semantic/lex.el (semantic-lex-token):
12512         * cedet/semantic/analyze/fcn.el
12513         (semantic-analyze-dereference-metatype-1):
12514         * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
12515         (semantic-lex-cpp-undef):
12516         * cedet/semantic/wisent/wisent.el (wisent-skip-block):
12517         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
12518         (semantic-end-of-context): Fix typos in docstrings.
12520         * recentf.el (recentf-unload-function): New function.
12522 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
12524         * cedet/ede.el (ede-project-placeholder-cache-file):
12525         * cedet/semantic/db-file.el (semanticdb-default-save-directory):
12526         * cedet/srecode/map.el (srecode-map-save-file):
12527         Use locate-user-emacs-file.  Suggested by Juanma Barranquero.
12529 2009-10-04  Glenn Morris  <rgm@gnu.org>
12531         * window.el (window-full-height-p): Add doc string.
12533 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
12535         * window.el (window-full-height-p): New function.  (Bug#4543)
12537 2009-10-03  Chong Yidong  <cyd@stupidchicken.com>
12539         * cedet/srecode/insert.el: Require srecode/args.
12541         * cedet/srecode/args.el: Require srecode/dictionary instead of
12542         srecode/insert.
12544         * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
12546         * files.el (auto-mode-alist): Add .srt and Project.ede.
12548         * cedet/semantic.el (semantic-mode):
12549         Handle srecode-template-mode-hook as well.
12550         (semantic-mode): Use js-mode-hook for Javascript hook.
12552         * cedet/srecode/template.el: Remove hook variable.
12554         * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
12556         * cedet/ede.el (ede-target-forms-menu): Don't enable if no
12557         projects exist.
12558         (ede-project-placeholder-cache-file): Default to a file in
12559         user-emacs-directory.
12561         * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
12562         templates in data-directory.
12563         (srecode-map-save-file): Default to a file in user-emacs-directory.
12565         * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
12566         directory.
12568 2009-09-30  Eric Ludlam  <zappo@gnu.org>
12570         * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
12571         Doc fix.
12573         * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
12574         Only insert each variable once.
12576         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
12577         (ede-pmake-insert-variable-shared): Use it.
12579         * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
12580         for lexical table iff table is nil.
12582 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
12584         * vc.el: Remove commented out code.
12585         (vc-derived-from-dir-mode): Remove, unused.
12586         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
12588 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
12590         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
12591         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
12592         there could be recursive loading when `default-directory' is a
12593         remote file name.  (Bug#4614)
12595 2009-10-03  Glenn Morris  <rgm@gnu.org>
12597         * calendar/calendar.el (calendar-basic-setup): Handle the case where
12598         the frame is wide.
12599         (calendar-generate-window): Test for shrinkability rather than width.
12601         * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
12602         declaration, currently false.
12604         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
12605         reusing existing buffers, in case we happen to visit two files with the
12606         same basename.  (Bug#4593)
12608 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
12610         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
12611         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
12612         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
12613         subdirs of cedet as well.
12614         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
12616 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12618         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
12619         Obey advertised-signature-table.
12621         * help-fns.el (help-function-arglist): Don't check
12622         advertised-signature-table.
12623         (describe-function-1): Do it here instead so it also applies to subrs.
12625 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
12627         * simple.el (start-file-process): Say in the doc-string, that file
12628         handlers might not support pty association, if PROGRAM is nil.
12630         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
12631         HOST and USER are strings.  They are nil, when there are
12632         incomplete entries in ~/.netrc, for example.
12633         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
12634         root directory ("device busy" error otherwise).
12636         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
12637         Flush file properties of created directory.
12639 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
12641         * makefile.w32-in (WINS_BASIC): Remove cedet.
12642         (WINS_CEDET): Add cedet.
12643         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
12645 2009-10-02  Kevin Ryde  <user42@zip.com.au>
12647         * net/browse-url.el (browse-url): Pass any symbol in
12648         browse-url-browser-function to `apply', since if you've mistakenly put
12649         an unbound symbol then the error is clearer.  (Bug#4531)
12651 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
12653         * allout.el (allout-init, allout-back-to-current-heading)
12654         (allout-beginning-of-current-entry, allout-ascend-to-depth)
12655         (allout-ascend, allout-up-current-level, allout-end-of-level)
12656         (allout-previous-visible-heading, allout-forward-current-level)
12657         (allout-backward-current-level, allout-show-children):
12658         * apropos.el (apropos-describe-plist):
12659         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
12660         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
12661         * completion.el (add-completion, add-permanent-completion):
12662         * descr-text.el (describe-text-category, describe-char):
12663         * desktop.el (desktop-lazy-abort):
12664         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
12665         * dired.el (dired-build-subdir-alist):
12666         * ediff.el (ediff-version):
12667         * elide-head.el (elide-head, elide-head-show):
12668         * emerge.el (emerge-version):
12669         * env.el (getenv):
12670         * face-remap.el (variable-pitch-mode):
12671         * faces.el (describe-face):
12672         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
12673         (dired-at-point):
12674         * files.el (find-file-existing, auto-save-mode):
12675         * font-lock.el (font-lock-fontify-buffer):
12676         * help-fns.el (describe-function, describe-variable)
12677         (describe-syntax, describe-categories):
12678         * help.el (view-lossage, describe-bindings, describe-key)
12679         (describe-mode):
12680         * hexl.el (hexl-current-address):
12681         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
12682         * info.el (Info-goto-emacs-key-command-node):
12683         * log-edit.el (log-edit-insert-cvs-template)
12684         (log-edit-insert-cvs-rcstemplate):
12685         * menu-bar.el (menu-bar-mode):
12686         * mouse.el (mouse-appearance-menu):
12687         * newcomment.el (comment-indent-new-line):
12688         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
12689         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
12690         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
12691         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
12692         * recentf.el (recentf-mode):
12693         * savehist.el (savehist-mode, savehist-save):
12694         * shadowfile.el (shadow-copy-files):
12695         * simple.el (kill-ring-save, next-line, previous-line)
12696         (normal-erase-is-backspace-mode):
12697         * strokes.el (strokes-update-window-configuration)
12698         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
12699         (strokes-xpm-for-stroke):
12700         * time.el (emacs-uptime, emacs-init-time):
12701         * tutorial.el (tutorial--describe-nonstandard-key)
12702         (tutorial--detailed-help):
12703         * type-break.el (type-break-mode)
12704         (type-break-mode-line-message-mode, type-break-query-mode)
12705         (type-break-guesstimate-keystroke-threshold):
12706         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
12707         * version.el (emacs-version):
12708         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
12709         * winner.el (winner-mode):
12710         * calendar/timeclock.el (timeclock-in, timeclock-out)
12711         (timeclock-status-string, timeclock-change)
12712         (timeclock-workday-remaining-string)
12713         (timeclock-workday-elapsed-string)
12714         (timeclock-when-to-leave-string):
12715         * calendar/todo-mode.el (todo-add-category):
12716         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
12717         * emacs-lisp/autoload.el (update-file-autoloads):
12718         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
12719         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
12720         (checkdoc-message-text, checkdoc-defun):
12721         * emacs-lisp/debug.el (debugger-list-functions):
12722         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12723         * emacs-lisp/eieio-opt.el (eieio-describe-class)
12724         (eieio-describe-generic):
12725         * emacs-lisp/lisp-mnt.el (lm-synopsis):
12726         * emacs-lisp/shadow.el (list-load-path-shadows):
12727         * emulation/cua-base.el (cua-mode):
12728         * emulation/edt.el (edt-set-scroll-margins):
12729         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
12730         (tpu-toggle-regexp, tpu-toggle-search-direction)
12731         (tpu-toggle-rectangle, tpu-toggle-control-keys):
12732         * emulation/tpu-extras.el (tpu-set-scroll-margins):
12733         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
12734         (viper-set-parsing-style-toggling-macro)
12735         (viper-set-emacs-state-searchstyle-macros):
12736         * emulation/viper.el (viper-set-hooks):
12737         * eshell/esh-mode.el (eshell-truncate-buffer):
12738         * international/mule-cmds.el (prefer-coding-system)
12739         (describe-input-method, describe-language-environment):
12740         * international/mule-diag.el (list-character-sets)
12741         (describe-character-set, describe-coding-system)
12742         (describe-fontset, list-fontsets, list-input-methods):
12743         * mail/sendmail.el (mail-signature):
12744         * net/ange-ftp.el (ange-ftp-copy-file):
12745         * net/browse-url.el (browse-url):
12746         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
12747         * net/quickurl.el (quickurl-add-url):
12748         * net/rcirc.el (names, topic):
12749         * net/xesam.el (xesam-mode):
12750         * play/5x5.el (5x5-new-game):
12751         * play/yow.el (apropos-zippy):
12752         * progmodes/ada-mode.el (ada-mode-version):
12753         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
12754         (f90-end-of-block)
12755         (f90-beginning-of-block):
12756         * progmodes/fortran.el (fortran-end-of-block)
12757         (fortran-beginning-of-block):
12758         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
12759         * progmodes/python.el (python-describe-symbol, python-shell):
12760         * term/ns-win.el (ns-print-buffer):
12761         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
12762         * textmodes/flyspell.el (flyspell-mode-on):
12763         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
12764         (pages-directory-for-addresses):
12765         * textmodes/table.el (table-recognize-cell)
12766         (table-query-dimension, table-generate-source)
12767         (table-insert-sequence, table--warn-incompatibility):
12768         * textmodes/tex-mode.el (tex-validate-buffer):
12769         * textmodes/texinfmt.el (texinfmt-version)
12770         (texinfo-format-buffer):
12771         Use `called-interactively-p' instead of `interactive-p'.
12773 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
12775         * image-mode.el (image-toggle-display):
12776         * emacs-lisp/elp.el (elp-instrument-function):
12777         * emacs-lisp/advice.el (ad-make-advised-definition):
12778         * emacs-lisp/easy-mmode.el (define-minor-mode):
12779         * net/browse-url.el (browse-url-maybe-new-window):
12780         * progmodes/sh-script.el (sh-learn-buffer-indent):
12781         Pass new argument 'any to `called-interactively-p'.
12783 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
12785         * international/uni-bidi.el:
12786         * international/uni-category.el:
12787         * international/uni-combining.el:
12788         * international/uni-comment.el:
12789         * international/uni-decimal.el:
12790         * international/uni-decomposition.el:
12791         * international/uni-digit.el:
12792         * international/uni-lowercase.el:
12793         * international/uni-mirrored.el:
12794         * international/uni-name.el:
12795         * international/uni-numeric.el:
12796         * international/uni-old-name.el:
12797         * international/uni-titlecase.el:
12798         * international/uni-uppercase.el:
12799         Regenerate from Unicode 5.2.0 data.
12801 2009-10-01  Glenn Morris  <rgm@gnu.org>
12803         * Makefile.in (ELCFILES): Regenerate.
12805 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12807         * subr.el (interactive-p): Mark obsolete.
12808         (called-interactively-p): Make the optional-ness of `kind' obsolete.
12809         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
12810         advertised-signature-table for subroutines as well.
12812         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
12813         (set-advertised-calling-convention): New function.
12814         (make-obsolete, define-obsolete-function-alias)
12815         (make-obsolete-variable, define-obsolete-variable-alias):
12816         Make the optional-ness of `when' obsolete.
12817         (define-obsolete-face-alias): Make `when' non-optional.
12818         * help-fns.el (help-function-arglist):
12819         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
12820         Use advertised-signature-table.
12822 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
12824         * files.el (delete-directory): New defun.  The original function
12825         in fileio.c has been renamed to `delete-directory-internal'.
12827         * dired.el (dired-delete-file): Call `delete-directory' with
12828         RECURSIVE parameter.
12830         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
12831         parameter RECURSIVE.  Implementation is missing.
12833         * net/tramp.el (tramp-handle-make-directory): Flush upper
12834         directory's file properties.
12835         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
12836         (tramp-handle-dired-recursive-delete-directory): Flush directory
12837         properties after the remove command only.
12839         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
12840         Handle optional parameter RECURSIVE.
12842         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
12843         Handle optional parameter RECURSIVE.
12845         * net/tramp-smb.el (tramp-smb-errors): Add error message for
12846         connection timeout.
12847         (tramp-smb-handle-delete-directory): Handle optional parameter
12848         RECURSIVE.
12850 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12852         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
12853         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
12854         (byte-compile-defmacro): Use backquotes.
12856         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
12858         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
12859         has no associated file.
12860         (vc-resynch-buffer): Use vc-dir-buffers.
12862 2009-10-01  Glenn Morris  <rgm@gnu.org>
12864         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
12865         (chart-file-count):
12866         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
12867         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
12868         * emacs-lisp/eieio-opt.el (eieio-describe-class):
12869         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
12870         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
12871         (eieio-copy-parents-into-subclass, make-instance, class-children)
12872         (eieio-generic-form):
12873         * cedet/cedet-files.el (cedet-directory-name-to-file-name):
12874         * cedet/cedet-idutils.el (cedet-idutils-search)
12875         (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
12876         (cedet-idutils-version-check):
12877         * cedet/cedet.el (cedet-version):
12878         * cedet/data-debug.el (data-debug-insert-overlay-button)
12879         (data-debug-insert-overlay-list-button)
12880         (data-debug-insert-buffer-button)
12881         (data-debug-insert-buffer-list-button)
12882         (data-debug-insert-process-button, data-debug-insert-ring-button)
12883         (data-debug-insert-widget, data-debug-insert-stuff-list-button)
12884         (data-debug-insert-stuff-vector-button)
12885         (data-debug-insert-symbol-button, data-debug-insert-string)
12886         (data-debug-insert-number, data-debug-insert-lambda-expression)
12887         (data-debug-insert-nil, data-debug-insert-simple-thing)
12888         (data-debug-insert-custom, data-debug-edebug-expr):
12889         * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
12890         (global-ede-mode-map, ede-new, ede-debug-target)
12891         (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
12892         * cedet/semantic.el (semantic-minimum-working-buffer-size)
12893         (semantic-fetch-tags, semantic-submode-list)
12894         (semantic-default-submodes):
12895         * cedet/ede/source.el (ede-source-match):
12896         * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
12897         (project-am-package-info):
12898         * cedet/ede/proj.el (ede-proj-target, project-new-target):
12899         * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
12900         * cedet/ede/proj-comp.el (ede-current-build-list):
12901         * cedet/ede/makefile-edit.el (makefile-move-to-macro):
12902         * cedet/ede/files.el (ede-toplevel-project-or-nil):
12903         * cedet/ede/cpp-root.el (initialize-instance):
12904         * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
12905         (autoconf-parameter-strip, autoconf-insert-new-macro):
12906         * cedet/semantic/wisent.el (wisent-lex-eoi):
12907         * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
12908         (semantic-show-parser-state-mode):
12909         * cedet/semantic/texi.el (semantic-texi-environment-regexp):
12910         * cedet/semantic/tag.el (semantic-tag-new-variable)
12911         (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
12912         (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
12913         (semantic--tag-deep-copy-tag-list)
12914         (semantic-tag-components-with-overlays-default):
12915         * cedet/semantic/symref.el (semantic-symref-find-text):
12916         * cedet/semantic/senator.el (senator-yank-tag)
12917         (senator-transpose-tags-up):
12918         * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
12919         (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
12920         * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
12921         * cedet/semantic/lex.el (semantic-lex-comment-regex)
12922         (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
12923         (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
12924         * cedet/semantic/lex-spp.el
12925         (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
12926         (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
12927         * cedet/semantic/idle.el
12928         (semantic-idle-summary-current-symbol-info-brutish)
12929         (semantic-idle-summary-current-symbol-info-default):
12930         * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
12931         (semantic--grammar-macro-compl-dict):
12932         * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
12933         * cedet/semantic/format.el (semantic-format-tag-custom-list)
12934         (semantic-format-tag-canonical-name-default):
12935         * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
12936         (semantic-find-tags-for-completion)
12937         (semantic-find-tags-by-scope-protection-default)
12938         (semantic-deep-find-tags-for-completion):
12939         * cedet/semantic/edit.el
12940         (semantic-edits-incremental-reparse-failed-hook)
12941         (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
12942         (semantic-edits-splice-remove, semantic-edits-splice-replace):
12943         * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
12944         * cedet/semantic/dep.el (semantic-dependency-include-path):
12945         * cedet/semantic/db.el (semanticdb-default-find-index-class)
12946         (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
12947         (semanticdb-project-roots):
12948         * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
12949         (semanticdb-find-adebug-insert-scanned-tag-cons)
12950         (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
12951         (semanticdb-brute-deep-find-tags-for-completion):
12952         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
12953         * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
12954         (semantic-end-of-context-default)
12955         (semantic-ctxt-current-function-default)
12956         (semantic-ctxt-scoped-types-default):
12957         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
12958         (semantic-complete-inline-tag-engine)
12959         (semantic-complete-inline-custom-type)
12960         (semantic-complete-read-tag-analyzer):
12961         * cedet/semantic/chart.el (semantic-chart-tags-by-class)
12962         (semantic-chart-database-size):
12963         * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
12964         (semantic-analyze-current-context):
12965         * cedet/semantic/symref/list.el (semantic-symref)
12966         (semantic-symref-hide-buffer, semantic-symref-symbol):
12967         * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
12968         * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
12969         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
12970         * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
12971         (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
12972         (semantic-c-dereference-template):
12973         * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
12974         (semantic--analyze-refs-full-lookup-with-parents)
12975         (semantic--analyze-refs-full-lookup-simple):
12976         * cedet/semantic/analyze/complete.el
12977         (semantic-analyze-possible-completions):
12978         * cedet/srecode/table.el (srecode-mode-table-new):
12979         * cedet/srecode/srt.el (srecode-read-variable-name):
12980         * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
12981         * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
12982         (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
12983         * cedet/srecode/map.el (srecode-current-map):
12984         * cedet/srecode/insert.el (srecode-insert)
12985         (srecode-insert-variable-secondname-handler, srecode-insert-method)
12986         (srecode-template-inserter-point-override)
12987         (srecode-insert-include-lookup):
12988         * cedet/srecode/getset.el (srecode-auto-choose-class):
12989         * cedet/srecode/extract.el (srecode-inserter-extract):
12990         * cedet/srecode/document.el
12991         (srecode-document-autocomment-return-last-alist)
12992         (srecode-document-autocomment-param-type-alist)
12993         (srecode-document-insert-function-comment)
12994         (srecode-document-insert-variable-one-line-comment)
12995         (srecode-document-function-name-comment):
12996         * cedet/srecode/dictionary.el (srecode-create-dictionary)
12997         (srecode-compound-toString):
12998         * cedet/srecode/compile.el (srecode-flush-active-templates):
12999         * cedet/srecode/args.el (srecode-semantic-handle-:blank):
13000         Doc/message fixes.
13002         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
13003         match-data.  (Bug#4555).
13005         * cedet/semantic/bovine/gcc.el
13006         (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
13007         (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
13009         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
13010         rather than parsing it as a regexp.  This relaxes the layout
13011         requirements and makes errors easier to detect.
13012         (check-declare-verify): Check file is regular.
13013         (check-declare-directory): Doc fix.
13014         * subr.el (declare-function): Doc fix.
13016         * ibuffer.el (ibuffer-format-qualifier):
13017         * isearch.el (hi-lock-regexp-okay):
13018         * calc/calc.el (math-zerop):
13019         * mail/uce.el (rmail-msgbeg, rmail-msgend):
13020         * term/w32-win.el (setup-default-fontset, set-fontset-font):
13021         Remove unused declarations.
13023 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
13025         * cedet/semantic/wisent/javat-wy.el
13026         (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
13028 2009-09-30  Juanma Barranquero  <lekktu@gmail.com>
13030         * cedet/srecode/expandproto.el: Fix provide statement.
13032 2009-09-30  Eric Ludlam  <zappo@gnu.org>
13034         * emacs-lisp/eieio.el (boolean-p): Delete.
13036 2009-09-30  Sascha Wilde  <wilde@sha-bang.de>
13038         * cedet/ede/srecode.el: Fix provide statement.
13040 2009-09-30  Glenn Morris  <rgm@gnu.org>
13042         * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
13043         * cedet/ede/proj-aux.el (ede-aux-source):
13044         * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
13045         (ede-misc-source):
13046         * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
13047         (semantic-mrub-switch-tags): Fix doc typos.
13049         * cedet/semantic/db-global.el (data-debug-new-buffer)
13050         (data-debug-insert-thing): Remove unneeded declarations (one broken).
13051         (semanticdb-enable-gnu-global-databases): Fix prompt typo.
13053         * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
13055         * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
13056         use of CL function `remove-if-not'.
13058         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
13060         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
13061         filename is not a string.
13063 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
13065         * files.el (safe-local-eval-forms): Fix typo.
13067 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13069         * vc-hooks.el (vc-dir-buffers): New var.
13070         (vc-state-refresh): New function.
13071         (vc-state): Use it.
13072         (vc-after-save): Always ask the backend to recompute the new state.
13073         Always call vc-dir if necessary, using vc-dir-buffers.
13074         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
13075         Use vc-dir-buffers.
13076         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
13077         (vc-dir-prepare-status-buffer, vc-dir-update)
13078         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
13079         Don't call expand-file-name on default-directory.
13081 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
13083         * speedbar.el (speedbar-item-delete):
13084         * calc/calc-prog.el (calc-kbd-if):
13085         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
13087         * epa.el (epa-key-list-mode-map):
13088         * hi-lock.el (hi-lock-menu): Fix typos in menus.
13090         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
13091         (hs-show-hook): Fix typo in docstring.
13093 2009-09-29  Glenn Morris  <rgm@gnu.org>
13095         * cedet/semantic/symref/idutils.el:
13096         * cedet/semantic/symref/list.el: Relicense under GPLv3+.
13098         * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
13100         * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
13101         * cedet/semantic/tag-file.el (semanticdb-table-child-p):
13102         * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
13103         Mark declarations not understood by check-declare.
13105         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
13106         file-name-nondirectory call preventing location of cedet files.
13107         (check-declare-verify): Use literal search rather than re-search.
13108         Add basic defmethod and defclass, and define-overloadable-function.
13110         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13111         Use tramp-compat-file-attributes rather than nonexistent
13112         tramp-compat-handle-file-attributes.
13114         * Makefile.in (lisptagsfiles4): New.
13115         (AUTOGENEL): Add cedet loaddefs files.
13116         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
13117         (update-elclist, compile-always, backup-compiled-files)
13118         (bootstrap-clean): Add yet another directory level.
13119         (update-elclist): Use LC_COLLATE rather than COLLATE.
13120         (ELCFILES): Update, via `make update-elclist'.
13122 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
13124         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
13125         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
13126         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
13128 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
13130         * Makefile.in (lisptagsfiles3): Define.
13131         (TAGS, TAGS-LISP): Use it.
13132         (update-elclist): Add third directory level to look for elc files.
13133         (compile-always): Likewise.
13134         (backup-compiled-files): Likewise.
13135         (bootstrap-clean): Likewise.
13136         (ELCFILES): Update.
13138 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
13140         * Makefile.in (ELCFILES): Add CEDET files.
13142 2009-09-28  Eric Ludlam  <zappo@gnu.org>
13144         CEDET (development tools) package merged.
13146         * cedet/*.el:
13147         * cedet/ede/*.el:
13148         * cedet/semantic/*.el:
13149         * cedet/srecode/*.el: New files.
13151 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
13153         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
13155         * net/tramp.el (top): Require tramp-imap.
13157         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13158         Use `tramp-compat-handle-file-attributes'.
13160 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
13162         * net/tramp-imap.el: New package.
13164 2009-09-28  Eric Ludlam  <zappo@gnu.org>
13166         * emacs-lisp/chart.el:
13167         * emacs-lisp/eieio-base.el:
13168         * emacs-lisp/eieio-comp.el:
13169         * emacs-lisp/eieio-custom.el:
13170         * emacs-lisp/eieio-datadebug.el:
13171         * emacs-lisp/eieio-opt.el:
13172         * emacs-lisp/eieio-speedbar.el:
13173         * emacs-lisp/eieio.el: New files.
13175         * cedet/cedet-cscope.el:
13176         * cedet/cedet-files.el:
13177         * cedet/cedet-global.el:
13178         * cedet/cedet-idutils.el:
13179         * cedet/data-debug.el:
13180         * cedet/inversion.el:
13181         * cedet/mode-local.el:
13182         * cedet/pulse.el: New files.
13184 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13186         * whitespace.el (whitespace-trailing-regexp)
13187         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
13188         Fix doc string.
13190 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
13192         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
13193         menu.
13195         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
13196         menu-bar-ediff-menu.
13198         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
13199         define-overloadable-function.
13201         * progmodes/autoconf.el: Provide autoconf as well, so that this
13202         file can be `require'd.
13204         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
13206         * emacs-lisp/autoload.el (generated-autoload-feature)
13207         (generated-autoload-load-name): New vars.
13208         (autoload-rubric, autoload-generate-file-autoloads): Use them.
13209         (make-autoload): Recognize define-overloadable-function and
13210         defclass forms (for EIEIO).
13212         * Makefile.in (update-subdirs): Exclude cedet directory.
13214 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
13216         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
13218         * faces.el: Default light-background background for region face to
13219         ns_selection_color under NS.
13221 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
13223         * net/imap-hash.el: New library, see NEWS.
13225         * Makefile.in (ELCFILES): Add imap-hash.el.
13227 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13229         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
13230         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
13231         * help-macro.el (make-help-screen): Avoid using an ambiguous function
13232         definition where the docstring could be taken for the return value.
13234 2009-09-26  Glenn Morris  <rgm@gnu.org>
13236         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
13237         Add option to only show images below a certain size.
13238         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
13239         save-excursion calls.
13241 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
13243         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
13244         subdirectories) and eieio.
13246 2009-09-26  Alan Mackenzie  <acm@muc.de>
13248         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
13249         buggy bracketing.  (Bug#4289)
13251         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
13252         character constants (as case labels).  (Bug#4289)
13254 2009-09-25  Juri Linkov  <juri@jurta.org>
13256         * files.el (safe-local-eval-forms): Allow time-stamp in
13257         before-save-hook (Bug#4554).
13259 2009-09-25  Drew Adams  <drew.adams@oracle.com>
13261         * menu-bar.el (list-buffers-directory): Doc fix.
13263 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13265         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
13266         Try and avoid copying twice the same paragraph.
13267         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
13268         Remove save-excursion.
13269         (log-edit-changelog-entry): Do it here instead.
13271 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
13273         * bs.el (bs--get-file-name): Use `list-buffers-directory'
13274         when available, instead of hardcoding mode names.  Doc fix.
13276         * menu-bar.el (list-buffers-directory): Add docstring.
13277         Make automatically buffer-local.
13279         * dired.el (dired-mode):
13280         * files.el (cd-absolute):
13281         * pcvs.el (cvs-temp-buffer):
13282         * pcvs-util.el (cvs-get-buffer-create):
13283         * shell.el (shell-mode):
13284         * vc-dir.el (vc-dir-mode):
13285         Don't make `list-buffers-directory' buffer local.
13287 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
13289         * comint.el (comint-exec, comint-run, make-comint):
13290         Doc fixes (Bug#4542).
13292 2009-09-25  Glenn Morris  <rgm@gnu.org>
13294         * mail/rmailmm.el (rmail-mime): New custom group.
13295         Move all defcustoms in this file into this group.
13296         (rmail-mime-media-type-handlers-alist): Revert previous change.
13297         (rmail-mime-show-images): New option.
13298         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
13299         references to it, since it wasn't actually used for anything.
13300         (rmail-mime-insert-image): New function.
13301         (rmail-mime-image): Use rmail-mime-insert-image.
13302         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
13303         obey the value of `rmail-mime-show-images' option.  Print the size of
13304         attachments.
13306 2009-09-25  David Engster  <deng@randomsample.de>
13308         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
13310 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13312         * whitespace.el: Does not highlight trailing spaces While point is
13313         at end of line.  Does not highligt spaces at beginning of buffer
13314         while point is at beginning of buffer.  Does not highlight spaces
13315         at end of buffer while point is at end of buffer.  (Bug#4177)
13316         New version 12.0.
13317         (whitespace-display-mappings): Adjust initialization.
13318         (whitespace-point, whitespace-font-lock-refontify): New vars.
13319         (whitespace-color-on, whitespace-color-off): Adjust code.
13320         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
13321         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
13322         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
13324 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
13326         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
13328         * textmodes/sgml-mode.el: Remove xml-mode alias.
13330         * files.el (auto-mode-alist, conf-mode-maybe)
13331         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
13333 2009-09-24  Alan Mackenzie  <acm@muc.de>
13335         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
13336         c-forward-conditionals, but it doesn't move point and doesn't set
13337         the mark.
13338         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
13339         (c-down-conditional-with-else, c-backward-conditional)
13340         (c-forward-conditional): Refactor to use c-scan-conditionals.
13342 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
13344         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
13345         (help-default-arg-highlight): Remove.
13346         (help-highlight-arg): New function.
13347         (help-do-arg-highlight): Use it.
13348         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
13350 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13352         * term.el (term-set-scroll-region, term-handle-ansi-escape):
13353         Undo last change, which didn't fix the problem and introduced others.
13355 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
13357         * progmodes/gdb-mi.el: Don't require speedbar.
13358         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
13360 2009-09-24  Glenn Morris  <rgm@gnu.org>
13362         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
13364         * term/ns-win.el (ns-reg-to-script): Define for compiler.
13366         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
13367         there is no newline after the final mime boundary.  (Bug#4539)
13368         Move markers on insertion so that any buttons inserted don't end up in
13369         the next part of a multipart message.
13370         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
13371         (rmail-mime-bulk-handler): Optionally handle images.
13372         (rmail-mime-image): New button action.
13373         (rmail-mime-image-handler): New function.
13374         (rmail-mime-mode): New mode.
13375         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
13377 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13379         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
13380         than just dropping elements from it (bug#4504).
13382         * term.el (term-set-scroll-region): Don't move cursor any more.
13383         (term-handle-ansi-escape): Call term-goto here instead.
13384         Suggested by Ivan Kanis <apple@kanis.eu>.
13386         * term.el: Require CL.
13387         (term-ansi-reset): New function.
13388         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
13389         (term-handle-colors-array): Simplify.
13391 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
13393         * allout.el (allout-overlay-interior-modification-handler)
13394         (allout-obtain-passphrase):
13395         * epa-file.el (epa-file-write-region):
13396         * ps-print.el (ps-begin-job):
13397         * vc-hooks.el (vc-toggle-read-only):
13398         * vc-rcs.el (vc-rcs-rollback):
13399         * vc-sccs.el (vc-sccs-rollback):
13400         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
13401         (vc-version-diff, vc-revert, vc-rollback):
13402         * wdired.el (wdired-check-kill-buffer):
13403         * emacs-lisp/authors.el (authors):
13404         * net/socks.el (socks-open-connection):
13405         * net/zeroconf.el (zeroconf-service-add-hook):
13406         * obsolete/vc-mcvs.el (vc-mcvs-register):
13407         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
13408         (gdb-select-frame):
13409         * progmodes/grep.el (lgrep, rgrep):
13410         * progmodes/idlw-help.el (idlwave-help-check-locations)
13411         (idlwave-help-html-link, idlwave-help-assistant-open-link):
13412         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
13413         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
13414         (reftex-toc-rename-label): Fix typos in error messages.
13416         * dired-aux.el (dired-do-shell-command): Reflow docstring.
13417         (dired-copy-how-to-fn): Doc fix.
13418         (dired-files-attributes, dired-read-shell-command):
13419         Fix typos in docstrings.
13421         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
13422         (dired-x-find-file-other-window): Reflow docstrings.
13423         (dired-omit-marker-char, dired-read-shell-command)
13424         (dired-x-submit-report): Fix typos in docstrings.
13426         * shell.el (shell-mode-hook):
13427         * view.el (View-scroll-line-forward):
13428         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
13429         Fix typos in docstrings.
13431         * net/dig.el (dig-invoke): Fix typo in docstring.
13432         (query-dig): Reflow docstring.
13434         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
13435         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
13436         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
13437         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
13438         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
13439         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
13440         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
13441         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
13442         (idlwave-completion-map, idlwave-current-indent)
13443         (idlwave-custom-ampersand-surround, idlwave-customize)
13444         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
13445         (idlwave-define-abbrev, idlwave-determine-class-special)
13446         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
13447         (idlwave-end-block-reg, idlwave-end-of-statement)
13448         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
13449         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
13450         (idlwave-explicit-class-listed, idlwave-file-header)
13451         (idlwave-fill-paragraph, idlwave-find-class-definition)
13452         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
13453         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
13454         (idlwave-in-quote, idlwave-indent-action-table)
13455         (idlwave-indent-expand-table, idlwave-indent-line)
13456         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
13457         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
13458         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
13459         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
13460         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
13461         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
13462         (idlwave-outlawed-buffers, idlwave-popup-select)
13463         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
13464         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
13465         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
13466         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
13467         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
13468         (idlwave-statement-type, idlwave-struct-skip)
13469         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
13470         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
13471         (idlwave-what-module-find-class): Fix typos in docstrings.
13472         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
13473         (idlwave-calculate-cont-indent, idlwave-expand-equal)
13474         (idlwave-find-module, idlwave-find-structure-definition)
13475         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
13476         (idlwave-list-load-path-shadows, idlwave-next-statement)
13477         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
13478         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
13479         (idlwave-template): Reflow docstrings.
13481         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
13482         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
13483         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
13484         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
13485         (idlwave-shell-display-line, idlwave-shell-display-wframe)
13486         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
13487         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
13488         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
13489         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
13490         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
13491         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
13492         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
13493         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
13494         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
13495         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
13496         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
13497         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
13498         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
13499         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
13500         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
13501         Fix typos in docstrings.
13502         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
13503         (idlwave-shell-hide-output, idlwave-shell-mode)
13504         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
13505         Reflow docstrings.
13507         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
13509 2009-09-24  Ivan Kanis  <apple@kanis.eu>
13511         * term.el (term-bold-attribute): New var.
13512         (term-handle-colors-array): Use it.
13514 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
13516         * progmodes/gdb-mi.el (gdb-version): New variable.
13517         (gdb-non-stop-handler): Set gdb-version.
13518         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
13519         Condition "--thread" option on gdb-version.
13520         (gdb-invalidate-threads): Remove unused argument.
13522 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13524         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
13525         to looking-back to avoid ridiculous slow down in large files (bug#4511).
13527 2009-09-23  Glenn Morris  <rgm@gnu.org>
13529         * mail/rmail.el (rmail-reply): Don't try to add a References header when
13530         replying to mail without References or Message-Id.  (Bug#4525)
13532 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
13534         * term/ns-win.el (ns-reg-to-script): New variable.
13536 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
13538         * epg.el (epg-wait-for-status): Preserve existing 'error results.
13540 2009-09-22  Sam Steingold  <sds@gnu.org>
13542         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
13543         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
13544         to 1 because hg returns status 1 when nothing is found.
13545         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
13547 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13549         * textmodes/fill.el: Convert to utf-8 encoding.
13550         (fill-french-nobreak-p): Remove redundant » and « inherited from our
13551         pre-Unicode days.
13553         * add-log.el (change-log-fill-forward-paragraph): New function.
13554         (change-log-mode): Use it so fill-region DTRT.
13555         Set fill-indent-according-to-mode here rather than in
13556         change-log-fill-paragraph.
13557         (change-log-fill-paragraph): Remove.
13559 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
13561         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
13562         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
13564 2009-09-22  Glenn Morris  <rgm@gnu.org>
13566         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
13567         the scroll-bar scroll the calendar window rather than the buffer.
13569         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
13570         commands that move point (as opposed to scrolling).
13572         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
13574         * emacs-lisp/elint.el (elint): New custom group.
13575         (elint-log-buffer): Make it a defcustom.
13576         (elint-scan-preloaded, elint-ignored-warnings)
13577         (elint-directory-skip-re): New options.
13578         (elint-builtin-variables): Doc fix.
13579         (elint-preloaded-env): New variable.
13580         (elint-unknown-builtin-args): Add an entry for encode-time.
13581         (elint-extra-errors): Make it a variable rather than a constant.
13582         (elint-preloaded-skip-re): New constant.
13583         (elint-directory): Skip files matching elint-directory-skip-re.
13584         (elint-features): New variable, local to linted buffers.
13585         (elint-update-env): Initialize elint-features.  Possibly add
13586         elint-preloaded-env to the buffer's environment.
13587         (elint-get-top-forms): Bind elint-current-pos, for log messages.
13588         Skip quoted forms.
13589         (elint-init-form): New function, extracted from elint-init-env.
13590         Make non-list forms a warning rather than an error.
13591         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
13592         easy-menu-define, put that adds an error-condition, and provide.
13593         When requiring cl, also require cl-macs.  Really require cl, to handle
13594         some cl macros.  Store required libraries in the list elint-features,
13595         so as not to re-load them.  Treat cc-require like require.
13596         (elint-init-env): Call elint-init-form to do the work.
13597         Handle eval-and-compile and such like.
13598         (elint-add-required-env): Do not clear messages.
13599         (elint-special-forms): Add handlers for function, defalias, if, when,
13600         unless, and, or.
13601         (elint-form): Add optional argument to ignore elint-special-forms,
13602         useful to prevent recursive calls from handlers.  Doc fix.
13603         Respect elint-ignored-warnings.
13604         (elint-form): Respect elint-ignored-warnings.
13605         (elint-bound-variable, elint-bound-function): New variables.
13606         (elint-unbound-variable): Respect elint-bound-variable.
13607         (elint-get-args): Respect elint-bound-function.
13608         (elint-check-cond-form): Add some simple handling for (f)boundp and
13609         featurep tests.
13610         (elint-check-defalias-form): New handler.
13611         (elint-check-let-form): Make an empty let a warning rather than an
13612         error.
13613         (elint-check-setq-form): Make an empty setq a warning rather than an
13614         error.  Respect elint-ignored-warnings.
13615         (elint-check-defvar-form): Accept null doc-strings.
13616         (elint-check-conditional-form): New handler.  Does some simple-minded
13617         checking of featurep and (f)boundp tests.
13618         (elint-put-function-args): New function.
13619         (elint-initialize): Use elint-scan-doc-file rather than
13620         elint-find-builtin-variables.  Use elint-put-function-args.
13621         Possibly scan preloaded-file-list.
13622         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
13623         extend to handle functions as well.
13625 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
13627         * linum.el (linum-delete-overlays, linum-update-window):
13628         Do not modify the right margin.  (Bug#3971)
13630 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
13632         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
13633         nxml-mode instead of xml-mode.
13635 2009-09-21  Kevin Ryde  <user42@zip.com.au>
13637         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
13639 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13641         * net/dig.el (dig-mode): Use define-derived-mode.
13643 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
13645         * vc-dispatcher.el (vc-do-command): Return the process object in
13646         the asynchronous case.  Use when instead of if.  Do not run
13647         vc-exec-after to display a message if not enabled.  (Bug#4463)
13649         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
13650         properties to the stash strings.
13651         (vc-git-stash-list): Return a list of strings.
13652         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
13653         (vc-git-stash-show-at-point): New functions.
13654         (vc-git-stash-map): New keymap.
13656         * register.el (ctl-x-r-map): Define the keys here instead of
13657         using autoload.
13659 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
13661         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
13662         list, to workaround performance problem (bug#4485).
13664 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
13666         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
13668 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
13670         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
13671         Document that this option is not recommended to use.
13673 2009-09-19  Glenn Morris  <rgm@gnu.org>
13675         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
13676         variable `var'.
13678         * calc/calc-alg.el (var):
13679         * calc/calcalg2.el (var): Define for compiler.
13681 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
13683         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
13684         Doc fix (Bug#3932).
13686         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
13688         * time-stamp.el (time-stamp-month-dd-yyyy)
13689         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
13690         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
13691         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
13692         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
13693         Remove functions that have been obsolete since 1995 (Bug#4436).
13695         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
13696         indent buffer only if called interactively (Bug#4452).
13698 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
13699             Eli Zaretskii  <eliz@gnu.org>
13701         This fixes bug#4197 (merged to bug#865, though not identical).
13702         * server.el (server-auth-dir): Add docstring note about FAT32.
13703         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
13704         but warn against using them.
13706 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
13708         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
13709         older GDB where there is no has_more field.
13711 2009-09-19  Glenn Morris  <rgm@gnu.org>
13713         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
13715 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
13717         * files.el (auto-mode-alist): Change default for XML files to nXML
13718         mode (Bug#4169).
13720 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
13722         * server.el (server-ensure-safe-dir): Pass 'integer
13723         to `file-attributes', as suggested.
13725 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
13727         * dired-aux.el (dired-query-alist): Remove spurious backslash.
13728         (dired-query): Use read-key.
13730 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
13732         * cus-start.el (ns-use-qd-smoothing): Remove.
13734 2009-09-18  Glenn Morris  <rgm@gnu.org>
13736         * allout.el (top-level): Remove unnecessary progn.
13738         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
13740         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
13741         definition of abbrev table.
13743         * speedbar.el (speedbar-track-mouse):
13744         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
13745         * net/eudc.el (eudc-expand-inline):
13746         * net/newst-backend.el (newsticker--cache-read-feed):
13747         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
13748         condition-case handlers.
13750 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
13752         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
13753         (gdb-var-list): Add an element for has_more field.
13754         (gdb-non-stop-handler): Enable pretty printing for STL containers.
13755         (gdb-var-create-handler, gdb-var-list-children-handler-1)
13756         (gdb-var-update-handler-1): Parse output of dynamic variable
13757         objects (STL containers).
13758         (gdb-var-delete-1): Pass var1 as an explicit second argument.
13759         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
13761         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
13762         gdb-var-list.
13763         (gud-speedbar-buttons): Make node expandable if expression "has more"
13764         children.
13766 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
13768         * startup.el (emacs-quick-startup): Remove variable and all uses.
13769         (command-line): Set `inhibit-x-resources' instead.
13770         (command-line-1): Use `inhibit-x-resources' instead.
13772 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
13774         * subr.el: Fix last change to avoid using the `unless' macro,
13775         which breaks bootstrapping.
13777 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13779         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
13780         extended definitions, in case we reload subr.el after having
13781         loaded CL.
13782         (eval-next-after-load): Mark as obsolete.
13784 2009-09-17  Juri Linkov  <juri@jurta.org>
13786         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
13787         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
13788         (menu-bar-showhide-menu, menu-bar-tools-menu)
13789         (menu-bar-describe-menu, menu-bar-help-menu)
13790         (minibuffer-local-completion-map, minibuffer-local-map):
13791         Fix list quoting.
13793 2009-09-17  Glenn Morris  <rgm@gnu.org>
13795         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
13796         arguments, whether or not it has a handler.
13798         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
13800         * simple.el (hard-newline): Give it a doc-string.
13802         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
13803         (lisp-mode-syntax-table): Give them doc-strings.
13805 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
13807         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
13808         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
13809         (menu-bar-options-menu, menu-bar-showhide-menu)
13810         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
13811         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
13812         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
13813         (menu-bar-options-menu, menu-bar-tools-menu)
13814         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
13815         (menu-bar-help-menu):
13816         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
13817         string arguments.
13819         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
13820         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
13821         calls for the menu names and :help.
13823 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13825         * mouse.el (minor-mode-menu-from-indicator): Pay attention
13826         to :minor-mode-function (bug#4455).
13828 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
13830         * startup.el (command-line): Initialize the window-system after
13831         processing the command-line.
13833         * textmodes/page.el (what-page): Make sure we don't inf-loop if
13834         page-delimiter matches the empty string.
13836 2009-09-16  Glenn Morris  <rgm@gnu.org>
13838         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
13839         byte-compile-not-obsolete-var.  It's a list now.
13840         (byte-compile-not-obsolete-funcs): New variable.
13841         (byte-compile-warn-obsolete): Don't warn about functions if they are in
13842         byte-compile-not-obsolete-funcs.
13843         (byte-compile-variable-ref, byte-compile-defvar): Update for
13844         byte-compile-not-obsolete-vars name-change and list nature.
13845         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
13846         and variables behind (f)boundp tests.
13847         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
13849 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
13851         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
13853 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13855         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
13856         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
13857         Don't autoload.
13859 2009-09-15  Stephen Eglen  <stephen@gnu.org>
13861         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
13862         the virtual-buffers, use the name of the buffer specified by
13863         find-file-noselect, as the match may be a symlink.  (This was a
13864         problem if the target and the symlink had different names.)
13866 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13868         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
13870         * desktop.el (desktop-path): Check user-emacs-directory.
13872         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
13874         * loadup.el: Use after-load-functions to GC after loading each file.
13875         Remove the explicit GC calls that used to be sprinkled around.
13877         * subr.el (after-load-functions): New hook.
13878         (do-after-load-evaluation): Run it.  Use string-match-p to detect
13879         `obsolete' packages, rather than painfully extracting the relevant
13880         directory name.
13882 2009-09-15  Glenn Morris  <rgm@gnu.org>
13884         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
13885         free variable `doc'.
13887         * dired.el (dired-mode-map): Add menu entry for async shell command.
13889         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
13890         variables, also consider the .elc files, since the .el files are
13891         normally gzipped (subsequent code locates the .el.gz from the .elc).
13893         * calc/calc-prog.el (arglist): Define for compiler.
13895         * calendar/diary-lib.el (diary-display-function): Change the default to
13896         fancy display.
13897         (body): Define for compiler.
13899         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
13900         (byte-compile-file-form, byte-compile-lambda)
13901         (byte-compile-top-level-body, byte-compile-form)
13902         (byte-compile-variable-ref, byte-compile-setq)
13903         (byte-compile-setq-default, byte-compile-body)
13904         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
13905         (batch-byte-compile): Give some more local variables with common names
13906         a "bytecomp-" prefix to avoid masking warnings about free variables.
13908         * startup.el (command-line-1): Give local variables with common names a
13909         distinguishing prefix, so as not to hide free variable warnings during
13910         bootstrap.
13912         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
13913         clever and add a suffix to make a unique name, just let the user decide
13914         whether or not to overwrite it.  If the input is a directory, write the
13915         default filename to that directory.  (Bug#4388)
13916         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
13917         is a filename-as-a-directory.
13919 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13921         * textmodes/page.el (what-page): Don't move to beginning of line.
13922         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
13924 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
13926         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
13928 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
13930         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
13931         * help.el (help-for-help-internal): Add purecopy calls for text.
13933         * vc.el (top): print-log method now takes an optional SHORTLOG
13934         argument.  Add a new method: root.
13935         (vc-root-diff, vc-print-root-log): New functions.
13936         (vc-log-short-style): New variable.
13937         (vc-print-log-internal): Add support for showing short logs.
13939         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
13940         vc-print-root-log and vc-print-root-diff.
13942         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
13943         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
13944         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
13945         short logs.
13947         * vc-cvs.el (vc-cvs-print-log):
13948         * vc-mtn.el (vc-mtn-print-log):
13949         * vc-rcs.el (vc-rcs-print-log):
13950         * vc-sccs.el (vc-sccs-print-log):
13951         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
13952         that is ignored for now.
13954         * vc-mtn.el (vc-mtn-annotate-command):
13955         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
13957 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13959         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
13960         to function-key-map, and give them ascii-character property.
13961         * term/x-win.el (x-alternatives-map):
13962         * term/ns-win.el (ns-alternatives-map):
13963         * term/internal.el (msdos-key-remapping-map):
13964         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
13966 2009-09-14  Glenn Morris  <rgm@gnu.org>
13968         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
13969         temp-buffers (2009-09-12).
13971 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13973         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
13974         the new read-key function.
13976 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
13978         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
13979         is defined (Bug#4405).
13981 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
13983         * recentf.el (recentf-cleanup): Use a hash table to find
13984         duplicates (Bug#4407).
13986 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
13988         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
13989         kp-0 to ascii equivalents (Bug#4325).
13991 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
13993         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
13995         * eshell/em-hist.el:
13996         * eshell/em-dirs.el (eshell-complete-user-reference):
13997         Declare pcomplete functions and variables to avoid compiler warnings.
13999 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
14001         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
14002         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
14003         * eshell/em-alias.el (eshell-aliases-file):
14004         * eshell/em-hist.el (eshell-history-file-name):
14005         Use expand-file-name instead of concat to make file names (Bug#4308).
14007 2009-09-13  Glenn Morris  <rgm@gnu.org>
14009         * ediff-merg.el (ediff-do-merge):
14010         * filesets.el (filesets-run-cmd):
14011         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
14012         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
14013         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
14014         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
14015         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
14016         Replace empty `let's with `progn'.
14018 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14020         * mail/sendmail.el (send-mail-function):
14021         * tooltip.el (tooltip-mode):
14022         * simple.el (transient-mark-mode):
14023         * rfn-eshadow.el (file-name-shadow-mode):
14024         * frame.el (blink-cursor-mode):
14025         * font-core.el (global-font-lock-mode):
14026         * files.el (temporary-file-directory)
14027         (small-temporary-file-directory, auto-save-file-name-transforms):
14028         * epa-hook.el (auto-encryption-mode):
14029         * composite.el (global-auto-composition-mode):
14030         Use custom-initialize-delay.
14031         * startup.el (command-line): Don't explicitly call
14032         custom-reevaluate-setting for all the above vars.
14033         * custom.el (custom-initialize-safe-set)
14034         (custom-initialize-safe-default): Delete.
14036 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14038         * term/x-win.el (x-initialize-window-system):
14039         * term/w32-win.el (w32-initialize-window-system):
14040         * term/ns-win.el (ns-initialize-window-system): Don't call
14041         mouse-wheel-mode since it's enabled globally by default already.
14043         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
14044         actually define the variable, but only silences the byte-compiler.
14045         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
14046         before looking it up.
14047         (mouse-wheel-scroll-amount): Also reset the bindings if this value
14048         is changed.
14050 2009-09-12  Glenn Morris  <rgm@gnu.org>
14052         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
14053         1000.
14054         (elint-add-required-env): Don't beep on error.
14055         (elint-forms): In case of error, return ENV unchanged.
14056         (elint-init-env): Skip non-list forms.
14057         (elint-log): Handle unknown file positions.
14059 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
14061         * epg.el (epg-make-context): Add autoload cookie.
14062         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
14063         (epg-decrypt-string, epg-start-verify, epg-verify-file)
14064         (epg-verify-string, epg-start-sign, epg-sign-file)
14065         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
14066         (epg-encrypt-string, epg-start-export-keys)
14067         (epg-export-keys-to-file, epg-export-keys-to-string)
14068         (epg-start-import-keys, epg-import-keys-from-file)
14069         (epg-import-keys-from-string, epg-start-receive-keys)
14070         (epg-receive-keys, epg-import-keys-from-server)
14071         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
14072         (epg-sign-keys, epg-start-generate-key)
14073         (epg-generate-key-from-file, epg-generate-key-from-string):
14074         Remove autoload cookie.
14076 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
14078         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
14079         reevaluation of trash-directory.
14081         * mwheel.el: Fix last change.
14082         (mouse-wheel-mode): New defvar.
14083         (mouse-wheel-mode): Remove autoload cookie.
14085 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14087         * mwheel.el (mwheel-installed-bindings): New var.
14088         (mouse-wheel-mode): Use it, so as to make sure we really remove all
14089         the bindings we set last time.  Use custom-initialize-delay.
14090         * loadup.el: Load mwheel after term/*-win.el.
14091         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
14092         and mouse-wheel-up-event now that their first evaluation is done
14093         sufficiently late to be correct.
14095         * startup.el (tutorial-directory): Make it a defcustom.
14096         Use custom-initialize-delay rather than eval-at-startup to set it.
14097         * image.el (image-load-path): Make it a defcustom.
14098         Use custom-initialize-delay rather than eval-at-startup to set it.
14099         * subr.el (eval-at-startup): Remove.
14100         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
14102         * subr.el (do-after-load-evaluation): Warn the user after loading an
14103         obsolete package.
14105 2009-09-12  Glenn Morris  <rgm@gnu.org>
14107         * proced.el (proced-mark-alt): Remove alias.
14108         (proced-mode-map): Remove proced-mark-alt.
14110         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
14111         Elint file and directory.  Remove initialization entry.
14113         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
14114         commands.
14115         (elint-current-buffer): Set mode-line-process.
14116         (elint-init-env): Handle define-derived-mode.
14117         Fix declare-function with unspecified arglist.  Guard against odd
14118         defalias statements (eg iso-insert's 8859-1-map).
14119         (elint-add-required-env): Use a temp buffer.
14120         (elint-form): Just print the function/macro name, not the whole form.
14121         Return env unchanged if we fail to parse a macro.
14122         (elint-forms): Guard against parse errors.
14123         (elint-output): New function, to handle batch mode.
14124         (elint-log-message): Add optional argument.  Use elint-output.
14125         (elint-set-mode-line): New function.
14127 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
14129         * emacs-lisp/elp.el (elp-not-profilable): Add more
14130         functions (Bug#4233).
14132 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
14134         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
14135         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
14137 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
14139         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
14140         (gdb-var-list-children): Use json parsing.
14142 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
14144         * progmodes/js.el (js--proper-indentation): Handle the case where
14145         char-before is null.  Reported by Deniz Dogan.
14147 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
14149         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
14151 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
14153         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
14154         (epg-digest-algorithm-alist): Add SHA224.
14155         (epg-context-set-passphrase-callback)
14156         (epg-context-set-progress-callback): Add description about
14157         callback function.
14159 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14161         * custom.el (custom-delayed-init-variables): New var.
14162         (custom-initialize-delay): New function.
14163         * startup.el (command-line): "Re"evaluate all vars in
14164         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
14165         explicitly any more.
14166         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
14167         to avoid creating a ~/.emacs.d at build-time (bug#4347).
14169         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
14171 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
14173         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
14174         (gdb-var-update-handler): Use json parsing.
14176 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
14178         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
14179         decode annotated text, regardless of language environment.  (Bug#2741)
14181 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14183         * Makefile.in (autoloads): Make rmail.el writable as well.
14185 2009-09-11  Glenn Morris  <rgm@gnu.org>
14187         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
14188         loaddefs.el.
14189         * dired.el: Regenerate with extracted autoloads.
14190         * Makefile.in (autoloads): Make dired.el writable.
14192         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
14193         * ibuffer.el: Regenerate with extracted autoloads.
14194         * Makefile.in (autoloads): Make ibuffer.el writable.
14196         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
14197         * version.el (emacs-copyright, emacs-major-version)
14198         (emacs-minor-version): Reformat doc-strings for make-docfile.
14200         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
14201         functions and variables, since they must be stuff specific to some other
14202         platform.
14203         (apropos-print): Make mouse-click message less specific about button.
14205         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
14206         that records where a macro was defined.
14207         * help-fns.el (describe-function-1): Mention if a function has a
14208         compiler-macro.
14209         * help-mode.el (help-function-cmacro): New button.
14211         * locate.el (top-level): Always require dired.
14212         (locate-mode-map): Initialize inside the defvar.
14214         * net/ange-ftp.el (dired-compress-file): Declare.
14215         (ange-ftp-dired-compress-file): Add doc string.
14217         * term/ns-win.el (x-display-name, x-setup-function-keys):
14218         Unify doc-strings with X versions.
14220 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14222         * emulation/crisp.el (crisp-mode-map): Move initialization
14223         into declaration.
14224         (crisp-mode): Use define-minor-mode.
14226         * progmodes/xscheme.el (xscheme-evaluation-commands):
14227         Put a :advertised-binding property rather than using
14228         advertised-xscheme-send-previous-expression.
14229         (advertised-xscheme-send-previous-expression): Declare obsolete.
14230         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
14231         `advertised-undo'.
14232         (crisp-mode): Add corresponding bindings to
14233         undo's :advertised-binding instead.
14234         * dired.el (dired-mode-map): Put a :advertised-binding property rather
14235         than using dired-advertised-find-file.
14236         (dired-advertised-find-file):
14237         * simple.el (advertised-undo):
14238         * wid-edit.el (advertised-widget-backward): Declare obsolete.
14239         (widget-keymap): Put a :advertised-binding property rather
14240         than using advertised-widget-backward.
14241         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
14242         than using advertised-undo.
14243         * tutorial.el (tutorial--default-keys): Adjust accordingly.
14245 2009-09-10  Simon South  <ssouth@slowcomputing.org>
14247         * progmodes/delphi.el (delphi-tab): Indent region when Transient
14248         Mark mode is enabled and region is active; otherwise indent or
14249         insert TAB as usual.
14250         (delphi-mode): Update description of TAB-key binding.
14252 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14254         * subr.el (define-key-rebound-commands): Mark obsolete.
14255         * startup.el (precompute-menubar-bindings): Remove.
14256         (normal-top-level): Remove obsolete code that tried to precompute
14257         menubar bindings.
14258         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
14259         define-key-rebound-commands and precompute-menubar-bindings.
14261 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
14263         * net/imap.el (imap-interactive-login): Better messages.
14264         (imap-open): Fix bug with renamed buffer on reconnect.
14265         (imap-authenticate): Add buffer-local imap-last-authenticator variable
14266         for easier debugging and cleaner code.  On successful (guessed based on
14267         server capabilities) secondary authentication, set imap-state
14268         correctly.
14269         (imap-last-authenticator): Define imap-last-authenticator as a variable
14270         to avoid warnings.
14272 2009-09-10  Glenn Morris  <rgm@gnu.org>
14274         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
14276         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
14277         (byte-compile-file-form-autoload): Don't warn about unknown functions
14278         where the autoload statement comes after the use.
14279         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
14280         that any handlers inside the body (eg require) are in turn respected.
14282         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
14283         effects.
14285         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
14286         and syntax and abbrev tables basic docs, if they don't have any.
14288         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
14290         * international/mule-cmds.el (top-level): Require cl when compiling.
14291         (view-hello-file): Use default-value rather than
14292         default-enable-multibyte-characters.
14294         * progmodes/fortran.el: Move all safe and risky properties into the
14295         defcustoms.
14297         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
14298         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
14299         * mail/undigest.el:
14300         Put autoloads in rmail.el rather than loaddefs.el.
14301         * mail/rmail.el: Regenerate with extracted autoloads.
14303         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
14304         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
14306 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
14308         Reported in thread for Bug#4375.
14309         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
14310         "-data-evaluate-expression" instead of print.
14311         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
14312         (gdb-tooltip-print): Parse output from above MI command.
14313         (gdb): Revert 2009-08-11 change.  User should detach inferior
14314         manually.
14316         Remove the word "separate" from IO functions as inferior
14317         output is now never displayed in the GUD buffer.
14319 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
14321         * startup.el (command-line-normalize-file-name): On Windows and
14322         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
14324 2009-09-10  Juri Linkov  <juri@jurta.org>
14326         * isearch.el (isearch-text-char-description): Propertize escape
14327         character sequences with the `escape-glyph' face.  (Bug#4344)
14329         * simple.el (shell-command): Set asynchronous process filter to
14330         `comint-output-filter'.  (Bug#4343)
14332         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
14333         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
14334         the list.  Move "asm" to the bottom.
14335         (grep-find-ignored-directories): Add `choice' with nil value
14336         to empty the list easily.
14337         (grep-find-ignored-files): New option.
14338         (grep-files-history): Set to nil by default instead of '("ch" "el").
14339         (grep-compute-defaults): Add "<X>" to `grep-template'.
14340         (grep-read-files): Bind new local variables `default-alias' and
14341         `default-extension'.  Use a list of default values for the file prompt.
14342         (lgrep): Add `--exclude=' command line options composed from
14343         `grep-find-ignored-files'.
14344         (rgrep): Add `-name' command line options composed from
14345         `grep-find-ignored-files'.  (Bug#4301)
14347 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
14349         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
14350         (bug#4368).
14352 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14354         * calendar/time-date.el (autoload):
14355         Expand define-obsolete-function-alias into defalias and make-obsolete
14356         for old Emacsen that Gnus supports.
14357         (with-no-warnings): Define it for old Emacsen.
14358         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
14359         is available.
14360         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
14361         float-time is available; suppress compile warning for time-to-seconds.
14363 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
14365         * net/imap.el (imap-message-map): Docstring fix.
14367 2009-09-09  Glenn Morris  <rgm@gnu.org>
14369         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
14370         line numbers too.  (Bug#4374)
14372 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14374         * smerge-mode.el (smerge-remove-props, smerge-refine):
14375         Use with-silent-modifications (bug#4342).
14377         * subr.el (with-silent-modifications): New macro.
14379 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
14381         * files.el (top-level): Require `cl' when compiling.
14383 2009-09-07  Glenn Morris  <rgm@gnu.org>
14385         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
14387         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
14388         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
14390 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
14392         * vc-git.el (vc-git-annotate-command): Use separator to parse
14393         arguments correctly.
14395 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
14397         * proced.el (proced-mode): Doc fix.
14399 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
14401         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
14402         lstat fails.
14403         (tramp-do-file-attributes-with-ls): Check for file existence at
14404         remote end.
14405         (tramp-do-file-attributes-with-stat): Likewise.
14406         (tramp-convert-file-attributes): Return nil when attr is nil.
14408 2009-09-05  Glenn Morris  <rgm@gnu.org>
14410         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
14411         properties to this button.
14412         (diary-fancy-display): Don't extend the button to the final newline.
14413         (diary-fancy-display-mode): Continue to define "q" as a local key.
14415         * calendar/cal-china.el (holiday-chinese): Make it slightly more
14416         efficient.
14418         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
14420         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
14421         (byte-compile-dest-file-function): New option.
14422         (byte-compile-dest-file): Doc fix.
14423         Obey byte-compile-dest-file-function.
14424         (byte-compile-cl-file-p): New function.
14425         (byte-compile-eval): Only suppress noruntime warnings about cl functions
14426         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
14427         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
14428         than for file being previously loaded.
14429         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
14430         (byte-compile-file-form-require): Handle the case where requiring a file
14431         indirectly causes CL to be loaded.
14433 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
14435         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
14436         before killing the old buffer, since by the time `kill-buffer' is
14437         run so many buffer variables have been set to nil that it may not
14438         behave as expected.  (Bug#4061)
14440 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
14442         * files.el (find-alternate-file): If the old buffer is modified
14443         and visiting a file, behave similarly to `kill-buffer' when
14444         killing it, thus reverting to the pre-1.878 behavior; see
14445         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
14446         for discussion.  Also, consult `buffer-file-name' as a variable
14447         not as a function, for consistency with the rest of the code.
14449 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
14451         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
14452         also when adding a new directory.
14454         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
14455         defun.
14457 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
14459         * files.el (locate-file-completion-table): Make it provide boundary
14460         information, so partial-completion works better.
14462 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
14464         * mail/footnote.el (Footnote-text-under-cursor):
14465         Check footnote-text-marker-alist before using it (bug#4324).
14467 2009-09-04  Glenn Morris  <rgm@gnu.org>
14469         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
14470         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
14471         * play/solitaire.el, play/tetris.el:
14472         Remove leading * from defcustom and defface docs.
14474         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
14475         necessary.
14476         (diary-fancy-overriding-map): New variable.
14477         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
14478         Use view-mode.
14480         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
14481         goto-line.
14483 2009-09-03  Glenn Morris  <rgm@gnu.org>
14485         * arc-mode.el (archive-mode):
14486         * dos-fns.el (set-default-process-coding-system):
14487         * man.el (Man-getpage-in-background):
14488         * menu-bar.el (menu-bar-describe-menu):
14489         * server.el (server-process-filter):
14490         * startup.el (command-line):
14491         * tar-mode.el (tar-header-block-tokenize, tar-extract):
14492         * w32-fns.el (set-default-process-coding-system):
14493         * x-dnd.el (x-dnd-handle-file-name):
14494         * international/mule-cmds.el (mule-menu-keymap)
14495         (set-default-coding-systems, language-info-alist, set-language-info)
14496         (set-language-environment, standard-display-european-internal)
14497         (set-locale-environment):
14498         * international/mule-diag.el (mule-diag):
14499         * mail/emacsbug.el (report-emacs-bug):
14500         * mail/rmail.el (rmail-mode):
14501         * mail/sendmail.el (mail-setup):
14502         Use default-value rather than default-enable-multibyte-characters.
14504         * progmodes/f90.el: Move all safe properties into the defcustoms.
14505         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
14507         * calendar/appt.el (appt-check):
14508         * calendar/diary-lib.el (diary-set-header, diary-live-p)
14509         (diary-check-diary-file, diary-list-entries)
14510         (diary-include-other-diary-files, diary-simple-display)
14511         (diary-fancy-display, diary-print-entries)
14512         (diary-mark-included-diary-files, diary-make-entry):
14513         Don't call substitute-in-file-name on diary-file.
14515 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
14516             Stefan Monnier  <monnier@iro.umontreal.ca>
14518         * mail/footnote.el (footnote-prefix): Make it a defcustom.
14519         (footnote-mode-map): Move initialization into the declaration.
14520         (footnote-minor-mode-map): Define it rather than changing global-map.
14521         (footnote-mode): Use define-minor-mode.
14523 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
14525         * net/tramp.el (tramp-handle-file-attributes-with-ls)
14526         (tramp-do-file-attributes-with-perl)
14527         (tramp-do-file-attributes-with-stat): Rename from
14528         `tramp-handle-file-attributes-with-*'.
14529         (tramp-handle-file-attributes): Use them.
14530         (tramp-do-directory-files-and-attributes-with-perl)
14531         (tramp-do-directory-files-and-attributes-with-stat): Rename from
14532         `tramp-handle-directory-files-and-attributes-with-*'.
14533         (tramp-handle-directory-files-and-attributes): Use them.
14534         (tramp-method-out-of-band-p): Additional parameter SIZE.
14535         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
14536         (tramp-handle-write-region): Use it.
14537         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
14538         (tramp-handle-vc-registered): Check, whether the first run did
14539         return files to be tested.
14540         (tramp-advice-make-auto-save-file-name): Do not call directly
14541         `tramp-handle-make-auto-save-file-name', because this would bypass
14542         the locking mechanism.
14544         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
14545         (file-remote-p, process-file, start-file-process, set-file-times)
14546         (tramp-compat-file-attributes): Compatibility functions shall not
14547         call directly `tramp-handle-*', because this would bypass the
14548         locking mechanism.
14549         (tramp-compat-number-sequence): New defun.
14551 2009-09-02  Glenn Morris  <rgm@gnu.org>
14553         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
14554         alias for float-time.
14555         (time-to-number-of-days): In Emacs, use float-time.
14556         * net/newst-backend.el (time-add): Suppress warnings from compat
14557         function.
14558         * time.el (emacs-uptime, emacs-init-time):
14559         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
14560         Use float-time rather than time-to-seconds.
14562         * minibuffer.el (completion-initials-expand): Fix typo.
14564         * faces.el (modeline, modeline-inactive, modeline-highlight)
14565         (modeline-buffer-id):
14566         * info.el (info-menu-5): Mark these face aliases as obsolete.
14568 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
14570         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
14571         space ...
14572         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
14573         no "--thread" option.
14574         (gdb-stopped): Don't print "Switched to thread" message when it is
14575         unchanged.
14577 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14579         * minibuffer.el (completion-try-completion)
14580         (completion-all-completions): Remove ill-defined (and
14581         mistakenly installed and luckily never used nor documented)
14582         `completion-styles' property.
14583         (completion-initials-expand, completion-initials-all-completions)
14584         (completion-initials-try-completion): New functions.
14585         (completion-styles-alist): Add doc to each entry.
14586         Add new `initials' entry.
14588 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
14590         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
14591         MI command -var-evaluate-expression.
14592         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
14593         and tweak for case of string child.
14594         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
14596 2009-09-01  Glenn Morris  <rgm@gnu.org>
14598         * add-log.el (change-log-date-face, change-log-name-face)
14599         (change-log-email-face, change-log-file-face, change-log-list-face)
14600         (change-log-conditionals-face, change-log-function-face)
14601         (change-log-acknowledgement-face):
14602         * cus-edit.el (custom-invalid-face, custom-rogue-face)
14603         (custom-modified-face, custom-set-face, custom-changed-face)
14604         (custom-saved-face, custom-button-face, custom-button-pressed-face)
14605         (custom-documentation-face, custom-state-face, custom-comment-face)
14606         (custom-comment-tag-face, custom-variable-tag-face)
14607         (custom-variable-button-face, custom-face-tag-face)
14608         (custom-group-tag-face-1, custom-group-tag-face):
14609         * diff-mode.el (diff-header-face, diff-file-header-face)
14610         (diff-index-face, diff-hunk-header-face, diff-removed-face)
14611         (diff-added-face, diff-changed-face, diff-function-face)
14612         (diff-context-face, diff-nonexistent-face):
14613         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
14614         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
14615         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
14616         (Info-title-4-face):
14617         * isearch.el (isearch-lazy-highlight-face):
14618         * log-view.el (log-view-file-face, log-view-message-face):
14619         * paren.el (show-paren-match-face, show-paren-mismatch-face):
14620         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
14621         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
14622         (cvs-msg-face):
14623         * smerge-mode.el (smerge-mine-face, smerge-other-face)
14624         (smerge-base-face, smerge-markers-face):
14625         * wid-edit.el (widget-documentation-face, widget-button-face)
14626         (widget-field-face, widget-single-line-field-face)
14627         (widget-inactive-face, widget-button-pressed-face):
14628         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
14629         (woman-addition-face):
14630         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
14631         (eshell-ls-executable-face, eshell-ls-readonly-face)
14632         (eshell-ls-unreadable-face, eshell-ls-special-face)
14633         (eshell-ls-missing-face, eshell-ls-archive-face)
14634         (eshell-ls-backup-face, eshell-ls-product-face)
14635         (eshell-ls-clutter-face):
14636         * eshell/em-prompt.el (eshell-prompt-face):
14637         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
14638         * obsolete/old-whitespace.el (whitespace-highlight-face):
14639         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
14640         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
14641         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
14642         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
14643         (antlr-font-lock-literal-face):
14644         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
14645         (ebrowse-root-class-face, ebrowse-file-name-face)
14646         (ebrowse-default-face, ebrowse-member-attribute-face)
14647         (ebrowse-member-class-face, ebrowse-progress-face):
14648         * progmodes/make-mode.el (makefile-space-face):
14649         * progmodes/sh-script.el (sh-heredoc-face):
14650         * textmodes/flyspell.el (flyspell-incorrect-face)
14651         (flyspell-duplicate-face):
14652         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
14653         * textmodes/texinfo.el (texinfo-heading-face):
14654         Mark face aliases with "-face" suffix as obsolete.
14656         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
14657         compiler.
14659         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
14660         (eudc-bob-sound-menu): Use defvar rather than defconst, since
14661         easy-menu-define wants to modify these.
14663         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
14665         * net/browse-url.el (browse-url-file-url):
14666         * term/internal.el (dos-codepage-setup):
14667         Use default-value rather than default-enable-multibyte-characters.
14669         * progmodes/etags.el (etags-goto-tag-location):
14670         * progmodes/flymake.el (flymake-highlight-line)
14671         (flymake-goto-file-and-line, flymake-goto-line):
14672         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
14673         (gdb-goto-breakpoint):
14674         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
14675         * progmodes/python.el (python-find-function)
14676         (python-pdbtrack-track-stack-file):
14677         * progmodes/verilog-mode.el (verilog-surelint-off):
14678         * term/ns-win.el (ns-open-file-select-line):
14679         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
14680         Use forward-line rather than goto-line.
14682         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
14683         * textmodes/reftex-index.el (reftex-display-index):
14684         * textmodes/reftex-ref.el (reftex-offer-label-menu):
14685         * textmodes/reftex-toc.el (reftex-toc):
14686         Remove unnecessary bindings of default-major-mode (all are followed by
14687         major-mode check and possible mode switch).
14689 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
14691         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14692         Handle watchpoints (bug#4282).
14693         (def-gdb-thread-buffer-command): Enable thread to be selected by
14694         clicking without selecting threads buffer first.
14695         (gdb-current-context-command): Use selected frame so that "up",
14696         "down" etc work in the GUD buffer.
14697         (gdb-update): Find selected frame before rendering stack buffer.
14698         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
14700 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
14702         * progmodes/sym-comp.el (displayed-completions): Remove.
14703         (symbol-complete): Use minibuffer-complete.
14705 2009-08-31  Glenn Morris  <rgm@gnu.org>
14707         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
14709         * apropos.el (apropos-symbols-internal):
14710         Handle (obsolete) face aliases.
14712         * faces.el (describe-face): Adjust the output format to be more like
14713         describe-variable, and to mention (obsolete) face aliases.
14714         Adjust the whitespace so that help-setup-xref works.
14716         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
14717         * calendar/diary-lib.el (diary-button-face):
14718         Mark these face aliases as obsolete.
14720         * calendar/calendar.el (calendar-today): Doc fix.
14722 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
14724         * progmodes/gdb-mi.el (gdb-control-all-threads)
14725         (gdb-control-current-thread): Force tool bar update.
14726         (gdb-non-stop-handler): New function.
14727         (gdb-init-1): Use it to test if non-stop mode is supported.
14728         Remove unused gdbmi buffer type.
14730 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
14732         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
14733         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
14735 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
14737         * comint.el (comint-exec-1): Check command is non-null first.
14738         Part of gdb-mi.el change (2009-08-28).
14740 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14742         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
14744 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
14746         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
14747         instead of `dolist' to avoid a recursive require when bootstrapping.
14749 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14751         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
14753         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
14755         * net/imap.el (imap-send-command): Simplify.
14756         (imap-wait-for-tag): point-max -> buffer-size.
14758         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
14760         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
14761         with constant argument.
14763         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
14765         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
14767         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
14768         Change default, since most of our files don't have a history.
14769         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
14770         the user.
14772         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
14773         Add comint-run.
14775         * calc/calc.el: Improve commenting convention.
14776         (calc-digit-map, toplevel): Simplify.
14778         * comint.el (comint-insert-input): Be careful to only set point if we
14779         don't delegate to some other command.
14781         * proced.el (proced-signal-list): Make it an alist.
14782         (proced-grammar-alist): Capitalize names.
14783         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
14784         Disable undo manually and make it read-only.
14785         Use completion-annotate-function.
14787         * minibuffer.el (minibuffer-message): If the current buffer is not
14788         a minibuffer, insert the message in the echo area rather than at the
14789         end of the buffer.
14790         (completion-annotate-function): New variable.
14791         (minibuffer-completion-help): Use it.
14792         (completion--embedded-envvar-table): Environment vars are
14793         always case-sensitive.
14795 2009-08-30  Glenn Morris  <rgm@gnu.org>
14797         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
14798         from fortran-current-defun.
14799         (fortran-beginning-of-subprogram): Be more precise about finding the
14800         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
14801         (fortran-end-of-subprogram): Simplify.
14802         (fortran-current-defun): Use fortran-start-prog-re.
14804 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
14806         * subr.el (do-after-load-evaluation): Simplify.
14808 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
14810         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
14812         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
14813         (vc-rcs-print-log): Use it.
14815         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
14817 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14819         * paths.el (abbrev-file-name): Move to abbrev.el.
14820         * abbrev.el (abbrev-file-name): Move from paths.el.
14821         Obey user-emacs-directory.
14822         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
14823         user-emacs-directory.
14824         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
14825         abbrev-file-name and calc-settings-file any more.
14826         * startup.el (command-line): Recompute abbrev-file-name and
14827         abbreviated-home-dir.
14828         (normal-no-mouse-startup-screen): Improve the generic code and get rid
14829         of the special code for when C-h bindings haven't been changed.
14830         (display-startup-echo-area-message): Use with-current-buffer.
14831         (command-line-1): Use a list of strings, rather than a list of lists
14832         of strings for longopts.
14834         * files.el (get-free-disk-space): Use / for default-directory.
14836         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
14837         Use with-current-buffer.
14839         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
14840         Recognize immutable variables like most-positive-fixnum.
14841         (byte-compile-setq-default): Check and warn if trying to assign
14842         to an immutable variable, or a non-variable.
14844         * progmodes/cc-vars.el (c-comment-continuation-stars):
14845         * progmodes/cc-engine.el (c-looking-at-bos):
14846         * progmodes/cc-cmds.el (c-toggle-auto-state)
14847         (c-forward-into-nomenclature, c-backward-into-nomenclature)
14848         (c-comment-line-break-function): Add version of obsolescence.
14850 2009-08-28  Juri Linkov  <juri@jurta.org>
14852         * files.el (magic-fallback-mode-alist): Add ZIP magic number
14853         associated with `archive-mode'.
14855         * image.el (image-type-header-regexps): Use only JPEG magic number
14856         to determine JPEG images, and don't use `image-jpeg-p' because
14857         Emacs can display non-JFIF non-Exif JPEG images.
14859 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
14861         * arc-mode.el (archive-mode):
14862         * emacs-lisp/re-builder.el (re-builder-unload-function):
14863         Protect against the default value of `major-mode' being nil.
14865 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
14867         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
14868         Fix typos in docstrings.
14870         * progmodes/js.el (js--macro-decl-re): Doc fix.
14871         (js--plain-method-re, js--split-name): Refloc docstring.
14872         (js--class-styles, js--make-merged-item, js--splice-into-items):
14873         Fix typos in docstrings; reflow docstrings.
14874         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
14875         (js--variable-decl-matcher, js--inside-pitem-p)
14876         (js--parse-state-at-point, js--get-all-known-symbols)
14877         (js--symbol-history, js-find-symbol, js--js-references)
14878         (js--moz-interactor, js--js-encode-value, js--read-tab):
14879         Fix typos in docstrings.
14881 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14883         * textmodes/reftex.el (reftex-get-file-buffer-force):
14884         * progmodes/verilog-mode.el (verilog-batch-execute-func):
14885         * emulation/viper.el (viper-go-away, viper-set-hooks):
14886         * emacs-lisp/re-builder.el (re-builder-unload-function):
14887         * emacs-lisp/bytecomp.el (byte-compile-file):
14888         * ses.el (ses-unload-function):
14889         * hexl.el (hexl-find-file):
14890         * files.el (normal-mode):
14891         * ehelp.el (with-electric-help):
14892         * autoinsert.el (auto-insert-alist):
14893         * arc-mode.el (archive-mode):
14894         Use (default-value 'major-mode) instead of default-major-mode.
14896         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
14897         * international/mule.el (load-with-code-conversion):
14898         * emacs-lisp/debug.el (debug):
14899         * ediff-vers.el (ediff-rcs-get-output-buffer):
14900         * dired.el (dired-internal-noselect): Don't let-bind
14901         default-major-mode around code that doesn't use it.
14902         E.g. buffer creation via get-buffer-create doesn't use it.
14904 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
14906         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
14907         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
14908         when writing the temp file.  Otherwise, epa-file gets confused.
14909         (tramp-register-file-name-handlers): Make it a defun.  Move also
14910         `epa-file-handler' to the front of `file-name-handler-alist'.
14912 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14914         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
14915         start right after a ^M.
14916         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
14917         (tramp-completion-file-name-regexp-separate)
14918         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
14919         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
14920         Don't modify last-coding-system-used by accident.
14921         (tramp-completion-file-name-handler): Apply the checks here,
14922         instead during registration.
14923         (tramp-register-file-name-handlers): Renamed from
14924         `tramp-register-file-name-handler'.  Register both
14925         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
14926         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
14928 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
14930         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
14931         Remove variable ...
14932         (gdb-init-1, gdb-display-separate-io-buffer)
14933         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
14934         references to it.
14935         (gdb-inferior-io-mode): Use make-comint-in-buffer.
14936         (gdb-inferior-filter): Use comint-output-filter to stop
14937         echoing and remove ^M characters.
14939 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14941         * emulation/viper-init.el (viper-restore-cursor-type):
14942         * emulation/cua-base.el (cua--update-indications):
14943         Replace default-cursor-type with (default-value 'cursor-type).
14945         * mail/sendmail.el (mail-recover-1):
14946         * international/mule-diag.el (describe-current-coding-system-briefly)
14947         (describe-current-coding-system):
14948         * international/mule-cmds.el (select-safe-coding-system)
14949         (select-message-coding-system)
14950         (set-language-environment-coding-systems, set-locale-environment):
14951         * hexl.el (hexl-insert-multibyte-char):
14952         * dos-w32.el (find-buffer-file-type-coding-system):
14953         * simple.el (what-cursor-position):
14954         Replace uses of default-buffer-file-coding-system
14955         with (default-value 'buffer-file-coding-system).
14957         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
14958         Replace uses of default-cursor-in-non-selected-windows
14959         with (default-value 'cursor-in-non-selected-windows).
14960         Use with-current-buffer.
14962         * mail/feedmail.el: Use CL macros.
14963         (feedmail-run-the-queue, feedmail-send-it-immediately):
14964         * dos-w32.el (find-buffer-file-type): Replace uses of
14965         default-buffer-file-type with (default-value 'buffer-file-type).
14967 2009-08-28  Glenn Morris  <rgm@gnu.org>
14969         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
14970         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
14971         Use default-value of major-mode rather than default-major-mode.
14973 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14975         * Makefile.in (update-elcfiles): Report left over elc files.
14977         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
14978         expand-file-name and with-current-buffer.
14979         (mail-get-names, mail-directory): Use with-current-buffer.
14981         * vc.el (vc-read-revision): New function.
14982         (vc-version-diff, vc-merge): Use it.
14984 2009-08-27  Sam Steingold  <sds@gnu.org>
14986         * simple.el (kill-do-not-save-duplicates): New user option.
14987         (kill-new): When it is non-nil, and the new string is the same as
14988         the latest kill, set replace to t to avoid duplicates in kill-ring.
14990 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
14992         * net/tramp.el (tramp-handle-process-file): Do not flush all
14993         caches when `process-file-side-effects' is set.
14994         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
14995         instead of `tramp-find-file-exists-command'.
14996         Unset `process-file-side-effects'.
14998 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
15000         * net/tramp.el (tramp-methods): New method "rsyncc".
15001         (top): Add completion function for "rsyncc".
15002         (tramp-message-show-message): New defvar.
15003         (tramp-message, tramp-error): Use it.
15004         (tramp-do-copy-or-rename-file-directly): Extend check for direct
15005         remote copying.
15006         (tramp-do-copy-or-rename-file-out-of-band): Handle new
15007         `tramp-methods' entry `copy-env' of "rsyncc".
15008         (tramp-vc-registered-read-file-names): New defconst.
15009         (tramp-vc-registered-file-names): New defvar.
15010         (tramp-handle-vc-registered): Implement optimization strategy.
15011         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
15012         (tramp-vc-file-name-handler): New defun.
15013         (tramp-get-ls-command, tramp-get-test-command)
15014         (tramp-get-file-exists-command, tramp-get-remote-ln)
15015         (tramp-get-remote-perl, tramp-get-remote-stat)
15016         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
15018         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
15019         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
15020         timestamps.
15021         (tramp-get-file-property): Check for timestamps in
15022         `tramp-cache-inhibit-cache'.
15023         (tramp-set-file-property): Write timestamp.
15025 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
15027         * language/japan-util.el (japanese-symbol-table): Add entries for
15028         cp932-2-byte.
15030         * international/characters.el: Add category `j' to cp932-2-byte.
15032 2009-08-27  Kenichi Handa  <handa@m17n.org>
15034         * international/fontset.el (build-default-fontset-data): New macro.
15035         (setup-default-fontset): Use build-default-fontset-data for CJK,
15036         tibetan, ethiopic, and ipa.
15038 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
15040         * cus-start.el (default-major-mode): Customize `major-mode' instead.
15041         (enable-multibyte-characters): Not customizable any more.
15043         * subr.el (default-mode-line-format, default-header-line-format)
15044         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
15045         (default-direction-reversed, default-truncate-lines)
15046         (default-left-margin, default-tab-width, default-case-fold-search)
15047         (default-left-margin-width, default-right-margin-width)
15048         (default-left-fringe-width, default-right-fringe-width)
15049         (default-fringes-outside-margins, default-scroll-bar-width)
15050         (default-vertical-scroll-bar, default-indicate-empty-lines)
15051         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
15052         (default-fringe-cursor-alist, default-scroll-up-aggressively)
15053         (default-scroll-down-aggressively, default-fill-column)
15054         (default-cursor-type, default-buffer-file-type)
15055         (default-cursor-in-non-selected-windows)
15056         (default-buffer-file-coding-system, default-major-mode)
15057         (default-enable-multibyte-characters): Mark as obsolete.
15059 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
15061         * vc-dir.el (vc-dir-update): Remove debug helper.
15063         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
15065 2009-08-26  Sam Steingold  <sds@gnu.org>
15067         * simple.el (save-interprogram-paste-before-kill): New user option.
15068         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
15069         save the interprogram-paste into kill-ring before overriding it
15070         with the Emacs kill.
15072 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
15074         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
15075         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
15076         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
15077         and move to vc-rcs.el.
15078         (vc-default-next-revision): Rename to vc-rcs-next-revision and
15079         move to vc-rcs.el.
15080         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
15081         (vc-rcs-update-changelog): Remove.
15082         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
15083         and move to vc-rcs.el.
15085         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
15086         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
15087         renaming.
15088         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
15089         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
15090         vc.el, renamed to be RCS specific.
15092         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
15093         New functions.
15094         (vc-cvs-update-changelog): Move here from vc.el.
15096         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
15097         New functions.
15099 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
15101         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
15103 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
15105         * vc-git.el (vc-git-register): Use "git add" for directories.
15106         (vc-git-stash, vc-git-stash-show): New functions.
15107         (vc-git-extra-menu-map): Bind them.
15109         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
15110         directory correctly in case the item is a directory itself.
15112         * vc.el: Document the desired behavior for reverted files in the
15113         `added' state.
15114         (vc-default-prettify-state-info): Remove function, unused.
15116         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
15118 2009-08-26  Glenn Morris  <rgm@gnu.org>
15120         * bindings.el (standard-mode-line-format): Reposition dashes in
15121         which-func entry.  (Bug#4217)
15123         * files.el (enable-local-variables, enable-local-eval)
15124         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
15125         the defcustoms.
15126         (auto-mode-alist, ignored-local-variables)
15127         (save-some-buffers-action-alist): Move risky declarations to the
15128         definitions.
15129         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
15130         (font-lock-defaults, format-alist, imenu--index-alist)
15131         (imenu-generic-expression, input-method-alist, minor-mode-alist)
15132         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
15133         (mode-line-modified, mode-line-mule-info, mode-line-position)
15134         (mode-line-process, mode-line-remote, outline-level)
15135         (parse-time-rules, rmail-output-file-alist)
15136         (special-display-buffer-names, vc-mode):
15137         Move risky declarations to the relevant files.
15138         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
15139         (mode-line-modified, mode-line-process, mode-line-position)
15140         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
15141         * font-core.el (font-lock-defaults):
15142         * format.el (format-alist):
15143         * vc-hooks.el (vc-mode):
15144         * window.el (special-display-buffer-names):
15145         * international/mule-cmds.el (input-method-alist):
15146         Define riskiness here (dumped file) rather than in files.el.
15147         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
15148         * imenu.el (imenu-generic-expression, imenu--index-alist):
15149         * outline.el (outline-level):
15150         * time.el (display-time-string):
15151         * calendar/parse-time.el (parse-time-rules):
15152         * mail/rmailout.el (rmail-output-file-alist):
15153         Autoload riskiness here, rather than placing in files.el.
15155 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
15157         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
15159 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
15161         * simple.el (process-file-side-effects): New defvar.
15163         * dired-aux.el (dired-show-file-type):
15164         * vc.el (vc-diff-internal):
15165         * vc-arch.el (vc-arch-diff):
15166         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
15167         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
15168         * vc-git.el (vc-git-registered, vc-git-working-revision)
15169         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
15170         (vc-git--empty-db-p):
15171         * vc-hooks.el (vc-user-login-name):
15172         * vc-svn.el (vc-svn-registered, vc-svn-state)
15173         (vc-svn-dir-extra-headers, vc-svn-find-revision):
15174         * progmodes/grep.el (grep-probe): Let-bind
15175         `process-file-side-effects' with nil.
15177         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
15179         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
15180         daemon.  Replace ping by checking for running service for bluez
15181         and zeroconf.  (Bug#4239)
15183 2009-08-25  Kevin Ryde  <user42@zip.com.au>
15185         * net/dig.el (dig): Add autoload cookie.
15187 2009-08-25  Glenn Morris  <rgm@gnu.org>
15189         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
15190         load-history for absolute file-names.
15191         (byte-compile-file-form-require): Warn about use of the cl package.
15193         * format.el (format-alist): Doc fix.
15195         * play/bubbles.el (top-level): Don't require cl at run-time.
15197         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
15198         run-time cl).
15200 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
15202         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
15203         from cl package.
15204         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
15206 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
15208         * calc/calc-alg.el (math-trig-rewrite)
15209         (math-hyperbolic-trig-rewrite): New functions.
15210         (calc-simplify): Simplify trig functions when asked.
15212 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
15214         * diff-mode.el (diff-find-source-location): Avoid goto-line.
15216 2009-08-24  Kenichi Handa  <handa@m17n.org>
15218         * language/ind-util.el (mapthread): Delete it.
15219         (combinatorial): New function.
15220         (indian--puthash-cv): Use combinatorial instead of mapthread.
15222 2009-08-22  Kevin Ryde  <user42@zip.com.au>
15224         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
15225         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
15226         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
15227         Clarify docstring that the value is strings not symbols.
15228         (checkdoc-list-of-strings-p): New function.
15230 2009-08-22  Glenn Morris  <rgm@gnu.org>
15232         * files.el (auto-mode-alist):
15233         * hippie-exp.el (he-concat-directory-file-name):
15234         * lpr.el (lpr-windows-system, printer-name):
15235         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
15236         * ps-print.el (ps-windows-system):
15237         * startup.el (command-line):
15238         * emulation/viper-ex.el (viper-glob-function):
15239         * international/mule-cmds.el (set-language-environment-coding-systems):
15240         * net/ange-ftp.el (ange-ftp-write-region):
15241         * obsolete/fast-lock.el (fast-lock-cache-name):
15242         Remove code for defunct system-types emx, macos, mswindows, next-mach,
15243         unisoft-unix, vax-vms, win32, w32.
15245         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
15246         given name if the pattern is not more specific.
15248         * calendar/lunar.el (lunar-phase-names): New option.
15249         (lunar-phase): Doc fix.
15250         (lunar-cycles-per-year): New constant.
15251         (lunar-index): New function.
15252         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
15253         (lunar-phase-name): Use lunar-phase-names.
15254         (calendar-lunar-phases): Use format.
15255         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
15257         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
15258         Copy imenu-example--name-and-position function here for own use.
15259         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
15261         * bs.el (bs--redisplay):
15262         * cus-edit.el (custom-redraw):
15263         * ibuffer.el (ibuffer-bury-buffer):
15264         * server.el (server-goto-line-column):
15265         * startup.el (command-line-1):
15266         * strokes.el (strokes-xpm-for-stroke):
15267         * term.el (term-display-buffer-line):
15268         * view.el (View-goto-line):
15269         * calc/calc.el (calc-do, calc-trail-buffer):
15270         * play/gamegrid.el (gamegrid-add-score-insecure):
15271         * progmodes/ada-mode.el (ada-compile-goto-error):
15272         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
15273         (ebrowse-select-1st-to-9nth):
15274         * progmodes/cperl-mode.el (cperl-time-fontification):
15275         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
15276         * progmodes/gud.el (gud-display-line):
15277         (idlwave-shell-display-line):
15278         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
15279         * progmodes/make-mode.el (makefile-browser-toggle):
15280         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
15281         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
15282         * textmodes/picture.el (picture-draw-rectangle):
15283         * textmodes/reftex-index.el (reftex-index-goto-letter):
15284         (reftex-select-jump-to-previous):
15285         * textmodes/reftex-sel.el (reftex-find-start-point)
15286         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
15287         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
15288         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
15289         * textmodes/tex-mode.el (tex-compilation-parse-errors):
15290         * textmodes/two-column.el (2C-associated-buffer):
15291         Use forward-line rather than goto-line.
15293         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
15294         goto-line.
15296         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
15297         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
15298         (quick-check-list-to-regexp): Declare.
15300         * progmodes/make-mode.el (makefile-browser-insert-selection):
15301         Use goto-char rather than goto-line.
15303         * progmodes/prolog.el (compilation-error-regexp-alist)
15304         (compilation-forget-errors): Declare.
15306 2009-08-22  Juri Linkov  <juri@jurta.org>
15308         * progmodes/grep.el (lgrep, rgrep): At the beginning
15309         set `dir' to `default-directory' unless `dir' is a non-nil
15310         readable directory.  (Bug#4052)
15311         (lgrep, rgrep): Change a weird way to report an error
15312         from using `read-string' to using `error'.
15313         Instead of using interactive arguments in the function body,
15314         add new argument `confirm'.
15316 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
15318         * textmodes/remember.el (remember-buffer):
15319         * progmodes/cperl-mode.el (cperl-vc-header-alist):
15320         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
15321         (icalendar-extract-ical-from-buffer):
15322         * net/newst-treeview.el (newsticker-groups-filename):
15323         * net/newst-backend.el (newsticker-cache-filename):
15324         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
15325         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
15326         (speedbar-add-ignored-path-regexp, speedbar-line-path)
15327         (speedbar-buffers-line-path, speedbar-path-line)
15328         (speedbar-buffers-line-path):
15329         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
15330         (epg-sign-keys):
15331         * epa.el (epa-display-verify-result):
15332         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
15334 2009-08-21  Glenn Morris  <rgm@gnu.org>
15336         * progmodes/js.el (inferior-moz-process): Fix declaration.
15338         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
15340         * obsolete/rnewspost.el (news-mail-reply):
15341         Use goto-char rather than goto-line.
15343         * term/ns-win.el (ns-open-file-select-line):
15344         Use line-beginning-position rather than goto-line.
15346         * apropos.el (apropos-command):
15347         * ehelp.el (electric-helpify):
15348         * printing.el (pr-show-setup):
15349         * strokes.el (strokes-help):
15350         * tutorial.el (tutorial--describe-nonstandard-key)
15351         (tutorial--detailed-help):
15352         * woman.el (woman-mini-help, woman-display-extended-fonts):
15353         * calc/calc-help.el (calc-describe-key):
15354         * emulation/edt.el (edt-electric-helpify):
15355         * international/mule-diag.el (mule-diag):
15356         * play/yow.el (apropos-zippy):
15357         * progmodes/python.el (python-describe-symbol):
15358         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
15359         * textmodes/table.el (*table--cell-describe-mode)
15360         (*table--cell-describe-bindings):
15361         Use help-print-return-message rather than the now obsolete alias.
15363         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
15364         (calendar-cursor-to-visible-date):
15365         * play/5x5.el (5x5-position-cursor):
15366         * play/decipher.el (decipher):
15367         * play/gomoku.el (gomoku-goto-xy):
15368         * play/landmark.el (lm-goto-xy):
15369         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
15370         (mpuz-paint-digit):
15371         Use forward-line, not goto-line.
15373         * mail/rmail.el (rmail-obsolete): Delete custom group.
15374         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
15375         (rmail-remote-password, rmail-remote-password-required):
15376         Remove unneeded :set-after and :set properties.
15378 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
15380         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
15382 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
15384         * loadup.el: Remove leftover macos code.
15386         * vc-git.el (vc-git-annotate-command): Run asynchronously.
15387         Explicitly pass the date format to git blame so that user local
15388         so that the output format can be parsed.
15390 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
15392         * net/dbus.el (top): Don't check for (getenv
15393         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
15395 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
15397         * log-edit.el (log-edit-strip-single-file-name): New var.
15398         (log-edit-insert-changelog): Use it.  Bug#3571
15400 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15402         * subr.el (read-passwd): Use read-key so keypad keys work as well.
15403         Bug#3287
15405         * help.el (help-print-return-message): Rename from
15406         print-help-return-message.
15408         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
15409         cvs-mode-map parent hack.
15410         (log-view-mode): Derive from special-mode.
15412         * linum.el (linum-mode): window-size-change-functions is redundant.
15413         Adapt to new window-configuration-change-hook behavior.
15414         (linum-after-size, linum-after-config): Remove.
15416         * imenu.el (imenu-example--name-and-position)
15417         (imenu-example--lisp-extract-index-name)
15418         (imenu-example--create-lisp-index, imenu-example--create-c-index):
15419         Mark as obsolete.
15421         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
15422         (inferior-prolog-mode): Use it.
15423         (inferior-prolog-load-file): Reset list of errors.
15425 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
15427         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
15429         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
15431 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
15433         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
15434         is running already.
15436 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15438         * subr.el (listify-key-sequence-1): Use normal syntax since those
15439         integers are nowadays always represented by the same (positive) number
15440         on all platforms.
15441         (read-key-empty-map): New const.
15442         (read-key-delay): New var.
15443         (read-key): New function.
15444         (force-mode-line-update): Use with-current-buffer.
15445         (locate-user-emacs-file): Don't forget to abbreviate the file name.
15446         (start-process-shell-command, start-file-process-shell-command):
15447         Discourage the use of command-args.
15449 2009-08-19  Glenn Morris  <rgm@gnu.org>
15451         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
15453 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15455         * simple.el (choose-completion-string): Don't rely on
15456         minibuffer-completing-file-name and ad-hoc checks to decide whether
15457         to continue completion or not.
15459         * minibuffer.el (minibuffer-hide-completions): New function.
15460         (completion--do-completion): Use it.
15461         (completions-annotations): New face.
15462         (completion--insert-strings): Use it.
15463         (completion-pcm--delim-wild-regex): Add docstring.
15464         (completion-pcm--string->pattern): Add support for 0-width delimiters
15465         in completion-pcm--delim-wild-regex.
15467 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
15469         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
15470         Remove unused var `buffer-modified-p'.
15472         * minibuffer.el (completion--do-completion): Move point for the #b001
15473         case as well (bug#4176).
15474         (minibuffer-complete, minibuffer-complete-word): Don't move point.
15476 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
15478         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
15479         and :session buses.
15481 2009-08-18  Kenichi Handa  <handa@m17n.org>
15483         * international/ucs-normalize.el (ucs-normalize-version):
15484         Change to 1.1.
15485         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
15486         (utf-8-hfs): Make it perform normalization on encoding too.
15488         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
15489         (sentence-end-without-space): Delete duplicated chars.
15490         (sentence-end-base): Likewise.
15492         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
15493         (html-mode): Delete duplicated chars from sentence-end-base.
15495         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
15496         (texinfo-mode): Delete duplicated chars from sentence-end-base.
15498 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
15500         * files.el (hack-one-local-variable): If the mode function is for
15501         a minor mode, pass it an argument (Bug#4148).
15503 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
15505         * net/tramp.el (tramp-register-completion-file-name-handler):
15506         Check also for (member 'partial-completion completion-styles).
15508 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
15510         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
15511         abbrev (Bug#3943).
15513 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
15515         * progmodes/cperl-mode.el: Merge upstream 6.2.
15516         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
15517         (cperl-forward-re): Check cperl-brace-recursing.
15518         (cperl-highlight-charclass): New function.
15519         (cperl-find-pods-heres): Use it.
15520         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
15521         (cperl-beautify-regexp-piece): Fix column calculation.
15522         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
15523         (cperl-beautify-level): Don't process entire regexp.
15524         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
15525         calling man.
15526         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
15527         (cperl-init-faces): Build a list in the normal way.
15529 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
15531         * calendar/parse-time.el (parse-time-string-chars): Save match
15532         data.
15534 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
15536         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
15537         (sql-product): Use it.
15538         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
15539         (sql-set-product): Add completion.
15540         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
15541         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
15542         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
15543         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
15544         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
15545         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
15546         (sql-highlight-db2-keywords): Remove.
15547         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
15548         (sql-highlight-product): Use derived-mode-p.
15549         (sql-set-sqli-buffer): Use with-current-buffer.
15550         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
15551         Simplify.
15553         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
15555         * term.el: Fix commenting convention, turn comments into docstrings.
15557 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
15559         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
15561 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
15563         * calendar/parse-time.el (parse-time-string-chars): Compute using
15564         character classes, to handle non-ascii characters (Bug#3190).
15566 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
15568         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
15569         another heredoc if the user adds another < (Bug#3226).
15571         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
15572         Don't initialize based on window-system (Bug#4124).
15574         * facemenu.el (facemenu-read-color): Use a completion function
15575         that accepts any defined color, such as RGB triplets (Bug#3677).
15577         * files.el (get-free-disk-space): Change fallback default
15578         directory to /.  Expand DIR argument before switching to fallback.
15579         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
15581 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
15583         * files.el (load-library): Doc fix.
15585 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
15587         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
15588         (viper-if-string): Redefine C-s in the minibuffer to insert the last
15589         incremental search string.
15591         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
15592         XEmacs.
15594         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
15595         (ediff-merge-region-is-non-clash)
15596         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
15597         Also check if the job is really a merge job.
15599         * ediff.el (ediff-current-file): New function.
15601 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
15603         * progmodes/js.el: Edit docstrings throughout to follow Emacs
15604         conventions.
15605         (js-insert-and-indent): Delete function.
15606         (js-mode-map): Don't bind keys to js-insert-and-indent.
15607         (js-beginning-of-defun): Rename from js--beginning-of-defun.
15608         (js-end-of-defun): Rename from js--end-of-defun.
15609         (js-auto-indent-flag): Delete variable.
15611 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
15613         * progmodes/js.el: Remove proclaim statement.
15614         Defvar which-func-imenu-joiner-function to silence compiler.
15616         * files.el (auto-mode-alist): Use js-mode for .js files.
15618         * progmodes/js2-mode.el: Remove file.
15620         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
15622         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
15624         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
15626 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
15627             Karl Landstrom  <karl.landstrom@brgeight.se>
15629         * progmodes/js.el: New file.
15631 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
15633         * timezone.el (timezone-parse-date): Add ability to understand ISO
15634         basic format (minimal separators) dates in addition to the
15635         already-supported extended format dates.
15637 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
15639         * international/ucs-normalize.el: Add a `coding' file variable.
15641         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
15643 2009-08-14  Sam Steingold  <sds@gnu.org>
15645         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
15647 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
15649         * faces.el (help-argument-name): Define it here instead of
15650         help-fns.el, because in daemon mode help-fns.el may be loaded when
15651         faces are still uninitialized (Bug#1078).
15653         * help-fns.el (help-argument-name): Move defface to faces.el.
15655 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
15657         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
15658         create buffer with a pty but no process so that GDB can make the
15659         inferior the controlling process.
15661 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
15663         * international/ucs-normalize.el: New file.
15665 2009-08-13  Richard Stallman  <rms@gnu.org>
15667         * mail/rmail.el (rmail-get-attr-names):
15668         Accept an attribute header that is too short.
15670         * mail/rmail.el (rmail-forget-messages):
15671         Ignore nil elt in rmail-message-vector.  Use dotimes.
15673         * progmodes/compile.el (compilation-goto-locus):
15674         Use next-error-move-function.
15676         * simple.el (next-error-move-function): New variable.
15678 2009-08-12  Juri Linkov  <juri@jurta.org>
15680         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
15681         always non-nil.  (Bug#4052)
15683         * replace.el (read-regexp): Return empty string when
15684         `default-value' is nil.
15685         (keep-lines-read-args): Don't use empty string as the
15686         default value for `read-regexp'.  (Bug#2495)
15688 2009-08-12  Juri Linkov  <juri@jurta.org>
15690         * international/mule-cmds.el (ucs-insert): Change arguments
15691         from `arg' to `character', `count', `inherit' to be the same
15692         as in `insert-char'.  Doc fix.  (Bug#4039)
15694         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
15696 2009-08-12  Juri Linkov  <juri@jurta.org>
15698         * files-x.el: New file.
15700         * files.el: Move code that deals with adding/deleting
15701         file/directory-local variables to files-x.el.
15703         * Makefile.in (ELCFILES): Add files-x.elc.
15705 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
15707         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
15708         to use `goto-line'.
15709         (gdb-place-breakpoints, gdb-get-location): Rewritten without
15710         `goto-line'.
15711         (gdb-invalidate-disassembly): Do not refresh upon receiving
15712         'update signal.  Instead, update all disassembly buffers only after
15713         threads list.
15714         (gdb): Send -target-detach when buffer is killed (Bug#3794).
15715         (gdb-starting): Moved -data-list-register-names...
15716         (gdb-stopped): ...here so it's sent when first thread stops.
15717         (gdb-registers-handler-custom): Do nothing if register names are
15718         unknown yet.
15720         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
15721         from `gdb-mi.el' to avoid extra tangling.
15723         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
15724         change which breaks `gud-def' definitions used in `gdb'.
15725         (gdb-update-gud-running): No extra fuss for updating frame number.
15727 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15729         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
15730         (describe-language-environment-map, setup-language-environment-map)
15731         (set-coding-system-map): Move initialization into declaration.
15732         (set-language-info-alist): Last arg to define-key-after can be skipped.
15734         * international/quail.el (quail-completion-1): Simplify.
15735         (quail-define-rules): Use slightly more compact code.
15736         (quail-insert-decode-map): Propertize keys, compact columns.
15738         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15739         Add goto-line.
15741 2009-08-10  Miles Bader  <miles@gnu.org>
15743         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
15744         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
15745         (js2-instance-member, js2-private-member, js2-private-function-call)
15746         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
15747         (js2-magic-paren, js2-external-variable):
15748         Remove "-face" suffix from face names.
15749         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
15750         (js2-highlight-undeclared-vars, js2-peek-token)
15751         (js2-parse-function-params, js2-mode-show-errors)
15752         (js2-mode-show-warnings, js2-make-magic-delimiter)
15753         (js2-mode-highlight-magic-parens): Update to use new face names.
15755 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
15757         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
15758         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
15760 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
15762         * subr.el: Provide hashtable-print-readable.
15764         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
15765         hs-c-like-adjust-block-beginning.
15766         (hs-hide-block-at-point): Stop hiding at the beginning of
15767         hs-block-end-regexp (Bug#700).
15769 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
15771         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
15772         a macro.
15773         (gdb-registers-handler-custom): Do not fail when register names
15774         are unavailable.
15776 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
15778         * progmodes/gdb-mi.el (gdb-control-all-threads)
15779         (gdb-control-current-thread): Interactive setters for
15780         `gdb-gud-control-all-threads' to use in menu.
15781         (gdb-show-run-p): Show «Go» when process is not active.
15782         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
15783         gud/thread.xpm and gud/all.xpm.
15785 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
15787         * net/net-utils.el (net-utils-font-lock-keywords): New var.
15788         (nslookup-font-lock-keywords): Make it a variable.
15789         (net-utils-mode): New mode for viewing diagnostic network output.
15790         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
15791         (net-utils-run-simple): New function.
15792         (ifconfig, iwconfig, netstat, arp, route): Use it.
15794 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
15796         * progmodes/gdb-mi.el (gdb-read-memory-custom)
15797         (gdb-memory-set-address, def-gdb-set-positive-number)
15798         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
15799         after changing settings.
15800         (gdb-invalidate-disassembly): Update when first shown.
15801         (gdb-edit-locals-value): Fixed.
15802         (gdb-registers-handler-custom): Print registers in right order and
15803         allow changing register values (only for current thread yet).
15804         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
15805         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
15806         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
15807         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
15808         info in mode name.
15809         (gdb-registers-mode-map): TAB to switch to locals.
15811 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
15813         * mail/rmail.el (rmail-add-mbox-headers)
15814         (rmail-set-message-counters-counter): Search for
15815         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
15817 2009-08-08  Glenn Morris  <rgm@gnu.org>
15819         * Makefile.in (ELCFILES): Update.
15821 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
15823         * mail/sendmail.el (mail-yank-original): Set
15824         buffer-file-coding-system from the one used by the message whose
15825         text is yanked.
15827         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
15828         to "windows" when "pgnuplot" is used.
15829         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
15830         call accept-process-output if "pgnuplot" is used.
15831         (calc-graph-init): Don't send -display and -geometry to
15832         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
15833         running "pgnuplot -V" with shell-command-to-string.
15835         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
15836         the default.
15838 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
15840         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
15841         org/org-latex.elc.
15843 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
15845         * vc-dispatcher.el (vc-resynch-window): Update comment.
15847         * term.el (term-handle-ansi-escape): Add comments with the
15848         terminfo capabilities implemented.
15850 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
15852         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
15853         (gdb-var-create-handler): Rewritten using JSON parser.
15854         (gdb-propertize-header): Moved earlier.
15855         (gdb-set-header): Removed to avoid duplication.
15856         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
15857         Refresh disassembly buffers only after threads list have been
15858         update.
15859         (gdb-threads-header, gdb-registers-header): Per-buffer header line
15860         variables.
15862 2009-08-04  Juri Linkov  <juri@jurta.org>
15864         * files.el: Commands to add/delete file/directory-local variables.
15865         (read-file-local-variable, read-file-local-variable-value)
15866         (read-file-local-variable-mode, modify-file-local-variable)
15867         (modify-file-local-variable-prop-line)
15868         (modify-dir-local-variable): New functions.
15869         (add-file-local-variable, delete-file-local-variable)
15870         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
15871         (add-dir-local-variable, delete-dir-local-variable)
15872         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
15873         (copy-dir-locals-to-file-locals-prop-line): New commands.
15875 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
15877         * abbrev.el (insert-abbrev-table-description): Prettify output.
15878         Suggested by Karl Chen.
15880 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
15882         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
15883         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
15884         (gdb-overlay-arrow-position, gdb-thread-position)
15885         (gdb-disassembly-position): Declare variables.
15886         (gdb-wait-for-pending): Function now.
15887         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
15888         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
15889         compilation goes smoothly.
15890         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
15891         (gdb-non-stop-setting): New customization setting which replaces
15892         `gdb-non-stop' so changing it doesn't break active GDB session.
15893         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
15894         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
15895         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
15896         (gdb-show-threads-by-default): New customization options.
15897         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
15898         routines.
15899         (gdb-get-buffer-create): Send buffers update signal when they are
15900         created.
15901         (gdb-invalidate-locals, gdb-invalidate-registers)
15902         (gdb-invalidate-breakpoints)
15903         (gdb-invalidate-threads, gdb-invalidate-disassembly)
15904         (gdb-invalidate-memory): Accept update signal.
15905         (gdb-current-context-command): Use --frame option.
15906         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
15907         Implement `gdb-frame-number' selection logic.
15908         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
15909         whether to show GUD toolbar buttons.
15910         (gdb-thread-exited): Unselect current thread when it exits.
15911         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
15912         (gdb-mark-line): Routine which sets overlay arrow or inverses
15913         video on fringeless displays.
15914         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
15915         to build aligned columns of data in GDB buffers and set text
15916         properties line-by-line.
15917         (gdb-invalidate-breakpoints)
15918         (gdb-breakpoints-list-handler-custom)
15919         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
15920         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
15921         (gdb-registers-handler-custom): Align data columns.
15922         (gdb-locals-handler-custom): Now prints data like in variable
15923         declarations.
15924         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
15925         Removed confusing buttons.
15926         (gdb-invalidate-threads): Append --frame.
15927         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
15928         between breakpoints/threads buffers.
15929         (gdb-set-window-buffer): Now can ignore dedicated windows.
15930         (gdb-propertize-header): Use `gdb-set-window-buffer'.
15931         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
15932         (def-gdb-thread-buffer-gud-command): Replaces
15933         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
15934         for fine thread control.
15935         (gdb-preempt-existing-or-display-buffer): New function used to
15936         display bound buffers without breaking window layout.
15937         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
15938         (gdb-select-frame): New version of `gdb-frames-select' which now
15939         sets `gdb-frame-number' so commands may use --frame option instead
15940         of inner debugger state.
15941         (gdb-frame-handler): Do not set `gdb-frame-number'.
15942         (gdb-threads-mode-map): Select threads with mouse.
15944         * progmodes/gud.el (gdb-gud-context-call): Declare function to
15945         avoid compilation warning.
15946         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
15947         `gdb-show-stop-p`.
15949         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
15950         Argument `key' renamed to `buffer-type'.
15951         (gdb-current-context-buffer-name): Do not add thread info to
15952         buffer name when no thread is selected.
15953         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
15954         command (bug 3794).
15955         (gdb-thread-selected): Handle `=thread-selected' notification.
15956         (gdb-wait-for-pending): New macro to deal with congestion problems.
15957         (gdb-breakpoints-list-handler-custom): Don't fail on pending
15958         breakpoints.
15959         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
15960         This fixes problem similar to one described in bug 3947.
15961         (gud-menu-map): More menu items.
15962         (gdb-init-1): Reset `gdb-thread-number' to nil.
15964         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
15965         non-stop settings.
15967         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
15968         (gdb-current-context-command): Do not append --thread if
15969         `gdb-thread-number' is nil.
15970         (gdb-running-threads-count, gdb-stopped-threads-count): New
15971         variables.
15972         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
15973         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
15974         customization options.
15975         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
15976         GUD commands.
15977         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
15978         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
15979         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
15980         set `gdb-thread-number' and update `gud-running' properly.
15981         (gdb-running): Update threads list when new threads appear.
15982         (gdb-stopped): Support non-stop operation and new thread switching
15983         logic.
15984         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
15985         (gdb-json-partial-output): New set of JSON routines.
15986         (def-gdb-auto-update-trigger): New `signal-list' optional
15987         argument.
15988         (gdb-thread-list-handler-custom): Update `gud-running',
15989         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
15990         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
15991         (gdb-continue-thread, gdb-step-thread): New commands for fine
15992         thread execution control.
15993         (gud-menu-map): New menu items to switch non-stop options.
15994         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
15995         (gdb-send): Mimic RET properly (bug 3794).
15997         * progmodes/gdb-mi.el (gdb-rules-name-maker)
15998         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
15999         gdb-buffer-rules.
16000         (def-gdb-auto-update-handler): New nopreserve optional argument.
16001         (gdb-stack-list-frames-custom): Print stack from top to bottom.
16003         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
16004         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
16005         (gdb-parent-mode): New mode to derive other GDB modes from.
16006         (gdb-display-disassembly-for-thread)
16007         (gdb-frame-disassembly-for-thread): New commands for threads
16008         buffer.
16010         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
16011         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
16012         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
16013         (gdb-update): We now store all GDB buffers in a list so that they
16014         can be updated by traversing a list instead of calling invalidate
16015         triggers explicitly.
16016         (def-gdb-trigger-and-handler): New macro to define trigger-handler
16017         pair for GDB buffer.
16018         (gdb-stack-buffer-name): Add thread information.
16019         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
16020         handle pending triggers.
16021         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
16022         (def-gdb-thread-buffer-simple-command)
16023         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
16024         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
16025         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
16026         New commands which show buffers bound to thread.
16027         (gdb-stack-list-locals-regexp): Removed unused regexp.
16029         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
16030         (gdb-locals-buffer-name, gdb-registers-buffer-name)
16031         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
16032         to (gud-comint-buffer) in *-buffer-name functions
16033         because (gdb-get-target-string) already does that.
16034         (gdb-locals-handler-custom, gdb-registers-handler-custom)
16035         (gdb-changed-registers-handler): Rewritten without regexps.
16037         * progmodes/gdb-mi.el: Basic thread selection support.
16038         (gdb-thread-number): New variable.
16039         (gdb-current-context-command): New macro which adds --thread
16040         option to command.
16041         (gdb-threads-mode-map): Select thread with SPC.
16042         (gdb-thread-list-handler-custom): Mark current thread with overlay
16043         arrow.  Synchronize GDB thread and Emacs thread.
16044         (gdb-select-thread): New command which selects current thread.
16045         (gdb-invalidate-frames, gdb-invalidate-locals)
16046         (gdb-invalidate-registers): Use --thread option.
16048 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
16050         * net/tramp.el (top): Make check for tramp-gvfs loading more
16051         robust.  (Bug#3977)
16052         (tramp-handle-insert-file-contents): `unwind-protect' must be
16053         inside `with-parsed-tramp-file-name'.
16055         * net/tramp-gvfs.el (top): Remove superfluous message when loading
16056         fails.
16058 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
16060         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
16061         directory if CLASSPATH is not set.
16063 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
16065         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
16066         New defconst.
16067         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
16069 2009-08-02  Kevin Ryde  <user42@zip.com.au>
16071         * net/newst-backend.el (newsticker--raw-url-list-defaults):
16072         Update freshmeat link.  Delete newsforge.com as it seems gone.
16074 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
16076         * select.el (x-set-selection): Doc fix (Bug#4021).
16078         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
16080         * help-fns.el (describe-variable): Treat list return values from
16081         dir-locals-find-file properly (Bug#4005).
16083 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
16085         * net/tramp.el (tramp-debug-message): Print also microseconds.
16087 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
16089         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
16090         or END is non-nil.
16091         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
16092         (tramp-get-debug-buffer): Change `outline-regexp' according to new
16093         format.
16095         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
16096         (tramp-get-file-property): Use it.
16098         * autorevert.el (auto-revert-handler): Allow
16099         `auto-revert-tail-mode' for remote files.
16101 2009-08-02  Jason Rumney  <jasonr@gnu.org>
16103         * minibuffer.el (read-file-name): Treat confirm options to
16104         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
16106 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
16108         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
16109         (font-lock-variable-name-face, font-lock-constant-face): Darken
16110         the colors for light backgrounds.
16112 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
16114         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
16115         month names.  (Bug#3987)
16117 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
16119         * simple.el (line-move-finish): Pass whole number to
16120         line-move-to-column.
16121         (line-move-visual): Perform hscroll to the recorded position.
16123 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
16125         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
16127 2009-07-29  Alan Mackenzie  <acm@muc.de>
16129         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
16131 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
16133         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
16134         (gdb-place-breakpoints): Use full path when setting breakpoints.
16136 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
16138         * calc/calc.el (calc-mode-map): Add keybinding for
16139         `calc-transpose-lines'.
16141 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
16143         * calc/calc-misc.el (calc-transpose-lines): New function.
16145 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
16147         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
16148         Simplify check for out-of-band methods.
16149         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
16150         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
16152 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
16154         * vc-git.el (vc-git-checkin): Fix typo.
16156 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
16158         * progmodes/js2-mode.el: New file.
16160 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
16162         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
16163         (gud-menu-map): Adjust tooltip accordingly.
16165 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
16167         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
16168         (vc-bzr-log-view-mode): Adjust log-view-file-re.
16170         * add-log.el (change-log-mode-map): Add a menu.
16172 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
16174         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
16175         function returns nil.
16176         (dbus-handle-event): Handle special return value :ignore.
16177         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
16179 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
16181         * view.el (view-mode-enable): Don't define Helper-return-blurb if
16182         it's not needed.
16184 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
16186         Fix Bug#3888:
16188         * w32-vars.el (x-select-enable-clipboard): Doc fix.
16190         * term/pc-win.el (x-display-name, x-colors)
16191         (x-select-enable-clipboard, x-select-text): Doc fix.
16193         * term/common-win.el (x-display-name, x-colors): Doc fix.
16195         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
16196         (xw-defined-colors): Doc fix.
16198         * w32-fns.el (x-select-text, x-setup-function-keys)
16199         (x-get-selection, x-set-selection): Doc fix.
16201         * term/x-win.el (x-select-text, x-setup-function-keys)
16202         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
16204         * select.el (x-set-selection): Doc fix.
16206 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
16208         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
16209         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
16210         "IsNSSSupportAvailable" method is not available.  Reported by
16211         Steve Youngs <steve@sxemacs.org>.
16213 2009-07-24  Kenichi Handa  <handa@m17n.org>
16215         * international/characters.el: Fix setting of category ?C, ?|, ?K,
16216         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
16217         (build-unicode-category-table): Fix range checks.
16219 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
16221         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
16222         the buffer we try to sync is current when calling
16223         vc-resynch-buffer.
16225         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
16226         not show up to date files.
16228 2009-07-24  Glenn Morris  <rgm@gnu.org>
16230         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
16231         Add autoload cookies.  If necessary, initialize.
16232         (elint-log): Handle non-file buffers.
16233         (elint-initialize): Add optional argument to reinitialize.
16234         (elint-find-builtin-variables): Save excursion.
16236 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
16238         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
16239         for Lint.
16241 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
16243         * vc.el (vc-print-log-internal): New function, split out from ...
16244         (vc-print-log): ... here.
16245         (vc-dir-move-to-goal-column): Declare.
16247         * vc-git.el (vc-git-add-signoff): New variable.
16248         (vc-git-checkin): Use it.
16249         (vc-git-toggle-signoff): New function.
16250         (vc-git-extra-menu-map): Bind it to menu.
16251         (vc-git--run-command-string): Accept a nil FILE argument.
16252         (vc-git-stash-list): New function.
16253         (vc-git-dir-extra-headers): Use it.
16255 2009-07-23  Glenn Morris  <rgm@gnu.org>
16257         * help-fns.el (describe-variable): Describe ignored and risky local
16258         variables in a similar way to that in which we describe safe ones.
16260         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
16261         (byte-compile-output-file-form, byte-compile-output-docform)
16262         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
16263         Give some more local variables with common names a "bytecomp-" prefix,
16264         so as not to shadow things during compilation.
16265         * emacs-lisp/cl-macs.el (load-time-value)
16266         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
16267         `outbuffer' to `bytecomp-outbuffer'.
16269         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
16270         since the next two variables cover them automatically now.
16271         (elint-builtin-variables, elint-autoloaded-variables): New.
16272         (elint-unknown-builtin-args): Remove all members, since they can be
16273         parsed automatically now.
16274         (elint-extra-errors): New.
16275         (elint-env-add-env, elint-env-add-macro): Use cadr.
16276         (elint-current-buffer): Use or.  Change final message.
16277         (elint-get-top-forms): Use line-end-position.
16278         (elint-init-env): Use cadr.  Handle autoload, declare-function,
16279         and defalias.
16280         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
16281         (regexp-assoc): Remove unused function.
16282         (elint-top-form): Set elint-current-pos, to record the start of the
16283         top-level form, for compilation-mode.
16284         (elint-form): Trap errors in macro expansion.  Use dolist.
16285         (elint-unbound-variable): Use elint-builtin-variables and
16286         elint-autoloaded-variables.
16287         (elint-get-args): Use cadr, or.
16288         (elint-check-cond-form): Use dolist, cadr.
16289         (elint-check-condition-case-form): Doc fix.  Use cadr.
16290         Use elint-extra-errors.
16291         (elint-log): New function.
16292         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
16293         Distinguish errors and warnings.
16294         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
16295         Use a bytecomp-style format.
16296         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
16297         (elint-get-log-buffer): Use compilation mode.  Disable undo.
16298         Don't truncate lines.
16299         (elint-initialize): Set builtin and autoloaded variable lists.
16300         Only process elint-unknown-builtin-args if non-nil.
16301         (elint-find-builtin-variables, elint-find-autoloaded-variables):
16302         New functions.
16303         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
16305 2009-07-22  Kevin Ryde  <user42@zip.com.au>
16307         * net/newst-backend.el (newsticker--parse-atom-1.0)
16308         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
16309         (newsticker--parse-rss-1.0):
16310         * progmodes/idlwave.el (idlwave-mode):
16311         * progmodes/idlw-shell.el (idlwave-shell-mode):
16312         * progmodes/vera-mode.el (vera-mode):
16313         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
16314         * progmodes/vhdl-mode.el (vhdl-mode):
16315         * textmodes/table.el (table-generate-source)
16316         (table--warn-incompatibility):
16317         Hyperlink urls in docstrings with URL `...'.
16319 2009-07-22  Glenn Morris  <rgm@gnu.org>
16321         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
16322         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
16323         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
16324         Remove leading * from defcustom docs.
16326         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
16328         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
16329         defcustom doc.
16330         (list-load-path-shadows): Optionally, just return shadows as a string.
16332         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
16334 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
16336         * mail/rmailedit.el (rmail-edit-mode): Use
16337         auto-save-include-big-deletions.
16339         * mail/rmail.el (rmail-variables): Use
16340         auto-save-include-big-deletions.
16342         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
16343         changes.
16345 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
16347         * calc/calc.el (calc-undo-length): New variable.
16348         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
16350 2009-07-21  Richard Stallman  <rms@gnu.org>
16352         * files.el (auto-save-mode): Handle buffer-save-size = -2
16353         for toggling mode.
16355 2009-07-21  Glenn Morris  <rgm@gnu.org>
16357         * textmodes/ispell.el (ispell-looking-back): Update declaration.
16359         * calendar/todo-mode.el (calendar-current-date): Update declaration.
16361         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
16362         silence compiler.  Instead...
16363         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
16364         (ps-print-ensure-fontified): Update for above function name changes.
16366         * printing.el (pr-mh-get-msg-num, pr-mh-show)
16367         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
16368         silence compiler.  Instead...
16369         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
16370         (mh-show-buffer): Only define for compiler.
16371         (pr-mh-current-message): Update for above function name changes.
16373         * files.el (abort-if-file-too-large): Explicitly pass `filename'
16374         as an argument.
16375         (find-file-noselect, insert-file-1): Update for above change.
16377         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
16379         * mail/mailclient.el (mailclient-send-it): Fix message.
16381         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
16382         (edebug-eval): Check cl-debug-env is bound.
16383         (print-level, print-circle): Don't redefine built-in variables.
16385         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
16386         (custom-print-vectors): Remove old comments from doc.
16388         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
16389         (emerge-version): Make the variable an obsolete alias for the
16390         emacs-version variable.  Make the function obsolete.
16391         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
16392         Emerge options, rather than merging in into the main Options menu.
16393         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
16394         and auto advance modes.  Disable edit/fast items when not relevant.
16396 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
16398         * term/vt420.el (terminal-init-vt420): Fix typo.
16400 2009-07-20  Sam Steingold  <sds@gnu.org>
16402         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
16403         variable (removed from compile.el on 2004-03-11).
16405 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
16407         * files.el (hack-local-variables-filter): Fix last change.
16409 2009-07-19  Juri Linkov  <juri@jurta.org>
16411         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
16412         (dir-local-variables-alist): New buffer-local variable.
16413         (hack-local-variables-filter): If variable is not dir-local,
16414         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
16415         because file-local overrides dir-local.
16416         (c-postprocess-file-styles) <declare-function>:
16417         Remove obsolete declaration.
16418         (hack-dir-local-variables): Add dir-local variable/value pair to
16419         `dir-local-variables-alist' and remove duplicates.  Doc fix.
16421         * help-fns.el (describe-variable): Add information about
16422         file-local and dir-local variables.
16424 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
16426         * files.el (hack-local-variables-filter): Rewrite.
16428 2009-07-19  Glenn Morris  <rgm@gnu.org>
16430         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
16431         Silence compiler by only defining on XEmacs.
16433         * international/mule.el (auto-coding-regexp-alist): Only match
16434         BABYL... at the start of buffer, not of lines.  (Bug#3790)
16436         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
16437         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
16438         (cal-menu-context-mouse-menu): Doc fix.
16440         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
16442         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
16444 2009-07-18  Juri Linkov  <juri@jurta.org>
16446         * info.el: Virtual Info keyword finder.
16447         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
16448         (Info-finder-file): New variable.
16449         (Info-finder-find-file): New function.
16450         (finder-known-keywords, finder-package-info)
16451         (find-library-name, lm-commentary): Use defvar and
16452         declare-function to silence compiler warnings.
16453         (Info-finder-find-node): New function.
16454         (info-finder): New command.
16456         * subr.el (process-kill-buffer-query-function): New function.
16457         (add-hook)<kill-buffer-query-functions>: Add hook
16458         `process-kill-buffer-query-function'.
16460 2009-07-18  Alan Mackenzie  <acm@muc.de>
16462         * progmodes/cc-mode.el (c-before-hack-hook)
16463         (c-postprocess-file-styles): Give invocation of `c-set-style'
16464         DONT-OVERRIDE parameter of t.  Already set style variables will
16465         thus not be overridden by style settings given by `c-file-syle'.
16467         * files.el (hack-local-variables-filter): Remove entries with
16468         duplicate keys from `file-local-variables-alist'.
16470 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
16472         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
16473         x-set-selection if display-selections-p returns nil for the
16474         current frame.
16476 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
16478         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
16480 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
16482         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
16483         Accept nil in addition to a regexp.
16484         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
16485         Accept nil in addition to a regexp.
16486         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
16487         buffers that have an associated file.  Handle nil values of
16488         desktop-buffers-not-to-save and desktop-files-not-to-save.
16489         (Bug#3833)
16491         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
16492         (x-disown-selection-internal): New functions.
16494 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
16496         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
16497         warning.
16498         (gdb-breakpoints-header): Move forward to avoid compiler warning.
16499         (gdb-make-header-line-mouse-map): Remove duplicate definition.
16501 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
16503         * simple.el (set-mark): Revert last change.
16505 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
16507         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
16508         rendering of pngs is not possible instead of messaging a long
16509         description.
16511 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
16513         * w32-fns.el (x-selection-owner-p): New function.
16515         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
16516         (mouse-yank-at-click, mouse-yank-primary): If
16517         select-active-regions is non-nil, deactivate the mark before
16518         insertion.
16520         * simple.el (deactivate-mark, set-mark): Only save selection if we
16521         own it.
16523 2009-07-17  Kenichi Handa  <handa@m17n.org>
16525         * case-table.el (describe-buffer-case-table): Fix for the case
16526         that KEY is a cons.
16528 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
16530         * vc-rcs.el (vc-rcs-find-file-hook):
16531         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
16533 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
16535         * net/tramp.el (tramp-wait-for-output): Handle the case when
16536         commands do not return a newline but a null byte before the shell
16537         prompt.  (Bug#3858)
16539 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
16541         * term/ns-win.el (ns-set-alpha): Don't declare.
16542         (ns-set-background-alpha): Remove function.
16544 2009-07-16  Kevin Ryde  <user42@zip.com.au>
16546         * emacs-lisp/copyright.el (copyright-update): Save match-data across
16547         y-or-n-p, for safety.
16549 2009-07-16  Richard Stallman  <rms@gnu.org>
16551         * files.el (auto-save-mode): If buffer-saved-size is -2,
16552         don't clobber it.
16554         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
16555         (rmail-retry-ignored-headers): Add more uninteresting fields.
16557 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
16559         * net/rcirc.el (rcirc): Use history variables.
16560         (rcirc-server-name-history, rcirc-nick-name-history)
16561         (rcirc-server-port-history): New variables.
16563 2009-07-15  Kenichi Handa  <handa@m17n.org>
16565         * international/mule-cmds.el (set-language-environment-charset):
16566         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
16567         ignore them.
16569         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
16570         Delete unibyte-display.
16572 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
16574         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
16576 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
16578         * simple.el (deactivate-mark): Optional argument FORCE.
16579         (set-mark): Use deactivate-mark.
16581         * info.el (Info-search): No need to check transient-mark-mode
16582         before calling deactivate-mark.
16584         * select.el (x-set-selection): Doc fix.
16585         (x-valid-simple-selection-p): Allow buffer values.
16586         (xselect--selection-bounds): Handle buffer values.  Suggested by
16587         David De La Harpe Golden.
16589         * mouse.el (mouse-set-region, mouse-drag-track): Call
16590         copy-region-as-kill before setting the mark, to let
16591         select-active-regions work.
16593 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
16595         * simple.el (deactivate-mark): If select-active-regions is
16596         non-nil, copy the selection data into a string.
16597         (activate-mark): If select-active-regions is non-nil, set the
16598         selection to the current buffer.
16599         (set-mark): Update selection if select-active-regions is non-nil.
16601         * select.el (x-valid-simple-selection-p): Allow buffer values.
16603 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
16605         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
16606         and more featureful message-mode.
16608 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
16610         * select.el (x-set-selection): Doc fix.
16611         (x-valid-simple-selection-p): Disallow selection data consisting
16612         of a list or cons of integers, since that is not used.
16613         (xselect--selection-bounds, xselect--int-to-cons): New functions.
16614         (xselect-convert-to-string, xselect-convert-to-length)
16615         (xselect-convert-to-filename, xselect-convert-to-charpos)
16616         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
16618 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
16620         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
16621         output in -break-info command (Emacs bug #3794).
16623 2009-07-14  Glenn Morris  <rgm@gnu.org>
16625         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
16626         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
16627         (edebug-print-length, edebug-print-level, edebug-print-circle)
16628         (edebug-sit-for-seconds, edebug-view-outside)
16629         (edebug-bounce-point, edebug-set-global-break-condition)
16630         (edebug-Go-nonstop-mode, edebug-trace-mode)
16631         (edebug-Trace-fast-mode, edebug-continue-mode)
16632         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
16633         (edebug-visit-eval-list): Doc fixes.
16635         * subr.el (def-edebug-spec): Doc fix.
16637 2009-07-14  Kenichi Handa  <handa@m17n.org>
16639         * international/characters.el: Fix setting of category ?C.
16641 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
16643         * term/ns-win.el (x-select-font): defalias x-select-font to
16644         ns-popup-font-panel instead of generate-fontset-menu.
16646 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
16648         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
16650 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
16652         * arc-mode.el (archive-find-type): Allow for a PK00 string before
16653         the PK\003\004 header (Bug#3770).
16655 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
16657         * pcomplete.el (pcomplete-comint-setup): Check for
16658         shell-dynamic-complete-filename too.
16660 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
16662         * simple.el (temporary-goal-column): Change the value for
16663         line-move-visual to a cons cell.
16664         (line-move-visual): Record or set the window hscroll, if
16665         necessary (Bug#3494).
16666         (line-move-1): Handle cons value of temporary-goal-column.
16668 2009-07-11  Kenichi Handa  <handa@m17n.org>
16670         * international/mule-diag.el (describe-character-set): Don't show
16671         width.
16673 2009-07-10  Sam Steingold  <sds@gnu.org>
16675         * progmodes/compile.el (compilation-mode-font-lock-keywords):
16676         Omake sometimes indents the errors it prints, so allow all
16677         regexps to start with spaces.
16679 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
16681         * cus-edit.el (customize-changed-options-previous-release):
16682         Bump value to 22.1.  (Bug#3804)
16684 2009-07-08  Sam Steingold  <sds@gnu.org>
16686         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
16687         to be a cons cell (test . ignored-directory) to selectively ignore
16688         some directories depending on the location of the search.
16690 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
16692         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
16693         remote user is root, on the local host.
16694         (tramp-local-host-p): Either the local user or the remote user
16695         must be root.  (Bug#3771)
16697 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
16699         * progmodes/gdb-mi.el (gdb): Remove description of
16700         gdb-use-separate-io-buffer.
16701         (menu): Don't allow toggling of or enable
16702         gdb-use-separate-io-buffer from menubar.
16704 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
16706         * mail/unrmail.el (unrmail): Make sure the message ends with two
16707         newlines (Bug#3769).
16709 2009-07-08  Glenn Morris  <rgm@gnu.org>
16711         * calendar/calendar.el (calendar-current-date): Rework previous change.
16713 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
16715         * calendar/calendar.el (calendar-current-date):
16716         Add an optional argument giving an offset from today.
16718 2009-07-08  Glenn Morris  <rgm@gnu.org>
16720         * tutorial.el (tutorial--describe-nonstandard-key):
16721         Adjust the message for when a key has been unbound.
16722         (help-with-tutorial): Hide the arch-tag.
16724 2009-07-08  Kenichi Handa  <handa@m17n.org>
16726         * international/fontset.el (setup-default-fontset): For each
16727         script, append (not set) font-specs.
16729         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
16730         docstring.
16732 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
16734         * progmodes/gdb-mi.el (gdb-init-1): Move sending
16735         -data-list-register-names to ...
16736         (gdb-starting): ... here because GDB 7.0 requires execution to
16737         have started when using this MI command.
16738         (gdb-set-header): New function to distinguish select and
16739         unselected tabs in gdb buffers.
16740         (gdb-propertize-header): New macro that uses gdb-set-header.
16741         (gdb-breakpoints-header, gdb-locals-header): Use it.
16742         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
16744 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
16746         * Makefile.in (ELCFILES): Remove fadr.elc.
16748 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
16750         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
16751         may contain frame information, so `string-match' should be used.
16752         (gdb-update): Disassembly is invalidated through
16753         `gdb-get-selected-frame'.
16754         (gdb-pad-string): New function to pad string with spaces.
16755         (gdb-invalidate-disassembly): Invalidate only if the buffer
16756         exists.
16757         (gdb-disassembly-handler-custom): Column alignment.
16758         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
16759         placing new ones.
16760         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
16761         end of line, too.
16762         (gdb-frame-handler): Match convention to for disassembly buffer
16763         mode name.
16764         (gdb-stack-list-frames-handler): Rewritten without regexps.
16765         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
16766         not highlight breakpoints without line information.
16767         (gdb-input): Add trailing newline to command.
16769         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
16770         buffer properly.
16771         (gdb-breakpoints-list-handler-custom): Replacement for
16772         `gdb-break-list-handler'.  Using real parser instead of regexps
16773         now.
16774         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
16775         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
16776         to place breakpoints.
16777         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
16778         functions.
16779         (gdb-disassembly-handler-custom): Show overlay arrow.
16780         (gdb-disassembly-place-breakpoints): Show breakpoints in
16781         disassembly buffer.
16782         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
16783         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
16784         instead of parsing breakpoints buffer.  Fixed old menu references
16785         in `gud-menu-map'.
16787         * fadr.el: Remove.
16789         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
16790         (gdb-memory-address): New variable which holds top address of
16791         memory page shown in memory buffer.
16792         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
16793         customization variables.
16794         New functions:
16795         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
16796         display the memory buffer.
16797         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
16798         buffer display parameters.
16799         (def-gdb-memory-format, gdb-memory-format-binary)
16800         (gdb-memory-format-octal, gdb-memory-format-unsigned)
16801         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
16802         Functions for setting memory buffer format.
16803         (gdb-memory-unit-word, gdb-memory-unit-halfword)
16804         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
16805         unit size used in memory buffer.
16806         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
16807         to next/previous page of memory buffer.
16808         Now using (bindat-get-field) instead of fadr functions.
16810 2009-07-07  Sam Steingold  <sds@gnu.org>
16812         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
16813         non-top-level files.
16815 2009-07-07  Kenichi Handa  <handa@m17n.org>
16817         * international/mule-cmds.el (reset-language-environment): Put
16818         the highset priority to the charset iso-8859-1.
16820 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
16822         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
16823         to the end of the line when locating the block (Bug#700).
16825 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
16827         * net/tramp.el (tramp-handle-write-region): Flush file properties
16828         in case of short track.
16830 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
16832         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
16833         Coded custom representation of verilog error regular expressions
16834         to work with Emacs-22's new format.
16835         (verilog-error-regexp-xemacs-alist): Coded custom representation
16836         of verilog error regular expressions to work with XEmacs format.
16837         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
16838         error recognition into XEmacs.
16839         (verilog-error-regexp-add-emacs): Hook routine to install verilog
16840         error recognition into Emacs-22.
16842 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
16844         * woman.el: Remove stand-alone closing parentheses.
16845         (woman-file-name, woman2-format-paragraphs)
16846         (woman-leave-blank-lines): Code cleanup.
16847         (woman-use-own-frame): Change default to nil.
16848         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
16849         defaults to inherit from default faces.
16850         (woman2-process-escapes): Consume the newline after a stand-alone
16851         filler character (Bug#3651).
16853 2009-07-06  Glenn Morris  <rgm@gnu.org>
16855         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
16856         (top-level): Move provide to the end.
16857         (ffap): Remove defunct URL from custom group.
16859         * subr.el (eval-after-load): Doc fix.
16861 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
16863         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
16864         `calc-embedded-word' is called twice.
16866 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16868         * files.el (find-alternate-file-other-window, find-alternate-file):
16869         Obey confirm-nonexistent-file-or-buffer.
16871 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
16873         * dired-aux.el (dired-show-file-type): Handle remote files.
16875 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
16877         * desktop.el (desktop-globals-to-save):
16878         Add file-name-history (Bug#2750).
16880 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
16882         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
16884 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
16886         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
16887         property on entire argument since this is what eshell-lisp-command
16888         expects.
16890 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
16892         * net/tramp-gvfs.el (tramp-gvfs-methods)
16893         (tramp-gvfs-zeroconf-domain)
16894         (tramp-bluez-discover-devices-timeout): Add version flag.
16895         (tramp-gvfs-handler-mounted-unmounted)
16896         (tramp-gvfs-connection-mounted-p): Polish handling of
16897         incompatibilities between GVFS 0.2 and 1.0.
16899 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
16901         * cus-start.el (all): Add make-pointer-invisible.
16903 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
16905         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
16906         formatted correctly.
16908 2009-07-02  Juri Linkov  <juri@jurta.org>
16910         * info.el: Virtual Info files and nodes.
16911         (Info-virtual-files, Info-virtual-nodes): New variables.
16912         (Info-current-node-virtual): New variable.
16913         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
16914         New functions.
16915         (Info-file-supports-index-cookies): Use Info-virtual-file-p
16916         to check for a virtual file instead of checking a fixed list
16917         of node names.
16918         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
16919         instead of ad-hoc processing of "dir" and (apropos history toc).
16920         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
16921         instead of ad-hoc processing of "dir" and (apropos history toc).
16922         Reread a file when moving from a virtual node.
16923         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
16924         (Info-directory-toc-nodes, Info-directory-find-file)
16925         (Info-directory-find-node): New functions.
16926         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
16927         (Info-history): Move part of code to
16928         `Info-history-find-node'.
16929         (Info-history-toc-nodes, Info-history-find-file)
16930         (Info-history-find-node): New functions.
16931         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
16932         (Info-toc): Move part of code to `Info-toc-find-node'.
16933         (Info-toc-find-node): New function.
16934         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
16935         the current Info file name to references because now the node
16936         "*TOC*" belongs to the same Info manual.
16937         (Info-toc-build): Rename from `Info-build-toc'.
16938         (Info-toc-nodes): Rename input argument `file' to `filename'.
16939         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
16940         instead of ad-hoc processing of ("dir" apropos history toc).
16941         (Info-index-nodes): Use Info-virtual-file-p
16942         to check for a virtual file instead of checking a fixed list
16943         of node names.
16944         (Info-index-node): Add check for `Info-current-node-virtual'.
16945         Raise `save-match-data' higher up the tree to contain
16946         `search-forward' too (bug fix).
16947         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
16948         (Info-virtual-index-nodes): New variable.
16949         (Info-virtual-index-find-node, Info-virtual-index): New functions.
16950         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
16951         (Info-apropos-file, Info-apropos-nodes): New variables.
16952         (Info-apropos-toc-nodes, Info-apropos-find-file)
16953         (Info-apropos-find-node, Info-apropos-matches): New functions.
16954         (info-apropos): Move part of code to `Info-apropos-find-node' and
16955         `Info-apropos-matches'.
16956         (Info-mode-map): Bind "I" to `Info-virtual-index'.
16957         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
16958         for a virtual file instead of checking a fixed list of node names.
16960         * simple.el (async-shell-command): New command.
16962         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
16964         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
16965         instead of `mount-info'.
16967 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
16969         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
16970         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
16972 2009-07-02  Kenichi Handa  <handa@m17n.org>
16974         * international/mule.el (set-keyboard-coding-system): Force *-unix
16975         coding-system to avoid eol conversion.
16977 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
16979         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
16980         Add handler for `process-file', `shell-command' and
16981         `start-file-process'.
16982         (tramp-gvfs-handle-shell-command)
16983         (tramp-gvfs-handle-start-file-process)
16984         (tramp-gvfs-handle-process-file): New defuns.
16985         (tramp-synce-list-devices): Simplify check for existence of property.
16987 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
16989         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
16991 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
16993         * language/korean.el (set-language-info-alist): Add korean-cp949,
16994         cp949 to spec.
16996 2009-07-01  Kenichi Handa  <handa@m17n.org>
16998         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
17000         * international/encoded-kb.el: Deleted.
17002         * international/mule.el (set-keyboard-coding-system): Perform the
17003         necessary setup here instead of calling encoded-kbd-setup-display.
17005 2009-07-01  Glenn Morris  <rgm@gnu.org>
17007         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
17009 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
17011         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
17013 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
17015         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
17016         Handle also the 'rename case, when setting file modes.  (Bug#3712)
17017         (tramp-default-file-modes): Remove execute permissions.
17019         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
17020         (top): Add a default for "synce" in `tramp-default-user-alist'.
17021         Add completion function for "synce" method.
17022         (tramp-hal-service, tramp-hal-path-manager)
17023         (tramp-hal-interface-manager, tramp-hal-interface-device):
17024         New defconst.
17025         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
17026         (tramp-synce-list-devices, tramp-synce-parse-device-names):
17027         New defuns.
17029         * net/trampver.el: Update release number.
17031 2009-06-30  Kenichi Handa  <handa@m17n.org>
17033         * international/fontset.el (setup-default-fontset): Add CJK fonts
17034         for symbols and the other miscellaneous characters.
17036         * language/korea-util.el (setup-korean-environment-internal):
17037         Make char-width-table suitable for Korean environments.
17038         (exit-korean-environment): Cancel above.
17040         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
17041         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
17042         setup-function to make char-width-table suitable for respective
17043         environments, and an exit-function to cancel that.
17045         * language/japan-util.el (setup-japanese-environment-internal):
17046         Call use-cjk-char-width-table with arg `ja_JP'.
17048         * international/characters.el (cjk-char-width-table): Delete it.
17049         (cjk-char-width-table-list): New variable.
17050         (use-cjk-char-width-table): New arg local-name.
17051         (use-default-char-width-table): Fix for the case that Emacs is
17052         already using the default char-width-table.
17054 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
17056         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
17057         modes mandatory.  (Bug#3712)
17059 2009-06-29  Alan Mackenzie  <acm@muc.de>
17061         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
17062         correction between the visible width of TABs and their number of bytes.
17064 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
17066         * server.el (server-buffer-done): Prevent kill-buffer from
17067         prompting by clearing the buffer modification flag (Bug#3696).
17069 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
17071         * progmodes/verilog-mode.el (verilog-beg-of-statement)
17072         (verilog-endcomment-reason-re): Support unique case and priority case.
17073         (verilog-basic-complete-re): Support localparam lineup.
17074         (verilog-beg-of-statement-1): Fix for robustness, unique case.
17075         (verilog-set-auto-endcomments): Fix for unique case, always_comb
17076         commenting.
17077         (verilog-leap-to-case-head): Now support *nested* unique &
17078         priority case statements.
17079         (verilog-auto-lineup): Make just declarations the default (as it
17080         had been).
17081         (verilog-leap-to-case-head): Support priority/unique case statements.
17082         (verilog-auto-lineup): Rework to give users radio buttons to
17083         select the various styles of automatic lineup.
17084         (verilog-error-regexp-alist): Rework to support the XEmacs style
17085         of error regular expressions from compilers, lint tools &
17086         simulators.  Note that GNU Emacs has made it impossible for a mode
17087         to load such things.
17088         (electric-verilog-terminate-line, verilog-indent-declaration)
17089         (verilog-auto-wiure): Rework for radio button selection of
17090         auto-lineup selection of specification of auto lineup.
17091         (verilog-beg-of-statement-1): Redesign to support proper operation
17092         in additional code, based on testing with auto-lineup.
17093         (verilog-calculate-indent, assignments & declarations)
17094         (verilog-backward-token): Enhance to support auto-lineup of
17095         assignments & declarations.
17096         (verilog-in-directive-p, verilog-at-struct-p): New function for
17097         easy test of whether we are.
17098         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
17099         to support safe execution at almost anyline.
17100         (verilog-calc-1): Properly support indenting deep inside generate
17101         blocks.
17102         (verilog-init-font): Remove definition & use of verilog-init-font,
17103         as it is redundant with font-lock-defaults.
17104         (verilog-mode): Alter the definition of verilog-font-lock-defaults
17105         to avoid circular calls if syntax-ppss is a function (as is the
17106         case now in 22.x GNU Emacs) as that function would sometimes call
17107         itself, leading to (nearly) infinite recursion.
17108         (verilog-ovm-begin-re, verilog-ovm-end-re)
17109         (verilog-ovm-statement-re, verilog-leap-to-head)
17110         (verilog-backward-token): Add support for OVM macros.  Some are
17111         complete statements, and others open and close scopes like begin
17112         and end.
17113         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
17114         (verilog-defun-level-generate-only-re): Really fix the defun-list
17115         compilation issue.
17116         (verilog-calc-1, verilog-beg-of-statement): Enhance support for
17117         coverpoint, constraint and cross statements.
17118         (verilog-defun-level-list, verilog-generate-defun-level-list)
17119         (verilog-all-defun-level-list): Redo these specifications - it is
17120         too hard to support eval-when compile aggregation of lists also
17121         built at when-compile time.
17122         (verilog-defun-level-list): Place defconsts of variables used in
17123         building regular expressions which are built in eval-when-compile
17124         bodies in the same eval-when-compile body to facilitate compile
17125         without load.
17126         (verilog-beg-block-re-ordered): Support indenting
17127         virtual/protected tasks and functions.
17128         (verilog-defun-level-list, verilog-in-generate-region-p)
17129         (verilog-backward-ws&directives, verilog-calc-1): Speed up
17130         indentation of some module items (generate items).
17131         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
17132         across virtual/protected tasks and functions.
17134 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
17136         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
17137         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
17138         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
17139         in concatenations.  Reported by Yishay Belkind.
17140         (verilog-auto-ascii-enum): Support one-hot state machines in
17141         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
17142         (verilog-auto-inst, verilog-auto-inst-port): Include interface
17143         modport in AUTOINST and add vl-modport for users.  Reported by
17144         David Rogoff.
17145         (verilog-auto-inout-module, verilog-auto-inst)
17146         (verilog-decls-get-interfaces, verilog-insert-definition)
17147         (verilog-insert-one-definition, verilog-read-decls)
17148         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
17149         (verilog-sig-modport, verilog-signals-combine-bus)
17150         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
17151         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
17152         Suggested by David Rogoff.
17153         (verilog-repair-open-comma): Fix non-insertion of comma when
17154         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
17155         (verilog-make-width-expression): Simplify [A-1:0] expression
17156         widths to just {A{1'b0}}.
17157         (verilog-mode): Cleanup checkdoc warnings.
17158         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
17159         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
17160         inputs/outputs or data type.  Suggested by Vasu Kandadi.
17161         (next-error-last-buffer): Fix byte-compiler warning.
17162         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
17163         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
17164         or shell command text during AUTO expansion.  Suggested by Tad Truex.
17165         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
17166         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
17167         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
17168         in AUTOINOUT.  Reported by Matthew Lovell.
17169         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
17170         causing use of <= assignments.  Reported by Alex Reed.
17171         (verilog-read-decls): Fix triand, trior, wand, wor to be
17172         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
17173         (verilog-extended-complete-re): Support import "DPI-C" functions.
17174         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
17175         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
17176         (verilog-insert-date, verilog-insert-year)
17177         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
17178         Windows systems.  Reported by Michael Potts.
17179         (verilog-read-module-name): Fix AUTOINST when the child module
17180         declaration's name is a tick define.  Reported by Elliot Mednick.
17181         (verilog-read-decls): Fix V2K parameter bit subscripts getting
17182         passed to next parameter's definition.  Reported by Bruce T.
17183         (verilog-read-decls): Fix detecting "parameter int" when using
17184         AUTOINSTPARAM.  Reported by Bruce T.
17185         (verilog-goto-defun): Fix goto not finding modules unless first
17186         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
17187         (verilog-mode): Expand -f flag arguments on entry to mode so
17188         verilog-goto-defun will work.  Reported by Lawrence Butcher.
17189         (verilog-getopt): Expand environment variables in -f file
17190         arguments.  Suggested by Lawrence Butcher.
17191         (verilog-set-define): Fix "Symbol's value as variable is void"
17192         when reading enumerations.
17193         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
17194         Suggested by Stephen Peltan.
17195         (verilog-read-defines): Fix reading of enumerations in include
17196         files.  Reported by Steve Peltan.
17198 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
17200         * files.el (trash-directory): Fix defcustom type.
17202 2009-06-28  Juri Linkov  <juri@jurta.org>
17204         * help-fns.el (describe-function-1): Correctly locate adviced
17205         functions in hyperlink (Bug#2438).
17207 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
17209         * files.el (trash-directory): Change default to nil.
17210         (move-file-to-trash): If trash-directory is nil and
17211         system-move-file-to-trash is unbound, perform freedesktop-style
17212         trashing.
17214 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
17216         * files.el (move-file-to-trash): Add freedesktop trash
17217         support (Bug#973).
17219 2009-06-28  Glenn Morris  <rgm@gnu.org>
17221         * autorevert.el (global-auto-revert-non-file-buffers)
17222         (global-auto-revert-mode): Doc fixes.
17224 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
17226         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
17228 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
17230         * faces.el (x-handle-named-frame-geometry): Ensure that we have
17231         opened an X connection before calling x-get-resource (Bug#3194).
17233         * play/doctor.el: Remove reference to obsolete website.
17234         (make-doctor-variables): Correct grammar mistake (Bug#2633).
17236 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
17238         Remove find-file-not-found-hook VC method.  (Bug#2757)
17239         * vc-hooks.el (vc-file-not-found-hook)
17240         (vc-default-find-file-not-found-hook): Remove functions.
17241         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
17242         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
17243         * vc.el:
17244         * vc-hg.el:
17245         * vc-git.el: Do not mention find-file-not-found-hook VC method.
17247 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
17249         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
17250         compatibility function for `looking-back'.
17252         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
17253         Use `ispell-looking-back'.
17255 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
17257         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
17258         rather than `filename'.
17260 2009-06-23  Miles Bader  <miles@gnu.org>
17262         * face-remap.el (text-scale-set): New function.
17264 2009-06-23  Glenn Morris  <rgm@gnu.org>
17266         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
17268         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
17270         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
17272         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
17274         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
17275         Simplify Persian conditionals.
17277         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
17278         variable `filename'.
17280         * comint.el (comint-insert-input): Doc fix.
17282         * Makefile.in (ELCFILES): Fix typo in previous change.
17284 2009-06-23  Miles Bader  <miles@gnu.org>
17286         * cus-start.el: Add entry for `recenter-redisplay'.
17288 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
17290         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
17291         Add an optional argument for the backend, use it instead of
17292         calling vc-backend.
17293         (vc-mode-line): Add an optional argument for the backend.
17294         Pass the backend to vc-state and vc-working-revision.  Move code for
17295         special handling for vc-state being a buffer to ...
17297         * vc-rcs.el (vc-rcs-find-file-hook):
17298         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
17300         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
17301         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
17302         vc-stay-local-p and vc-mode-line calls.
17304         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
17305         (vc-cvs-diff, vc-cvs-annotate-command)
17306         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
17307         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
17308         vc-mode-line calls.
17310         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
17311         direct comparison.
17312         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
17313         backend when calling vc-mode-line.
17314         (vc-register): Do not create a closure for calling the vc register
17315         function, call it directly.
17317 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
17319         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
17320         to make it obvious item can be clicked.
17322         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
17324 2009-06-23  Kenichi Handa  <handa@m17n.org>
17326         * language/korea-util.el (korean-key-bindings): Change the binding
17327         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
17328         same command.
17330 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
17332         Sync with Tramp 2.1.16.
17334         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
17336         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
17337         when a loading of a package fails.  Completion function for rsync
17338         is `tramp-completion-function-alist-ssh'.
17339         (all): Replace all calls of `split-string' and
17340         `tramp-split-string' by `tramp-compat-split-string'.
17341         (tramp-default-method): Use `tramp-compat-process-running-p'.
17342         (tramp-default-proxies-alist): Allow also Lisp forms.
17343         (tramp-remote-path): Add choice "Private Directories".
17344         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
17345         (tramp-domain-regexp): Allow also "-", "_" and ".".
17346         (tramp-end-of-output): Remove newlines, and add "$" at the end.
17347         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
17348         (tramp-debug-message): Insert header line in debug buffer.
17349         (tramp-handle-directory-files-and-attributes-with-stat):
17350         Care about filenames with spaces, or starting with "-".
17351         (tramp-handle-dired-uncache): New defun.
17352         (tramp-handle-insert-directory): Don't flush the directory from
17353         cache, this is handled by `dired-uncache' now.
17354         (tramp-handle-insert-file-contents): Improve error handling.
17355         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
17356         Quote `tramp-end-of-output'.
17357         (tramp-action-password): Improve trace message.
17358         (tramp-check-for-regexp): Both echoes must be present, before removing.
17359         (tramp-open-connection-setup-interactive-shell): Trace coding system.
17360         (tramp-compute-multi-hops): Eval cons cells of
17361         `tramp-default-proxies-alist'.
17362         (tramp-maybe-open-connection): Use the same command pattern for
17363         first hop and further hops.
17364         (tramp-wait-for-output): Remove handling of newlines.
17365         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
17366         (tramp-split-string): Remove function.  It is handled in
17367         tramp-compat now.
17369         * net/tramp-cmds.el (tramp-bug):
17370         Recommend `tramp-cleanup-all-connections' in the bug mail.
17372         * net/tramp-compat.el (tramp-compat-split-string)
17373         (tramp-compat-process-running-p): New defuns.
17375         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
17376         for `dired-uncache'.
17378         * net/tramp-gvfs.el: New package.
17380         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
17381         Add handler for `dired-uncache'.
17382         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
17384         * net/trampver.el: Update release number.  Make version check fit
17385         for SXEmacs 22.
17387 2009-06-22  Jim Meyering  <meyering@redhat.com>
17389         Automatically handle .xz suffix (XZ-compressed files), too.
17390         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
17391         XZ is the successor to LZMA: <http://tukaani.org/xz/>
17393 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
17394             Nick Roberts  <nickrob@snap.net.nz>
17396         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
17397         repository (http://sphinx.net.ru/hg/gdb-mi/).
17399 2009-06-22  Glenn Morris  <rgm@gnu.org>
17401         * files.el (dir-locals-collect-mode-variables): Allow for any number of
17402         `mode' and `eval' entries.  (Bug#3430)
17404         * Makefile.in (ELCFILES): Add fadr.elc.
17406         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
17407         differing behavior of \n and ^ in strings.  (Bug#3385)
17409         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
17411         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
17412         property.
17413         (lisp-indent-function): Make it a defcustom.
17415 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
17417         * progmodes/gdb-ui.el: Replace with ...
17418         * progmodes/gdb-mi.el: ... this file.
17419         * progmodes/gud.el: Modify for gdb-mi.el.
17421 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
17423         * fadr.el: New file.
17425 See ChangeLog.14 for earlier changes.
17427 ;; Local Variables:
17428 ;; coding: utf-8
17429 ;; End:
17431     Copyright (C) 2009, 2010  Free Software Foundation, Inc.
17433   This file is part of GNU Emacs.
17435   GNU Emacs is free software: you can redistribute it and/or modify
17436   it under the terms of the GNU General Public License as published by
17437   the Free Software Foundation, either version 3 of the License, or
17438   (at your option) any later version.
17440   GNU Emacs is distributed in the hope that it will be useful,
17441   but WITHOUT ANY WARRANTY; without even the implied warranty of
17442   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17443   GNU General Public License for more details.
17445   You should have received a copy of the GNU General Public License
17446   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
17448 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1