Fix 2009-02-20 change to startup.el (Bug#5519).
[emacs/old-mirror.git] / lisp / ChangeLog
blobe172cfbfdb00e4fcd71dc9f5731bb8a816a515bc
1 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
3         * startup.el (command-line-1): Convert options beginning with a
4         single dash as well (Bug#5519).
6 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
9         * minibuffer.el (completion-initials-expand): Only check the presence
10         of delims *within* the boundaries, since otherwise the / delim is
11         always found for files.
13         Fix up various corner case problems.
14         * doc-view.el (doc-view-last-page-number): New function.
15         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
16         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
17         (doc-view-kill-proc): Avoid inf-loop in freak cases.
18         (doc-view-reconvert-doc): Use the new recursive delete-directory.
19         (doc-view-convert-current-doc): Don't create the resolution.el file
20         here any more.
21         (doc-view-pdf/ps->png): Do it here instead.
22         (doc-view-already-converted-p): Check that resolution.el is present.
23         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
24         windows that are not yet showing images.
26 2010-02-04  Alan Mackenzie  <acm@muc.de>
28         Change strategy for marking < and > as template delimiters: mark
29         them strictly in matching pairs.
31         * cc-mode.el (c-before-change):
32         Use c-get-state-before-change-functions.
33         (c-common-init): Adapt to use
34         c-get-state-before-change-functions (note plural).
36         * cc-langs.el (c-no-parens-syntax-table): New syntax table, used
37         for searching syntactically for matching <s and >s.
38         (c-get-state-before-change-functions): New language variable (note
39         the plural) which supersedes c-get-state-before-change-function.
41         * cc-engine.el (c-clear-<-pair-props, c-clear->-pair-props)
42         (c-clear-<>-pair-props, c-clear-<-pair-props-if-match-after)
43         (c-clear->-pair-props-if-match-before)
44         (c-before-change-check-<>-operators): New functions.
45         (c-after-change-check-<>-operators): Use macro
46         c-unmark-<->-as-paren.
48         * cc-defs.el (c-search-backward-char-property): New macro.
50         * cc-cmds.el (c-electric-lt-gt): Do not set text properties on <
51         and > any more.  (These will be handled by font locking.)
53 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
55         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
56         `dired-uncache' for every elemnt which is an absolute file name.
58         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
59         directory, handle its directory component.
60         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
61         function is called permanently and creates noise, otherwise.
63         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
64         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
65         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
67 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
69         * macros.el (apply-macro-to-region-lines):
70         Minor simplification.  (Bug#5485)
72 2010-02-04  Glenn Morris  <rgm@gnu.org>
74         * mail/rmail.el (rmail-show-message-1): Handle malformed
75         quoted-printable text.  (Bug#5441)
77         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
79         * simple.el (visual-line-mode): Capitalize lighter.
81 2010-02-03  John Wiegley  <jwiegley@gmail.com>
83         * iswitchb.el (iswitchb-completions): Add bookmark files to the
84         list of files considered for "virtual buffer" completions.
86 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
88         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
89         also in case of (and (not full) (not wildcard)). This is needed,
90         when dired is called with a list of files, which are not in
91         `default-directory'.  (Bug#5478)
93 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
95         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
97 2010-02-02  Juri Linkov  <juri@jurta.org>
99         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
100         from unidiff to allow function-line after @@.
102 2010-02-02  Juri Linkov  <juri@jurta.org>
104         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
105         '(RCS SCCS) with inverted condition.
107 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
109         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
110         messages.
112 2010-02-01  Juri Linkov  <juri@jurta.org>
114         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
115         compare with "pkunzip" and "pkzip" instead of only "pkzip".
116         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
117         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
119 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
121         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
122         (doc-view-revert-buffer): New command.
123         (doc-view-mode-map): Use it.
125 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
127         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
128         pending merge is detected.
130 2010-01-31  Juri Linkov  <juri@jurta.org>
132         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
133         beginning of interactive spec like all other grep commands do.
134         Put "all" in front of "gz".  (Bug#5260)
136 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
138         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
140 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
142         * dirtrack.el (dirtrack): Warn instead of signalling error if the
143         regexp is incorrect (Bug#5476).
145 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
147         * net/tramp.el (tramp-handle-insert-directory): Handle also
148         symlinks, when FILENAME is not in `default-directory'.
150 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
152         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
153         FILE is not in `default-directory'.  (Bug#5478)
155         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
156         of SWITCHES.  Handle the case, FILENAME is not in
157         `default-directory'.  (Bug#5478)
158         (tramp-register-file-name-handlers): Add safe-magic property.
160 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
162         * arc-mode.el (archive-zip-extract): Quote the argument passed to
163         unzip (Bug#5475).
165 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
167         * progmodes/flymake.el (flymake-allowed-file-name-masks)
168         (flymake-master-make-header-init): Add other C++ filename masks.
169         (flymake-find-possible-master-files)
170         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
172 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
174         Fix some busybox annoyances.
176         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
177         not responding." string.
178         (tramp-open-connection-setup-interactive-shell): Dump stty
179         settings.  Enable "neveropen" arg for all `tramp-send-command'
180         calls.  Handle "=" in variable values properly.
181         (tramp-find-inline-encoding): Raise an error, when no encoding is
182         found.
183         (tramp-wait-for-output): Check, whether PROC buffer is available.
184         Remove spurious " ^H" sequences, sent by busybox.
185         (tramp-get-ls-command): Suppress coloring, if possible.
187 2010-01-28  Glenn Morris  <rgm@gnu.org>
189         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
191         * log-edit.el (log-edit-strip-single-file-name): Add missing
192         :safe, :group, and :version tags.
194 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
196         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
197         buffers.  (Bug#5477)
199 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
201         * files.el (delete-directory): Handle moving to trash without
202         first doing recursion (Bug#5436).
204 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
206         * vc-hooks.el (vc-path): Mark as obsolete.
208 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
210         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
211         names too.
213         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
214         for the short log.
215         (vc-bzr-log-view-mode): Adjust regexp for the above change.
217 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
219         * progmodes/python.el: Replace reference to obsolete
220         c-subward-mode.
222         * vc-bzr.el: (vc-bzr-revision-table) New function.
224 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
226         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
227         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
229 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
231         Remove support for adding --signoff on commit.
232         Future support will use an incompatible generic mechanism.
233         * vc-git.el (vc-git-add-signoff): Remove variable.
234         (vc-git-toggle-signoff): Remove function.
235         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
237         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
238         from xterm-set-background-mode.  Return t if the background mode
239         was set.
240         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
241         earlier, call it again in case the background mode has changed.
243 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
245         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
246         (Bug#3541).
248 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
250         * emacs-lisp/assoc.el (aelement): Doc fix.
251         (aput, adelete, amake): Use lexical-let (Bug#5450).
253 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
255         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
256         is the same as subprogram call, not declaration.  (Bug#5435).
258 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
260         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
261         (tramp-smb-maybe-open-connection): Use it.
263 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
265         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
267 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
269         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
270         just because we see "encoding: 8bit".
271         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
273 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
275         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
277 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
279         * jka-compr.el (jka-compr-load): If load-file is not in
280         load-history, try its file-truename version.  (bug#5447)
282 2010-01-21  Alan Mackenzie  <acm@muc.de>
284         Fix a situation where deletion of a cpp construct throws an error.
285         * progmodes/cc-engine.el (c-invalidate-state-cache): Before
286         invoking c-with-all-but-one-cpps-commented-out, check that the
287         special cpp construct is still in the buffer.
288         (c-parse-state): Record the special cpp with markers, not numbers.
290 2010-01-21  Kenichi Handa  <handa@m17n.org>
292         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
293         process last-command-event, as it is now decoded first (Bug#5380).
295 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
297         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
299 2010-01-20  Glenn Morris  <rgm@gnu.org>
301         * indent.el (tab-always-indent): Fix custom-type.
303 2010-01-19  Alan Mackenzie  <acm@muc.de>
305         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
306         buffer throws "args out of range".
307         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
308         playing the role of delimiter.
310 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
312         * progmodes/ada-mode.el: Fix bug#5400.
313         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
314         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
315         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
316         Improve comments in "is" portion.  Handle null procedure declaration.
317         (ada-move-to-end): Improve doc string.
319 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
321         * ido.el (ido-cur-list): Initialize to nil.
322         Remove obsolete information from commentary.
323         (ido-choice-list): Initialize to nil.
324         (ido-get-bufname): Reject minibuffers.
325         (ido-make-buffer-list): If "default" is a nonexistent
326         buffer, ignore it, as per the function's comment.
327         (ido-kill-buffer-internal): New function.
328         (ido-kill-buffer-at-head): Use it.
329         (ido-visit-buffer): Likewise.
331 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
333         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
335 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
337         * cedet/ede/locate.el (ede-locate-file-in-project)
338         (ede-locate-file-in-project-impl): Fix typos in docstrings.
339         (ede-enable-locate-on-project): Fix typos in error messages.
341         * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
342         (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
343         (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
344         (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
345         (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
346         Fix typos in menu help.
348         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
349         Fix typos in chart titles.
351         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
352         * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
353         (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
354         (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
355         (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
356         (semantic-parse-stream, semantic-parse-region)
357         (semantic-parse-region-default, semantic--set-buffer-cache)
358         (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
359         (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
360         (semantic-default-submodes):
361         * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
362         (semanticdb-create-ebrowse-database)
363         (semanticdb-find-tags-for-completion-method)
364         (semanticdb-find-tags-by-class-method)
365         (semanticdb-deep-find-tags-by-name-method)
366         (semanticdb-deep-find-tags-for-completion-method):
367         * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
368         (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
369         (semanticdb-find-tags-for-completion-method)
370         (semanticdb-find-tags-by-class-method)
371         (semanticdb-deep-find-tags-for-completion-method):
372         * cedet/semantic/db-find.el (semanticdb-find-translate-path)
373         (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
374         (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
375         (semanticdb-find-tags-by-name-method)
376         (semanticdb-find-tags-by-name-regexp-method)
377         (semanticdb-find-tags-for-completion-method)
378         (semanticdb-find-tags-by-class-method)
379         (semanticdb-find-tags-external-children-of-type-method)
380         (semanticdb-find-tags-subclasses-of-type-method)
381         (semanticdb-deep-find-tags-by-name-method)
382         (semanticdb-deep-find-tags-by-name-regexp-method)
383         (semanticdb-deep-find-tags-for-completion-method):
384         * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
385         (semanticdb-enable-gnu-global-in-buffer)
386         (semanticdb-find-tags-for-completion-method)
387         (semanticdb-deep-find-tags-by-name-method)
388         (semanticdb-deep-find-tags-for-completion-method):
389         * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
390         (javascript-mode, semanticdb-find-translate-path)
391         (semanticdb-find-tags-for-completion-method)
392         (semanticdb-find-tags-by-class-method)
393         (semanticdb-deep-find-tags-by-name-method)
394         (semanticdb-deep-find-tags-for-completion-method)
395         (semanticdb-find-tags-external-children-of-type-method):
396         * cedet/semantic/idle.el (semantic-idle-work-core-handler)
397         (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
398         (global-semantic-idle-scheduler-mode):
399         * cedet/srecode/dictionary.el (srecode-field-value)
400         (srecode-dictionary-add-section-dictionary):
401         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
402         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
403         (describe-class, eieio-describe-generic, describe-generic):
404         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
405         (eieio-speedbar-expand):
406         * emulation/viper-cmd.el (viper-exec-form-in-vi)
407         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
408         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
409         (viper-del-backward-char-in-replace, viper-backward-indent)
410         (viper-brac-function, viper-register-to-point, viper-submit-report):
411         * net/tramp.el (tramp-remote-coding-commands):
412         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
413         Fix typos in docstrings.
415 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
417         * mail/sendmail.el (mail-yank-original): Set the mark if the
418         specified function for yanking does not do it.
420 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
422         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
424         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
425         resyncing a directory.
427 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
429         * progmodes/ada-mode.el: Fix bug#1920.
430         (ada-ident-re): Delete ., allow multibyte characters.
431         (ada-goto-label-re): New; matches goto labels.
432         (ada-block-label-re): New; matches block labels.
433         (ada-label-re): New; matches both.
434         (ada-named-block-re): Deleted; callers changed to use
435         `ada-block-label-re' instead.
436         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
437         Use `ada-block-label-re'.
438         (ada-indent-on-previous-lines): Improve handling of goto labels.
439         (ada-get-indent-block-start): Special-case block label.
440         (ada-get-indent-label): Split into `ada-indent-block-label' and
441         `ada-indent-goto-label'.
442         (ada-goto-stmt-start, ada-goto-next-non-ws):
443         Optionally ignore goto labels.
444         (ada-goto-next-word): Simplify.
445         (ada-indent-newline-indent-conditional): Insert newline before
446         trying to fix indentation; doc fix.
448 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
450         * calc/calc.el (calc-command-flags): Give it an initial value.
452 2010-01-17  Glenn Morris  <rgm@gnu.org>
454         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
456 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
458         * cedet/semantic.el (semantic-mode):
459         * files.el (minibuffer-with-setup-hook):
460         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
461         (artist-key-draw-continously, artist-key-do-continously-continously)
462         (artist-key-set-point-continously, artist-mouse-draw-continously):
463         Fix typos in docstrings.
465 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
467         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
468         return t (Bug#3898).
470 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
472         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
473         can parse the output of the external commands (Bug#5279).
475 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
477         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
479 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
481         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
483         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
485         * startup.el (command-line): Remove unused --icon-type arg.
486         Handle --display arg, passing it to command-line-1 (Bug#5392).
488 2010-01-16  Mario Lang  <mlang@delysid.org>
490         * cedet/ede/cpp-root.el (ede-cpp-root-project):
491         * cedet/ede/files.el (ede-expand-filename):
492         * cedet/ede/simple.el (ede-simple-project):
493         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
494         (semantic-complete-inline-tag-engine):
495         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
496         * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
497         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
498         * cedet/semantic/db.el (semanticdb-equivalent-mode):
499         * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
500         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
501         * emacs-lisp/chart.el (chart-translate-namezone):
502         * textmodes/artist.el (artist-compute-popup-menu-table):
503         Remove duplicated words in doc-strings.
505 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
507         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
508         to mairix-search to suppress threading (Bug#5342).
510 2010-01-15  Kenichi Handa  <handa@m17n.org>
512         * international/mule-cmds.el (canonicalize-coding-system-name):
513         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
515 2010-01-15  Glenn Morris  <rgm@gnu.org>
517         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
519         * wid-edit.el (widget-keymap): Doc fix.
521         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
522         former seems to be more widely accepted by various svn versions.
524 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
526         * find-cmd.el (find-constituents):
527         * vc-arch.el (vc-arch-root):
528         * window.el (window-body-height, pop-up-frames):
529         * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
530         (semantic-no-reparse-needed-change-hook):
531         * cedet/srecode/insert.el (srecode-resolve-argument-list)
532         (srecode-template-inserter-blank, srecode-template-inserter-variable)
533         (srecode-template-inserter-ask, srecode-template-inserter-width)
534         (srecode-template-inserter-section-start)
535         (srecode-template-inserter-section-end, srecode-insert-method):
536         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
537         * progmodes/ada-stmt.el (ada-if):
538         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
539         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
540         (ispell-encoding8-command, ispell-aspell-supports-utf8)
541         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
543         * progmodes/flymake.el (flymake-post-syntax-check):
544         Fix typo in error message.
546 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
548         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
549         which is always a string.  (Bug#5313)
551 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
553         * progmodes/ada-xref.el (ada-default-prj-properties):
554         Simplify previous change.
556 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
558         * progmodes/ada-xref.el (ada-default-prj-properties):
559         Default ada_project_path to $ADA_PROJECT_PATH.
561 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
563         * progmodes/ada-mode.el (ada-create-keymap):
564         Override `narrow-to-defun' with `ada-narrow-to-defun'.
566 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
568         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
569         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
570         (ada-get-current-indent, ada-imenu-generic-expression)
571         (ada-which-function): Check for it.
573 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
575         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
576         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
578 2010-01-14  Glenn Morris  <rgm@gnu.org>
580         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
582 2010-01-14  Kenichi Handa  <handa@m17n.org>
584         * composite.el (auto-composition-mode): Make it a buffer local
585         variable (permanent-local).
586         (auto-composition-function): Set the default value to
587         auto-compose-chars.
588         (auto-composition-mode): Make it a simple function, not a minor mode.
589         (global-auto-composition-mode): Likewise.
590         (turn-on-auto-composition-if-enabled): Delete it.
592 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
594         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
596 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
598         * files.el (copy-directory): Compute target for recursive
599         directories with identical names.  (Bug#5343)
601 2010-01-12  Glenn Morris  <rgm@gnu.org>
603         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
604         it to bug-gnu-emacs rather than emacs-pretest-bug.
606 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
608         * cedet/data-debug.el (data-debug): Fix customization group reference.
610 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
612         * cedet/semantic/analyze.el (semantic-analyze-push-error)
613         (semantic-analyze-context, semantic-analyze-context-assignment)
614         (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
615         * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
616         (semantic-java-doc-keywords-map):
617         * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
618         (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
619         (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
620         (semantic-c-classname, semantic-format-tag-uml-prototype)
621         (semantic-c-dereference-namespace, semantic-analyze-type-constants):
622         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
623         (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
624         (semantic-get-local-variables, semantic-end-of-command)
625         (semantic-beginning-of-command, semantic-ctxt-current-class-list)
626         (lisp-mode):
627         * cedet/semantic/bovine/make.el (makefile-mode):
628         * cedet/semantic/wisent/python.el (wisent-python-string-re)
629         (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
630         (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
631         (semantic-lex, semantic-get-local-variables, python-mode):
632         * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
633         * cedet/srecode/extract.el (srecode-extract-state-set)
634         (srecode-extract-method): Fix typos in docstrings.
636 2010-01-11  Sam Steingold  <sds@gnu.org>
638         * imenu.el (imenu-default-create-index-function): Detect infinite
639         loops caused by imenu-prev-index-position-function.
641 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
643         * htmlfontify.el (htmlfontify-load-rgb-file)
644         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
645         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
646         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
647         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
648         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
649         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
650         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
651         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
652         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
653         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
654         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
655         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
656         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
657         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
658         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
659         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
660         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
661         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
662         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
663         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
664         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
665         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
666         backslash-quoting from parentheses, etc.
668 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
670         * progmodes/js.el: Autoload javascript-mode alias.
672 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
674         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
675         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
676         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
677         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
678         Fix typos in docstrings.
679         (ffap-url-regexp): Doc fix.
680         (ffap-at-mouse): Fix typo in message.
682 2010-01-11  Glenn Morris  <rgm@gnu.org>
684         * version.el (emacs-copyright): Set copyright year to 2010.
686 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
688         * format.el (format-annotate-function): Only set
689         write-region-post-annotation-function after running to-fn so as not to
690         affect nested write-region calls (bug#5273).
692 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
694         * cedet/semantic.el (semantic-new-buffer-setup-functions):
695         Add python parser.
697         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
698         wisent/python.el.
700 2010-01-10  Richard Kim  <emacs18@gmail.com>
702         * cedet/semantic/wisent/python-wy.el:
703         * cedet/semantic/wisent/python.el: New files.
705 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
707         * man.el (Man-goto-section): Signal error if the section is not
708         found (Bug#5317).
710 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
712         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
713         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
715 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
717         * progmodes/compile.el: Don't treat compile-command as safe if
718         compilation-read-command might be nil (Bug#4218).
720 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
722         * startup.el (command-line-1): Use orig-argi to check for ignored X and
723         NS options.
725 2010-01-08  Kenichi Handa  <handa@m17n.org>
727         * international/fontset.el (build-default-fontset-data):
728         Exclude characters in scripts kana, hangul, han, or cjk-misc.
730 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
732         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
733         to `create-file-buffer' as it expects, not just a buffer name.
734         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
735         to help uniquify.  (Bug#3224)
737 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
739         * font-setting.el (font-setting-change-default-font): Use user-spec
740         instead of name.
742 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
744         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
746 2010-01-05  Tom Tromey  <tromey@redhat.com>
748         * progmodes/python.el (python-font-lock-keywords):
749         Handle qualified decorators (Bug#881).
751 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
753         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
754         in a lightweight checkout.
756 2010-01-05  Kenichi Handa  <handa@m17n.org>
758         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
760 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
762         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
764 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
766         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
767         checkouts.  (Bug#618)
768         (vc-bzr-log-view-mode): Also highlight the author.
769         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
770         (vc-bzr-shelve-menu-map):
771         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
772         (vc-bzr-shelve-apply): Make prompt more explicit.
774 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
776         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
777         They are valid characters in URL paths (rfc3986), and at least
778         Firefox does not understand the encoded version (Bug#3166).
780 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
782         * progmodes/octave-mod.el (octave-end-keywords)
783         (octave-block-begin-or-end-regexp, octave-block-match-alist):
784         Add "end" keyword (Bug#3061).
785         (octave-end-as-array-index-p): New function.
786         (calculate-octave-indent): Use it.
788 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
790         * bookmark.el: Consistently put the text property on the bookmark name.
791         (bookmark-bmenu-marks-width): Bump back to 2, to include
792         annotation marks.
793         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
794         property on the bookmark name, instead of not putting it at all.
795         (bookmark-bmenu-list): Fix where we put the text property.
797 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
799         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
800         for showing buffer modified state (as added in the previous change).
802 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
804         * bookmark.el: Show modified state of bookmark buffer more accurately.
805         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
806         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
807         (with-buffer-modified-unmodified): New macro.
808         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
809         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
810         Use new macro to preserve the buffer modified state.
812 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
814         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
815         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
816         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
817         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
818         (bookmark-bmenu-rename, bookmark-bmenu-locate)
819         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
820         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
822 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
824         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
825         Make the lines in the generated doc string shorter.  (Bug#4668)
827 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
829         * net/rcirc.el: Add follow-link binding (Bug#4738).
831 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
833         * Makefile.in (bzr-update): Rename from cvs-update.
834         (cvs-update): New target for backward compatibility.
836         * makefile.w32-in (bzr-update): Rename from cvs-update.
837         (cvs-update): New target for backward compatibility.
839 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
841         * bookmark.el: Remove gratuitous gratitude.
843 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
845         * bookmark.el (bookmark-bmenu-any-marks): New function
846         (bookmark-bmenu-save): Clear buffer modification if no marks.
848 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
850         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
851         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
852         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
853         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
855         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
856         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
857         To: emacs-devel {_AT_} gnu.org
858         Subject: bookmark.el bug report
859         Date: Mon, 28 Dec 2009 14:19:16 +0800
860         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
862 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
864         * bookmark.el: Improvements suggested by Drew Adams:
865         (bookmark-bmenu-ensure-position): New name for
866         `bookmark-bmenu-check-position'.  Just ensure the position,
867         don't return any meaningful value.
868         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
869         New constants.
871 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
873         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
874         (bookmark-yank-point, bookmark-bmenu-check-position):
875         Fix typos in docstrings.
876         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
877         (bookmark-name-from-full-record, bookmark-get-position)
878         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
879         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
880         Remove useless quoting of parenthesis, etc. in docstrings.
882         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
883         (ediff-append-custom-diff): Fix typo in error message.
884         (ediff-meta-mark-equal-files): Fix typos in messages.
886         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
888         * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
889         Fix typo in docstring.
891         * net/imap-hash.el (imap-hash-make): Doc fix.
892         (imap-hash-test): Fix typo in error message; reflow docstring.
893         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
894         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
895         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
896         Fix typos in docstrings.
897         (imap-hash-open-connection): Fix typo in error message.
899         * play/gomoku.el (gomoku): Fix typos in docstring.
901         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
902         (gdb-jsonify-buffer): Fix typos in docstring.
903         (gdb-goto-breakpoint): Fix typo in error message.
904         ("Display Other Windows"): Fix typo in help message.
905         (gdb-speedbar-expand-node): Fix typo in question.
907         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
908         (idlwave-html-system-help-location, idlwave-html-help-location)
909         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
910         (idlwave-help-browser-generic-args, idlwave-help-directory)
911         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
912         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
913         (idlwave-online-help, idlwave-help-html-link)
914         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
915         Fix typos in docstrings.
916         (idlwave-help-with-source, idlwave-help-find-routine-definition):
917         Reflow docstrings.
918         (idlwave-help-assistant-start): Fix typo in error message.
920         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
921         (octave-electric-space): Fix typos in docstrings.
923 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
925         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
927 2010-01-01  Juri Linkov  <juri@jurta.org>
929         * comint.el (comint-input-ring-size): Make it a defcustom and
930         increase the default to 500 (Bug#5148).
932 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
934         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
935         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
936         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
938 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
940         Show working revision correctly for mercurial.
941         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
942         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
944 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
946         Declare some functions for the byte-compiler.
947         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
948         (speedbar-timer-fn, speedbar-change-expand-button-char)
949         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
951 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
953         This changeset reverts GDB Graphical Interface to use annotations.
954         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
956 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
958         Make vc-dir work on subdirectories of the bzr root.
959         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
960         file names relative to it.
961         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
962         relative directory to vc-bzr-after-dir-status.
964 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
966         * font-lock.el (font-lock-refresh-defaults): New function, which
967         can be used to let font-lock react to external changes in
968         variables like font-lock-defaults and keywords.
969         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
971 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
973         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
975         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
977 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
979         Supersede color.diff settings in git log (bug#5211).
981         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
982         escape chars in its output when the user has color.diff set to `always'.
983         This fix works on git 1.4.2 and newer (released on 2006-08-13).
985 2009-12-26  Kevin Ryde  <user42@zip.com.au>
987         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
988         node.  Keep previous "Index" name to work with past coreutils too.
990         * man.el (man): Revise docstring a bit to show -a and -l as
991         examples.  Add -k description since support for it has otherwise
992         been a secret.  (Further to bug#3717.)
993         (Man-bgproc-sentinel): When "-k foo" produces no output show error
994         "no matches" rather than "Can't find manpage", as the latter reads
995         like -k was interpreted as a page name, which is not so.  (Bug#5431)
997 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
999         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
1000         switches.  Check also for //SUBDIRED// line.
1002 2009-12-25  Kenichi Handa  <handa@m17n.org>
1004         * language/indian.el (devanagari-composable-pattern): Fixed to
1005         handle ZWNJ and ZWJ.  Use it in composition-function-table for
1006         Devanagari.
1007         (malayalam-composable-pattern): Fix previous change.
1009 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1011         * ps-print.el (ps-face-attributes): It was not returning the
1012         attribute face for faces specified as string.  Reported by harven
1013         <harven@free.fr>.
1014         (ps-print-version): New version 7.3.5.
1016 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
1018         * calendar/icalendar.el (icalendar--convert-tz-offset): Fixed
1019         timezone names.
1020         (icalendar--convert-tz-offset): Fixed the "last-day-problem".
1021         (icalendar--add-diary-entry): Remove the trailing blank that
1022         diary-make-entry inserts.
1024 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
1026         Make `file-expand-wildcards' work for remote files.
1028         * files.el (file-expand-wildcards): In case of remote files, check
1029         only local file name part for wildcards.  Provide feature 'files
1030         and subfeature 'remote-wildcards.  (Bug#5198)
1032         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
1033         if there is already an established connection.
1034         (tramp-advice-file-expand-wildcards): Remove it.
1036         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
1037         (tramp-advice-file-expand-wildcards): Moved from tramp.el.
1038         Activate advice for older GNU Emacs versions.  (Bug#5237)
1040 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
1042         Some doc fixes (more needed).
1044         * find-cmd.el (find-constituents): Reflow docstring.
1045         (find-cmd, find-prune, find-command): Fix typos in docstrings.
1046         (find-generic): Doc fix.
1048 2009-12-17  Juri Linkov  <juri@jurta.org>
1050         Fix regression from 23.1 to allow multiple modes in Local Variables.
1052         * files.el (hack-local-variables-filter): While ignoring duplicates,
1053         don't take `mode' into account.
1054         (hack-local-variables-filter, hack-dir-local-variables): Don't
1055         remove duplicate `mode' from local-variables-alist (like `eval').
1057 2009-12-17  Juri Linkov  <juri@jurta.org>
1059         Make `dired-diff' more safe.  (Bug#5225)
1061         * dired-aux.el (dired-diff): Signal an error when `file' equals to
1062         `current' or when `file' is a directory of the `current' file.
1064 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
1066         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
1067         unconditionally preloaded files.
1069 2009-12-16  Juri Linkov  <juri@jurta.org>
1071         Revert to old 23.1 logic of using the file at the mark as default.
1072         * dired-aux.el (dired-diff): Use the file at the mark as default
1073         if it's not the same as the current file, and the target dir is
1074         the current dir or the mark is active.  Add the current file
1075         as the arg of `dired-dwim-target-defaults'.  Use the default file
1076         in the prompt.  (Bug#5225)
1078 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
1080         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
1081         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
1082         (tramp-check-for-regexp): Check also, when an echoing shell stops
1083         to echo sent commands.
1085 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
1087         * Makefile.in: Revert last change (Bug#5191).
1089 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
1091         * vc-hg.el (vc-hg-print-log): Fix argument order.
1092         (vc-hg-working-revision): Make sure the command is executed in a
1093         known environment so that we can parse the output.  (Bug#4417)
1095 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
1097         * progmodes/python.el (python-symbol-completions): Remove text
1098         properties from symbol string before calling python-send-receive.
1100 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
1102         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
1103         when there are values for both file and line.  (Bug#5060)
1105 2009-12-14  Juri Linkov  <juri@jurta.org>
1107         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
1108         whitespace after the file name of the first line of unified format,
1109         because git-diff doesn't output whitespace and file modification time
1110         after the file name.
1112 2009-12-14  David Kastrup  <dak@gnu.org>
1114         * info.el (Info-hide-cookies-node): Before hiding a cookie,
1115         check if it already has the `display' property added by
1116         `Info-display-images-node', and not put the `invisible' property
1117         in this case.
1119 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
1121         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
1122         (semantic-mru-bookmark-mode): Doc fixes.
1124         * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
1125         of assert.
1127 2009-12-13  Glenn Morris  <rgm@gnu.org>
1129         * mail/emacsbug.el (message-sort-headers): Define for compiler.
1130         (report-emacs-bug): In message-mode, sort manually before storing
1131         original report text.  (Bug#5178)
1132         Remove superfluous save-excursion.
1134 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
1136         * net/dbus.el (dbus-property-handler): Filter lambda forms out
1137         when responding to "GetAll" properties.
1139 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
1141         * simple.el (compose-mail): Remove mail-setup-with-from from
1142         customization checks.
1144 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
1146         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
1147         RAR archives created on Unix systems.
1149 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1151         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
1152         the varalias that was accidentally removed by the 2009-11-19 change
1153         (bug#5186).
1155 2009-12-12  Kenichi Handa  <handa@m17n.org>
1157         * language/indian.el (indian-compose-regexp): New function.
1158         (malayalam-composable-pattern): Fix the pattern.
1159         (composition-function-table): Set malayalam-composable-pattern for
1160         Malayalam characters.
1162 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
1164         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
1165         rather than down-mouse-1, based on follow-link conventions.
1167         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
1168         are compiled.
1170 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
1172         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
1173         (verilog-vmm-statement-re, verilog-ovm-statement-re)
1174         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
1175         (verilog-leap-to-head, verilog-backward-token):
1176         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
1178 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
1180         * progmodes/verilog-mode.el (verilog-auto-lineup)
1181         (verilog-nameable-item-re): Cleanup user-visible spelling and
1182         documentation errors.  One reported by Gary Delp.
1183         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
1184         (verilog-read-decls): Fix AUTOWIRE with types declared in a
1185         package, bug195.  Reported by Pierre-David Pfister.
1187 2009-12-11  Glenn Morris  <rgm@gnu.org>
1189         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
1191         * mail/emacsbug.el: No longer require sendmail.
1192         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
1193         (report-emacs-bug-orig-text): Doc fix.
1194         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
1195         New local variables, to adapt to different mail-user-agents.
1196         (report-emacs-bug): Fix test for a gnu.org address.
1197         Use overlays for emphasis, since font-lock defeats 'face property.
1198         Pretest bugs also end up at the newsgroup these days.
1199         Stop message-mode stripping text properties.
1200         Set and use the new buffer-local variables.
1201         (report-emacs-bug-hook): Add doc-string.
1202         Remove some unnecessary save-excursions and simplify.
1203         Use the appropriate hook and send-command.
1205         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
1206         capitalization of some menu entries.
1208 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1210         * whitespace.el (whitespace-display-char-on): Ensure
1211         `buffer-display-table' is unique when two or more windows are
1212         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
1213         New version 12.1.
1215 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
1217         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
1218         characters in the Attribute field.
1220 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
1222         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
1224 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1226         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
1227         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
1228         Disregard autoload-excludes.
1229         (update-directory-autoloads): Obey autoload-excludes here instead.
1230         But don't store its contents in no-autoloads and remove entries that
1231         refer to excludes files.
1233 2009-12-10  Glenn Morris  <rgm@gnu.org>
1235         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
1236         (expand-mail-aliases): Define for compiler.
1238         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
1239         Define for compiler.
1241         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
1242         appropriate for the mail-user-agent in use.
1244 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
1246         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
1248 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
1250         Fix short log parsing and fontification.
1251         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
1252         Fix fontification for the [merge] label.
1254 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
1256         Drop some properties to avoid surprises.
1257         * htmlfontify.el (hfy-ignored-properties): New defcustom.
1258         (hfy-fontify-buffer): Use it.
1260 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1262         Minor cleanup.
1263         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
1264         Adjust all callers.
1265         (ffap-locate-file): Remove unused arg `dir-ok' and make other
1266         args compulsory.  Adjust callers.
1267         (ffap-gopher-at-point): Remove unused var `name'.
1269         Get rid of the ELCFILES abomination.
1270         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
1271         (compile-elcfiles): New phony target.
1272         (compile-main): Compute ELCFILES dynamically.
1273         (compile-clean): New target to remove left-over elc files.
1274         (compile, all): Use it.
1276 2009-12-09  Kenichi Handa  <handa@etlken>
1278         * international/mule-diag.el: Require help-mode instead of help-fns.
1280 2009-12-09  Kenichi Handa  <handa@m17n.org>
1282         * international/mule-cmds.el (ucs-names): Supply sufficiently
1283         fine ranges instead of pre-calculating accurate ranges.
1284         Iterate with bigger gc-cons-threshold.
1286 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
1288         Add support for stashing a snapshot of the current tree.
1289         * vc-git.el (vc-git-stash-snapshot): New function.
1290         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
1292 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
1294         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
1295         instead of `(beginning|end)-of-line'.
1297 2009-12-08  Glenn Morris  <rgm@gnu.org>
1299         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
1301         * Makefile.in (ELCFILES): Regenerate.
1303 2009-12-07  Juri Linkov  <juri@jurta.org>
1305         Don't lazy-highlight the comint output in history Isearch mode.
1307         * comint.el (comint-history-isearch-search): Instead of
1308         `comint-line-beginning-position', use `comint-after-pmark-p'
1309         to check if point if before the process mark, and go to
1310         `process-mark' in this case.
1312 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1314         * textmodes/tex-mode.el (latex-complete)
1315         (latex-indent-or-complete): Remove.
1316         (latex-mode): Set completion-at-point-functions instead.
1318         Provide a standard completion command and hook it into TAB.
1319         * minibuffer.el (completion-at-point-functions): New var.
1320         (completion-at-point): New command.
1321         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
1322         * progmodes/python.el (python-mode-map): Use completion-at-point.
1323         (python-completion-at-point): Rename from python-partial-symbol and
1324         adjust for use in completion-at-point-functions.
1325         (python-mode): Setup completion-at-point for Python completion.
1326         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
1327         extracted from lisp-complete-symbol.
1328         (lisp-complete-symbol): Use it.
1329         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
1330         setup completion-at-point for Elisp completion.
1331         (emacs-lisp-mode-map, lisp-interaction-mode-map):
1332         Use completion-at-point.
1333         * ielm.el (ielm-map): Use completion-at-point.
1334         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
1335         * progmodes/sym-comp.el: Move to...
1336         * obsolete/sym-comp.el: Move from progmodes.
1338 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
1340         Prevent save-buffer in Rmail buffers from using the coding-system
1341         of the current message, and from clobbering the encoding mnemonics
1342         in the mode line (Bug#4623).
1344         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
1345         flag, too.
1346         (rmail-message-encoding): New variable.
1347         (rmail-write-region-annotate): Record the encoding of the current
1348         message in rmail-message-encoding.
1349         (rmail-after-save-hook): New function, restores the encoding of
1350         the current message after the message collection is saved.
1352 2009-12-07  Juri Linkov  <juri@jurta.org>
1354         * progmodes/grep.el (grep-read-files): Use `completing-read'
1355         instead of `read-string'.  Set its `collection' arg to
1356         `read-file-name-internal'.  (Bug#4301)
1358 2009-12-07  Juri Linkov  <juri@jurta.org>
1360         Correctly restore original Isearch point.  (Bug#4994)
1362         * isearch.el (isearch-mode): Move `isearch-push-state' after
1363         `(run-hooks 'isearch-mode-hook)'.
1364         (isearch-cancel): When `isearch-push-state-function' is defined,
1365         let-bind `isearch-cmds' to the first state (the last element of
1366         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
1367         function and restores the original point).  Otherwise, move point
1368         to `isearch-opoint'.
1370 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1372         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
1373         chars that don't have names, so the table can be built much faster at
1374         run-time.
1376 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
1378         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
1379         change.  Suggested by David Kastrup.
1381         * simple.el (compose-mail): Check for incompatibilities and warn.
1382         (compose-mail-user-agent-warnings): New option.
1384 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
1386         Support showing a single log entry from vc-annotate.
1387         * vc.el (print-log): Add a new argument: START-REVISION.
1388         (vc-print-log-internal): Add a new optional argument and
1389         pass it to the backend.
1390         (vc-print-log, vc-print-root-log): Adjust callers.
1391         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
1392         buffer already displays the requested log entry, use it.
1393         Otherwise display only the log entry in question.
1394         * vc-svn.el (vc-svn-print-log):
1395         * vc-mtn.el (vc-mtn-print-log):
1396         * vc-hg.el (vc-hg-state):
1397         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
1398         (vc-git-show-log-entry): Return t on success.
1399         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
1400         (vc-bzr-show-log-entry): Return t on success.
1401         * vc-rcs.el (vc-rcs-print-log):
1402         * vc-sccs.el (vc-sccs-print-log):
1403         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
1405 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
1407         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
1408         Add menus to the meta mode.  (Bug#5043)
1410 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
1412         * ediff-init.el (ediff-event-key): Use event-to-character instead of
1413         event-key.
1415         * ediff.el (ediff-buffers-internal): Add unwind-protect.
1417 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
1419         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
1420         Berbain <raphael.berbain@gmail.com>.
1422         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
1423         characters.
1424         (tramp-initial-end-of-output): New defconst.
1425         (tramp-methods, tramp-find-shell)
1426         (tramp-open-connection-setup-interactive-shell)
1427         (tramp-maybe-open-connection): Use it.
1428         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
1429         existence of `#' and `$'.
1431         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
1432         `tramp-initial-end-of-output'.
1434 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
1436         Get the background mode from the terminal for xterm, and set
1437         faces accordingly.
1438         * term/xterm.el (xterm-set-background-mode): New function.
1439         (terminal-init-xterm): Use it in case xterm supports background
1440         color queries.  Recompute faces after getting the background
1441         color.
1443 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
1445         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
1446         number comment back on its own line, for easier parsing.
1448 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1450         Make it work for non-file buffers (bug#5102).
1451         * doc-view.el (doc-view-current-cache-dir):
1452         Use doc-view-buffer-file-name rather than buffer-file-name.
1453         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
1455 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
1457         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
1458         author field is too short.
1460 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
1462         * vc-git.el (vc-git-print-log): Handle a limit argument.
1463         Display the short log in graph form and with labels.
1464         (vc-git-log-view-mode): Handle labels.
1466         Make vc-revert change VC state from 'added to 'unregistered.
1467         * vc-git.el (vc-git-revert): Call git reset first.
1469 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
1471         * net/newst-backend.el, net/newst-plainview.el:
1472         * net/newst-reader.el, net/newst-ticker.el:
1473         * net/newst-treeview.el, net/newsticker.el:
1474         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
1476 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
1478         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
1480         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
1481         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
1482         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
1483         Update annotation regexp.
1485         * simple.el (beginning-of-visual-line): Constrain to field
1486         boundaries (Bug#5106).
1488 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
1490         * xml.el (xml-substitute-numeric-entities): Move
1491         newsticker--decode-numeric-entities in newst-backend.el to
1492         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
1493         * net/newst-backend.el (newsticker--parse-generic-feed)
1494         (newsticker--parse-generic-items)
1495         (newsticker--decode-numeric-entities): Move
1496         newsticker--decode-numeric-entities in newst-backend.el to
1497         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
1499 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
1501         * progmodes/js.el (js--js-not): Add null to the list of values.
1503 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
1505         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
1507 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
1509         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
1510         delimiter if it is at the end of the current line.
1511         (bibtex-generate-url-list): Fix docstring.
1513 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1515         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
1516         minibuffer's content with itself.
1517         Fold the confirm-after-completion case into the `confirm' case.
1518         (completion-pcm-word-delimiters): Add : and / to the delimiters.
1520 2009-12-06  Kevin Ryde  <user42@zip.com.au>
1522         * ffap.el (ffap-rfc-path): Make this a defcustom since
1523         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
1525         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
1526         manuals, similar to existing setup for help-mode.  (Bug#3913.)
1528 2009-12-05  Juri Linkov  <juri@jurta.org>
1530         Save and restore dired buffer's point positions too.  (Bug#4880)
1532         * dired.el (dired-save-positions): Return in the first element
1533         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
1534         Doc fix.
1535         (dired-restore-positions): First restore buffer's position.
1536         While restoring window's positions, check if window still displays
1537         the original buffer.
1539 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
1541         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
1542         if possible.
1544         * cedet/semantic/ia.el (semantic-ia-complete-symbol):
1545         Make argument optional.
1547         * shell.el (shell): Require ansi-color (Bug#5113).
1549         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
1551         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
1553 2009-12-05  Alan Mackenzie  <acm@muc.de>
1555         * progmodes/cc-mode.el (c-before-hack-hook)
1556         (c-postprocess-file-styles): Revert change 1.85 to permit
1557         `c-file-style' to work again.  This reversion restores the current
1558         software to its state in Emacs 23.1.  (Bug#4146)
1560 2009-12-05  Kevin Ryde  <user42@zip.com.au>
1562         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
1563         comment-start-skip to comment-end-skip as comment (Bug#4781).
1565 2009-12-05  Juri Linkov  <juri@jurta.org>
1567         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
1568         for virtual nodes.  (Bug#4147)
1569         (Info-find-node-2): Set `Info-current-node-virtual' to nil
1570         when moving from a virtual node.
1571         (Info-mode-menu): Add `Info-virtual-index' to the menu.
1572         (Info-mode): Add `Info-virtual-index' to the docstring.
1574 2009-12-05  Eric Ludlam  <zappo@gnu.org>
1576         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
1577         Describe project macro symbols.
1579         * cedet/semantic/complete.el (semantic-complete-do-completion):
1580         Don't call semantic-collector-current-exact-match.
1582         * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
1583         ede-objects as targets.
1585         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
1586         a target's object list even if compiler vars are already in the
1587         Makefile.
1589         * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
1590         list of headers producing necessary macros.
1592 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
1594         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
1595         track of the buffer position of the end of a BibTeX entry as this
1596         position may change during reformatting.
1597         (bibtex-format-entry): Remove whitespace before processing
1598         numerical fields so that we recognize the latter properly.
1599         (bibtex-reformat): Do not use push which changes the global value
1600         of bibtex-entry-format.
1601         (bibtex-field-braces-alist, bibtex-field-strings-alist)
1602         (bibtex-field-re-init): Replace only space characters by regexp
1603         for whitespace.
1604         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
1605         (bibtex-initialize): Also update bibtex-strings.
1606         (bibtex-kill-field): Preserve white space at end of entry.
1607         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
1608         Update bibtex-reference-keys.
1610 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1612         * minibuffer.el (completion-pcm--merge-try): Also consider placing
1613         point after a star, if that's the only place where modifications can
1614         make progress.
1616 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
1618         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
1619         in docstrings.
1621 2009-12-04  Juri Linkov  <juri@jurta.org>
1623         * proced.el (proced): Call `(proced-update t)' to update process
1624         information instead of only running proced-post-display-hook.
1625         (proced-send-signal): Add a leading space to the buffer name
1626         " *Marked Processes*" to make this buffer ephemeral.
1628 2009-12-04  Juri Linkov  <juri@jurta.org>
1630         * dired.el (dired-auto-revert-buffer): New defcustom.
1631         (dired-internal-noselect): Use it.
1633 2009-12-04  Juri Linkov  <juri@jurta.org>
1635         Change roles of modes and functions in image-mode.el (Bug#5062).
1637         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
1638         in `auto-mode-alist'.
1639         (image-mode-previous-major-mode): New variable.
1640         (image-minor-mode-map): Rename from `image-mode-text-map'.
1641         (image-mode): Move graceful error-handling code from
1642         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
1643         (image-minor-mode): Remove all image-handling code.
1644         Replace `image-mode-text-map' with `image-minor-mode-map'.
1645         Check for `image-type' in mode-line format string.
1646         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
1647         (image-mode-as-text): New function with most code from
1648         `image-mode-maybe'.
1649         (image-toggle-display-text): Move code that removes image
1650         properties from `image-toggle-display' to here.
1651         (image-toggle-display-image): New function with code that adds
1652         image properties copied from `image-toggle-display'.
1653         (image-toggle-display): Remove most code with leaving only code
1654         that toggles between `image-mode-as-text' and `image-mode'.
1656 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
1658         * net/newst-treeview.el
1659         (newsticker--treeview-list-highlight-start): Restored call to
1660         save-excursion: Selected item was stuck.
1661         (newsticker--treeview-list-select): New.
1662         (newsticker--treeview-item-show-text)
1663         (newsticker--treeview-item-show)
1664         (newsticker--treeview-item-update): Use new
1665         newsticker-treeview-item-mode.
1666         (newsticker-treeview-update): Keep current item.
1667         (newsticker-treeview-next-new-or-immortal-item): Doc change.
1668         (newsticker--treeview-first-feed): Doc change.
1669         (newsticker-treeview-list-menu)
1670         (newsticker-treeview-item-menu): Added menu entries.
1671         (newsticker-treeview-item-mode): New.
1673         * net/newst-backend.el (newsticker-customize): Delete other
1674         windows.
1676 2009-12-04  Sam Steingold  <sds@gnu.org>
1678         * log-view.el (log-view-mode-map): "q" calls quit-window,
1679         like in all the other non-self-insert buffers.
1681 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
1683         Minor cleanup.
1684         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
1685         key decoding rather than do it manually via last-input-event +
1686         ascii-character.
1687         (term-exec): Use delete-and-extract-region.
1688         (term-handle-ansi-terminal-messages): Remove unused var `end'.
1689         (term-process-pager): Remove unused var `i'.
1690         (term-dynamic-simple-complete): Make obsolete.
1691         (serial-update-config-menu): Remove unused vars `y' and `str'.
1692         (term-update-mode-line): Remove unused var `temp'.
1694 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
1696         Limit the number of log entries displayed by default.
1697         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
1698         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
1699         using a prefix argument.
1701 2009-12-03  Glenn Morris  <rgm@gnu.org>
1703         * progmodes/idlwave.el (class): Restore still useful declaration.
1705 2009-12-03  Alan Mackenzie  <acm@muc.de>
1707         Enhance `c-parse-state' to run efficiently in "brace deserts".
1709         * progmodes/cc-mode.el (c-basic-common-init):
1710         Call c-state-cache-init.
1711         (c-neutralize-syntax-in-and-mark-CPP): Rename from
1712         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
1713         placing `category' properties value 'c-cpp-delimiter at its boundaries.
1715         * progmodes/cc-langs.el (c-before-font-lock-function):
1716         c-extend-and-neutralize-syntax-in-CPP has been renamed
1717         c-neutralize-syntax-in-and-mark-CPP.
1719         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
1720         with `category' properties now, not `syntax-table' ones.
1722         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
1723         enhanced (but slower) version of c-end-of-macro that won't land
1724         inside a literal or on another awkward character.
1725         (c-state-cache-too-far, c-state-cache-start)
1726         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
1727         (c-state-nonlit-pos-cache-limit, c-state-point-min)
1728         (c-state-point-min-lit-type, c-state-point-min-lit-start)
1729         (c-state-min-scan-pos, c-state-brace-pair-desert)
1730         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
1731         buffer local variables.
1732         (c-state-literal-at, c-state-lit-beg)
1733         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
1734         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
1735         (c-state-cache-top-paren, c-state-cache-after-top-paren)
1736         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
1737         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
1738         (c-renarrow-state-cache)
1739         (c-append-lower-brace-pair-to-state-cache)
1740         (c-state-push-any-brace-pair, c-append-to-state-cache)
1741         (c-remove-stale-state-cache)
1742         (c-remove-stale-state-cache-backwards, c-state-cache-init)
1743         (c-invalidate-state-cache-1, c-parse-state-1)
1744         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
1745         (c-parse-state): Enhance and refactor.
1746         (c-debug-parse-state): Amend to deal with all the new variables.
1748         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
1749         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
1750         modify to use category text properties rather than syntax-table ones.
1751         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
1752         to switch off/on the syntactic paren property of C++ template
1753         delimiters using the category property.
1754         (c-with-<->-as-parens-suppressed): Macro to invoke code with
1755         template delims suppressed.
1756         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
1757         New constant/macros which apply category properties to the start
1758         and end of preprocessor constructs.
1759         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
1760         "comment out" the syntactic value of characters in preprocessor
1761         constructs.
1762         (c-with-cpps-commented-out)
1763         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
1764         with characters in all or all but one preprocessor constructs
1765         "commented out".
1767 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
1769         * proced.el (proced-filter-alist): Use regexp-quote.
1771 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
1773         Cleanup.
1774         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
1775         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
1776         arguments.  Expand `default-directory'.
1778         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
1779         the benefit of returning an expanded localname.
1780         (tramp-tramp-file-p): Handle the case NAME is not a string.
1782 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
1784         Add support for bzr shelve/unshelve.
1785         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
1786         (vc-bzr-extra-menu-map): New variables.
1787         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
1788         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
1789         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
1790         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
1791         (vc-bzr-dir-extra-headers): Display shelves.
1793         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
1795 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1797         * textmodes/bibtex.el (bibtex-complete-internal):
1798         Use completion-in-region.
1799         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
1801 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
1803         Support applying stashes.  Improve UI.
1804         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
1805         (vc-git-stash-apply, vc-git-stash-pop)
1806         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
1807         (vc-git-stash-menu): New functions.
1808         (vc-git-stash-menu-map): New variable.
1809         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
1811 2009-12-03  Glenn Morris  <rgm@gnu.org>
1813         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
1814         (vc-print-log-internal): Fix previous change.
1815         (vc-revert): Correct pluralization.
1817 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1819         * progmodes/make-mode.el (makefile-special-targets-list): No need for
1820         it to be an alist any more.
1821         (makefile-complete): Use completion-in-region.
1823         * progmodes/octave-mod.el (octave-complete-symbol):
1824         Use completion-in-region.
1826         Misc cleanup.
1827         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
1828         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
1829         (idlwave-complete-class): Don't quote lambda.
1830         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
1831         (idlwave-mode-map): Move initialization into declaration.
1832         (idlwave-action-and-binding): Use backquotes.
1833         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
1834         Simplify.
1835         (idlwave-is-pointer-dereference): Remove unused var `pos'.
1836         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
1837         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
1838         `parts', and `all-parts'.
1839         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
1840         (idlwave-convert-xml-system-routine-info): Remove unused string
1841         `version-string'.
1842         (idlwave-display-user-catalog-widget): Use dolist.
1843         (idlwave-scanning-lib): Declare dynamically-scoped var.
1844         (idlwave-scan-library-catalogs): Remove unused var `flags'.
1845         (completion-highlight-first-word-only): Declare to silence bytecomp.
1846         (idlwave-popup-select): Tighten scope of `resp'.
1847         (idlwave-find-struct-tag): Remove unused var `beg'.
1848         (idlwave-after-load-rinfo-hook): Declare.
1849         (idlwave-sintern-class-info): Remove unused var `taglist'.
1850         (idlwave-find-class-definition): Remove unused var `list'.
1851         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
1852         (idlwave-what-module-find-class): Remove unused var `classes'.
1854 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
1856         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
1858 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1860         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
1861         buffers visited.  Remove redundant current-buffer-saving.
1863 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1865         Use completion-in-buffer and remove uses of dynamic scoping.
1866         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
1867         (pascal-buffer-to-use, pascal-flag): Don't declare.
1868         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
1869         (pascal-get-completion-decl, pascal-keyword-completion):
1870         Add `pascal-str' argument, save-excursion,
1871         return the found completions, and don't filter with pascal-pred.
1872         (pascal-completion-cache): New var.
1873         (pascal-completion): Don't switch buffer any more (it was never
1874         necessary).  Don't save-excursion any more (it's done by the called
1875         subroutines).  Use a cache to avoid redundant computations.
1876         Use complete-with-action rather than pascal-completion-response and
1877         let it apply the predicate as well.
1878         (pascal-complete-word): Use completion-in-buffer when
1879         pascal-toggle-completions is nil.
1880         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
1881         not used any more.
1882         (pascal-comp-defun): Don't change buffer any more.
1883         Use complete-with-action rather than pascal-completion-response and
1884         let it apply the predicate as well.
1885         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
1886         when neded.
1888 2009-12-02  Kenichi Handa  <handa@m17n.org>
1890         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
1891         shape for all Indic scripts.
1893 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1895         Use completion-in-buffer.
1896         * wid-edit.el (widget-field-text-end): New function.
1897         (widget-field-value-get): Use it.
1898         (widget-string-complete, widget-file-complete)
1899         (widget-color-complete): Use it and completion-in-region.
1900         (widget-complete): Don't narrow the buffer.
1902 2009-12-02  Glenn Morris  <rgm@gnu.org>
1904         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
1905         (rmail-select-summary): Use rmail-pop-to-buffer.
1906         * mail/rmailsum.el: Replace all pop-to-buffer calls with
1907         rmail-pop-to-buffer, to prevent horizontal splits.
1909         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
1910         save-excursion with save-current-buffer.
1911         Widen before searching.  (Bug#5093)
1912         (diary-list-sexp-entries): Remove superfluous save-excursion.
1914 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
1916         * woman.el (woman-make-bufname): Handle man-pages with "." in the
1917         name.  (Bug#5038)
1919 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
1921         * ido.el (ido-file-internal): Handle filenames at point that do
1922         not have a directory part.  (Bug#5049)
1924 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
1926         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
1927         (mpc-songs-jump-to, mpc-resume): Doc fixes.
1929 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
1931         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
1932         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
1933         any more.
1935 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1937         * comint.el (comint-insert-input): Ignore clicks to the right of
1938         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
1940         * vc.el (vc-print-log-internal): Don't wait for the process to
1941         terminate before setting up the major mode.
1943         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
1944         in case.
1946         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
1947         the last element.
1949         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
1951 2009-12-01  Glenn Morris  <rgm@gnu.org>
1953         * window.el (window--display-buffer-2): Fix previous changes.
1955 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
1957         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
1959 2009-12-01  Glenn Morris  <rgm@gnu.org>
1961         * Makefile.in (ELCFILES): Add mpc.elc.
1963 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1965         * mpc.el: New file.
1967 2009-12-01  Glenn Morris  <rgm@gnu.org>
1969         * window.el (window-to-use): Define for compiler.
1971         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
1972         consistent with others (no final period).
1974         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
1975         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
1977 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
1979         Make vc-print-log buttons work.
1980         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
1982 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
1984         * savehist.el (savehist-autosave-interval): Allow setting to nil
1985         through customize.  (Bug#5056)
1987 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
1989         Fix references to jit-lock properties.
1990         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
1991         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
1992         (perl-font-lock-special-syntactic-constructs):
1993         Quote jit-lock-defer-multiline property.
1995 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
1997         * vc-git.el (vc-git-registered): Call vc-git-root only once.
1999 2009-11-30  Juri Linkov  <juri@jurta.org>
2001         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
2002         value `buffer' of `multi-isearch-next-buffer-current-function'.
2003         Use `(current-buffer)' when `buffer' is nil.
2004         (multi-isearch-next-buffer-from-list): Don't fallback to
2005         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
2007 2009-11-30  Juri Linkov  <juri@jurta.org>
2009         * misearch.el (multi-isearch-read-buffers): Move canonicalization
2010         of buffers with `get-buffer' to `multi-isearch-buffers'.
2011         (multi-isearch-buffers, multi-isearch-buffers-regexp):
2012         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
2013         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
2014         FILES with `expand-file-name' converting relative file names
2015         to absolute.  Doc fix.  (Bug#4727)
2017 2009-11-30  Juri Linkov  <juri@jurta.org>
2019         * misearch.el (multi-isearch-read-buffers)
2020         (multi-isearch-read-matching-buffers): New functions.
2021         (multi-isearch-buffers, multi-isearch-buffers-regexp):
2022         Use them in the `interactive' spec.  Doc fix.
2023         (multi-isearch-read-files, multi-isearch-read-matching-files):
2024         New functions.
2025         (multi-isearch-files, multi-isearch-files-regexp):
2026         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
2028 2009-11-30  Juri Linkov  <juri@jurta.org>
2030         * doc-view.el (doc-view-continuous):
2031         Rename from `doc-view-continuous-mode'.
2032         (doc-view-menu): Move "Toggle display" to the top.
2033         Add submenu "Continuous" with radio buttons "Off"/"On"
2034         and "Save as Default".
2035         (doc-view-scroll-up-or-next-page)
2036         (doc-view-scroll-down-or-previous-page)
2037         (doc-view-next-line-or-next-page)
2038         (doc-view-previous-line-or-previous-page): Rename
2039         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
2041 2009-11-30  Juri Linkov  <juri@jurta.org>
2043         * comint.el (comint-mode-map): Rebind `M-r' from
2044         `comint-previous-matching-input' to
2045         `comint-history-isearch-backward-regexp'.
2046         Unbind `M-s' to allow global key binding `M-s'.
2047         Add menu items for `comint-history-isearch-backward' and
2048         `comint-history-isearch-backward-regexp'.  (Bug#3746)
2050 2009-11-30  Juri Linkov  <juri@jurta.org>
2052         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
2053         For def=recenter, replace `recenter' with `recenter-top-bottom'
2054         that is called with `this-command' and `last-command' let-bound
2055         to `recenter-top-bottom'.  When the last `def' was not `recenter',
2056         set `recenter-last-op' to nil.  (Bug#4981)
2058 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2060         Minor cleanup and simplification.
2061         * filecache.el (file-cache-add-directory)
2062         (file-cache-add-directory-recursively)
2063         (file-cache-add-from-file-cache-buffer)
2064         (file-cache-delete-file-regexp, file-cache-delete-directory)
2065         (file-cache-files-matching-internal, file-cache-display): Use dolist.
2066         (file-cache-temp-minibuffer-message): Delete function.
2067         (file-cache-minibuffer-complete): Use minibuffer-message instead.
2069         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
2070         Don't signal an error when bumping into EOB in tr, s, or y.
2072 2009-11-29  Juri Linkov  <juri@jurta.org>
2074         * startup.el (fancy-about-text): Fix wording of Guided Tour.
2075         (Bug#4960)
2077         * descr-text.el (describe-char-unidata-list): Use lowercase name
2078         for "Unicode name" like in other tags.
2080 2009-11-29  Juri Linkov  <juri@jurta.org>
2082         * ediff-util.el (ediff-minibuffer-with-setup-hook):
2083         New compatibility macro.
2084         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
2086 2009-11-29  Juri Linkov  <juri@jurta.org>
2088         Add defcustom to define the cycling order of `recenter-top-bottom'.
2089         (Bug#4981)
2091         * window.el (recenter-last-op): Doc fix.
2092         (recenter-positions): New defcustom.
2093         (recenter-top-bottom): Rewrite to use `recenter-positions'.
2094         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
2096 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
2098         Improve integration of Tramp and ange-ftp in eshell.
2100         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
2101         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
2102         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
2104         * eshell/esh-util.el (top): Require also Tramp when compiling.
2105         (eshell-directory-files-and-attributes): Check for FTP remote
2106         connection.
2107         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
2108         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
2109         (eshell-file-attributes): Handle ".".  Return `entry'.
2111         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
2112         (ange-ftp-directory-files-and-attributes)
2113         (ange-ftp-real-directory-files-and-attributes): New defuns.
2115         * net/tramp.el (tramp-maybe-open-connection): Open the remote
2116         shell with "exec" when possible.  This prevents trailing prompts
2117         in `start-file-process'.
2119 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2121         Try and remove assumptions about point-min==1.
2122         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
2123         (rng-compute-mode-line-string): Show the validation percentage in
2124         terms of the narrowed text, not the widened text.
2125         (rng-do-some-validation): Don't catch internal errors when debugging.
2126         (rng-first-error): Simplify.
2127         (rng-after-change-function): Remove work around.  AFAIK the bug has
2128         been fixed a while ago.
2130         * image-mode.el (image-minor-mode): Exit more gracefully when the image
2131         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
2133         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
2135         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
2136         `cd' doesn't always do it for us (bug#5067).
2138         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
2139         on 2009-10-25 as part of some other change (bug#5067).
2141 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2143         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
2144         `suspicious'.
2145         (byte-compile-warnings): Use byte-compile-warning-types.
2146         (byte-compile-save-excursion): Warn about use of set-buffer right
2147         after save-excursion.
2149         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
2150         the excursion as well.
2152 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
2154         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
2155         providing a Tramp related implementation of "su" and "sudo".
2156         (eshell-unix-initialize): Add "su" and "sudo".
2158 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
2160         * net/socks.el (socks-send-command): Convert binary request to
2161         unibyte before sending.  This fixes mishandling of some port
2162         numbers such as 129.
2164 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2166         * help.el (describe-bindings-internal): Remove `interactive'.
2168         * man.el (Man-completion-table): Trim a terminating "(".
2169         Remove the space between name page a section.
2170         Add the command's description on the `help-echo' property.
2171         Remove `process-connection-type' binding since it's unused by
2172         call-process.
2173         Provide completion for the "<section> <name>" format as well.
2174         (Man-default-man-entry): Remove spurious var shadowing the argument.
2176 2009-11-26  Kevin Ryde  <user42@zip.com.au>
2178         * log-view.el: Add "Keywords: tools", since its other keywords
2179         aren't in finder-known-keywords, and following vc.el.
2181         * sha1.el (sha1-string-external): default-directory "/" in case
2182         otherwise non-existent.  process-connection-type pipe for touch of
2183         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
2185 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2187         Misc coding convention cleanups.
2188         * htmlfontify.el (hfy-init-kludge-hook): Rename from
2189         hfy-init-kludge-hooks.
2190         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
2191         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
2192         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
2193         and push.
2194         (hfy-slant, hfy-weight): Use tables rather than code.
2195         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
2196         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
2197         (hfy-face-attr-for-class): Initialize `face-spec' directly.
2198         (hfy-face-to-css): Remove `nconc' with single arg.
2199         (hfy-p-to-face-lennart): Use `or'.
2200         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
2201         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
2202         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
2203         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
2204         (hfy-force-fontification): Use run-hooks.
2206 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
2208         Various minor fixes.
2209         * htmlfontify.el (hfy-default-header): Add toggle_invis since
2210         Javascript belongs in the header, not the body.
2211         (hfy-javascript): Remove.
2212         (hfy-fontify-buffer): Don't insert it any more.
2213         (hfy-face-at): Handle (face0 face1 face2) style face properties.
2214         Fix bug in invis handling when there were no invis props in a chunk.
2216 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2218         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
2220 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
2222         * finder.el (finder-mode-map): Add a menu.
2224 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
2226         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
2227         "unsigned" structs.
2229         (verilog-leap-to-head, verilog-backward-token): Handle "disable
2230         fork" statement better.
2232 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
2234         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
2235         (verilog-delete-auto, verilog-delete-empty-auto-pair)
2236         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
2237         Reported by Clay Douglass.
2239         (verilog-auto-inst, verilog-auto-star-safe)
2240         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
2241         Fix removing "// Interfaces" when saving .* expansions.  Reported by
2242         Pierre-David Pfister.
2244 2009-11-26  Glenn Morris  <rgm@gnu.org>
2246         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
2247         the scope.
2249 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
2251         * vc-annotate.el (vc-annotate-revision-previous-to-line):
2252         Really use previous revision.
2254 2009-11-25  Kevin Ryde  <user42@zip.com.au>
2256         * man.el (Man-completion-table): default-directory "/" in case
2257         doesn't otherwise exist.  process-environment COLUMNS=999 so as
2258         not to truncate long names.  process-connection-type pipe to avoid
2259         any chance of hitting the pseudo-tty TIOCGWINSZ.
2260         (man): completion-ignore-case t for friendliness and since man
2261         itself is case-insensitive on the command line.
2262         Further to Bug#3717.
2264         * arc-mode.el: Add "Keywords: files", so the details in its
2265         commentary can be reached from finder-by-keyword.
2266         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
2267         editing mode, but it's comms related and sgml-mode.el has "comm"
2268         on that basis too.
2269         * textmodes/bibtex-style.el: Add "Keywords: tex".
2270         * international/isearch-x.el, international/ja-dic-cnv.el:
2271         * international/ja-dic-utl.el, international/kkc.el:
2272         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
2274 2009-11-25  Juri Linkov  <juri@jurta.org>
2276         * man.el (Man-completion-table): Modify regexp to include
2277         section names to completion strings.  (Bug#3717)
2279 2009-11-25  Juri Linkov  <juri@jurta.org>
2281         Search recursively in gzipped files.  (Bug#4982)
2283         * progmodes/grep.el (grep-highlight-matches): Add new options
2284         `always' and `auto'.  Doc fix.
2285         (grep-process-setup): Check `grep-highlight-matches' for
2286         `auto-detect' to determine the need to compute grep defaults.
2287         Move Windows/DOS specific --colors settings handling
2288         to `grep-compute-defaults'.  Check `grep-highlight-matches'
2289         to get the value of "--color=".
2290         (grep-compute-defaults): Compute `grep-highlight-matches' when it
2291         has the value `auto-detect'.  Move Windows/DOS specific settings
2292         from `grep-process-setup'.
2293         (zrgrep): New command with alias `rzgrep'.
2295 2009-11-25  Juri Linkov  <juri@jurta.org>
2297         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
2298         to nil instead of switching off view-mode.  (Bug#4896)
2300 2009-11-25  Juri Linkov  <juri@jurta.org>
2302         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
2304         * mwheel.el (mwheel-scroll-up-function)
2305         (mwheel-scroll-down-function): New defvars.
2306         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
2307         `scroll-up', and `mwheel-scroll-down-function' instead of
2308         `scroll-down'.
2310         * doc-view.el (doc-view-scroll-up-or-next-page)
2311         (doc-view-scroll-down-or-previous-page): Add optional ARG.
2312         Use this ARG in the call to image-scroll-up/image-scroll-down.
2313         Change `interactive' spec to "P".  Goto next/previous page only
2314         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
2315         SPC/DEL case).  Doc fix.
2316         (doc-view-next-line-or-next-page)
2317         (doc-view-previous-line-or-previous-page): Rename arg to ARG
2318         for consistency.
2319         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
2320         `doc-view-scroll-up-or-next-page', and buffer-local
2321         `mwheel-scroll-down-function' to
2322         `doc-view-scroll-down-or-previous-page'.
2324 2009-11-25  Juri Linkov  <juri@jurta.org>
2326         Provide additional default values (directories at other Dired
2327         windows) via M-n in the minibuffer of some Dired commands.
2329         * dired-aux.el (dired-diff, dired-compare-directories)
2330         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
2331         `minibuffer-default' in `minibuffer-with-setup-hook'.
2332         (dired-dwim-target-directory): Find a window that displays Dired
2333         buffer instead of failing when the next window is not Dired.
2334         Use `get-window-with-predicate' to find for the next Dired window.
2335         (dired-dwim-target-defaults): New function.
2337         * ediff-util.el (ediff-read-file-name):
2338         Use `dired-dwim-target-defaults' to set `minibuffer-default'
2339         in `minibuffer-with-setup-hook'.
2341 2009-11-25  Juri Linkov  <juri@jurta.org>
2343         Provide additional default values (file name at point or at the
2344         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
2346         * minibuffer.el (read-file-name-defaults): New function.
2347         (read-file-name): Reset `minibuffer-default' to nil when
2348         it duplicates initial input `insdef'.
2349         Bind `minibuffer-default-add-function' to lambda that
2350         calls `read-file-name-defaults' in `minibuffer-selected-window'.
2351         (minibuffer-insert-file-name-at-point): New command.
2353         * files.el (file-name-at-point-functions): New defcustom.
2354         (find-file-default): Remove defvar.
2355         (find-file-read-args): Don't use `find-file-default'.
2356         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
2357         to `read-file-name'.
2358         (find-file-literally): Use `read-file-name' with
2359         `confirm-nonexistent-file-or-buffer'.
2361         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
2363         * dired.el (dired-read-dir-and-switches):
2364         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
2365         to `read-file-name'.
2366         (dired-file-name-at-point): New function.
2367         (dired-mode): Add hook `dired-file-name-at-point' to
2368         `file-name-at-point-functions'.
2370 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2372         Really make the *Completions* window soft-dedicated (bug#5030).
2373         * window.el (window--display-buffer-2): Add `dedicated' argument.
2374         (display-buffer): Pass it when needed so the dedicated flag is set
2375         after calling set-window-buffer, which would otherwise reset it.
2377 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2379         * progmodes/meta-mode.el (meta-complete-symbol):
2380         * progmodes/etags.el (complete-tag):
2381         * mail/mailabbrev.el (mail-abbrev-complete-alias):
2382         Use completion-in-region.
2384         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
2385         (dabbrev-completion): Use completion-in-region.
2386         (dabbrev--abbrev-at-point): Simplify regexp.
2388         * abbrev.el (abbrev--before-point): Use word-motion functions
2389         if :regexp is not specified (bug#5031).
2391         * subr.el (string-prefix-p): New function.
2393         * man.el (Man-completion-cache): New var.
2394         (Man-completion-table): Use it.
2396         * vc.el (vc-print-log-internal): Make `limit' optional for better
2397         compatibility (e.g. with vc-annotate.el).
2399 2009-11-24  Kevin Ryde  <user42@zip.com.au>
2401         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
2402         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
2404         * emacs-lisp/elint.el (elint-add-required-env): Better error message
2405         when .el source file not found or other error.
2407 2009-11-24  Markus Triska  <markus.triska@gmx.at>
2409         * linum.el (linum-update-window): Ignore intangible (bug#4996).
2411 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2413         Handle the [back] button properly (bug#4979).
2414         * descr-text.el (describe-text-properties): Add a `buffer' argument.
2415         Use help-setup-xref, help-buffer, and with-help-window.
2416         (describe-char): Add `buffer' argument.
2417         Pass proper command to help-setup-xref.  Don't meddle with
2418         help-xref-stack-item directly.
2419         (describe-text-category): Use with-help-window and help-buffer.
2421         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
2422         for the displayed buffer (bug#4887).
2424         * man.el (Man-completion-table): New function.
2425         (man): Use it.
2427 2009-11-24  David Reitter  <david.reitter@gmail.com>
2429         * vc-git.el (vc-git-registered): Use checkout directory (where
2430         .git is) rather than the file's directory and a relative path spec
2431         to work around a bug in git.
2433 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
2435         Improve handling of processes on remote hosts.
2437         * eshell/esh-util.el (eshell-path-env): New defvar.
2438         (eshell-parse-colon-path): New defun.
2439         (eshell-file-attributes): Use `eshell-parse-colon-path'.
2441         * eshell/esh-ext.el (eshell-search-path):
2442         Use `eshell-parse-colon-path'.
2443         (eshell-remote-command): Remove argument HANDLER.
2444         (eshell-external-command): Check for FTP remote connection.
2446         * eshell/esh-proc.el (eshell-gather-process-output):
2447         Use `file-truename', in order to start also symlinked files.
2448         Apply `start-file-process' instead of `start-process'.
2449         Shorten `command' to the local file name part.
2451         * eshell/em-cmpl.el (eshell-complete-commands-list):
2452         Use `eshell-parse-colon-path'.
2454         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
2456         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
2457         to `eshell-directory-change-hook'.
2459 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
2461         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
2462         because it could be enabled automatically if view-read-only is non-nil.
2464 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
2466         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
2467         made on 2009-11-22.
2469 2009-11-24  Glenn Morris  <rgm@gnu.org>
2471         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
2472         deleted variable bookmark-bmenu-bookmark-column.
2474         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
2475         Move after definition of global-semantic-idle-tag-highlight-mode.
2477 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2479         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
2481 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
2483         * net/browse-url.el (browse-url-filename-alist): On Windows, add
2484         two slashes to the "file:" prefix.
2485         (browse-url-file-url): De-munge Cygwin filenames before passing
2486         them to Windows browser.
2487         (browse-url-default-windows-browser): Use call-process.
2489 2009-11-23  Juri Linkov  <juri@jurta.org>
2491         Implement DocView Continuous mode.  (Bug#4896)
2492         * doc-view.el (doc-view-continuous-mode): New defcustom.
2493         (doc-view-mode-map): Bind C-n/<down> to
2494         `doc-view-next-line-or-next-page', C-p/<up> to
2495         `doc-view-previous-line-or-previous-page'.
2496         (doc-view-next-line-or-next-page)
2497         (doc-view-previous-line-or-previous-page): New commands.
2499 2009-11-23  Juri Linkov  <juri@jurta.org>
2501         Implement Isearch in comint input history.  (Bug#3746)
2502         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
2503         `isearch-mode-hook'.
2504         (comint-history-isearch): New defcustom.
2505         (comint-history-isearch-backward)
2506         (comint-history-isearch-backward-regexp): New commands.
2507         (comint-history-isearch-message-overlay): New buffer-local variable.
2508         (comint-history-isearch-setup, comint-history-isearch-end)
2509         (comint-goto-input, comint-history-isearch-search)
2510         (comint-history-isearch-message, comint-history-isearch-wrap)
2511         (comint-history-isearch-push-state)
2512         (comint-history-isearch-pop-state): New functions.
2514 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
2516         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
2517         return.
2518         (tramp-handle-make-symbolic-link)
2519         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
2520         Quote file names.
2521         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
2522         (tramp-handle-process-file): Use it.
2524 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2526         * window.el (move-to-window-line-last-op): Remove.
2527         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
2529 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
2531         Make M-r mirror the new cycling behavior of C-l.
2532         * window.el (move-to-window-line-last-op): New var.
2533         (move-to-window-line-top-bottom): New command.
2534         (global-map): Bind M-r move-to-window-line-top-bottom.
2536 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
2538         * dired-x.el (dired-guess-shell-alist-default):
2539         Support xz format.  (Bug#4953)
2541 2009-11-22  Chong Yidong  <cyd@stupidchicken.com>
2543         * cedet/srecode/map.el (srecode-get-maps):
2544         * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
2545         * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
2546         * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
2547         (semantic-toggle-decoration-style):
2548         * cedet/semantic/decorate/include.el
2549         (semantic-decoration-include-describe)
2550         (semantic-decoration-unknown-include-describe)
2551         (semantic-decoration-unparsed-include-describe)
2552         (semantic-decoration-all-include-summary):
2553         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
2554         * cedet/semantic/analyze/complete.el
2555         (semantic-analyze-possible-completions):
2556         * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
2557         (semantic-show-unmatched-syntax-mode)
2558         (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
2559         (semantic-highlight-func-mode):
2560         * cedet/semantic/util.el (semantic-describe-buffer):
2561         * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
2562         (semantic-symref-find-tags-by-name)
2563         (semantic-symref-find-tags-by-regexp)
2564         (semantic-symref-find-tags-by-completion)
2565         (semantic-symref-find-file-references-by-name)
2566         (semantic-symref-find-text):
2567         * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
2568         (senator-yank-tag):
2569         * cedet/semantic/scope.el (semantic-calculate-scope):
2570         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
2571         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
2572         (define-semantic-idle-service):
2573         * cedet/semantic/complete.el (semantic-complete-analyze-inline)
2574         (semantic-complete-analyze-inline-idle):
2575         * cedet/semantic/analyze.el (semantic-analyze-current-context):
2576         * cedet/mode-local.el (describe-mode-local-bindings)
2577         (describe-mode-local-bindings-in-mode):
2578         * cedet/ede/make.el (ede-make-check-version):
2579         * cedet/ede/locate.el (ede-enable-locate-on-project):
2580         * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
2581         (cedet-idutils-version-check):
2582         * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
2583         (cedet-gnu-global-version-check):
2584         * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
2585         (cedet-cscope-version-check): Use called-interactively-p instead
2586         of interactive-p.
2588         * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
2589         Use semantic-format-tag-prototype.
2591 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
2593         * emulation/viper-cmd.el: Use viper-last-command-char instead of
2594         last-command-char/last-command-event.
2595         (viper-prefix-arg-value): Do correct conversion of event-char for
2596         XEmacs.
2598         * emulation/viper-util.el, emulation/viper.el:
2599         Use viper-last-command-char instead of
2600         last-command-char/last-command-event.
2602         * ediff-init.el, ediff-mult.el, ediff-util.el:
2603         Replace last-command-char and last-command-event
2604         with (ediff-last-command-char) everywhere.
2606         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
2607         created in fundamental mode.
2609         * ediff.el (ediff-version): Revert the change of interactive-p to
2610         called-interactively-p.
2612 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
2614         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
2615         generation from word-movement command names.
2617 2009-11-21  Chong Yidong  <cyd@stupidchicken.com>
2619         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
2620         (semantic-complete-jump-local, semantic-complete-jump):
2621         Improve prompt string.
2623 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
2625         * cus-start.el (all): Add native condition for font-use-system-font.
2627 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
2629         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
2630         Correct the patch from 2009-11-18.  (Bug#3910)
2632 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
2634         * progmodes/subword.el: Rename from lisp/subword.el.
2636         * subword.el: Rename to progmodes/subword.el.
2638         * Makefile.in (ELCFILES): Adapt to subword.el move.
2640 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2641             Stefan Monnier  <monnier@iro.umontreal.ca>
2643         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
2644         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
2645         (bookmark-bmenu-show-filenames): Use push.
2646         (bookmark-bmenu-hide-filenames): Use local var instead of
2647         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
2648         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
2649         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
2650         filenames now that the bookmark names are always available.
2652 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2654         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
2655         (bookmark-search-pattern): Move and leave unbound.
2656         (bookmark-bmenu-mode-map): Change binding.
2657         (bookmark-read-search-input): Simplify.
2658         Don't use text-char-description.  Don't error on non-char events.
2659         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
2660         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
2661         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
2662         Use a local var for the timer.
2663         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
2664         (i.e. bookmark-bmenu-search).
2666 2009-11-21  Glenn Morris  <rgm@gnu.org>
2668         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
2670 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
2672         * net/browse-url.el (browse-url-default-windows-browser):
2673         Use cygstart for cygwin.
2675 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
2677         * bookmark.el: Formatting and doc fixes only:
2678         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
2679         (bookmark-bmenu-search): Wrap to fit within 80 columns.
2680           Minor grammar and punctuation fixes in doc string.
2681         (bookmark-read-search-input): Adjust to fit within 80 columns.
2683 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
2685         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
2686         (c-backward-into-nomenclature): Adapt to subword renaming.
2688         * subword.el (subword-forward, subword-backward, subword-mark)
2689         (subword-kill, subword-backward-kill, subword-transpose)
2690         (subword-downcase, subword-upcase, subword-capitalize)
2691         (subword-forward-internal, subword-backward-internal):
2692         Rename from forward-subword, backward-subword, mark-subword,
2693         kill-subword, backward-kill-subword, transpose-subwords,
2694         downcase-subword, upcase-subword, capitalize-subword,
2695         forward-subword-internal, backward-subword-internal.
2697 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2699         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
2700         New options.
2701         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
2702         New vars.
2703         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
2704         (bookmark-bmenu-filter-alist-by-regexp)
2705         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
2706         (bookmark-bmenu-search): New command.
2707         (bookmark-bmenu-mode-map): Bind it.
2709 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
2711         * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
2713         * cedet/semantic/idle.el (define-semantic-idle-service)
2714         (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
2716 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
2718         * progmodes/cc-cmds.el: declare-functioned forward-subword and
2719         backward-subword to quit the byte-compiler.
2721         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
2723         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
2725         * progmodes/cc-cmds.el (c-update-modeline)
2726         (c-forward-into-nomenclature, c-backward-into-nomenclature):
2727         Refer to subword.el functions instead of cc-subword.el.
2729         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
2730         subword.el functions instead of cc-subword.el.
2732         * progmodes/cc-subword.el: Rename to subword.el.
2733         * subword.el: Rename from progmodes/cc-subword.el.
2734         (subword-mode-map): Rename from c-subword-mode-map.
2735         (subword-mode): Rename from c-subword-mode.
2736         (global-subword-mode): New global minor mode.
2737         (forward-subword): Rename from c-forward-subword.
2738         (backward-subword): Rename from c-backward-subword.
2739         (mark-subword): Rename from c-mark-subword.
2740         (kill-subword): Rename from c-kill-subword.
2741         (backward-kill-subword): Rename from c-backward-kill-subword.
2742         (transpose-subwords): Rename from c-tranpose-subword.
2743         (downcase-subword): Rename from c-downcase-subword.
2744         (capitalize-subword): Rename from c-capitalize-subword.
2745         (forward-subword-internal): Rename from c-forward-subword-internal.
2746         (backward-subword-internal): Rename from c-backward-subword-internal.
2748 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
2750         * vc.el (vc-deduce-fileset): Allow non-state changing operations
2751         from a dired buffer.
2752         (vc-dired-deduce-fileset): New function.
2753         (vc-root-diff, vc-print-root-log): Use it.
2755         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
2756         nil LIMIT argument to vc-print-log-internal.
2758 2009-11-20  Glenn Morris  <rgm@gnu.org>
2760         * Makefile.in (ELCFILES): Regenerate.
2762 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
2764         * cedet/cedet.el (cedet-menu-map): Re-order menu items.
2766         * cedet/semantic.el: Enable idle-mode menu items only if
2767         global-semantic-idle-scheduler-mode is enabled.
2768         (semantic-default-submodes): Doc fix.
2770         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
2771         When turning off, disable other idle modes.
2773 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
2775         * calc/calc.el (calc-set-mode-line):
2776         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
2777         (math-format-number): Rename `math-format-complement-signed' to
2778         `math-format-twos-complement'.
2780         * calc/calc-bin.el (math-format-twos-complement): Rename from
2781         math-format-complement-signed.
2782         (calc-radix): Rename `calc-complement-signed-mode' to
2783         `calc-twos-complement-mode'.
2784         (calc-octal-radix, calc-hex-radix): Add an argument for
2785         two's complement.
2787         * calc/calc-embed.el (calc-embedded-mode-vars):
2788         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
2790         * calc/calc-ext.el (calc-init-extensions):
2791         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
2792         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
2794         * calc/calc-units.el (math-build-units-table-buffer):
2795         Let `calc-twos-complement-mode' be nil.
2797         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
2798         entries.
2800         * calc/calc-vec.el (calcFunc-vunpack):
2801         * calc/calc-aent.el (calc-do-calc-eval):
2802         * calc/calc-forms.el (math-format-date):
2803         * calc/calc-graph.el (calc-graph-plot):
2804         * calc/calc-math.el (math-use-emacs-fn):
2805         * calc/calccomp.el (math-compose-expr):
2806         Let `calc-twos-complement-mode' be nil.
2808 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2810         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
2811         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
2812         * minibuffer.el (completion-in-region-functions): New hook.
2813         (completion-in-region): New function.
2814         * emacs-lisp/lisp.el (lisp-complete-symbol):
2815         * pcomplete.el (pcomplete-std-complete): Use it.
2817 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2819         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
2820         (latex-complete-alist): New vars.
2821         (latex-string-prefix-p, latex-complete-bibtex-keys)
2822         (latex-complete-envnames, latex-complete-refkeys)
2823         (latex-complete-data): New functions.
2824         (latex-complete, latex-indent-or-complete): New commands.
2826         * window.el (display-buffer-mark-dedicated): New var.
2827         (display-buffer): Obey it.
2828         * minibuffer.el (minibuffer-completion-help): Use it.
2830         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
2832         * filecache.el (file-cache-add-file): Use push and cons.
2833         (file-cache-delete-file-regexp): Use push.
2834         (file-cache-complete): Use completion-in-region.
2836         * simple.el (with-wrapper-hook): Fix thinko.
2838         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
2839         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
2840         Use with-current-buffer and string-to-number.
2841         (hfy-fallback-colour-values): Use assoc-string.
2842         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
2843         (hfy-face-at): Remove unused var `found-face'.
2844         (hfy-compile-stylesheet): Remove unused var `css'.
2845         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
2846         and `orig-buffer'.
2847         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
2848         Use with-current-buffer.
2849         (hfy-text-p): Use expand-file-name and fewer setq.
2851 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
2853         * htmlfontify.el, hfy-cmap.el: New files.
2855 2009-11-19  Juri Linkov  <juri@jurta.org>
2857         * minibuffer.el (completions-format): New defcustom.
2858         (completion--insert-strings): Implement vertical format.
2860         * simple.el (switch-to-completions): Move point to the first
2861         completion when point was at the beginning of the buffer.
2863 2009-11-19  Juri Linkov  <juri@jurta.org>
2865         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
2867         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
2869 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
2871         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
2872         (mail-signature): Change default to t.
2873         (mail-from-style): Deprecate `system-default' value.
2874         (mail-insert-from-field): For default value of mail-from-style,
2875         default to `angles' unless `angles' needs quoting and `parens'
2876         does not.
2877         (mail-citation-prefix-regexp): Use citation regexp from
2878         message-mode.
2880 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
2882         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
2883         Set variables for computing the prompt for reading password.
2885 2009-11-19  Glenn Morris  <rgm@gnu.org>
2887         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
2889         * textmodes/flyspell.el (sgml-lexical-context): Declare.
2891         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
2892         (newsticker-treeview-listwindow-height): Fix custom type.
2894 2009-11-19  Kenichi Handa  <handa@m17n.org>
2896         * descr-text.el (describe-char-padded-string): Compose with TAB
2897         only if there's a font for CH.
2898         (describe-char): Fix the condition for detecting a trivial composition.
2900 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
2902         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
2903         more accurate version of the regexp.  (Bug#3910)
2905 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
2907         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
2909 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
2911         * font-setting.el (font-use-system-font): Declare for byte-compiler.
2912         (font-setting-change-default-font): Fix typo in docstring.
2914 2009-11-18  Alan Mackenzie  <acm@muc.de>
2916         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
2918 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
2920         * font-setting.el (font-use-system-font): Move ...
2922         * cus-start.el (all): ... to here.
2924 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
2926         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
2927         Don't set `ad-return-value' if `ad-do-it' doesn't.
2929         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
2930         modification time.
2932 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
2934         * menu-bar.el: Put "Use system font" in Option-menu.
2935         (menu-bar-options-save): Add font-use-system-font.
2937         * loadup.el: If feature system-font-setting or font-render-setting is
2938         there, load font-setting.
2940         * Makefile.in (ELCFILES): Add font-settings.el.
2941         * font-setting.el: New file.
2943 2009-11-17  Glenn Morris  <rgm@gnu.org>
2945         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
2947         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
2948         Preserve point in the list buffer.  (Bug#4939)
2949         Use point-at-eol.
2950         (newsticker--treeview-list-update-highlight)
2951         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
2953 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
2955         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
2956         Remove.
2958         * calc/calc-ext.el (calc-init-extensions): Remove references to
2959         symclip.
2961         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
2963         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
2964         * calc/calc-help.el (calc-b-prefix-help): Remove references to
2965         `calc-symclip'.
2967 2009-11-16  Kevin Ryde  <user42@zip.com.au>
2969         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
2970         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
2972         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
2973         (lm-keywords-list): Allow comma-only separator like "foo,bar".
2974         Ignore trailing spaces by omit-nulls to split-string (fixing
2975         regression from Emacs 21 due to the incompatible split-string
2976         change).  (Bug #4928.)
2978 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
2980         * vc.el (vc-log-show-limit): Default to 2000.
2981         (vc-print-log-internal): Insert buttons to request more entries
2982         when limiting the output.
2984         * vc-sccs.el (vc-sccs-print-log):
2985         * vc-rcs.el (vc-rcs-print-log):
2986         * vc-cvs.el (vc-cvs-print-log):
2987         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
2988         LIMIT is non-nil.
2990 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
2992         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
2993         error when `tramp-gvfs-dbus-event-vector' is set.
2994         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
2996 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2998         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
3000 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
3002         * net/dbus.el (dbus-unregister-service): New defun.
3003         (dbus-register-property): Register the handlers of
3004         "org.freedesktop.DBus.Properties" for SERVICE.
3005         (dbus-property-handler): Fix docstring.
3007 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3009         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
3010         Quote doc string reference in defvaralias as it is not in special form.
3011         (byte-compile-output-docform): Doc fix.
3013 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
3015         * calc/calc.el (math-2-word-size, math-half-2-word-size)
3016         (calc-complement-signed-mode): New variables.
3017         (calc-set-mode-line): Add indicator for twos-complements.
3018         (math-format-number): Format twos-complement notation.
3020         * calc/calc-bin.el (calc-word-size): Reset the variables
3021         `math-2-word-size' and `math-half-2-word-size'.
3022         (math-format-complement-signed, math-symclip, calcFunc-symclip)
3023         (calc-symclip): New functions.
3025         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
3027         * calc/calc-embed.el (calc-embedded-mode-vars):
3028         Add `calc-complement-signed-mode' to the list of modes.
3030         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
3031         (calc-b-oper-keys): Add `calc-symclip' to list.
3033         * calc/calc-ext.el (math-read-number-fancy): Read complement
3034         signed numbers.
3035         (calc-init-extensions): Add binding for `calc-symclip'.
3036         Add autoload for `calcFunc-symclip' and `calc-symclip'.
3038         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
3039         `calc-symclip'.
3040         (calc-modes-menu): Add item for twos complement mode.
3042         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
3044 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
3046         * register.el (jump-to-register, insert-register): Handle Semantic
3047         tags.  From commented-out advice in semantic/senator.el.
3049 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
3051         * vc.el (vc-log-show-limit): New variable.
3052         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
3053         when using a prefix argument.
3054         (vc-print-log-internal): Add new argument LIMIT.
3056         * vc-svn.el (vc-svn-print-log):
3057         * vc-mtn.el (vc-mtn-print-log):
3058         * vc-hg.el (vc-hg-print-log):
3059         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
3060         pass it to the log command when set.  Make the BUFFER argument
3061         non-optional.
3063         * vc-sccs.el (vc-sccs-print-log):
3064         * vc-rcs.el (vc-rcs-print-log):
3065         * vc-git.el (vc-git-print-log):
3066         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
3067         ignore it.  Make the BUFFER argument non-optional
3069         * bindings.el (mode-line-buffer-identification): Do not purecopy.
3071 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
3073         * dired.el (dired-mode-map): Move encryption items to "Operate"
3074         menu (Bug#4703).
3076         * strokes.el (strokes-update-window-configuration): Make strokes
3077         buffer current before erasing (Bug#4906).
3079         * cedet/semantic/idle.el (semantic-idle-summary-mode)
3080         (semantic-idle-summary-mode): Define using define-minor-mode
3081         instead of define-semantic-idle-service.
3082         (semantic-idle-summary-mode): New function.
3083         (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
3084         that mouse motion does not reset the echo area.
3086 2009-11-15  Juri Linkov  <juri@jurta.org>
3088         * simple.el (set-mark-default-inactive): Add :type, :group
3089         and :version.  (Bug#4876)
3091 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
3093         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
3094         (archive-unique-fname): ... here.  (Bug#4929)
3096 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3098         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
3099         with a real fix.
3101         * novice.el (disabled-command-function): Add useful args.
3102         Setup the help buffer so that [back] works.
3103         Remove redundant call to help-mode.
3104         (disabled-command-function): Use `case'.
3105         (en/disable-command): New function extracted from enable-command.
3106         (enable-command, disable-command): Use it.
3108 2009-11-14  Glenn Morris  <rgm@gnu.org>
3110         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
3111         constants.  (Bug#4913)
3113         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
3115 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
3117         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
3118         defined in C that have no doc-strings.  (Bug#1063)
3120 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
3122         * cus-edit.el (data, files):
3123         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
3125 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
3127         * simple.el (shell-command): Doc fix (Bug#4891).
3129         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
3131 2009-11-14  Glenn Morris  <rgm@gnu.org>
3133         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
3134         statements for vc-diff, emerge-quit, and rmail-cease-edit.
3135         If they are already loaded, eval-after-load will do the right thing.
3137         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
3138         compiling.
3140         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
3142         * simple.el (x-selection-owner-p): Declare.
3143         (read-mail-command): Use custom radio type rather than choice.
3144         (completion-no-auto-exit): Doc fix.
3146         * custom.el (defgroup):
3147         * epg-config.el (epg): Doc fixes.
3149 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
3151         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
3152         * international/ccl.el (define-ccl-program): Do not purecopy the
3153         docstring, defconst does it anyway.
3155 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3157         * add-log.el (add-change-log-entry): Avoid displaying the changelog
3158         a second time.
3160         * x-dnd.el (x-dnd-maybe-call-test-function):
3161         * window.el (split-window-vertically):
3162         * whitespace.el (whitespace-help-on):
3163         * vc-rcs.el (vc-rcs-consult-headers):
3164         * userlock.el (ask-user-about-lock-help)
3165         (ask-user-about-supersession-help):
3166         * type-break.el (type-break-force-mode-line-update):
3167         * time-stamp.el (time-stamp-conv-warn):
3168         * terminal.el (te-set-output-log, te-more-break, te-filter)
3169         (te-sentinel, terminal-emulator):
3170         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
3171         (term-write-input-ring, term-check-source, term-start-output-log):
3172         (term-display-buffer-line, term-dynamic-list-completions):
3173         (term-ansi-make-term, serial-term):
3174         * subr.el (selective-display):
3175         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
3176         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
3177         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
3178         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
3179         (speedbar-remove-localized-speedbar-support)
3180         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
3181         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
3182         (speedbar-buffers-line-directory):
3183         * simple.el (shell-command-on-region, append-to-buffer)
3184         (prepend-to-buffer):
3185         * shadowfile.el (shadow-save-todo-file):
3186         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
3187         (scroll-bar-maybe-set-window-start):
3188         * sb-image.el (speedbar-image-dump):
3189         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
3190         (load-save-place-alist-from-file):
3191         * ps-samp.el (ps-print-message-from-summary):
3192         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
3193         (ps-background-image, ps-begin-job, ps-do-despool):
3194         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
3195         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
3196         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
3197         (pr-call-process, pr-file-list, pr-interface-save):
3198         * novice.el (disabled-command-function)
3199         (enable-command, disable-command):
3200         * mouse.el (mouse-buffer-menu-alist):
3201         * mouse-copy.el (mouse-kill-preserving-secondary):
3202         * macros.el (kbd-macro-query):
3203         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
3204         * informat.el (batch-info-validate):
3205         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
3206         * hippie-exp.el (try-expand-dabbrev-visible):
3207         * help-mode.el (help-make-xrefs):
3208         * help-fns.el (describe-variable):
3209         * generic-x.el (bat-generic-mode-run-as-comint):
3210         * finder.el (finder-mouse-select):
3211         * find-dired.el (find-dired-sentinel):
3212         * filesets.el (filesets-file-close):
3213         * files.el (list-directory):
3214         * faces.el (list-faces-display, describe-face):
3215         * facemenu.el (list-colors-display):
3216         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
3217         * epg.el (epg--process-filter, epg-cancel):
3218         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
3219         (epa--read-signature-type):
3220         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
3221         (emerge-file-names):
3222         * ehelp.el (electric-helpify):
3223         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
3224         * ediff-vers.el (rcs-ediff-view-revision):
3225         * ediff-util.el (ediff-setup):
3226         * ediff-mult.el (ediff-append-custom-diff):
3227         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
3228         (ediff-wordify):
3229         * echistory.el (Electric-command-history-redo-expression):
3230         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
3231         * disp-table.el (describe-display-table):
3232         * dired.el (dired-find-buffer-nocreate):
3233         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
3234         * dabbrev.el (dabbrev--same-major-mode-p):
3235         * chistory.el (list-command-history):
3236         * apropos.el (apropos-documentation):
3237         * allout.el (allout-obtain-passphrase):
3238         (allout-copy-exposed-to-buffer):
3239         (allout-verify-passphrase): Use with-current-buffer.
3241 2009-11-13  Glenn Morris  <rgm@gnu.org>
3243         * Makefile.in (ELCFILES): Regenerate.
3245 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
3247         * net/dbus.el (dbus-registered-objects-table): Rename from
3248         `dbus-registered-functions-table', because it contains also properties.
3249         (dbus-unregister-object): Unregister also properties.
3250         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
3251         Use a timeout of 500 msec, in order to not block.
3252         (dbus-register-property, dbus-property-handler): New defuns.
3254 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3256         * simple.el (minibuffer-default-add-completions): Drop deprecated
3257         4th arg.
3259 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
3261         * textmodes/artist.el (artist-mouse-choose-operation):
3262         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
3263         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
3264         (artist-compute-up-event-key): New function.
3265         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
3267 2009-11-13  Kenichi Handa  <handa@m17n.org>
3269         * language/japan-util.el: Make sure that the value of jisx0208
3270         property is jisx0208 character.
3272 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
3274         * international/mule.el (auto-coding-regexp-alist): Only purecopy
3275         car or each item, not the whole list.
3277 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3279         * minibuffer.el (minibuffer-completion-help):
3280         Use minibuffer-hide-completions.
3282 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
3284         * dired.el (dired-save-positions, dired-restore-positions): New funs.
3285         (dired-revert): Use them (bug#4880).
3287 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
3289         * tooltip.el (tooltip-frame-parameters): Undo previous change.
3291 2009-11-12  Juri Linkov  <juri@jurta.org>
3293         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
3294         New functions.
3295         (find-file-literally-at-point): Alias of `ffap-literally'.
3297 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
3299         * textmodes/ispell.el (ispell-skip-region-alist):
3300         * textmodes/css-mode.el (auto-mode-alist):
3301         * progmodes/compile.el (auto-mode-alist):
3302         * international/mule.el (ctext-non-standard-encodings-alist)
3303         (ctext-non-standard-encodings-regexp):
3304         * simple.el (shell-command-switch, text-read-only):
3305         * replace.el (occur-mode-map):
3306         * paths.el (rmail-file-name):
3307         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
3308         * find-file.el (ff-special-constructs):
3309         * files.el (file-name-handler-alist):
3310         * composite.el: Purecopy strings.
3312         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
3314 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
3316         * widget.el (define-widget): Purecopy the docstring.
3317         * international/mule-cmds.el (charset): Do not purecopy the
3318         docstring here, define-widget does it.
3320         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
3321         * textmodes/bibtex-style.el (auto-mode-alist):
3322         * progmodes/inf-lisp.el (inferior-lisp-prompt):
3323         * progmodes/compile.el (compile-command):
3324         * language/korea-util.el (default-korean-keyboard):
3325         * international/mule-conf.el (file-coding-system-alist):
3326         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
3327         * tooltip.el (tooltip-frame-parameters):
3328         * newcomment.el (comment-end, comment-padding):
3329         * dired.el (dired-trivial-filenames):
3330         * comint.el (comint-file-name-prefix): Purecopy initial values.
3332 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
3334         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
3335         (tramp-advice-minibuffer-electric-tilde): Unload advices via
3336         `tramp-unload'.
3337         (tramp-advice-make-auto-save-file-name)
3338         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
3339         after removing the advice.
3341 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
3343         * progmodes/grep.el (grep-regexp-alist):
3344         * international/mule-cmds.el (iso-2022-control-alist):
3345         * emacs-lisp/timer.el (timer-duration-words):
3346         * subr.el (version-separator, version-regexp-alist):
3347         * minibuffer.el (completion-styles-alist):
3348         * faces.el (face-attribute-name-alist, list-faces-sample-text):
3349         Change defvars to defconsts.
3351         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
3352         * loadup.el ("international/mule-conf"): Load the byte compiled version.
3353         * international/mule-conf.el: Allow to be byte compiled.
3355         * international/mule.el (define-charset): Purecopy props.
3356         (load-with-code-conversion): Purecopy doc string and file name.
3357         (put-charset-property): Purecopy strings.
3358         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
3360         * international/mule-cmds.el (register-input-method): Purecopy arguments.
3361         (define-char-code-property): Correctly purecopy the table.
3363         * international/ccl.el (define-ccl-program): Purecopy the docstring.
3365         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
3367         * subr.el (add-hook): Purecopy strings.
3368         (eval-after-load): Purecopy load-history-regexp and the form.
3370         * custom.el (custom-declare-group): Purecopy load-file-name.
3372         * subr.el (menu-bar-separator): New defconst.
3373         * net/eudc.el (eudc-tools-menu):
3374         * international/mule-cmds.el (set-coding-system-map)
3375         (mule-menu-keymap):
3376         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
3377         * vc-hooks.el (vc-menu-map):
3378         * replace.el (occur-mode-map):
3379         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
3380         (menu-bar-edit-menu, menu-bar-goto-menu)
3381         (menu-bar-custom-menu, menu-bar-showhide-menu)
3382         (menu-bar-options-menu, menu-bar-tools-menu)
3383         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
3384         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
3385         (menu-bar-help-menu):
3386         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
3387         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
3389         * term/x-win.el (x-gtk-stock-map):
3390         * progmodes/vera-mode.el (auto-mode-alist):
3391         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
3392         (inferior-lisp-program, inferior-lisp-load-command):
3393         * progmodes/hideshow.el (hs-special-modes-alist):
3394         * progmodes/gud.el (same-window-regexps):
3395         * progmodes/grep.el (grep-program, find-program, xargs-program):
3396         * net/telnet.el (same-window-regexps):
3397         * net/rlogin.el (same-window-regexps):
3398         * language/ethiopic.el (font-ccl-encoder-alist):
3399         * vc-sccs.el (vc-sccs-master-templates):
3400         * vc-rcs.el (vc-rcs-master-templates):
3401         * subr.el (cl-assertion-failed):
3402         * simple.el (next-error-overlay-arrow-position):
3403         * lpr.el (lpr-command):
3404         * locate.el (locate-ls-subdir-switches):
3405         * info.el (same-window-regexps, info)
3406         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
3407         * image-mode.el (image-mode, auto-mode-alist):
3408         * hippie-exp.el (hippie-expand-ignore-buffers):
3409         * format.el (format-alist):
3410         * find-dired.el (find-ls-subdir-switches, find-grep-options)
3411         (find-name-arg):
3412         * facemenu.el (facemenu-keybindings):
3413         * dired.el (dired-listing-switches, dired-chown-program):
3414         * diff.el (diff-switches, diff-command):
3415         * cus-edit.el (same-window-regexps):
3416         * bindings.el (mode-line-mule-info)
3417         (mode-line-buffer-identification): Purecopy strings.
3419 2009-11-11  Juri Linkov  <juri@jurta.org>
3421         * simple.el (dired-get-filename) <declare-function>:
3422         Tell the byte-compiler about dired-get-filename.
3423         (shell-command): In Dired mode, get filename from the current line
3424         as the default value.
3426 2009-11-10  Glenn Morris  <rgm@gnu.org>
3428         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
3429         * calendar/holidays.el, progmodes/cperl-mode.el:
3430         Update x-popup-menu declarations.
3432         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
3433         (list-load-path-shadows): Use dolist.
3434         (list-load-path-shadows): Use with-current-buffer.
3436 2009-11-10  Juri Linkov  <juri@jurta.org>
3438         * minibuffer.el (read-file-name): Support a list of default values
3439         in `default-filename'.  Use the first file name where only one
3440         element is required.  Doc fix.
3442 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
3444         * net/dbus.el (dbus-unregister-object): Release service, if no
3445         other method is registered for it.
3447 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
3449         * bookmark.el (bookmark-completing-read): Sort bookmark names if
3450         bookmark-sort-flag is non-nil (Bug#4653).
3452 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
3454         * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
3455         the progress reporter entirely.
3457         * emulation/cua-base.el: Add CUA property to some CC mode commands
3458         (Bug#4100).
3460 2009-11-08  Kevin Ryde  <user42@zip.com.au>
3462         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
3463         at end of sentence (Bug#4818).
3465 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
3467         * progmodes/compile.el (compilation-error-regexp-alist-alist):
3468         Handle "see declaration of" MSFT statements (Bug#4100).
3470 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
3472         * net/tramp.el (tramp-advice-make-auto-save-file-name)
3473         (tramp-advice-file-expand-wildcards): Unload via
3474         `ad-remove-advice'.
3476         * net/trampver.el: Update release number.
3478 2009-11-08  Kevin Ryde  <user42@zip.com.au>
3480         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
3481         `ad-do-it'.
3483 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
3485         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
3486         in order to keep context in SELinux.
3488 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
3490         * dired-aux.el (dired-query): Place cursor in echo area and allow
3491         C-g.
3493         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
3494         menu item if not on a directory (Bug#4701).
3496 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
3498         Sync with Tramp 2.1.17.
3500         * net/tramp.el (tramp-handle-copy-directory): Don't use
3501         `file-remote-p' (due to compatibility).
3503         * net/tramp-compat.el (tramp-compat-copy-directory)
3504         (tramp-compat-delete-directory): New defuns.
3506         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
3507         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
3508         `tramp-compat-delete-directory'.
3510         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
3511         (tramp-smb-handle-delete-directory): Use
3512         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
3514         * net/trampver.el: Update release number.
3516 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
3518         * tar-mode.el (tar-copy): Call write-region on the right buffer
3519         (Bug#4857).
3521         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
3522         by hand, if necessary (Bug#4878).
3524 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
3526         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
3527         align size column (Bug#4839).
3529         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
3530         statement.
3532 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
3534         * progmodes/ld-script.el (auto-mode-alist):
3535         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
3537         * cus-face.el (custom-declare-face): Purecopy face spec.
3539 2009-11-06  Kenichi Handa  <handa@m17n.org>
3541         * international/uni-bidi.el: Re-generated.
3542         * international/uni-category.el: Re-generated.
3543         * international/uni-combining.el: Re-generated.
3544         * international/uni-mirrored.el: Re-generated.
3546 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
3548         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
3549         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
3550         (tex-start-options, slitex-run-command, latex-run-command)
3551         (tex-run-command, tex-directory):
3552         * textmodes/ispell.el (ispell-html-skip-alists)
3553         (ispell-tex-skip-alists, ispell-tex-skip-alists):
3554         * textmodes/fill.el (adaptive-fill-first-line-regexp):
3555         (adaptive-fill-regexp):
3556         * textmodes/dns-mode.el (auto-mode-alist):
3557         * progmodes/python.el (interpreter-mode-alist):
3558         * progmodes/etags.el (tags-compression-info-list):
3559         * progmodes/etags.el (tags-file-name):
3560         * net/browse-url.el (browse-url-galeon-program)
3561         (browse-url-firefox-program):
3562         * mail/sendmail.el (mail-signature-file)
3563         (mail-citation-prefix-regexp):
3564         * international/mule-conf.el (eight-bit):
3565         * international/latexenc.el (latex-inputenc-coding-alist):
3566         * international/fontset.el (x-pixel-size-width-font-regexp):
3567         * emacs-lisp/warnings.el (warning-type-format):
3568         * emacs-lisp/trace.el (trace-buffer):
3569         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
3570         (emacs-lisp-mode-map):
3571         * calendar/holidays.el (holiday-solar-holidays)
3572         (holiday-bahai-holidays, holiday-islamic-holidays)
3573         (holiday-christian-holidays, holiday-hebrew-holidays)
3574         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
3575         (hebrew-holidays-1, holiday-oriental-holidays)
3576         (holiday-general-holidays):
3577         * x-dnd.el (x-dnd-known-types):
3578         * tool-bar.el (tool-bar):
3579         * startup.el (site-run-file):
3580         * shell.el (shell-dumb-shell-regexp):
3581         * rfn-eshadow.el (file-name-shadow-tty-properties)
3582         (file-name-shadow-properties):
3583         * paths.el (remote-shell-program, news-directory):
3584         * mouse.el ([C-down-mouse-3]):
3585         * menu-bar.el (menu-bar-tools-menu):
3586         * jka-cmpr-hook.el (jka-compr-load-suffixes)
3587         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
3588         (jka-compr-compression-info-list):
3589         * isearch.el (search-whitespace-regexp):
3590         * image-file.el (image-file-name-extensions):
3591         * find-dired.el (find-ls-option):
3592         * files.el (directory-listing-before-filename-regexp)
3593         (directory-free-space-args, insert-directory-program)
3594         (list-directory-brief-switches, magic-fallback-mode-alist)
3595         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
3596         (automount-dir-prefix):
3597         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
3598         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
3599         (face-font-registry-alternatives, face-font-registry-alternatives)
3600         (face-font-family-alternatives):
3601         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
3602         (facemenu-foreground-menu, facemenu-face-menu):
3603         * epa-hook.el (epa-file-name-regexp):
3604         * dnd.el (dnd-protocol-alist):
3605         * textmodes/rst.el (auto-mode-alist):
3606         * button.el (default-button): Purecopy strings.
3608 2009-11-06  Glenn Morris  <rgm@gnu.org>
3610         * Makefile.in (ELCFILES): Update.
3612 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3614         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
3615         * emacs-lisp/levents.el: Move to obsolete/levents.el.
3617         * nxml/xsd-regexp.el (xsdre-gen-categories):
3618         * nxml/xmltok.el (xmltok-parse-entity):
3619         * nxml/rng-parse.el (rng-parse-validate-file):
3620         * nxml/rng-maint.el (rng-format-manual)
3621         (rng-manual-output-force-new-line):
3622         * nxml/rng-loc.el (rng-save-schema-location-1):
3623         * nxml/rng-cmpct.el (rng-c-parse-file):
3624         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
3625         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
3627 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
3629         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
3630         Remove extra save-excursions and make-variable-buffer-local's.
3631         Suggested by Stefan Monnier.
3633         (verilog-getopt-file, verilog-module-inside-filename-p)
3634         (verilog-set-define): Merge GNU 1.35 and repair changes from
3635         switching to using with-current-buffer.
3637         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
3638         being treated as a number and confusing AUTORESET.
3639         Reported by Dan Dever.
3641         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
3642         Add verilog-auto-ignore-concat to fix backward compatibility with
3643         older verilog-modes.  Reported by Dan Katz.
3645         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
3646         containing closing anchors "...$".
3648         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
3649         Reported by Wade Smith.
3651         (verilog-batch-execute-func) Comment on function usage.
3653 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
3655         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
3656         for labels.
3658         (verilog-label-re, verilog-calc-1): Support proper indent of named
3659         asserts.
3661         (verilog-backward-token, verilog-basic-complete-re)
3662         (verilog-beg-of-statement, verilog-indent-re): Support proper
3663         indent of the assert statement at the beginning of a block of text.
3665         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
3666         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
3667         tokens as begins.
3669 2009-11-05  Glenn Morris  <rgm@gnu.org>
3671         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
3672         Emacs 19.  (Bug#1531)
3673         (byte-compile-fix-header): Update for the above change.
3674         Drop test for epoch::version.
3676         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
3677         * cus-dep.el (custom-make-dependencies):
3678         * finder.el (finder-compile-keywords):
3679         Use autoload-rubric's feature argument.
3681         * calendar/diary-lib.el (top-level): Make load behave more like require.
3683         * vc-git.el (vc-git-stash-map): Move definition before use.
3685 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
3687         * custom.el (custom-declare-group): Purecopy standard-value.
3688         (custom-declare-group): Purecopy custom-prefix.
3690         * international/mule.el (load-with-code-conversion):
3691         Call do-after-load-evaluation unconditionally.
3693         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
3695 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3697         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
3699 2009-11-04  Glenn Morris  <rgm@gnu.org>
3701         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
3702         (byte-compile-compatibility): Remove option.
3703         (byte-compile-close-variables, byte-compile-fix-header)
3704         (byte-compile-insert-header, byte-compile-output-docform)
3705         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
3706         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
3707         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
3708         (byte-compile-insert, byte-compile-defun):
3709         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
3710         (byte-defop-compiler19): Remove.
3711         Without byte-compile-compatibility, the 'emacs19-opcode property is not
3712         used by anything.  Replace all calls with byte-defop-compiler.
3714 2009-11-04  Juri Linkov  <juri@jurta.org>
3716         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
3717         (menu-bar-options-menu): Don't quote the `prop' arg of
3718         `menu-bar-make-mm-toggle'.
3720 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
3722         * calendar/calendar.el (cal-loaddefs):
3723         * calendar/diary-lib.el (diary-loaddefs):
3724         * calendar/holidays.el (hol-loaddefs):
3725         * eshell/esh-module.el (esh-groups): Load rather than require.
3727 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3729         * calendar/todo-mode.el (todo-add-category): Don't hardcode
3730         point-min==1.
3731         (todo-top-priorities): Only display-buffer when called interactively.
3732         (todo-item-start): Don't save excursion point.
3733         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
3734         (todo-insert-item-here, todo-file-item, todo-remove-item):
3735         Adjust uses of todo-item-start and todo-item-end.
3737         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
3738         (autoload-rubric): Don't use any more.
3739         * cedet/semantic/fw.el (semantic/loaddefs):
3740         * cedet/srecode.el (srecode/loaddefs):
3741         * cedet/ede.el (ede/loaddefs): Load rather than require.
3742         * cedet/ede/cpp-root.el:
3743         * cedet/ede/emacs.el:
3744         * cedet/ede/files.el:
3745         * cedet/ede/linux.el:
3746         * cedet/ede/locate.el:
3747         * cedet/ede/make.el:
3748         * cedet/ede/shell.el:
3749         * cedet/ede/speedbar.el:
3750         * cedet/ede/system.el:
3751         * cedet/ede/util.el:
3752         * cedet/semantic/analyze.el:
3753         * cedet/semantic/bovine.el:
3754         * cedet/semantic/complete.el:
3755         * cedet/semantic/ctxt.el:
3756         * cedet/semantic/db-file.el:
3757         * cedet/semantic/db-find.el:
3758         * cedet/semantic/db-global.el:
3759         * cedet/semantic/db-mode.el:
3760         * cedet/semantic/db-typecache.el:
3761         * cedet/semantic/db.el:
3762         * cedet/semantic/debug.el:
3763         * cedet/semantic/dep.el:
3764         * cedet/semantic/doc.el:
3765         * cedet/semantic/edit.el:
3766         * cedet/semantic/find.el:
3767         * cedet/semantic/format.el:
3768         * cedet/semantic/html.el:
3769         * cedet/semantic/ia-sb.el:
3770         * cedet/semantic/ia.el:
3771         * cedet/semantic/idle.el:
3772         * cedet/semantic/lex-spp.el:
3773         * cedet/semantic/lex.el:
3774         * cedet/semantic/mru-bookmark.el:
3775         * cedet/semantic/scope.el:
3776         * cedet/semantic/senator.el:
3777         * cedet/semantic/sort.el:
3778         * cedet/semantic/symref.el:
3779         * cedet/semantic/tag-file.el:
3780         * cedet/semantic/tag-ls.el:
3781         * cedet/semantic/tag-write.el:
3782         * cedet/semantic/tag.el:
3783         * cedet/semantic/util-modes.el:
3784         * cedet/semantic/analyze/complete.el:
3785         * cedet/semantic/analyze/refs.el:
3786         * cedet/semantic/bovine/c.el:
3787         * cedet/semantic/bovine/gcc.el:
3788         * cedet/semantic/bovine/make.el:
3789         * cedet/semantic/bovine/scm.el:
3790         * cedet/semantic/decorate/include.el:
3791         * cedet/semantic/decorate/mode.el:
3792         * cedet/semantic/symref/cscope.el:
3793         * cedet/semantic/symref/global.el:
3794         * cedet/semantic/symref/grep.el:
3795         * cedet/semantic/symref/idutils.el:
3796         * cedet/semantic/symref/list.el:
3797         * cedet/semantic/wisent/java-tags.el:
3798         * cedet/semantic/wisent/javascript.el:
3799         * cedet/srecode/compile.el:
3800         * cedet/srecode/cpp.el:
3801         * cedet/srecode/document.el:
3802         * cedet/srecode/el.el:
3803         * cedet/srecode/expandproto.el:
3804         * cedet/srecode/getset.el:
3805         * cedet/srecode/insert.el:
3806         * cedet/srecode/java.el:
3807         * cedet/srecode/map.el:
3808         * cedet/srecode/mode.el:
3809         * cedet/srecode/template.el:
3810         * cedet/srecode/texi.el: Remove the file-local setting of
3811         generated-autoload-feature.
3813         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
3814         and only put a prop if it is non-nil.
3816 2009-11-03  Juri Linkov  <juri@jurta.org>
3818         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
3819         (menu-bar-options-menu): Fix list quoting (Bug#4429).
3821         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
3822         and "Menu" to make top-level menu item visually one unit (like
3823         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
3824         multi-word menu items).  Fix :help string for quit-window.
3826 2009-11-03  Glenn Morris  <rgm@gnu.org>
3828         * cedet/mode-local.el (with-mode-local): Doc fix.
3830         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
3831         (byte-compile-file-form-define-abbrev-table)
3832         (byte-compile-file-form-custom-declare-variable)
3833         (byte-compile-variable-ref, byte-compile-defvar):
3834         Whether or not a warning is enabled should only affect whether we issue
3835         the warning, not whether or not we collect the relevant data.
3836         Eg warnings can be turned on and off throughout the course of a file.
3838         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
3839         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
3841 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3843         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
3844         * play/mpuz.el (mpuz-create-buffer):
3845         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
3846         (lm-print-y,s,noise, lm-print-w0, lm-init):
3847         * play/gomoku.el (gomoku-prompt-for-move):
3848         * play/fortune.el (fortune-in-buffer):
3849         * play/dissociate.el (dissociated-press):
3850         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
3851         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
3852         * mail/supercite.el (sc-eref-show):
3853         * mail/smtpmail.el (smtpmail-send-it):
3854         * mail/rmailsum.el (rmail-summary-next-labeled-message)
3855         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
3856         (rmail-summary-undelete-many, rmail-summary-rmail-update)
3857         (rmail-summary-goto-msg, rmail-summary-expunge)
3858         (rmail-summary-get-new-mail, rmail-summary-search-backward)
3859         (rmail-summary-add-label, rmail-summary-output-menu)
3860         (rmail-summary-output-body):
3861         * mail/rfc822.el (rfc822-addresses):
3862         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
3863         * mail/mailpost.el (post-mail-send-it):
3864         * mail/hashcash.el (hashcash-generate-payment):
3865         * mail/feedmail.el (feedmail-run-the-queue)
3866         (feedmail-queue-send-edit-prompt-help-first)
3867         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
3868         (feedmail-deduce-address-list):
3869         * eshell/esh-ext.el (eshell-remote-command):
3870         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
3871         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
3872         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
3873         (viper-save-string-in-file, viper-valid-marker):
3874         * emulation/viper-keym.el (viper-toggle-key):
3875         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
3876         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
3877         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
3878         * emulation/viper-cmd.el (viper-exec-form-in-vi)
3879         (viper-exec-form-in-emacs, viper-brac-function):
3880         * emulation/viper.el (viper-delocalize-var):
3881         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
3882         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
3883         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
3884         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
3885         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
3886         * emulation/edt.el (edt-electric-helpify):
3887         * emulation/cua-rect.el (cua--rectangle-aux-replace):
3888         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
3889         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
3890         (cua-indent-to-global-mark-column):
3891         * calendar/diary-lib.el (calendar-mark-1):
3892         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
3893         Use with-current-buffer.
3894         * emulation/viper.el (viper-delocalize-var): Use dolist.
3896 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
3898         * comint.el (comint-replace-by-expanded-history-before-point):
3899         Replace !! with the previous input string literally (Bug#1795).
3901 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
3903         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
3904         to be made up of whitespace.
3906 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
3908         * minibuffer.el (read-file-name): Don't use file dialogs for
3909         remote directories (Bug#99).
3911 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
3913         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
3915 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
3917         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
3918         instead of deleting the window or frame.
3920 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
3922         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
3923         Support face colors.
3925         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
3926         New function.  Support face colors (Bug#1168).
3927         (tex-common-initialization): Use it.
3929         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
3930         mode allows it (Bug#1168).
3932 2009-10-31  Juri Linkov  <juri@jurta.org>
3934         * facemenu.el (list-colors-display): Don't mark buffer as
3935         modified (Bug#3948).
3937 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
3939         * international/mule-diag.el (list-character-sets-1): Minor
3940         message fix (Bug#3526).
3942         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
3943         face property (Bug#4834).
3944         (etags-list-tags, etags-tags-apropos-additional)
3945         (etags-tags-apropos, tags-select-tags-table): Add follow-link
3946         property.
3948         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
3949         items.
3951         * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
3952         items.
3954         * cedet/ede.el (ede-minor-mode):
3955         * cedet/semantic.el (semantic-mode): Toggle menu separators.
3957 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3959         * textmodes/two-column.el (2C-split):
3960         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
3961         * textmodes/tex-mode.el (tex-set-buffer-directory):
3962         * textmodes/spell.el (spell-region, spell-string):
3963         * textmodes/reftex.el (reftex-erase-buffer):
3964         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
3965         * textmodes/reftex-toc.el (reftex-toc-promote-action):
3966         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
3967         (reftex-select-item):
3968         * textmodes/reftex-ref.el (reftex-label-info-update)
3969         (reftex-offer-label-menu):
3970         * textmodes/reftex-index.el (reftex-index-change-entry)
3971         (reftex-index-phrases-info):
3972         * textmodes/reftex-global.el (reftex-create-tags-file)
3973         (reftex-save-all-document-buffers, reftex-ensure-write-access):
3974         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
3975         (reftex-view-crossref-from-bibtex):
3976         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
3977         (reftex-extract-bib-entries-from-thebibliography)
3978         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
3979         * textmodes/refbib.el (r2b-capitalize-title):
3980         (r2b-convert-buffer, r2b-help):
3981         * textmodes/page-ext.el (pages-directory)
3982         (pages-directory-goto-with-mouse):
3983         * textmodes/bibtex.el (bibtex-validate-globally):
3984         * textmodes/bib-mode.el (bib-capitalize-title):
3985         * textmodes/artist.el (artist-clear-buffer, artist-system):
3986         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
3987         (local-set-scheme-interaction-buffer, xscheme-process-filter)
3988         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
3989         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
3990         (xscheme-send-control-g-interrupt, xscheme-start-process)
3991         (xscheme-process-sentinel, xscheme-cd):
3992         * progmodes/verilog-mode.el (verilog-read-always-signals)
3993         (verilog-set-define, verilog-getopt-file)
3994         (verilog-module-inside-filename-p):
3995         * progmodes/sh-script.el:
3996         * progmodes/python.el (python-pdbtrack-get-source-buffer)
3997         (python-pdbtrack-grub-for-buffer, python-execute-file):
3998         * progmodes/octave-inf.el (inferior-octave):
3999         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
4000         (idlwave-shell-compile-helper-routines, idlwave-set-local)
4001         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
4002         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
4003         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
4004         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
4005         (idlwave-shell-filter, idlwave-shell-examine-highlight)
4006         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
4007         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
4008         (idlwave-shell-examine-display, idlwave-shell-run-region)
4009         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
4010         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
4011         * progmodes/idlw-help.el (idlwave-help-get-special-help)
4012         (idlwave-help-get-help-buffer):
4013         * progmodes/gud.el (gud-basic-call, gud-find-class)
4014         (gud-tooltip-activate-mouse-motions-if-enabled):
4015         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
4016         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
4017         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
4018         (ebrowse-tags-next-file):
4019         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
4020         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
4021         (ebnf-eps-finish-and-write):
4022         * progmodes/cpp.el (cpp-edit-save):
4023         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
4024         * progmodes/cc-defs.el (c-emacs-features):
4025         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
4026         (antlr-directory-dependencies):
4027         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
4028         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
4029         (ada-find-any-references, ada-make-filename-from-adaname)
4030         (ada-make-body-gnatstub):
4031         * obsolete/rnews.el (news-list-news-groups):
4032         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
4033         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
4034         * net/rcirc.el (rcirc-debug):
4035         * net/newst-treeview.el (newsticker--treeview-list-add-item)
4036         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
4037         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
4038         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
4039         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
4040         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
4041         (newsticker--treeview-list-clear-highlight)
4042         (newsticker--treeview-list-update-highlight)
4043         (newsticker--treeview-list-highlight-start)
4044         (newsticker--treeview-tree-update-highlight)
4045         (newsticker--treeview-get-selected-item)
4046         (newsticker-treeview-mark-list-items-old)
4047         (newsticker--treeview-set-current-node):
4048         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
4049         * net/newst-backend.el (newsticker--get-news-by-funcall)
4050         (newsticker--get-news-by-wget, newsticker--image-get)
4051         (newsticker--image-sentinel):
4052         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
4053         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
4054         (eudc-ph-close-session):
4055         * net/eudc.el (eudc-save-options):
4056         * language/thai-word.el (thai-update-word-table):
4057         * language/japan-util.el (japanese-string-conversion):
4058         * international/titdic-cnv.el (tsang-quick-converter)
4059         (ziranma-converter, ctlau-converter):
4060         * international/mule-cmds.el (describe-language-environment):
4061         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
4062         (skkdic-convert-postfix, skkdic-convert-prefix):
4063         (skkdic-convert-okuri-nasi, skkdic-convert):
4064         * emacs-lisp/re-builder.el (reb-update-overlays):
4065         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
4066         * emacs-lisp/gulp.el (gulp-send-requests):
4067         * emacs-lisp/find-gc.el (trace-call-tree):
4068         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
4069         (eieio-describe-generic):
4070         * emacs-lisp/eieio-base.el (eieio-persistent-read):
4071         * emacs-lisp/edebug.el (edebug-outside-excursion):
4072         * emacs-lisp/debug.el (debugger-make-xrefs):
4073         * emacs-lisp/cust-print.el (custom-prin1-to-string):
4074         * emacs-lisp/chart.el (chart-new-buffer):
4075         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
4076         Use with-current-buffer.
4077         * textmodes/artist.el (artist-system): Don't call
4078         copy-sequence on a fresh string.
4079         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
4081 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
4083         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
4084         is no item to edit.  (Bug#4820)
4085         (todo-top-priorities): Restore point and restore narrowing in Todo
4086         buffer.  (Bug#4820)
4088 2009-10-31  Glenn Morris  <rgm@gnu.org>
4090         * net/ange-ftp.el (top-level): Don't require dired when compiling.
4091         (comint-last-output-start, comint-last-input-start)
4092         (comint-last-input-end): Don't defvar when compiling.
4093         (ange-ftp-process-file): Use bound-and-true-p.
4095         * pcmpl-rpm.el (top-level): Move provide statement to end.
4096         (pcmpl-rpm): Remove unused custom group.
4098         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
4100         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
4102         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
4103         (byte-compile-warnings): Add `constants' as an option.
4104         (byte-compile-callargs-warn, byte-compile-arglist-warn)
4105         (display-call-tree): Update for byte-compile-fdefinition possibly
4106         returning `(macro lambda ...)'.  (Bug#4778)
4107         (byte-compile-variable-ref, byte-compile-setq-default):
4108         Respect `constants' member of byte-compile-warnings.
4110         * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
4111         Use mapc rather than mapcar because the return value is never used.
4113         * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
4114         * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
4115         * cedet/semantic/html.el:
4116         Suppress harmless warnings about setting up semantic-imenu (not
4117         part of Emacs) variables.
4119 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4121         * vc-bzr.el (vc-bzr-revision-keywords): New var.
4122         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
4123         to "submit:".
4125         * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
4126         * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
4127         * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
4128         * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
4129         * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
4130         * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
4131         (semantic-analyzer-debug-global-symbol)
4132         (semantic-analyzer-debug-missing-innertype)
4133         (semantic-analyzer-debug-insert-include-summary):
4134         * cedet/semantic/util.el (semantic-file-tag-table):
4135         (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
4136         (semantic-recursive-find-nonterminal-by-name):
4137         * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
4138         * cedet/semantic/tag-file.el (semantic-prototype-file):
4139         * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
4140         * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
4141         * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
4142         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
4143         (semantic-idle-summary-maybe-highlight):
4144         * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
4145         (semantic-ia-sb-tag-info):
4146         * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
4147         * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
4148         * cedet/semantic/ede-grammar.el (project-compile-target):
4149         (ede-proj-makefile-insert-variables):
4150         * cedet/semantic/debug.el (semantic-debug-set-parser-location):
4151         (semantic-debug-set-source-location, semantic-debug-interface-layout)
4152         (semantic-debug-mode, semantic-debug):
4153         * cedet/semantic/db.el (semanticdb-needs-refresh-p):
4154         * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
4155         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
4156         * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
4157         (semanticdb-find-translate-path-includes--internal)
4158         (semanticdb-reset-log, semanticdb-find-log-activity):
4159         * cedet/semantic/db-file.el (object-write):
4160         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
4161         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
4162         (semanticdb-create-ebrowse-database):
4163         * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
4164         * cedet/semantic/complete.el (semantic-displayor-focus-request)
4165         (semantic-collector-calculate-completions-raw)
4166         (semantic-complete-read-tag-analyzer):
4167         * cedet/semantic/analyze.el (semantic-analyze-pulse):
4168         * cedet/ede/util.el (ede-update-version-in-source):
4169         * cedet/ede/proj.el (project-delete-target):
4170         * cedet/ede/proj-elisp.el (ede-update-version-in-source)
4171         (ede-proj-flush-autoconf):
4172         * cedet/ede/pconf.el (ede-proj-configure-synchronize)
4173         (ede-proj-configure-synchronize):
4174         * cedet/ede/locate.el (ede-locate-file-in-project-impl):
4175         * cedet/ede/linux.el (ede-linux-version):
4176         * cedet/ede/emacs.el (ede-emacs-version):
4177         * cedet/ede/dired.el (ede-dired-add-to-target):
4178         * cedet/ede.el (ede-buffer-header-file, ede-find-target)
4179         (ede-buffer-documentation-files, ede-project-buffers, ede-set)
4180         (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
4181         * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
4182         (cedet-idutils-lid-call, cedet-idutils-expand-filename)
4183         (cedet-idutils-version-check):
4184         * cedet/cedet-global.el (cedet-gnu-global-call):
4185         (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
4186         (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
4187         * cedet/cedet-cscope.el (cedet-cscope-call)
4188         (cedet-cscope-expand-filename, cedet-cscope-version-check):
4189         Use with-current-buffer.
4190         * cedet/ede.el (ede-make-project-local-variable)
4191         (ede-set-project-variables, ede-set): Use dolist.
4193 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
4195         * textmodes/ispell.el (ispell-skip-region-alist):
4196         * international/mule-conf.el (eight-bit):
4197         * international/fontset.el (font-encoding-alist):
4198         * startup.el (pure-space-overflow-message):
4199         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
4200         * paths.el (gnus-nntp-service, rmail-spool-directory)
4201         (term-file-prefix):
4202         * files.el (save-some-buffers-action-alist):
4203         * cmuscheme.el (same-window-buffer-names):
4204         * ielm.el (same-window-buffer-names):
4205         * shell.el (same-window-buffer-names):
4206         * mail/sendmail.el (same-window-buffer-names):
4207         * progmodes/inf-lisp.el (same-window-buffer-names):
4208         * bindings.el (mode-line-client)
4209         (mode-line-column-line-number-mode-map):
4210         * language/tibetan.el (tibetan-precomposition-rule-regexp)
4211         (tibetan-precomposed-regexp): Purecopy string arguments.
4213 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4215         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
4216         (calcDigit-nondigit):
4217         * calc/calc-yank.el (calc-copy-to-buffer):
4218         * calc/calc-units.el (calc-invalidate-units-table):
4219         * calc/calc-trail.el (calc-trail-yank):
4220         * calc/calc-store.el (calc-insert-variables):
4221         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
4222         * calc/calc-prog.el (calc-read-parse-table):
4223         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
4224         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
4225         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
4226         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
4227         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
4228         (calc-graph-name, calc-graph-find-command, calc-graph-view)
4229         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
4230         * calc/calc-ext.el (calc-realign):
4231         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
4232         (calc-embedded-finish-edit, calc-embedded-make-info)
4233         (calc-embedded-finish-command, calc-embedded-stack-change):
4234         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
4236         * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
4237         (overload-docstring-extension): Use that info.
4238         * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
4239         * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
4240         * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
4241         (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
4242         (semantic-nonterminal-full-name): Add the new `when' info.
4243         * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
4244         `assert'.
4246         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
4247         shell-dynamic-complete-filename in preference to
4248         comint-dynamic-complete-filename.
4250         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
4251         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
4252         Don't consider whether the display supports colors.
4253         (bookmark-import-new-list): Use dolist.
4254         (bookmark-bmenu-mode-map): Move initialization into declaration.
4255         (bookmark-bmenu-list): Use dolist, simplify.
4256         (bookmark-show-all-annotations): Use save-selected-window and dolist.
4257         (menu-bar-final-items): Use push.
4259 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
4261         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
4262         it works on remote files.
4263         (vc-hg-diff): Don't pass any `--cwd' argument.
4265 2009-10-27  Kevin Ryde  <user42@zip.com.au>
4267         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
4268         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
4269         (Further to Bug#3921).
4271 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
4273         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
4274         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
4275         calling `tramp-imap-put-file'.  Add file size to the call.
4276         (tramp-imap-get-file-entries): Compute also user name, file size,
4277         and date.
4278         (tramp-imap-handle-insert-directory): Insert uid and gid.
4279         (tramp-imap-handle-file-attributes): Transform uid and gid
4280         according to `id-format'.
4281         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
4282         size in header X-Size.
4284 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
4286         * simple.el (transpose-subr): Give clearer error when the mark
4287         is not set.  (Bug#4807)
4289 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
4291         * net/tramp.el (tramp-perl-file-truename): New defconst.
4292         Perl code contributed by yary <not.com@gmail.com> (tiny change).
4293         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
4294         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
4295         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
4297         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
4298         Ignore `dired-call-process'.
4299         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
4301 2009-10-26  Julian Scheid  <julians37@gmail.com>
4303         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
4304         (tramp-get-remote-readlink): New defun.
4305         (tramp-handle-file-truename): Use it.
4306         (tramp-handle-file-exists-p): Check file-attributes cache, assume
4307         file exists if cache value present.
4308         (tramp-check-cached-permissions) New defun.
4309         (tramp-handle-file-readable-p): Use it.
4310         (tramp-handle-file-writable-p): Likewise.
4311         (tramp-handle-file-executable-p): Likewise.
4312         (tramp-handle-file-name-all-completions): Try using Perl to get
4313         partial completions.  When perl not available, combine `cd' and
4314         `ls' into single remote operation and use shell expansion to get
4315         partial remote directory contents.  Set `file-exists-p' cache for
4316         directory and any files returned by ls.  Change cache handling to
4317         support partial directory contents.  Use error message emitted by
4318         remote `cd' or Perl code for local tramp-error.
4319         (tramp-do-copy-or-rename-file-directly): Avoid separate
4320         tramp-send-command-and-check call.
4321         (tramp-handle-process-file): Merge three remote ops into one.
4322         Do not flush all caches when `process-file-side-effects' is set.
4323         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
4324         file-attributes shows uid/gid to be set already.
4326 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
4328         * textmodes/tex-mode.el (tex-dvi-view-command)
4329         (tex-show-queue-command, tex-open-quote):
4330         * progmodes/ruby-mode.el (auto-mode-alist)
4331         (interpreter-mode-alist): Purecopy strings.
4333         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
4335         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
4336         string for the hook, keymap and abbrev table.
4338         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
4340         * x-dnd.el (x-dnd-xdnd-to-action):
4341         * startup.el (fancy-startup-text, fancy-about-text): Change to
4342         defconst from defvar.
4344         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
4346         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
4347         Purecopy initialization strings.
4349         * mail/sendmail.el (mail-header-separator)
4350         (mail-personal-alias-file):
4351         * mail/rmail.el (rmail-default-dont-reply-to-names)
4352         (rmail-ignored-headers, rmail-retry-ignored-headers)
4353         (rmail-highlighted-headers, rmail-secondary-file-directory)
4354         (rmail-secondary-file-regexp):
4355         * files.el (null-device, file-name-invalid-regexp)
4356         (locate-dominating-stop-dir-regexp)
4357         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
4358         (interpreter-mode-alist): Use mapcar instead of mapc.
4360         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
4362         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
4363         (completion-ignored-extensions):
4364         (debug-ignored-errors): Purecopy strings.
4366 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4368         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
4369         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
4370         (pcomplete--here): Use push.
4372         * subr.el (all-completions): Declare the 4th arg obsolete.
4374 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4376         * pcomplete.el (pcomplete-unquote-argument-function): New var.
4377         (pcomplete-unquote-argument): New function.
4378         (pcomplete--common-suffix): Always pay attention to case.
4379         (pcomplete--table-subvert): Quote and unquote the text.
4380         (pcomplete--common-quoted-suffix): New function.
4381         (pcomplete-std-complete): Use it and pcomplete-begin.
4383         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
4384         we're inside a dedicated or minibuffer window.
4386 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4388         * cedet/semantic/fw.el (semantic-alias-obsolete)
4389         (semantic-varalias-obsolete): Make the `when' arg mandatory.
4390         (define-mode-overload-implementation):
4391         * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
4392         * cedet/semantic/wisent.el (wisent-lex-make-token-table):
4393         * cedet/semantic/util.el (semantic-file-token-stream)
4394         (semantic-something-to-stream):
4395         * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
4396         (semantic-expand-nonterminal):
4397         * cedet/semantic/tag-file.el (semantic-find-nonterminal)
4398         (semantic-find-dependency, semantic-find-nonterminal)
4399         (semantic-find-dependency):
4400         * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
4401         (semantic-flex-text, semantic-flex-make-keyword-table)
4402         (semantic-flex-keyword-p, semantic-flex-keyword-put)
4403         (semantic-flex-keyword-get, semantic-flex-map-keywords)
4404         (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
4405         * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
4406         * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
4407         (semantic-after-idle-scheduler-reparse-hooks):
4408         * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
4409         * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
4410         * cedet/semantic.el (semantic-toplevel-bovine-table)
4411         (semantic-toplevel-bovine-cache)
4412         (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
4413         (semantic-init-mode-hooks, semantic-init-db-hooks)
4414         (semantic-bovination-working-type): Provide the `when' arg.
4416 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
4418         * bookmark.el: Update documentation, especially documentation
4419         of `bookmark-alist' and of the bookmark file format.
4420         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
4422 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
4424         * mail/emacsbug.el (report-emacs-bug): Clarify that the
4425         keybindings apply to the mail buffer (Bug#4003).  Shrink help
4426         window to buffer.
4428         * whitespace.el (whitespace-mode, whitespace-newline-mode)
4429         (global-whitespace-mode, global-whitespace-newline-mode)
4430         (whitespace-toggle-options, global-whitespace-toggle-options):
4431         Doc fix (Bug#3660).
4433         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
4434         of xmltok-start before the end tag was inserted (Bug#2840).
4436         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
4437         patterns that are preceded by an open-paren (Bug#1320).
4439 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
4441         * files.el (delete-directory): Delete symlinks to directories with
4442         delete-file (Bug#4739).
4444 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
4446         * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
4447         * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
4448         argument to make-obsolete.
4450         * cedet/semantic/fw.el (semantic-alias-obsolete)
4451         (semantic-varalias-obsolete): Add optional WHEN argument.
4453 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
4455         * vc.el (vc-backend-for-registration): Rename from
4456         vc-get-backend-for-registration.  Update callers.
4458         * international/mule-cmds.el (set-language-info-alist):
4459         Purecopy lang-env.
4460         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
4461         (charset): Purecopy the name.
4462         (define-char-code-property): Purecopy string arguments.
4464         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
4465         Purecopy string arguments.
4467         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
4468         * ediff-hook.el (menu-bar-ediff-menu):
4469         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
4470         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
4472 2009-10-24  Glenn Morris  <rgm@gnu.org>
4474         * comint.el (comint-dynamic-list-completions):
4475         * term.el (term-dynamic-list-completions): Use choose-completion rather
4476         than obsolete alias mouse-choose-completion.
4478         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
4479         file-cache-choose-completion.
4480         (file-cache-choose-completion): Handle an optional event argument.
4481         (file-cache-mouse-choose-completion): Make it an obsolete alias.
4483         * progmodes/octave-mod.el (octave-complete-symbol):
4484         Use choose-completion if mouse-choose-completion is ever removed.
4486         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
4487         use.
4489         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
4490         compiler.
4492         * vc-hooks.el (vc-responsible-backend): Fix declaration.
4494 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4496         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
4497         Ignore `pred' now that we receive one.
4498         Handle test-completion specially.
4500 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
4502         * vc.el (vc-responsible-backend): Throw an error if not backend is
4503         found.  Remove the REGISTER argument.  Move the code dealing with
4504         REGISTER ...
4505         (vc-get-backend-for-registration): ... here.  New function.
4506         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
4507         of vc-responsible-backend, pass the file name instead of the
4508         directory name.
4510 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4512         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
4513         New funs.
4514         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
4515         (pcomplete-comint-setup): Don't modify a global var via
4516         accidental side-effects.
4517         (pcomplete-shell-setup): Adjust call accordingly.
4518         (pcomplete-parse-comint-arguments): Use push.
4520 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
4522         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
4523         Allow uncapitalized info node names (Bug#3921).
4525         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
4526         to the DEBUG file (Bug#3781).
4528 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
4530         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
4531         dictionary entry (Bug#4579).
4533 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
4535         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
4536         from `rfn-eshadow-update-overlay-hook' when unloading.
4537         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
4538         "rsyncc".  Adjust doc string.
4539         (tramp-temp-buffer-file-name) New buffer-local defvar.
4540         (tramp-handle-insert-file-contents, tramp-handle-write-region):
4541         Keep temporary file when indicated by method ("rsync" and
4542         "rsyncc").
4543         (tramp-handle-write-region): Handle APPEND.
4544         (tramp-delete-temp-file-function): New defun.  Added to
4545         `kill-buffer-hook'.
4547 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
4549         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
4551 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
4553         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
4554         (color-name-rgb-alist, tty-standard-colors)
4555         (tty-color-mode-alist): Change to defconst.
4557         * simple.el (mark-inactive): Purecopy message.
4559         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
4560         (global-map, yank-menu):
4561         * textmodes/ispell.el (ispell-menu-map):
4562         * net/eudc.el (eudc-tools-menu):
4563         * international/mule-cmds.el (describe-language-environment-map)
4564         (setup-language-environment-map, set-coding-system-map)
4565         (mule-menu-keymap):
4566         * vc-hooks.el (vc-menu-entry, vc-menu-map):
4567         * replace.el (occur-mode-map):
4568         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
4570 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
4572         * calc/calc.el (math-read-number, math-read-number-simple): Use
4573         `save-match-data'.
4575 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4577         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
4578         rather than fiddling with global-map bindings, since it should only
4579         affect per-terminal settings.
4580         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
4582         * minibuffer.el (completion-table-with-terminator): Allow to specify
4583         the terminator-regexp.
4585         * simple.el (switch-to-completions): Look for *Completions* in other
4586         frames as well.
4588         * pcomplete.el: Allow the use of completion-tables.
4589         (pcomplete-std-complete): New command.
4590         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
4591         (pcomplete--here): Use a function for `form' rather than an expression,
4592         so it can be byte-compiled.
4593         (pcomplete-here, pcomplete-here*): Adjust accordingly.
4594         Add edebug declaration.
4595         (pcomplete-show-completions): Remove unused var `curbuf'.
4596         (pcomplete-do-complete, pcomplete-stub):
4597         Don't assume `completions' is a list of strings any more.
4599 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
4601         * find-dired.el (find-name-arg): Fix typo in docstring.
4603 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4605         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
4606         (pcmpl-linux-fs-types): Same, and update to new modules layout.
4608         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
4609         pcomplete-entries.
4611         * comint.el (comint-read-input-ring, comint-write-input-ring)
4612         (comint-substitute-in-file-name)
4613         (comint-dynamic-complete-as-filename)
4614         (comint-dynamic-simple-complete)
4615         (comint-dynamic-list-filename-completions)
4616         (comint-dynamic-list-completions)
4617         (comint-redirect-results-list-from-process): Minor simplifications.
4619 2009-10-21  Kevin Ryde  <user42@zip.com.au>
4621         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
4622         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
4623         the first form.  And insert a blank line after ";;; Code" since
4624         that's usual style.  (Bug#4612)
4626         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
4628 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4630         * minibuffer.el (completion-table-with-terminator): Properly implement
4631         boundaries, in case `terminator' appears in the suffix.
4632         (completion--embedded-envvar-table): Don't return boundaries if
4633         there's no valid completion.  Simplify.
4634         (completion-file-name-table): New completion table extracted from
4635         completion--file-name-table.
4636         (completion--file-name-table): Use it.
4637         (read-file-name-predicate): Declare obsolete.
4638         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
4639         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
4640         completion-file-name-table, and use the `pred' argument.
4641         * files.el (locate-file-completion-table): Use the `pred' arg rather
4642         than read-file-name-predicate.
4643         (abbreviate-file-name): Use \` rather than ^ for BOS.
4645 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
4647         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
4648         vc-responsible-backend to register, it causes problems.
4650 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4652         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
4654 2009-10-21  Eric Ludlam  <zappo@gnu.org>
4656         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
4657         (semantic-c-debug-mode-init-pch): New functions.
4658         (semantic-c-debug-mode-init-last-mode): New var.
4659         (semantic-c-parse-lexical-token): Use them.
4661         * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
4662         When extracting the argument list, limit only by point-max.
4664 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
4666         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
4667         (tramp-smb-handle-file-attributes): Use it.
4668         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
4669         (tramp-smb-handle-insert-directory): Use `mapc' rather than
4670         `mapcar'.  Use `tramp-smb-get-stat-capability'.
4671         Add `dired-filename' text properties.
4672         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
4673         (tramp-smb-maybe-open-connection): Simplify check for smbclient
4674         version.
4676 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4678         * subr.el (read-key-delay): Reduce to 0.01.
4679         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
4680         (bug#4751).
4682 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4684         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
4686         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
4687         (Info-menu): Remove unused vars `last' and `completions'.
4688         (Info-index-nodes): Remove unused var `node'.
4690         * info.el (Info-complete-menu-item): Use complete-with-action.
4692 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
4694         Make vc-annotate work through copies and renames.
4695         * vc-annotate.el (vc-annotate-extract-revision-at-line):
4696         Return the file name too.
4697         (vc-annotate-revision-at-line)
4698         (vc-annotate-find-revision-at-line)
4699         (vc-annotate-revision-previous-to-line)
4700         (vc-annotate-show-log-revision-at-line): Update to get the file
4701         name from vc-annotate-extract-revision-at-line.
4702         (vc-annotate-show-diff-revision-at-line-internal): Change the
4703         argument to mean whether to show a file diff or not.  Get the file
4704         name from vc-annotate-extract-revision-at-line.
4705         (vc-annotate-show-diff-revision-at-line):
4706         Update vc-annotate-show-diff-revision-at-line call.
4707         (vc-annotate-warp-revision): Add an optional file argument.
4709         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
4710         (vc-git-annotate-extract-revision-at-line): Also return the file
4711         name if found.
4713         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
4714         command.  Remove unused code.
4715         (vc-hg-annotate-re): Update to match --follow output.
4716         (vc-hg-annotate-extract-revision-at-line): Also return the file
4717         name if found.
4719         * vc.el: Update annotate-extract-revision-at-line documentation.
4721 2009-10-18  Kevin Ryde  <user42@zip.com.au>
4723         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
4724         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
4726         * net/browse-url.el (browse-url): Identify alist with "consp and
4727         not functionp" and let all other things go down the `apply' leg,
4728         as suggested by Stefan.  (Further to bug#4531.)
4730 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
4732         * minibuffer.el (read-file-name): Check for repeat before putting
4733         a default argument in file-name-history (Bug#4657).
4735         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
4736         read syntax (Bug#4737).
4738         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
4740 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
4742         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
4743         (html-tag-alist, html-tag-help): Add descriptions for undocumented
4744         entries and make note of obsolete tags.
4746 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4748         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
4750 2009-10-18  Glenn Morris  <rgm@gnu.org>
4752         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
4753         grep, so that binary files (eg international/uni-bidi.el) can match.
4754         Remove test for "UnicodeData" files, since it is hopefully unnecessary
4755         now, and in any case the file header format has changed.
4757 2009-10-17  Glenn Morris  <rgm@gnu.org>
4759         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
4760         (flyspell-get-word, flyspell-large-region)
4761         (flyspell-auto-correct-previous-word): Doc/error message fixes.
4763 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
4765         * Makefile.in (ELCFILES): Add ede/shell.
4767 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
4769         * term/common-win.el (x-colors): Purecopy it.
4771 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4773         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
4774         permissive for when the buffer is empty.
4775         (tar-header-block-tokenize): Decode the username and groupname.
4776         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
4778 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
4780         * cedet/srecode/srt.el:
4781         * cedet/srecode/compile.el:
4782         * cedet/semantic/mru-bookmark.el:
4783         * cedet/semantic/debug.el:
4784         * cedet/semantic/complete.el:
4785         * cedet/semantic/analyze.el: Require CL when compiling.
4787 2009-10-17  Eric Ludlam  <zappo@gnu.org>
4789         * cedet/semantic/scope.el
4790         (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
4791         tmpscope so that the regular scope will continue to work.
4793         * cedet/semantic/idle.el (semantic-idle-tag-highlight):
4794         Use semantic-idle-summary-highlight-face as the highlighting.
4796         * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
4797         contains multibyte characters, choose first applicable coding
4798         system automatically.
4800         * cedet/ede/project-am.el (project-run-target): New method.
4801         (project-run-target): New method.
4803         * cedet/ede.el (ede-target): Add run target menu item.
4804         (ede-project, ede-minor-keymap): Add ede-run-target binding.
4805         (ede-run-target): New function.
4806         (ede-target::project-run-target): New method.
4808         * cedet/ede/proj.el (project-run-target): New method.
4810         * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
4811         (ede-g++-libtool-shared-compiler): Remove SHELL.  Remove COMMANDS.
4812         Add :rules.
4813         (ede-proj-target-makefile-shared-object): Only libtool compilers
4814         now available.  Add linkers for libtool.
4815         (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
4816         (ede-proj-makefile-target-name): Always use .la extension.
4818         * cedet/ede/proj-prog.el (project-run-target): New method.
4820         * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
4821         (ede-g++-linker): Change Change link lines.
4823         * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
4824         When searching for old variables, go to the end of the buffer and
4825         search backward from there.
4826         (ede-proj-makefile-automake-insert-subdirs)
4827         (ede-proj-makefile-automake-insert-extradist): New methods.
4828         (ede-proj-makefile-create): Use them.
4830         * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
4831         Force FILE to expand to the current target.  Use file-exists-p to
4832         check that it exists.
4834         * cedet/ede/linux.el (ede-linux-version): Don't call "head".
4835         (ede-linux-load): Wrap dir in file-name-as-directory.
4836         Set :version slot.
4838         * cedet/ede/files.el (ede-get-locator-object): When enabling
4839         locate, do so on "top".
4841         * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
4842         file-name-as-directory during compare.
4843         (ede-emacs-version): Return Emacs/XEmacs differentiator.
4844         Get version number from different places.  Don't call egrep.
4845         (ede-emacs-load): Set :version slot.  Call file-name-as-directory
4846         to set the directory.
4848         * cedet/ede/shell.el: New file.
4850         * cedet/inversion.el (inversion-decoders): Allow for stray . in
4851         alpha/beta variants.
4853 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4855         * international/mule-cmds.el (select-safe-coding-system): If the file
4856         has a coding cookie, use it regardless of any other setting (bug#4712).
4858 2009-10-17  Glenn Morris  <rgm@gnu.org>
4860         * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
4861         All errors should have messages.
4863         * foldout.el (foldout-mouse-swallow-events):
4864         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
4866         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
4867         (dired-keep-marker-copy, dired-keep-marker-hardlink)
4868         (dired-keep-marker-symlink, dired-dwim-target)
4869         (dired-copy-preserve-time): Do not autoload these defcustoms.
4871         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
4872         messages from messing up the file coding.  (Bug#4623)
4874 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
4876         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
4877         if no match is found for the current dictionary.  (Bug#4578)
4879         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
4880         optional, since that is how it is documented, and this is often called
4881         with a nil argument.  (Bug#4577)
4882         (flyspell-external-point-words, flyspell-auto-correct-word)
4883         (flyspell-correct-word-before-point, flyspell-word-search-forward)
4884         (flyspell-word-search-backward): Remove nil argument in calls to
4885         flyspell-get-word, since it is not needed now.
4887 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
4889         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
4891 2009-10-16  Glenn Morris  <rgm@gnu.org>
4893         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
4895 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
4897         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
4898         (ange-ftp-file-size): New function.
4899         (ange-ftp-file-attributes): Use it.
4901 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
4903         * net/tramp-smb.el (tramp-smb-version): New defvar.
4904         (tramp-smb-maybe-open-connection): Use it, in order to avoid
4905         repeated checks.
4907 2009-10-16  Glenn Morris  <rgm@gnu.org>
4909         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
4910         Maybe copy some custom properties from old to new name.  (Bug#4706)
4912 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
4914         * subr.el (error, sit-for, start-process-shell-command)
4915         (start-file-process-shell-command): Set the calling convention
4916         after the function definition.
4918 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4920         * subr.el (error, sit-for, start-process-shell-command)
4921         (start-file-process-shell-command): Use the new
4922         set-advertised-calling-convention feature.
4924 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
4926         * international/ucs-normalize.el (ucs-normalize-version):
4927         Change to 1.2.
4928         (check-range): Adjust for Unicode 5.2.
4930 2009-10-15  Juri Linkov  <juri@jurta.org>
4932         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
4933         to the `menu-item' format.
4935 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
4937         * net/tramp.el (tramp-replace-environment-variables): Do not fail
4938         if the environment variable does not exist.
4940         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
4941         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
4942         parameter.
4943         (tramp-smb-handle-add-name-to-file)
4944         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
4945         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
4946         (tramp-smb-handle-file-attributes)
4947         (tramp-smb-do-file-attributes-with-stat)
4948         (tramp-smb-handle-file-local-copy)
4949         (tramp-smb-handle-insert-directory)
4950         (tramp-smb-handle-make-directory)
4951         (tramp-smb-handle-make-directory-internal)
4952         (tramp-smb-handle-make-symbolic-link)
4953         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
4954         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
4955         (tramp-smb-maybe-open-connection): Apply the changed parameters.
4956         (tramp-smb-read-file-entry): Read Disk names in compressed format.
4957         Handle long file names.
4958         (tramp-smb-get-cifs-capabilities): Check, whether the connection
4959         process is running.
4960         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
4961         Read share names with "-g" option.
4963 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
4965         * net/rcirc.el (rcirc-view-log-file): New command.
4966         (rcirc-track-minor-mode-map): Remove C-c ` binding.
4967         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
4968         specified.
4970 2009-10-15  Glenn Morris  <rgm@gnu.org>
4972         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
4973         from the second command-line argument.
4974         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
4975         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
4976         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
4977         w32-batch-update-autoloads.
4978         * emacs-lisp/autoload.el (autoload-make-program): New variable.
4979         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
4981         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
4982         the headers cannot be located.  Simplify, subtracting superflous
4983         save-excursions.
4985 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4987         Replace completion-base-size by completion-base-position to fix bugs
4988         such as (bug#4699).
4989         * simple.el (completion-base-position): New var.
4990         (completion-base-size): Mark as obsolete.
4991         (choose-completion): Make it work for mouse events as well.
4992         Pass the new base-position to choose-completion-string.
4993         (choose-completion-guess-base-position): New function, extracted from
4994         choose-completion-delete-max-match.
4995         (choose-completion-delete-max-match): Use it.  Make obsolete.
4996         (choose-completion-string): Use the new base-position info.
4997         (completion-root-regexp): Delete.
4998         (completion-setup-function): Preserve completion-base-position.
4999         Eliminate obsolete base-size manipulation.
5000         * minibuffer.el (display-completion-list): Don't mess with base-size.
5001         (minibuffer-completion-help): Set completion-base-position instead.
5002         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
5003         choose-completion.
5004         * textmodes/bibtex.el (bibtex-complete):
5005         * emacs-lisp/crm.el (crm--choose-completion-string):
5006         Adjust to new calling convention.
5007         * complete.el (partial-completion-mode): Use minibufferp to avoid
5008         bumping into incompatible change to choose-completion-string-functions.
5009         * ido.el (ido-choose-completion-string): Make its calling convention
5010         more permissive.
5011         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
5012         base-size manipulation.
5013         (comint-dynamic-list-input-ring): Use dotimes and push.
5014         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
5015         fundamental-mode.  Use `or'.
5017 2009-10-14  Juri Linkov  <juri@jurta.org>
5019         * misearch.el (multi-isearch-next-buffer-from-list)
5020         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
5022 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5024         * Makefile.in (compile-onefile): Load `bytecomp' rather than
5025         `bytecomp.el'.
5027         * minibuffer.el (completion-pcm--merge-completions): Make sure the
5028         string we return is all made up of text from the completions rather
5029         than part from the completions and part from the input (bug#4219).
5031         * ido.el (ido-everywhere): Use define-minor-mode.
5033         * buff-menu.el (list-buffers, ctl-x-map):
5034         Mark the entry points with ;;;###autoload cookies.
5036 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
5038         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
5039         correctly in the detached head case.
5040         (vc-git-print-log): Remove unused binding.
5042         * vc.el (vc-responsible-backend): When a directory is passed for
5043         for registration create a VC repository if no backend is
5044         responsible for the directory argument.
5045         (vc-deduce-fileset): Tell vc-responsible-backend to register.
5047         * vc.el: Move comments about RCS and SCCS ...
5048         * vc-rcs.el:
5049         * vc-sccs.el: ... here, respectively.
5051 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5053         * minibuffer.el (completion--file-name-table): Return nil if there's
5054         no file completion, even if substitute-in-file-name changed
5055         the string (bug#4708).
5057 2009-10-13  Juri Linkov  <juri@jurta.org>
5059         * files-x.el (read-file-local-variable-value): Don't filter out
5060         minor modes from mode name completion (bug#4664).
5062 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
5064         * international/mule-cmds.el (ucs-names): Remove exclusion of
5065         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
5067 2009-10-13  Kenichi Handa  <handa@m17n.org>
5069         * international/uni-name.el: Regenerated.
5071 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
5073         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
5074         should be automatically buffer-local, but isn't.)
5076 2009-10-12  Sam Steingold  <sds@gnu.org>
5078         * progmodes/compile.el (compilation-next-error-function): Fix the
5079         timestamps if the buffer has been visited before.
5080         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
5081         non-anchored patterns, like the perl one (bug#3928).
5083 2009-10-12  Glenn Morris  <rgm@gnu.org>
5085         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
5086         Let-bind `size'.
5088 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
5090         * proced.el (proced-unload-function): New function.
5092         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
5093         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
5094         Doc fix.
5096         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
5098 2009-10-11  Juri Linkov  <juri@jurta.org>
5100         * files-x.el (read-file-local-variable-value):
5101         Provide default value only for bound variables (bug#4664).
5103 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
5105         * net/tramp.el (tramp-local-host-p): Function shall return nil for
5106         connection methods like smb.
5108         * net/tramp-cache.el (tramp-flush-connection-property): The hash
5109         can be empty.
5111         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
5112         (tramp-smb-file-name-handler-alist): Add handlers for
5113         `add-name-to-file', `make-symbolic-link'.
5114         (tramp-smb-handle-add-name-to-file)
5115         (tramp-smb-do-file-attributes-with-stat)
5116         (tramp-smb-handle-make-symbolic-link)
5117         (tramp-smb-get-cifs-capabilities): New defuns.
5118         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
5119         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
5120         (tramp-smb-handle-file-local-copy)
5121         (tramp-smb-handle-make-directory-internal)
5122         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
5123         The file name syntax depends on cifs capabilities.
5124         (tramp-smb-handle-file-attributes):
5125         Call `tramp-smb-do-file-attributes-with-stat' if possible.
5126         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
5127         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
5129 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
5131         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
5132         (eieio-defclass): Apply deftype handler and setf-method properties
5133         directly.
5134         (eieio-add-new-slot): Avoid union function from cl library.
5135         (eieio--typep): New function.
5136         (eieio-perform-slot-validation): Use it.
5138 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
5140         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
5141         Update documentation to refer to the variables documented in r1.135.
5142         (Bug#4188)
5144 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
5146         * bookmark.el (Info-suffix-list): Remove this unused variable.
5147         (bookmark-current-point): Remove this obsolete variable.
5148         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
5149         Adjust for removal of bookmark-current-point.
5151         (bookmarks-already-loaded, bookmark-current-buffer)
5152         (bookmark-yank-point): Document.  (Bug#4188)
5154 2009-10-10  Glenn Morris  <rgm@gnu.org>
5156         * frame.el (frame-height): Doc fix.
5158         * calendar/calendar.el (calendar-split-width-threshold): New option.
5159         (calendar-basic-setup): Use calendar-split-width-threshold.
5161 2009-10-10  Sascha Wilde  <wilde@sha-bang.de>
5163         * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
5164         Use .la for Automake.
5166 2009-10-09  Chong Yidong  <cyd@stupidchicken.com>
5168         * cedet/ede/pconf.el (ede-proj-configure-synchronize):
5169         Use "autoreconf -i".  Suggested by Andreas Schwab.
5171 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
5173         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
5174         Ideographic Supplement" range (U+1F200..U+1F2FF).
5176 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
5178         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
5179         since the list will have been rebuilt anyway.  (Bug#4349)
5181 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
5183         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
5184         (bookmark-bmenu-execute-deletions): Don't save here, as
5185         bookmark-delete will now do so if necessary.
5186         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
5187         (Bug#4348)
5189 2009-10-09  Glenn Morris  <rgm@gnu.org>
5191         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
5193 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
5195         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
5196         (bookmark-jump-other-window): Just invoke bookmark-jump with new
5197         argument now, so the two function's behaviors will match.  (Bug#3645)
5199 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
5201         * cedet/ede/proj.el (project-make-dist, project-compile-project):
5202         Fix filename test.
5203         (ede-proj-dist-makefile): Use expand-file-name instead of concat
5204         to expand file names.
5206 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
5208         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
5209         (tramp-file-name-real-host, tramp-file-name-port):
5210         Apply `save-match-data'.
5212         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
5213         case both directories are remote.
5214         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
5215         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
5217 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
5219         * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
5220         (ede-proj-target-makefile-objectcode): Use it.
5222         * cedet/ede/source.el (ede-want-any-source-files-p)
5223         (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
5224         Return search result.  This error was introduced while merging.
5226 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
5228         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
5230 2009-10-07  Glenn Morris  <rgm@gnu.org>
5232         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
5233         of concat.
5235 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5237         * files-x.el (read-file-local-variable): Include some
5238         non-user-variables in the completion table (bug#4664).
5240 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
5242         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
5243         message.
5245         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
5246         (tramp-smb-file-name-handler-alist): Add handler for
5247         `copy-directory', `expand-file-name', `set-file-modes'.
5248         (tramp-smb-handle-copy-directory)
5249         (tramp-smb-handle-expand-file-name)
5250         (tramp-smb-handle-set-file-modes): New defuns.
5251         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
5252         (tramp-smb-handle-file-attributes): Simplify check for retrieving
5253         entry.
5254         (tramp-smb-handle-insert-directory): Don't flush the cache.
5255         (tramp-smb-maybe-open-connection): Check for samba client and
5256         server versions.
5258 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
5260         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
5261         to not error out of search for "^lisp=" fails.
5263 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
5265         * makefile.w32-in (WINS_UPDATES): New macro.
5266         (custom-deps, finder-data, autoloads): Use it.
5268 2009-10-07  Glenn Morris  <rgm@gnu.org>
5270         * Makefile.in (autoloads): Revert previous change.
5271         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
5272         the list of preloaded files passed on the command-line, get
5273         it from src/Makefile.
5275         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
5276         show the original buffer rather than a random one.
5278 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
5280         * help.el (describe-no-warranty): Place point in a slightly better
5281         position in the GPLv3 text.
5283 2009-10-06  Sam Steingold  <sds@gnu.org>
5285         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
5286         the comm attribute is present before calling regexp-quote.
5288 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
5290         * play/animate.el (animate-string): For good effect, make sure
5291         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
5293         * play/animate.el (animate-sequence, animate-birthday-present):
5294         * misc.el (butterfly): Don't set `indent-tabs-mode'.
5296 2009-10-06  Glenn Morris  <rgm@gnu.org>
5298         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
5300         * emacs-lisp/autoload.el (autoload-excludes): New variable.
5301         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
5302         (batch-update-autoloads): Process a string value of autoload-excludes,
5303         set during the build process.
5304         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
5306         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
5307         inside with-parsed...  macro so that `v' is defined.
5309         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
5310         * progmodes/fortran.el (fortran-end-of-block)
5311         (fortran-beginning-of-block):
5312         Also push mark in the macro case.
5314         * emerge.el (emerge-show-file-name):
5315         * calc/calc.el (calc-quit):
5316         * calc/calc-misc.el (calc-big-or-small):
5317         * calc/calc-graph.el (calc-graph-view):
5318         * calc/calc-ext.el (calc-reset):
5319         * calendar/calendar.el (calendar-basic-setup):
5320         Use window-full-height-p.
5322         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
5323         header we don't understand, don't insert another.  (Bug#4624)
5324         If changing mime charset, insert the new one in the right place.
5326 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
5328         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
5329         (cal-tex-cursor-month): Correctly increment the end date for diary and
5330         holiday listing.  (Bug#4626)
5332 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5334         * help-fns.el (describe-function-1): Don't burp if the function is not
5335         a symbol.
5337 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
5339         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
5340         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
5341         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
5342         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
5344         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
5345         (eieio-default-superclass): Reflow docstrings.
5346         (this, class-option-assoc, defclass, eieio-class-un-autoload)
5347         (eieio-unbind-method-implementations, defmethod)
5348         (eieio-validate-slot-value, eieio-validate-class-slot-value)
5349         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
5350         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
5351         (eieio-slot-originating-class-p, eieio-slot-name-index)
5352         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
5353         (constructor, initialize-instance, no-next-method, object-print)
5354         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
5355         Fix typos in docstrings.
5356         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
5357         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
5358         (next-method-p): Doc fixes.
5359         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
5360         Fix typos in error messages.
5361         (eieio-defmethod): Fix typo in description of generic method.
5363         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
5364         (eieio-persistent-save-interactive, slot-missing):
5365         Fix typos in docstrings.
5366         (eieio-instance-inheritor-slot-boundp): Doc fix.
5368         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
5369         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
5371         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
5372         (eieio-custom-object-apply-reset):
5373         Fix typos in docstrings and error messages.
5375         * emacs-lisp/eieio-datadebug.el (data-debug-show):
5376         Fix typo in docstring.
5378         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
5379         (eieio-browse-tree): Doc fix.
5380         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
5381         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
5382         Fix typos in docstrings.
5384         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
5385         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
5386         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
5387         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
5388         Reflow docstrings.
5390 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
5392         * vc-hg.el (log-view-vc-backend): Declare for compiler.
5393         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
5394         Set log-view-vc-backend so that diff can work.
5396         * log-view.el (log-view-diff): Use vc-diff-internal instead of
5397         vc-version-diff.
5398         (vc-diff-internal): Autoload this instead of vc-version-diff.
5400 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
5402         * simple.el (eval-expression): Doc fix.
5404         * progmodes/cwarn.el (cwarn-mode): Doc fix.
5406 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
5408         * files.el (directory-files-no-dot-files-regexp): New defconst.
5409         (delete-directory): Use it.
5410         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
5412         * net/tramp.el (tramp-verbose): Fix docstring.
5413         (tramp-methods): Add recursive option to `tramp-copy-args'.
5414         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
5415         "scp1_old", "scp2_old", "rsync", "rsyncc".
5416         (tramp-default-method): Check also for `auth-source-user-or-password'.
5417         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
5418         Add handler for `copy-directory'.
5419         (tramp-handle-copy-directory): New defun.
5420         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
5421         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
5422         Optimize sent command.
5424 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5426         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
5427         window if necessary.
5429         * calendar/calendar.el (calendar-basic-setup): Don't call
5430         switch-to-buffer in a dedicated window.
5432 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
5434         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
5435           don't do anything related to relocating, just return nil.
5436         (bookmark-error-no-filename): New error.
5437         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
5438           bookmark has no file.  Don't even attempt to handle things that
5439           are not files; the whole point of custom handlers is to keep that
5440           knowledge elsewhere anyway.  Tighten some comments.
5441         (bookmark-file-or-variation-thereof): Remove now-unused function.
5442         (bookmark-location): Doc string fix.
5443         (Bug#4250)
5445 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
5447         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
5448         don't use a file dialog, because they usually don't know how to read
5449         a directory target from the user.  (Bug#4230)
5450         Also, make sure the prompt can display directories as well as files.
5452 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
5454         * bookmark.el (bookmark-set, bookmark-buffer-name):
5455         Improve doc strings.  (Bug#1193)
5457 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
5459         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
5460         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
5461         (bookmark-get-annotation, bookmark-set-annotation)
5462         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
5463         (bookmark-set-position, bookmark-get-front-context-string)
5464         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
5465         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
5466         (bookmark-jump-other-window, bookmark-handle-bookmark)
5467         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
5468         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
5469         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
5470            Improve doc strings to say whether bookmark can be a string or
5471            a record or both, and make other consistency and clarity fixes.
5472         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
5473         (bookmark-default-annotation-text, bookmark-yank-word)
5474         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
5475         (bookmark-import-new-list, bookmark-maybe-rename)
5476         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
5477         (bookmark-bmenu-bookmark): Give these doc strings.
5478         (bookmark-bmenu-check-position): Give this a doc string, but also
5479            add a FIXME comment about how the function may be pointless.
5480         (bookmark-default-handler): Rework doc string and change a
5481            parameter name, to clarify that this takes a bookmark record
5482            not a bookmark name.
5483         (bookmark-set): Change a parameter name to indicate its meaning,
5484            and improve the doc string a bit.
5485         (Bug#4188)
5487 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
5489         * bookmark.el (bookmark-alist): Document the new `handler' element
5490         in the param alist.
5491         (bookmark-make-record-function): Adjust documentation for above.
5492         (Bug#4193)
5494 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
5496         * info.el (Info-bookmark-make-record): Document this function.
5497         (Info-bookmark-jump): Document with a doc string, not just a comment.
5498         (Bug#4203)
5500 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
5502         * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
5503         (semantic-new-buffer-fcn): Call parser setup functions here.
5504         (semantic-mode): Don't call parser setup functions here, it's done
5505         in semantic-new-buffer-fcn now.
5506         (semantic-mode): Parse all existing buffers when enabled.
5508         * cedet/srecode/compile.el (srecode-compile-file):
5509         Call semantic-new-buffer-fcn if the buffer has not been parsed.
5511 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
5513         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
5515         * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
5516         (proj-comp-insert-variable-once): New macro, renamed from
5517         ede-pmake-insert-variable-once in ede/pmake.edl.
5518         (ede-proj-makefile-insert-variables): Use it.
5520 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
5522         * files.el (copy-directory): New defun.
5524         * dired-aux.el (dired-copy-file-recursive): Use it.
5526 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
5528         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
5529         (makefile-end-of-command):
5530         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
5531         (semantic-end-of-context): Fix previous change.  Doc fixes.
5533 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
5535         * files-x.el (modify-dir-local-variable)
5536         (copy-dir-locals-to-file-locals-prop-line):
5537         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
5538         (makefile-end-of-command):
5539         * cedet/semantic/lex.el (semantic-lex-token):
5540         * cedet/semantic/analyze/fcn.el
5541         (semantic-analyze-dereference-metatype-1):
5542         * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
5543         (semantic-lex-cpp-undef):
5544         * cedet/semantic/wisent/wisent.el (wisent-skip-block):
5545         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
5546         (semantic-end-of-context): Fix typos in docstrings.
5548         * recentf.el (recentf-unload-function): New function.
5550 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
5552         * cedet/ede.el (ede-project-placeholder-cache-file):
5553         * cedet/semantic/db-file.el (semanticdb-default-save-directory):
5554         * cedet/srecode/map.el (srecode-map-save-file):
5555         Use locate-user-emacs-file.  Suggested by Juanma Barranquero.
5557 2009-10-04  Glenn Morris  <rgm@gnu.org>
5559         * window.el (window-full-height-p): Add doc string.
5561 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
5563         * window.el (window-full-height-p): New function.  (Bug#4543)
5565 2009-10-03  Chong Yidong  <cyd@stupidchicken.com>
5567         * cedet/srecode/insert.el: Require srecode/args.
5569         * cedet/srecode/args.el: Require srecode/dictionary instead of
5570         srecode/insert.
5572         * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
5574         * files.el (auto-mode-alist): Add .srt and Project.ede.
5576         * cedet/semantic.el (semantic-mode):
5577         Handle srecode-template-mode-hook as well.
5578         (semantic-mode): Use js-mode-hook for Javascript hook.
5580         * cedet/srecode/template.el: Remove hook variable.
5582         * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
5584         * cedet/ede.el (ede-target-forms-menu): Don't enable if no
5585         projects exist.
5586         (ede-project-placeholder-cache-file): Default to a file in
5587         user-emacs-directory.
5589         * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
5590         templates in data-directory.
5591         (srecode-map-save-file): Default to a file in user-emacs-directory.
5593         * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
5594         directory.
5596 2009-09-30  Eric Ludlam  <zappo@gnu.org>
5598         * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
5599         Doc fix.
5601         * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
5602         Only insert each variable once.
5604         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
5605         (ede-pmake-insert-variable-shared): Use it.
5607         * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
5608         for lexical table iff table is nil.
5610 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
5612         * vc.el: Remove commented out code.
5613         (vc-derived-from-dir-mode): Remove, unused.
5614         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
5616 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
5618         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
5619         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
5620         there could be recursive loading when `default-directory' is a
5621         remote file name.  (Bug#4614)
5623 2009-10-03  Glenn Morris  <rgm@gnu.org>
5625         * calendar/calendar.el (calendar-basic-setup): Handle the case where
5626         the frame is wide.
5627         (calendar-generate-window): Test for shrinkability rather than width.
5629         * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
5630         declaration, currently false.
5632         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
5633         reusing existing buffers, in case we happen to visit two files with the
5634         same basename.  (Bug#4593)
5636 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
5638         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
5639         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
5640         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
5641         subdirs of cedet as well.
5642         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
5644 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5646         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
5647         Obey advertised-signature-table.
5649         * help-fns.el (help-function-arglist): Don't check
5650         advertised-signature-table.
5651         (describe-function-1): Do it here instead so it also applies to subrs.
5653 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
5655         * simple.el (start-file-process): Say in the doc-string, that file
5656         handlers might not support pty association, if PROGRAM is nil.
5658         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
5659         HOST and USER are strings.  They are nil, when there are
5660         incomplete entries in ~/.netrc, for example.
5661         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
5662         root directory ("device busy" error otherwise).
5664         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
5665         Flush file properties of created directory.
5667 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
5669         * makefile.w32-in (WINS_BASIC): Remove cedet.
5670         (WINS_CEDET): Add cedet.
5671         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
5673 2009-10-02  Kevin Ryde  <user42@zip.com.au>
5675         * net/browse-url.el (browse-url): Pass any symbol in
5676         browse-url-browser-function to `apply', since if you've mistakenly put
5677         an unbound symbol then the error is clearer.  (Bug#4531)
5679 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
5681         * allout.el (allout-init, allout-back-to-current-heading)
5682         (allout-beginning-of-current-entry, allout-ascend-to-depth)
5683         (allout-ascend, allout-up-current-level, allout-end-of-level)
5684         (allout-previous-visible-heading, allout-forward-current-level)
5685         (allout-backward-current-level, allout-show-children):
5686         * apropos.el (apropos-describe-plist):
5687         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
5688         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
5689         * completion.el (add-completion, add-permanent-completion):
5690         * descr-text.el (describe-text-category, describe-char):
5691         * desktop.el (desktop-lazy-abort):
5692         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
5693         * dired.el (dired-build-subdir-alist):
5694         * ediff.el (ediff-version):
5695         * elide-head.el (elide-head, elide-head-show):
5696         * emerge.el (emerge-version):
5697         * env.el (getenv):
5698         * face-remap.el (variable-pitch-mode):
5699         * faces.el (describe-face):
5700         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
5701         (dired-at-point):
5702         * files.el (find-file-existing, auto-save-mode):
5703         * font-lock.el (font-lock-fontify-buffer):
5704         * help-fns.el (describe-function, describe-variable)
5705         (describe-syntax, describe-categories):
5706         * help.el (view-lossage, describe-bindings, describe-key)
5707         (describe-mode):
5708         * hexl.el (hexl-current-address):
5709         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
5710         * info.el (Info-goto-emacs-key-command-node):
5711         * log-edit.el (log-edit-insert-cvs-template)
5712         (log-edit-insert-cvs-rcstemplate):
5713         * menu-bar.el (menu-bar-mode):
5714         * mouse.el (mouse-appearance-menu):
5715         * newcomment.el (comment-indent-new-line):
5716         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
5717         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
5718         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
5719         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
5720         * recentf.el (recentf-mode):
5721         * savehist.el (savehist-mode, savehist-save):
5722         * shadowfile.el (shadow-copy-files):
5723         * simple.el (kill-ring-save, next-line, previous-line)
5724         (normal-erase-is-backspace-mode):
5725         * strokes.el (strokes-update-window-configuration)
5726         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
5727         (strokes-xpm-for-stroke):
5728         * time.el (emacs-uptime, emacs-init-time):
5729         * tutorial.el (tutorial--describe-nonstandard-key)
5730         (tutorial--detailed-help):
5731         * type-break.el (type-break-mode)
5732         (type-break-mode-line-message-mode, type-break-query-mode)
5733         (type-break-guesstimate-keystroke-threshold):
5734         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
5735         * version.el (emacs-version):
5736         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
5737         * winner.el (winner-mode):
5738         * calendar/timeclock.el (timeclock-in, timeclock-out)
5739         (timeclock-status-string, timeclock-change)
5740         (timeclock-workday-remaining-string)
5741         (timeclock-workday-elapsed-string)
5742         (timeclock-when-to-leave-string):
5743         * calendar/todo-mode.el (todo-add-category):
5744         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
5745         * emacs-lisp/autoload.el (update-file-autoloads):
5746         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
5747         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
5748         (checkdoc-message-text, checkdoc-defun):
5749         * emacs-lisp/debug.el (debugger-list-functions):
5750         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
5751         * emacs-lisp/eieio-opt.el (eieio-describe-class)
5752         (eieio-describe-generic):
5753         * emacs-lisp/lisp-mnt.el (lm-synopsis):
5754         * emacs-lisp/shadow.el (list-load-path-shadows):
5755         * emulation/cua-base.el (cua-mode):
5756         * emulation/edt.el (edt-set-scroll-margins):
5757         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
5758         (tpu-toggle-regexp, tpu-toggle-search-direction)
5759         (tpu-toggle-rectangle, tpu-toggle-control-keys):
5760         * emulation/tpu-extras.el (tpu-set-scroll-margins):
5761         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
5762         (viper-set-parsing-style-toggling-macro)
5763         (viper-set-emacs-state-searchstyle-macros):
5764         * emulation/viper.el (viper-set-hooks):
5765         * eshell/esh-mode.el (eshell-truncate-buffer):
5766         * international/mule-cmds.el (prefer-coding-system)
5767         (describe-input-method, describe-language-environment):
5768         * international/mule-diag.el (list-character-sets)
5769         (describe-character-set, describe-coding-system)
5770         (describe-fontset, list-fontsets, list-input-methods):
5771         * mail/sendmail.el (mail-signature):
5772         * net/ange-ftp.el (ange-ftp-copy-file):
5773         * net/browse-url.el (browse-url):
5774         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
5775         * net/quickurl.el (quickurl-add-url):
5776         * net/rcirc.el (names, topic):
5777         * net/xesam.el (xesam-mode):
5778         * play/5x5.el (5x5-new-game):
5779         * play/yow.el (apropos-zippy):
5780         * progmodes/ada-mode.el (ada-mode-version):
5781         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
5782         (f90-end-of-block)
5783         (f90-beginning-of-block):
5784         * progmodes/fortran.el (fortran-end-of-block)
5785         (fortran-beginning-of-block):
5786         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
5787         * progmodes/python.el (python-describe-symbol, python-shell):
5788         * term/ns-win.el (ns-print-buffer):
5789         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
5790         * textmodes/flyspell.el (flyspell-mode-on):
5791         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
5792         (pages-directory-for-addresses):
5793         * textmodes/table.el (table-recognize-cell)
5794         (table-query-dimension, table-generate-source)
5795         (table-insert-sequence, table--warn-incompatibility):
5796         * textmodes/tex-mode.el (tex-validate-buffer):
5797         * textmodes/texinfmt.el (texinfmt-version)
5798         (texinfo-format-buffer):
5799         Use `called-interactively-p' instead of `interactive-p'.
5801 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
5803         * image-mode.el (image-toggle-display):
5804         * emacs-lisp/elp.el (elp-instrument-function):
5805         * emacs-lisp/advice.el (ad-make-advised-definition):
5806         * emacs-lisp/easy-mmode.el (define-minor-mode):
5807         * net/browse-url.el (browse-url-maybe-new-window):
5808         * progmodes/sh-script.el (sh-learn-buffer-indent):
5809         Pass new argument 'any to `called-interactively-p'.
5811 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
5813         * international/uni-bidi.el:
5814         * international/uni-category.el:
5815         * international/uni-combining.el:
5816         * international/uni-comment.el:
5817         * international/uni-decimal.el:
5818         * international/uni-decomposition.el:
5819         * international/uni-digit.el:
5820         * international/uni-lowercase.el:
5821         * international/uni-mirrored.el:
5822         * international/uni-name.el:
5823         * international/uni-numeric.el:
5824         * international/uni-old-name.el:
5825         * international/uni-titlecase.el:
5826         * international/uni-uppercase.el:
5827         Regenerate from Unicode 5.2.0 data.
5829 2009-10-01  Glenn Morris  <rgm@gnu.org>
5831         * Makefile.in (ELCFILES): Regenerate.
5833 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5835         * subr.el (interactive-p): Mark obsolete.
5836         (called-interactively-p): Make the optional-ness of `kind' obsolete.
5837         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
5838         advertised-signature-table for subroutines as well.
5840         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
5841         (set-advertised-calling-convention): New function.
5842         (make-obsolete, define-obsolete-function-alias)
5843         (make-obsolete-variable, define-obsolete-variable-alias):
5844         Make the optional-ness of `when' obsolete.
5845         (define-obsolete-face-alias): Make `when' non-optional.
5846         * help-fns.el (help-function-arglist):
5847         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
5848         Use advertised-signature-table.
5850 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
5852         * files.el (delete-directory): New defun.  The original function
5853         in fileio.c has been renamed to `delete-directory-internal'.
5855         * dired.el (dired-delete-file): Call `delete-directory' with
5856         RECURSIVE parameter.
5858         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
5859         parameter RECURSIVE.  Implementation is missing.
5861         * net/tramp.el (tramp-handle-make-directory): Flush upper
5862         directory's file properties.
5863         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
5864         (tramp-handle-dired-recursive-delete-directory): Flush directory
5865         properties after the remove command only.
5867         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
5868         Handle optional parameter RECURSIVE.
5870         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
5871         Handle optional parameter RECURSIVE.
5873         * net/tramp-smb.el (tramp-smb-errors): Add error message for
5874         connection timeout.
5875         (tramp-smb-handle-delete-directory): Handle optional parameter
5876         RECURSIVE.
5878 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5880         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
5881         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
5882         (byte-compile-defmacro): Use backquotes.
5884         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
5886         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
5887         has no associated file.
5888         (vc-resynch-buffer): Use vc-dir-buffers.
5890 2009-10-01  Glenn Morris  <rgm@gnu.org>
5892         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
5893         (chart-file-count):
5894         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
5895         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
5896         * emacs-lisp/eieio-opt.el (eieio-describe-class):
5897         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
5898         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
5899         (eieio-copy-parents-into-subclass, make-instance, class-children)
5900         (eieio-generic-form):
5901         * cedet/cedet-files.el (cedet-directory-name-to-file-name):
5902         * cedet/cedet-idutils.el (cedet-idutils-search)
5903         (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
5904         (cedet-idutils-version-check):
5905         * cedet/cedet.el (cedet-version):
5906         * cedet/data-debug.el (data-debug-insert-overlay-button)
5907         (data-debug-insert-overlay-list-button)
5908         (data-debug-insert-buffer-button)
5909         (data-debug-insert-buffer-list-button)
5910         (data-debug-insert-process-button, data-debug-insert-ring-button)
5911         (data-debug-insert-widget, data-debug-insert-stuff-list-button)
5912         (data-debug-insert-stuff-vector-button)
5913         (data-debug-insert-symbol-button, data-debug-insert-string)
5914         (data-debug-insert-number, data-debug-insert-lambda-expression)
5915         (data-debug-insert-nil, data-debug-insert-simple-thing)
5916         (data-debug-insert-custom, data-debug-edebug-expr):
5917         * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
5918         (global-ede-mode-map, ede-new, ede-debug-target)
5919         (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
5920         * cedet/semantic.el (semantic-minimum-working-buffer-size)
5921         (semantic-fetch-tags, semantic-submode-list)
5922         (semantic-default-submodes):
5923         * cedet/ede/source.el (ede-source-match):
5924         * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
5925         (project-am-package-info):
5926         * cedet/ede/proj.el (ede-proj-target, project-new-target):
5927         * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
5928         * cedet/ede/proj-comp.el (ede-current-build-list):
5929         * cedet/ede/makefile-edit.el (makefile-move-to-macro):
5930         * cedet/ede/files.el (ede-toplevel-project-or-nil):
5931         * cedet/ede/cpp-root.el (initialize-instance):
5932         * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
5933         (autoconf-parameter-strip, autoconf-insert-new-macro):
5934         * cedet/semantic/wisent.el (wisent-lex-eoi):
5935         * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
5936         (semantic-show-parser-state-mode):
5937         * cedet/semantic/texi.el (semantic-texi-environment-regexp):
5938         * cedet/semantic/tag.el (semantic-tag-new-variable)
5939         (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
5940         (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
5941         (semantic--tag-deep-copy-tag-list)
5942         (semantic-tag-components-with-overlays-default):
5943         * cedet/semantic/symref.el (semantic-symref-find-text):
5944         * cedet/semantic/senator.el (senator-yank-tag)
5945         (senator-transpose-tags-up):
5946         * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
5947         (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
5948         * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
5949         * cedet/semantic/lex.el (semantic-lex-comment-regex)
5950         (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
5951         (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
5952         * cedet/semantic/lex-spp.el
5953         (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
5954         (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
5955         * cedet/semantic/idle.el
5956         (semantic-idle-summary-current-symbol-info-brutish)
5957         (semantic-idle-summary-current-symbol-info-default):
5958         * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
5959         (semantic--grammar-macro-compl-dict):
5960         * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
5961         * cedet/semantic/format.el (semantic-format-tag-custom-list)
5962         (semantic-format-tag-canonical-name-default):
5963         * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
5964         (semantic-find-tags-for-completion)
5965         (semantic-find-tags-by-scope-protection-default)
5966         (semantic-deep-find-tags-for-completion):
5967         * cedet/semantic/edit.el
5968         (semantic-edits-incremental-reparse-failed-hook)
5969         (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
5970         (semantic-edits-splice-remove, semantic-edits-splice-replace):
5971         * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
5972         * cedet/semantic/dep.el (semantic-dependency-include-path):
5973         * cedet/semantic/db.el (semanticdb-default-find-index-class)
5974         (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
5975         (semanticdb-project-roots):
5976         * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
5977         (semanticdb-find-adebug-insert-scanned-tag-cons)
5978         (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
5979         (semanticdb-brute-deep-find-tags-for-completion):
5980         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
5981         * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
5982         (semantic-end-of-context-default)
5983         (semantic-ctxt-current-function-default)
5984         (semantic-ctxt-scoped-types-default):
5985         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
5986         (semantic-complete-inline-tag-engine)
5987         (semantic-complete-inline-custom-type)
5988         (semantic-complete-read-tag-analyzer):
5989         * cedet/semantic/chart.el (semantic-chart-tags-by-class)
5990         (semantic-chart-database-size):
5991         * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
5992         (semantic-analyze-current-context):
5993         * cedet/semantic/symref/list.el (semantic-symref)
5994         (semantic-symref-hide-buffer, semantic-symref-symbol):
5995         * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
5996         * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
5997         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
5998         * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
5999         (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
6000         (semantic-c-dereference-template):
6001         * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
6002         (semantic--analyze-refs-full-lookup-with-parents)
6003         (semantic--analyze-refs-full-lookup-simple):
6004         * cedet/semantic/analyze/complete.el
6005         (semantic-analyze-possible-completions):
6006         * cedet/srecode/table.el (srecode-mode-table-new):
6007         * cedet/srecode/srt.el (srecode-read-variable-name):
6008         * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
6009         * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
6010         (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
6011         * cedet/srecode/map.el (srecode-current-map):
6012         * cedet/srecode/insert.el (srecode-insert)
6013         (srecode-insert-variable-secondname-handler, srecode-insert-method)
6014         (srecode-template-inserter-point-override)
6015         (srecode-insert-include-lookup):
6016         * cedet/srecode/getset.el (srecode-auto-choose-class):
6017         * cedet/srecode/extract.el (srecode-inserter-extract):
6018         * cedet/srecode/document.el
6019         (srecode-document-autocomment-return-last-alist)
6020         (srecode-document-autocomment-param-type-alist)
6021         (srecode-document-insert-function-comment)
6022         (srecode-document-insert-variable-one-line-comment)
6023         (srecode-document-function-name-comment):
6024         * cedet/srecode/dictionary.el (srecode-create-dictionary)
6025         (srecode-compound-toString):
6026         * cedet/srecode/compile.el (srecode-flush-active-templates):
6027         * cedet/srecode/args.el (srecode-semantic-handle-:blank):
6028         Doc/message fixes.
6030         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
6031         match-data.  (Bug#4555).
6033         * cedet/semantic/bovine/gcc.el
6034         (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
6035         (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
6037         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
6038         rather than parsing it as a regexp.  This relaxes the layout
6039         requirements and makes errors easier to detect.
6040         (check-declare-verify): Check file is regular.
6041         (check-declare-directory): Doc fix.
6042         * subr.el (declare-function): Doc fix.
6044         * ibuffer.el (ibuffer-format-qualifier):
6045         * isearch.el (hi-lock-regexp-okay):
6046         * calc/calc.el (math-zerop):
6047         * mail/uce.el (rmail-msgbeg, rmail-msgend):
6048         * term/w32-win.el (setup-default-fontset, set-fontset-font):
6049         Remove unused declarations.
6051 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
6053         * cedet/semantic/wisent/javat-wy.el
6054         (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
6056 2009-09-30  Juanma Barranquero  <lekktu@gmail.com>
6058         * cedet/srecode/expandproto.el: Fix provide statement.
6060 2009-09-30  Eric Ludlam  <zappo@gnu.org>
6062         * emacs-lisp/eieio.el (boolean-p): Delete.
6064 2009-09-30  Sascha Wilde  <wilde@sha-bang.de>
6066         * cedet/ede/srecode.el: Fix provide statement.
6068 2009-09-30  Glenn Morris  <rgm@gnu.org>
6070         * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
6071         * cedet/ede/proj-aux.el (ede-aux-source):
6072         * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
6073         (ede-misc-source):
6074         * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
6075         (semantic-mrub-switch-tags): Fix doc typos.
6077         * cedet/semantic/db-global.el (data-debug-new-buffer)
6078         (data-debug-insert-thing): Remove unneeded declarations (one broken).
6079         (semanticdb-enable-gnu-global-databases): Fix prompt typo.
6081         * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
6083         * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
6084         use of CL function `remove-if-not'.
6086         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
6088         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
6089         filename is not a string.
6091 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
6093         * files.el (safe-local-eval-forms): Fix typo.
6095 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6097         * vc-hooks.el (vc-dir-buffers): New var.
6098         (vc-state-refresh): New function.
6099         (vc-state): Use it.
6100         (vc-after-save): Always ask the backend to recompute the new state.
6101         Always call vc-dir if necessary, using vc-dir-buffers.
6102         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
6103         Use vc-dir-buffers.
6104         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
6105         (vc-dir-prepare-status-buffer, vc-dir-update)
6106         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
6107         Don't call expand-file-name on default-directory.
6109 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
6111         * speedbar.el (speedbar-item-delete):
6112         * calc/calc-prog.el (calc-kbd-if):
6113         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
6115         * epa.el (epa-key-list-mode-map):
6116         * hi-lock.el (hi-lock-menu): Fix typos in menus.
6118         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
6119         (hs-show-hook): Fix typo in docstring.
6121 2009-09-29  Glenn Morris  <rgm@gnu.org>
6123         * cedet/semantic/symref/idutils.el:
6124         * cedet/semantic/symref/list.el: Relicense under GPLv3+.
6126         * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
6128         * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
6129         * cedet/semantic/tag-file.el (semanticdb-table-child-p):
6130         * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
6131         Mark declarations not understood by check-declare.
6133         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
6134         file-name-nondirectory call preventing location of cedet files.
6135         (check-declare-verify): Use literal search rather than re-search.
6136         Add basic defmethod and defclass, and define-overloadable-function.
6138         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
6139         Use tramp-compat-file-attributes rather than nonexistent
6140         tramp-compat-handle-file-attributes.
6142         * Makefile.in (lisptagsfiles4): New.
6143         (AUTOGENEL): Add cedet loaddefs files.
6144         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
6145         (update-elclist, compile-always, backup-compiled-files)
6146         (bootstrap-clean): Add yet another directory level.
6147         (update-elclist): Use LC_COLLATE rather than COLLATE.
6148         (ELCFILES): Update, via `make update-elclist'.
6150 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
6152         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
6153         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
6154         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
6156 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
6158         * Makefile.in (lisptagsfiles3): Define.
6159         (TAGS, TAGS-LISP): Use it.
6160         (update-elclist): Add third directory level to look for elc files.
6161         (compile-always): Likewise.
6162         (backup-compiled-files): Likewise.
6163         (bootstrap-clean): Likewise.
6164         (ELCFILES): Update.
6166 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
6168         * Makefile.in (ELCFILES): Add CEDET files.
6170 2009-09-28  Eric Ludlam  <zappo@gnu.org>
6172         CEDET (development tools) package merged.
6174         * cedet/*.el:
6175         * cedet/ede/*.el:
6176         * cedet/semantic/*.el:
6177         * cedet/srecode/*.el: New files.
6179 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
6181         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
6183         * net/tramp.el (top): Require tramp-imap.
6185         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
6186         Use `tramp-compat-handle-file-attributes'.
6188 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6190         * net/tramp-imap.el: New package.
6192 2009-09-28  Eric Ludlam  <zappo@gnu.org>
6194         * emacs-lisp/chart.el:
6195         * emacs-lisp/eieio-base.el:
6196         * emacs-lisp/eieio-comp.el:
6197         * emacs-lisp/eieio-custom.el:
6198         * emacs-lisp/eieio-datadebug.el:
6199         * emacs-lisp/eieio-opt.el:
6200         * emacs-lisp/eieio-speedbar.el:
6201         * emacs-lisp/eieio.el: New files.
6203         * cedet/cedet-cscope.el:
6204         * cedet/cedet-files.el:
6205         * cedet/cedet-global.el:
6206         * cedet/cedet-idutils.el:
6207         * cedet/data-debug.el:
6208         * cedet/inversion.el:
6209         * cedet/mode-local.el:
6210         * cedet/pulse.el: New files.
6212 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6214         * whitespace.el (whitespace-trailing-regexp)
6215         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
6216         Fix doc string.
6218 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
6220         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
6221         menu.
6223         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
6224         menu-bar-ediff-menu.
6226         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
6227         define-overloadable-function.
6229         * progmodes/autoconf.el: Provide autoconf as well, so that this
6230         file can be `require'd.
6232         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
6234         * emacs-lisp/autoload.el (generated-autoload-feature)
6235         (generated-autoload-load-name): New vars.
6236         (autoload-rubric, autoload-generate-file-autoloads): Use them.
6237         (make-autoload): Recognize define-overloadable-function and
6238         defclass forms (for EIEIO).
6240         * Makefile.in (update-subdirs): Exclude cedet directory.
6242 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
6244         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
6246         * faces.el: Default light-background background for region face to
6247         ns_selection_color under NS.
6249 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
6251         * net/imap-hash.el: New library, see NEWS.
6253         * Makefile.in (ELCFILES): Add imap-hash.el.
6255 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6257         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
6258         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
6259         * help-macro.el (make-help-screen): Avoid using an ambiguous function
6260         definition where the docstring could be taken for the return value.
6262 2009-09-26  Glenn Morris  <rgm@gnu.org>
6264         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
6265         Add option to only show images below a certain size.
6266         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
6267         save-excursion calls.
6269 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
6271         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
6272         subdirectories) and eieio.
6274 2009-09-26  Alan Mackenzie  <acm@muc.de>
6276         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
6277         buggy bracketing.  (Bug#4289)
6279         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
6280         character constants (as case labels).  (Bug#4289)
6282 2009-09-25  Juri Linkov  <juri@jurta.org>
6284         * files.el (safe-local-eval-forms): Allow time-stamp in
6285         before-save-hook (Bug#4554).
6287 2009-09-25  Drew Adams  <drew.adams@oracle.com>
6289         * menu-bar.el (list-buffers-directory): Doc fix.
6291 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6293         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
6294         Try and avoid copying twice the same paragraph.
6295         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
6296         Remove save-excursion.
6297         (log-edit-changelog-entry): Do it here instead.
6299 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
6301         * bs.el (bs--get-file-name): Use `list-buffers-directory'
6302         when available, instead of hardcoding mode names.  Doc fix.
6304         * menu-bar.el (list-buffers-directory): Add docstring.
6305         Make automatically buffer-local.
6307         * dired.el (dired-mode):
6308         * files.el (cd-absolute):
6309         * pcvs.el (cvs-temp-buffer):
6310         * pcvs-util.el (cvs-get-buffer-create):
6311         * shell.el (shell-mode):
6312         * vc-dir.el (vc-dir-mode):
6313         Don't make `list-buffers-directory' buffer local.
6315 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
6317         * comint.el (comint-exec, comint-run, make-comint):
6318         Doc fixes (Bug#4542).
6320 2009-09-25  Glenn Morris  <rgm@gnu.org>
6322         * mail/rmailmm.el (rmail-mime): New custom group.
6323         Move all defcustoms in this file into this group.
6324         (rmail-mime-media-type-handlers-alist): Revert previous change.
6325         (rmail-mime-show-images): New option.
6326         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
6327         references to it, since it wasn't actually used for anything.
6328         (rmail-mime-insert-image): New function.
6329         (rmail-mime-image): Use rmail-mime-insert-image.
6330         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
6331         obey the value of `rmail-mime-show-images' option.  Print the size of
6332         attachments.
6334 2009-09-25  David Engster  <deng@randomsample.de>
6336         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
6338 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6340         * whitespace.el: Does not highlight trailing spaces While point is
6341         at end of line.  Does not highligt spaces at beginning of buffer
6342         while point is at beginning of buffer.  Does not highlight spaces
6343         at end of buffer while point is at end of buffer.  (Bug#4177)
6344         New version 12.0.
6345         (whitespace-display-mappings): Adjust initialization.
6346         (whitespace-point, whitespace-font-lock-refontify): New vars.
6347         (whitespace-color-on, whitespace-color-off): Adjust code.
6348         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
6349         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
6350         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
6352 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
6354         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
6356         * textmodes/sgml-mode.el: Remove xml-mode alias.
6358         * files.el (auto-mode-alist, conf-mode-maybe)
6359         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
6361 2009-09-24  Alan Mackenzie  <acm@muc.de>
6363         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
6364         c-forward-conditionals, but it doesn't move point and doesn't set
6365         the mark.
6366         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
6367         (c-down-conditional-with-else, c-backward-conditional)
6368         (c-forward-conditional): Refactor to use c-scan-conditionals.
6370 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
6372         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
6373         (help-default-arg-highlight): Remove.
6374         (help-highlight-arg): New function.
6375         (help-do-arg-highlight): Use it.
6376         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
6378 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6380         * term.el (term-set-scroll-region, term-handle-ansi-escape):
6381         Undo last change, which didn't fix the problem and introduced others.
6383 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
6385         * progmodes/gdb-mi.el: Don't require speedbar.
6386         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
6388 2009-09-24  Glenn Morris  <rgm@gnu.org>
6390         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
6392         * term/ns-win.el (ns-reg-to-script): Define for compiler.
6394         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
6395         there is no newline after the final mime boundary.  (Bug#4539)
6396         Move markers on insertion so that any buttons inserted don't end up in
6397         the next part of a multipart message.
6398         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
6399         (rmail-mime-bulk-handler): Optionally handle images.
6400         (rmail-mime-image): New button action.
6401         (rmail-mime-image-handler): New function.
6402         (rmail-mime-mode): New mode.
6403         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
6405 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6407         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
6408         than just dropping elements from it (bug#4504).
6410         * term.el (term-set-scroll-region): Don't move cursor any more.
6411         (term-handle-ansi-escape): Call term-goto here instead.
6412         Suggested by Ivan Kanis <apple@kanis.eu>.
6414         * term.el: Require CL.
6415         (term-ansi-reset): New function.
6416         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
6417         (term-handle-colors-array): Simplify.
6419 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
6421         * allout.el (allout-overlay-interior-modification-handler)
6422         (allout-obtain-passphrase):
6423         * epa-file.el (epa-file-write-region):
6424         * ps-print.el (ps-begin-job):
6425         * vc-hooks.el (vc-toggle-read-only):
6426         * vc-rcs.el (vc-rcs-rollback):
6427         * vc-sccs.el (vc-sccs-rollback):
6428         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
6429         (vc-version-diff, vc-revert, vc-rollback):
6430         * wdired.el (wdired-check-kill-buffer):
6431         * emacs-lisp/authors.el (authors):
6432         * net/socks.el (socks-open-connection):
6433         * net/zeroconf.el (zeroconf-service-add-hook):
6434         * obsolete/vc-mcvs.el (vc-mcvs-register):
6435         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
6436         (gdb-select-frame):
6437         * progmodes/grep.el (lgrep, rgrep):
6438         * progmodes/idlw-help.el (idlwave-help-check-locations)
6439         (idlwave-help-html-link, idlwave-help-assistant-open-link):
6440         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
6441         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
6442         (reftex-toc-rename-label): Fix typos in error messages.
6444         * dired-aux.el (dired-do-shell-command): Reflow docstring.
6445         (dired-copy-how-to-fn): Doc fix.
6446         (dired-files-attributes, dired-read-shell-command):
6447         Fix typos in docstrings.
6449         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
6450         (dired-x-find-file-other-window): Reflow docstrings.
6451         (dired-omit-marker-char, dired-read-shell-command)
6452         (dired-x-submit-report): Fix typos in docstrings.
6454         * shell.el (shell-mode-hook):
6455         * view.el (View-scroll-line-forward):
6456         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
6457         Fix typos in docstrings.
6459         * net/dig.el (dig-invoke): Fix typo in docstring.
6460         (query-dig): Reflow docstring.
6462         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
6463         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
6464         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
6465         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
6466         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
6467         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
6468         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
6469         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
6470         (idlwave-completion-map, idlwave-current-indent)
6471         (idlwave-custom-ampersand-surround, idlwave-customize)
6472         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
6473         (idlwave-define-abbrev, idlwave-determine-class-special)
6474         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
6475         (idlwave-end-block-reg, idlwave-end-of-statement)
6476         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
6477         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
6478         (idlwave-explicit-class-listed, idlwave-file-header)
6479         (idlwave-fill-paragraph, idlwave-find-class-definition)
6480         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
6481         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
6482         (idlwave-in-quote, idlwave-indent-action-table)
6483         (idlwave-indent-expand-table, idlwave-indent-line)
6484         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
6485         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
6486         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
6487         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
6488         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
6489         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
6490         (idlwave-outlawed-buffers, idlwave-popup-select)
6491         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
6492         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
6493         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
6494         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
6495         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
6496         (idlwave-statement-type, idlwave-struct-skip)
6497         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
6498         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
6499         (idlwave-what-module-find-class): Fix typos in docstrings.
6500         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
6501         (idlwave-calculate-cont-indent, idlwave-expand-equal)
6502         (idlwave-find-module, idlwave-find-structure-definition)
6503         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
6504         (idlwave-list-load-path-shadows, idlwave-next-statement)
6505         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
6506         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
6507         (idlwave-template): Reflow docstrings.
6509         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
6510         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
6511         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
6512         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
6513         (idlwave-shell-display-line, idlwave-shell-display-wframe)
6514         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
6515         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
6516         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
6517         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
6518         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
6519         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
6520         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
6521         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
6522         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
6523         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
6524         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
6525         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
6526         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
6527         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
6528         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
6529         Fix typos in docstrings.
6530         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
6531         (idlwave-shell-hide-output, idlwave-shell-mode)
6532         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
6533         Reflow docstrings.
6535         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
6537 2009-09-24  Ivan Kanis  <apple@kanis.eu>
6539         * term.el (term-bold-attribute): New var.
6540         (term-handle-colors-array): Use it.
6542 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
6544         * progmodes/gdb-mi.el (gdb-version): New variable.
6545         (gdb-non-stop-handler): Set gdb-version.
6546         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
6547         Condition "--thread" option on gdb-version.
6548         (gdb-invalidate-threads): Remove unused argument.
6550 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6552         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
6553         to looking-back to avoid ridiculous slow down in large files (bug#4511).
6555 2009-09-23  Glenn Morris  <rgm@gnu.org>
6557         * mail/rmail.el (rmail-reply): Don't try to add a References header when
6558         replying to mail without References or Message-Id.  (Bug#4525)
6560 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
6562         * term/ns-win.el (ns-reg-to-script): New variable.
6564 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
6566         * epg.el (epg-wait-for-status): Preserve existing 'error results.
6568 2009-09-22  Sam Steingold  <sds@gnu.org>
6570         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
6571         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
6572         to 1 because hg returns status 1 when nothing is found.
6573         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
6575 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6577         * textmodes/fill.el: Convert to utf-8 encoding.
6578         (fill-french-nobreak-p): Remove redundant » and « inherited from our
6579         pre-unicode days.
6581         * add-log.el (change-log-fill-forward-paragraph): New function.
6582         (change-log-mode): Use it so fill-region DTRT.
6583         Set fill-indent-according-to-mode here rather than in
6584         change-log-fill-paragraph.
6585         (change-log-fill-paragraph): Remove.
6587 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
6589         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
6590         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
6592 2009-09-22  Glenn Morris  <rgm@gnu.org>
6594         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
6595         the scroll-bar scroll the calendar window rather than the buffer.
6597         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
6598         commands that move point (as opposed to scrolling).
6600         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
6602         * emacs-lisp/elint.el (elint): New custom group.
6603         (elint-log-buffer): Make it a defcustom.
6604         (elint-scan-preloaded, elint-ignored-warnings)
6605         (elint-directory-skip-re): New options.
6606         (elint-builtin-variables): Doc fix.
6607         (elint-preloaded-env): New variable.
6608         (elint-unknown-builtin-args): Add an entry for encode-time.
6609         (elint-extra-errors): Make it a variable rather than a constant.
6610         (elint-preloaded-skip-re): New constant.
6611         (elint-directory): Skip files matching elint-directory-skip-re.
6612         (elint-features): New variable, local to linted buffers.
6613         (elint-update-env): Initialize elint-features.  Possibly add
6614         elint-preloaded-env to the buffer's environment.
6615         (elint-get-top-forms): Bind elint-current-pos, for log messages.
6616         Skip quoted forms.
6617         (elint-init-form): New function, extracted from elint-init-env.
6618         Make non-list forms a warning rather than an error.
6619         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
6620         easy-menu-define, put that adds an error-condition, and provide.
6621         When requiring cl, also require cl-macs.  Really require cl, to handle
6622         some cl macros.  Store required libraries in the list elint-features,
6623         so as not to re-load them.  Treat cc-require like require.
6624         (elint-init-env): Call elint-init-form to do the work.
6625         Handle eval-and-compile and such like.
6626         (elint-add-required-env): Do not clear messages.
6627         (elint-special-forms): Add handlers for function, defalias, if, when,
6628         unless, and, or.
6629         (elint-form): Add optional argument to ignore elint-special-forms,
6630         useful to prevent recursive calls from handlers.  Doc fix.
6631         Respect elint-ignored-warnings.
6632         (elint-form): Respect elint-ignored-warnings.
6633         (elint-bound-variable, elint-bound-function): New variables.
6634         (elint-unbound-variable): Respect elint-bound-variable.
6635         (elint-get-args): Respect elint-bound-function.
6636         (elint-check-cond-form): Add some simple handling for (f)boundp and
6637         featurep tests.
6638         (elint-check-defalias-form): New handler.
6639         (elint-check-let-form): Make an empty let a warning rather than an
6640         error.
6641         (elint-check-setq-form): Make an empty setq a warning rather than an
6642         error.  Respect elint-ignored-warnings.
6643         (elint-check-defvar-form): Accept null doc-strings.
6644         (elint-check-conditional-form): New handler.  Does some simple-minded
6645         checking of featurep and (f)boundp tests.
6646         (elint-put-function-args): New function.
6647         (elint-initialize): Use elint-scan-doc-file rather than
6648         elint-find-builtin-variables.  Use elint-put-function-args.
6649         Possibly scan preloaded-file-list.
6650         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
6651         extend to handle functions as well.
6653 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
6655         * linum.el (linum-delete-overlays, linum-update-window):
6656         Do not modify the right margin.  (Bug#3971)
6658 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
6660         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
6661         nxml-mode instead of xml-mode.
6663 2009-09-21  Kevin Ryde  <user42@zip.com.au>
6665         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
6667 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6669         * net/dig.el (dig-mode): Use define-derived-mode.
6671 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
6673         * vc-dispatcher.el (vc-do-command): Return the process object in
6674         the asynchronous case.  Use when instead of if.  Do not run
6675         vc-exec-after to display a message if not enabled.  (Bug#4463)
6677         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
6678         properties to the stash strings.
6679         (vc-git-stash-list): Return a list of strings.
6680         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
6681         (vc-git-stash-show-at-point): New functions.
6682         (vc-git-stash-map): New keymap.
6684         * register.el (ctl-x-r-map): Define the keys here instead of
6685         using autoload.
6687 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
6689         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
6690         list, to workaround performance problem (bug#4485).
6692 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
6694         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
6696 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
6698         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
6699         Document that this option is not recommended to use.
6701 2009-09-19  Glenn Morris  <rgm@gnu.org>
6703         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
6704         variable `var'.
6706         * calc/calc-alg.el (var):
6707         * calc/calcalg2.el (var): Define for compiler.
6709 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
6711         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
6712         Doc fix (Bug#3932).
6714         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
6716         * time-stamp.el (time-stamp-month-dd-yyyy)
6717         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
6718         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
6719         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
6720         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
6721         Remove functions that have been obsolete since 1995 (Bug#4436).
6723         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
6724         indent buffer only if called interactively (Bug#4452).
6726 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
6727             Eli Zaretskii  <eliz@gnu.org>
6729         This fixes bug#4197 (merged to bug#865, though not identical).
6730         * server.el (server-auth-dir): Add docstring note about FAT32.
6731         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
6732         but warn against using them.
6734 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
6736         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
6737         older GDB where there is no has_more field.
6739 2009-09-19  Glenn Morris  <rgm@gnu.org>
6741         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
6743 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
6745         * files.el (auto-mode-alist): Change default for XML files to nXML
6746         mode (Bug#4169).
6748 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
6750         * server.el (server-ensure-safe-dir): Pass 'integer
6751         to `file-attributes', as suggested.
6753 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6755         * dired-aux.el (dired-query-alist): Remove spurious backslash.
6756         (dired-query): Use read-key.
6758 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
6760         * cus-start.el (ns-use-qd-smoothing): Remove.
6762 2009-09-18  Glenn Morris  <rgm@gnu.org>
6764         * allout.el (top-level): Remove unnecessary progn.
6766         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
6768         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
6769         definition of abbrev table.
6771         * speedbar.el (speedbar-track-mouse):
6772         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
6773         * net/eudc.el (eudc-expand-inline):
6774         * net/newst-backend.el (newsticker--cache-read-feed):
6775         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
6776         condition-case handlers.
6778 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
6780         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
6781         (gdb-var-list): Add an element for has_more field.
6782         (gdb-non-stop-handler): Enable pretty printing for STL containers.
6783         (gdb-var-create-handler, gdb-var-list-children-handler-1)
6784         (gdb-var-update-handler-1): Parse output of dynamic variable
6785         objects (STL containers).
6786         (gdb-var-delete-1): Pass var1 as an explicit second argument.
6787         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
6789         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
6790         gdb-var-list.
6791         (gud-speedbar-buttons): Make node expandable if expression "has more"
6792         children.
6794 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
6796         * startup.el (emacs-quick-startup): Remove variable and all uses.
6797         (command-line): Set `inhibit-x-resources' instead.
6798         (command-line-1): Use `inhibit-x-resources' instead.
6800 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
6802         * subr.el: Fix last change to avoid using the `unless' macro,
6803         which breaks bootstrapping.
6805 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6807         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
6808         extended definitions, in case we reload subr.el after having
6809         loaded CL.
6810         (eval-next-after-load): Mark as obsolete.
6812 2009-09-17  Juri Linkov  <juri@jurta.org>
6814         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
6815         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
6816         (menu-bar-showhide-menu, menu-bar-tools-menu)
6817         (menu-bar-describe-menu, menu-bar-help-menu)
6818         (minibuffer-local-completion-map, minibuffer-local-map):
6819         Fix list quoting.
6821 2009-09-17  Glenn Morris  <rgm@gnu.org>
6823         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
6824         arguments, whether or not it has a handler.
6826         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
6828         * simple.el (hard-newline): Give it a doc-string.
6830         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
6831         (lisp-mode-syntax-table): Give them doc-strings.
6833 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
6835         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
6836         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
6837         (menu-bar-options-menu, menu-bar-showhide-menu)
6838         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
6839         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
6840         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
6841         (menu-bar-options-menu, menu-bar-tools-menu)
6842         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
6843         (menu-bar-help-menu):
6844         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
6845         string arguments.
6847         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
6848         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
6849         calls for the menu names and :help.
6851 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6853         * mouse.el (minor-mode-menu-from-indicator): Pay attention
6854         to :minor-mode-function (bug#4455).
6856 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6858         * startup.el (command-line): Initialize the window-system after
6859         processing the command-line.
6861         * textmodes/page.el (what-page): Make sure we don't inf-loop if
6862         page-delimiter matches the empty string.
6864 2009-09-16  Glenn Morris  <rgm@gnu.org>
6866         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
6867         byte-compile-not-obsolete-var.  It's a list now.
6868         (byte-compile-not-obsolete-funcs): New variable.
6869         (byte-compile-warn-obsolete): Don't warn about functions if they are in
6870         byte-compile-not-obsolete-funcs.
6871         (byte-compile-variable-ref, byte-compile-defvar): Update for
6872         byte-compile-not-obsolete-vars name-change and list nature.
6873         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
6874         and variables behind (f)boundp tests.
6875         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
6877 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
6879         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
6881 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6883         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
6884         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
6885         Don't autoload.
6887 2009-09-15  Stephen Eglen  <stephen@gnu.org>
6889         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
6890         the virtual-buffers, use the name of the buffer specified by
6891         find-file-noselect, as the match may be a symlink.  (This was a
6892         problem if the target and the symlink had different names.)
6894 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6896         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
6898         * desktop.el (desktop-path): Check user-emacs-directory.
6900         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
6902         * loadup.el: Use after-load-functions to GC after loading each file.
6903         Remove the explicit GC calls that used to be sprinkled around.
6905         * subr.el (after-load-functions): New hook.
6906         (do-after-load-evaluation): Run it.  Use string-match-p to detect
6907         `obsolete' packages, rather than painfully extracting the relevant
6908         directory name.
6910 2009-09-15  Glenn Morris  <rgm@gnu.org>
6912         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
6913         free variable `doc'.
6915         * dired.el (dired-mode-map): Add menu entry for async shell command.
6917         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
6918         variables, also consider the .elc files, since the .el files are
6919         normally gzipped (subsequent code locates the .el.gz from the .elc).
6921         * calc/calc-prog.el (arglist): Define for compiler.
6923         * calendar/diary-lib.el (diary-display-function): Change the default to
6924         fancy display.
6925         (body): Define for compiler.
6927         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
6928         (byte-compile-file-form, byte-compile-lambda)
6929         (byte-compile-top-level-body, byte-compile-form)
6930         (byte-compile-variable-ref, byte-compile-setq)
6931         (byte-compile-setq-default, byte-compile-body)
6932         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
6933         (batch-byte-compile): Give some more local variables with common names
6934         a "bytecomp-" prefix to avoid masking warnings about free variables.
6936         * startup.el (command-line-1): Give local variables with common names a
6937         distinguishing prefix, so as not to hide free variable warnings during
6938         bootstrap.
6940         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
6941         clever and add a suffix to make a unique name, just let the user decide
6942         whether or not to overwrite it.  If the input is a directory, write the
6943         default filename to that directory.  (Bug#4388)
6944         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
6945         is a filename-as-a-directory.
6947 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6949         * textmodes/page.el (what-page): Don't move to beginning of line.
6950         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
6952 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
6954         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
6956 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
6958         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
6959         * help.el (help-for-help-internal): Add purecopy calls for text.
6961         * vc.el (top): print-log method now takes an optional SHORTLOG
6962         argument.  Add a new method: root.
6963         (vc-root-diff, vc-print-root-log): New functions.
6964         (vc-log-short-style): New variable.
6965         (vc-print-log-internal): Add support for showing short logs.
6967         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
6968         vc-print-root-log and vc-print-root-diff.
6970         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
6971         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
6972         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
6973         short logs.
6975         * vc-cvs.el (vc-cvs-print-log):
6976         * vc-mtn.el (vc-mtn-print-log):
6977         * vc-rcs.el (vc-rcs-print-log):
6978         * vc-sccs.el (vc-sccs-print-log):
6979         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
6980         that is ignored for now.
6982         * vc-mtn.el (vc-mtn-annotate-command):
6983         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
6985 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6987         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
6988         to function-key-map, and give them ascii-character property.
6989         * term/x-win.el (x-alternatives-map):
6990         * term/ns-win.el (ns-alternatives-map):
6991         * term/internal.el (msdos-key-remapping-map):
6992         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
6994 2009-09-14  Glenn Morris  <rgm@gnu.org>
6996         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
6997         temp-buffers (2009-09-12).
6999 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7001         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
7002         the new read-key function.
7004 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
7006         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
7007         is defined (Bug#4405).
7009 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
7011         * recentf.el (recentf-cleanup): Use a hash table to find
7012         duplicates (Bug#4407).
7014 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
7016         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
7017         kp-0 to ascii equivalents (Bug#4325).
7019 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
7021         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
7023         * eshell/em-hist.el:
7024         * eshell/em-dirs.el (eshell-complete-user-reference):
7025         Declare pcomplete functions and variables to avoid compiler warnings.
7027 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
7029         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
7030         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
7031         * eshell/em-alias.el (eshell-aliases-file):
7032         * eshell/em-hist.el (eshell-history-file-name):
7033         Use expand-file-name instead of concat to make file names (Bug#4308).
7035 2009-09-13  Glenn Morris  <rgm@gnu.org>
7037         * ediff-merg.el (ediff-do-merge):
7038         * filesets.el (filesets-run-cmd):
7039         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
7040         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
7041         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
7042         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
7043         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
7044         Replace empty `let's with `progn'.
7046 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7048         * mail/sendmail.el (send-mail-function):
7049         * tooltip.el (tooltip-mode):
7050         * simple.el (transient-mark-mode):
7051         * rfn-eshadow.el (file-name-shadow-mode):
7052         * frame.el (blink-cursor-mode):
7053         * font-core.el (global-font-lock-mode):
7054         * files.el (temporary-file-directory)
7055         (small-temporary-file-directory, auto-save-file-name-transforms):
7056         * epa-hook.el (auto-encryption-mode):
7057         * composite.el (global-auto-composition-mode):
7058         Use custom-initialize-delay.
7059         * startup.el (command-line): Don't explicitly call
7060         custom-reevaluate-setting for all the above vars.
7061         * custom.el (custom-initialize-safe-set)
7062         (custom-initialize-safe-default): Delete.
7064 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7066         * term/x-win.el (x-initialize-window-system):
7067         * term/w32-win.el (w32-initialize-window-system):
7068         * term/ns-win.el (ns-initialize-window-system): Don't call
7069         mouse-wheel-mode since it's enabled globally by default already.
7071         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
7072         actually define the variable, but only silences the byte-compiler.
7073         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
7074         before looking it up.
7075         (mouse-wheel-scroll-amount): Also reset the bindings if this value
7076         is changed.
7078 2009-09-12  Glenn Morris  <rgm@gnu.org>
7080         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
7081         1000.
7082         (elint-add-required-env): Don't beep on error.
7083         (elint-forms): In case of error, return ENV unchanged.
7084         (elint-init-env): Skip non-list forms.
7085         (elint-log): Handle unknown file positions.
7087 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
7089         * epg.el (epg-make-context): Add autoload cookie.
7090         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
7091         (epg-decrypt-string, epg-start-verify, epg-verify-file)
7092         (epg-verify-string, epg-start-sign, epg-sign-file)
7093         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
7094         (epg-encrypt-string, epg-start-export-keys)
7095         (epg-export-keys-to-file, epg-export-keys-to-string)
7096         (epg-start-import-keys, epg-import-keys-from-file)
7097         (epg-import-keys-from-string, epg-start-receive-keys)
7098         (epg-receive-keys, epg-import-keys-from-server)
7099         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
7100         (epg-sign-keys, epg-start-generate-key)
7101         (epg-generate-key-from-file, epg-generate-key-from-string):
7102         Remove autoload cookie.
7104 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
7106         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
7107         reevaluation of trash-directory.
7109         * mwheel.el: Fix last change.
7110         (mouse-wheel-mode): New defvar.
7111         (mouse-wheel-mode): Remove autoload cookie.
7113 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7115         * mwheel.el (mwheel-installed-bindings): New var.
7116         (mouse-wheel-mode): Use it, so as to make sure we really remove all
7117         the bindings we set last time.  Use custom-initialize-delay.
7118         * loadup.el: Load mwheel after term/*-win.el.
7119         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
7120         and mouse-wheel-up-event now that their first evaluation is done
7121         sufficiently late to be correct.
7123         * startup.el (tutorial-directory): Make it a defcustom.
7124         Use custom-initialize-delay rather than eval-at-startup to set it.
7125         * image.el (image-load-path): Make it a defcustom.
7126         Use custom-initialize-delay rather than eval-at-startup to set it.
7127         * subr.el (eval-at-startup): Remove.
7128         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
7130         * subr.el (do-after-load-evaluation): Warn the user after loading an
7131         obsolete package.
7133 2009-09-12  Glenn Morris  <rgm@gnu.org>
7135         * proced.el (proced-mark-alt): Remove alias.
7136         (proced-mode-map): Remove proced-mark-alt.
7138         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
7139         Elint file and directory.  Remove initialization entry.
7141         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
7142         commands.
7143         (elint-current-buffer): Set mode-line-process.
7144         (elint-init-env): Handle define-derived-mode.
7145         Fix declare-function with unspecified arglist.  Guard against odd
7146         defalias statements (eg iso-insert's 8859-1-map).
7147         (elint-add-required-env): Use a temp buffer.
7148         (elint-form): Just print the function/macro name, not the whole form.
7149         Return env unchanged if we fail to parse a macro.
7150         (elint-forms): Guard against parse errors.
7151         (elint-output): New function, to handle batch mode.
7152         (elint-log-message): Add optional argument.  Use elint-output.
7153         (elint-set-mode-line): New function.
7155 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
7157         * emacs-lisp/elp.el (elp-not-profilable): Add more
7158         functions (Bug#4233).
7160 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
7162         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
7163         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
7165 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
7167         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
7168         (gdb-var-list-children): Use json parsing.
7170 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
7172         * progmodes/js.el (js--proper-indentation): Handle the case where
7173         char-before is null.  Reported by Deniz Dogan.
7175 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
7177         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
7179 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
7181         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
7182         (epg-digest-algorithm-alist): Add SHA224.
7183         (epg-context-set-passphrase-callback)
7184         (epg-context-set-progress-callback): Add description about
7185         callback function.
7187 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7189         * custom.el (custom-delayed-init-variables): New var.
7190         (custom-initialize-delay): New function.
7191         * startup.el (command-line): "Re"evaluate all vars in
7192         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
7193         explicitly any more.
7194         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
7195         to avoid creating a ~/.emacs.d at build-time (bug#4347).
7197         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
7199 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
7201         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
7202         (gdb-var-update-handler): Use json parsing.
7204 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
7206         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
7207         decode annotated text, regardless of language environment.  (Bug#2741)
7209 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7211         * Makefile.in (autoloads): Make rmail.el writable as well.
7213 2009-09-11  Glenn Morris  <rgm@gnu.org>
7215         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
7216         loaddefs.el.
7217         * dired.el: Regenerate with extracted autoloads.
7218         * Makefile.in (autoloads): Make dired.el writable.
7220         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
7221         * ibuffer.el: Regenerate with extracted autoloads.
7222         * Makefile.in (autoloads): Make ibuffer.el writable.
7224         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
7225         * version.el (emacs-copyright, emacs-major-version)
7226         (emacs-minor-version): Reformat doc-strings for make-docfile.
7228         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
7229         functions and variables, since they must be stuff specific to some other
7230         platform.
7231         (apropos-print): Make mouse-click message less specific about button.
7233         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
7234         that records where a macro was defined.
7235         * help-fns.el (describe-function-1): Mention if a function has a
7236         compiler-macro.
7237         * help-mode.el (help-function-cmacro): New button.
7239         * locate.el (top-level): Always require dired.
7240         (locate-mode-map): Initialize inside the defvar.
7242         * net/ange-ftp.el (dired-compress-file): Declare.
7243         (ange-ftp-dired-compress-file): Add doc string.
7245         * term/ns-win.el (x-display-name, x-setup-function-keys):
7246         Unify doc-strings with X versions.
7248 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7250         * emulation/crisp.el (crisp-mode-map): Move initialization
7251         into declaration.
7252         (crisp-mode): Use define-minor-mode.
7254         * progmodes/xscheme.el (xscheme-evaluation-commands):
7255         Put a :advertised-binding property rather than using
7256         advertised-xscheme-send-previous-expression.
7257         (advertised-xscheme-send-previous-expression): Declare obsolete.
7258         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
7259         `advertised-undo'.
7260         (crisp-mode): Add corresponding bindings to
7261         undo's :advertised-binding instead.
7262         * dired.el (dired-mode-map): Put a :advertised-binding property rather
7263         than using dired-advertised-find-file.
7264         (dired-advertised-find-file):
7265         * simple.el (advertised-undo):
7266         * wid-edit.el (advertised-widget-backward): Declare obsolete.
7267         (widget-keymap): Put a :advertised-binding property rather
7268         than using advertised-widget-backward.
7269         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
7270         than using advertised-undo.
7271         * tutorial.el (tutorial--default-keys): Adjust accordingly.
7273 2009-09-10  Simon South  <ssouth@slowcomputing.org>
7275         * progmodes/delphi.el (delphi-tab): Indent region when Transient
7276         Mark mode is enabled and region is active; otherwise indent or
7277         insert TAB as usual.
7278         (delphi-mode): Update description of TAB-key binding.
7280 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7282         * subr.el (define-key-rebound-commands): Mark obsolete.
7283         * startup.el (precompute-menubar-bindings): Remove.
7284         (normal-top-level): Remove obsolete code that tried to precompute
7285         menubar bindings.
7286         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
7287         define-key-rebound-commands and precompute-menubar-bindings.
7289 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
7291         * net/imap.el (imap-interactive-login): Better messages.
7292         (imap-open): Fix bug with renamed buffer on reconnect.
7293         (imap-authenticate): Add buffer-local imap-last-authenticator variable
7294         for easier debugging and cleaner code.  On successful (guessed based on
7295         server capabilities) secondary authentication, set imap-state
7296         correctly.
7297         (imap-last-authenticator): Define imap-last-authenticator as a variable
7298         to avoid warnings.
7300 2009-09-10  Glenn Morris  <rgm@gnu.org>
7302         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
7304         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
7305         (byte-compile-file-form-autoload): Don't warn about unknown functions
7306         where the autoload statement comes after the use.
7307         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
7308         that any handlers inside the body (eg require) are in turn respected.
7310         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
7311         effects.
7313         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
7314         and syntax and abbrev tables basic docs, if they don't have any.
7316         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
7318         * international/mule-cmds.el (top-level): Require cl when compiling.
7319         (view-hello-file): Use default-value rather than
7320         default-enable-multibyte-characters.
7322         * progmodes/fortran.el: Move all safe and risky properties into the
7323         defcustoms.
7325         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
7326         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
7327         * mail/undigest.el:
7328         Put autoloads in rmail.el rather than loaddefs.el.
7329         * mail/rmail.el: Regenerate with extracted autoloads.
7331         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
7332         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
7334 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
7336         Reported in thread for Bug#4375.
7337         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
7338         "-data-evaluate-expression" instead of print.
7339         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
7340         (gdb-tooltip-print): Parse output from above MI command.
7341         (gdb): Revert 2009-08-11 change.  User should detach inferior
7342         manually.
7344         Remove the word "separate" from IO functions as inferior
7345         output is now never displayed in the GUD buffer.
7347 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
7349         * startup.el (command-line-normalize-file-name): On Windows and
7350         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
7352 2009-09-10  Juri Linkov  <juri@jurta.org>
7354         * isearch.el (isearch-text-char-description): Propertize escape
7355         character sequences with the `escape-glyph' face.  (Bug#4344)
7357         * simple.el (shell-command): Set asynchronous process filter to
7358         `comint-output-filter'.  (Bug#4343)
7360         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
7361         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
7362         the list.  Move "asm" to the bottom.
7363         (grep-find-ignored-directories): Add `choice' with nil value
7364         to empty the list easily.
7365         (grep-find-ignored-files): New option.
7366         (grep-files-history): Set to nil by default instead of '("ch" "el").
7367         (grep-compute-defaults): Add "<X>" to `grep-template'.
7368         (grep-read-files): Bind new local variables `default-alias' and
7369         `default-extension'.  Use a list of default values for the file prompt.
7370         (lgrep): Add `--exclude=' command line options composed from
7371         `grep-find-ignored-files'.
7372         (rgrep): Add `-name' command line options composed from
7373         `grep-find-ignored-files'.  (Bug#4301)
7375 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7377         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
7378         (bug#4368).
7380 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7382         * calendar/time-date.el (autoload):
7383         Expand define-obsolete-function-alias into defalias and make-obsolete
7384         for old Emacsen that Gnus supports.
7385         (with-no-warnings): Define it for old Emacsen.
7386         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
7387         is available.
7388         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
7389         float-time is available; suppress compile warning for time-to-seconds.
7391 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
7393         * net/imap.el (imap-message-map): Docstring fix.
7395 2009-09-09  Glenn Morris  <rgm@gnu.org>
7397         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
7398         line numbers too.  (Bug#4374)
7400 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7402         * smerge-mode.el (smerge-remove-props, smerge-refine):
7403         Use with-silent-modifications (bug#4342).
7405         * subr.el (with-silent-modifications): New macro.
7407 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
7409         * files.el (top-level): Require `cl' when compiling.
7411 2009-09-07  Glenn Morris  <rgm@gnu.org>
7413         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
7415         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
7416         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
7418 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
7420         * vc-git.el (vc-git-annotate-command): Use separator to parse
7421         arguments correctly.
7423 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
7425         * proced.el (proced-mode): Doc fix.
7427 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
7429         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
7430         lstat fails.
7431         (tramp-do-file-attributes-with-ls): Check for file existence at
7432         remote end.
7433         (tramp-do-file-attributes-with-stat): Likewise.
7434         (tramp-convert-file-attributes): Return nil when attr is nil.
7436 2009-09-05  Glenn Morris  <rgm@gnu.org>
7438         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
7439         properties to this button.
7440         (diary-fancy-display): Don't extend the button to the final newline.
7441         (diary-fancy-display-mode): Continue to define "q" as a local key.
7443         * calendar/cal-china.el (holiday-chinese): Make it slightly more
7444         efficient.
7446         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
7448         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
7449         (byte-compile-dest-file-function): New option.
7450         (byte-compile-dest-file): Doc fix.
7451         Obey byte-compile-dest-file-function.
7452         (byte-compile-cl-file-p): New function.
7453         (byte-compile-eval): Only suppress noruntime warnings about cl functions
7454         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
7455         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
7456         than for file being previously loaded.
7457         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
7458         (byte-compile-file-form-require): Handle the case where requiring a file
7459         indirectly causes CL to be loaded.
7461 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
7463         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
7464         before killing the old buffer, since by the time `kill-buffer' is
7465         run so many buffer variables have been set to nil that it may not
7466         behave as expected.  (Bug#4061)
7468 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
7470         * files.el (find-alternate-file): If the old buffer is modified
7471         and visiting a file, behave similarly to `kill-buffer' when
7472         killing it, thus reverting to the pre-1.878 behavior; see
7473         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
7474         for discussion.  Also, consult `buffer-file-name' as a variable
7475         not as a function, for consistency with the rest of the code.
7477 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
7479         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
7480         also when adding a new directory.
7482         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
7483         defun.
7485 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7487         * files.el (locate-file-completion-table): Make it provide boundary
7488         information, so partial-completion works better.
7490 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
7492         * mail/footnote.el (Footnote-text-under-cursor):
7493         Check footnote-text-marker-alist before using it (bug#4324).
7495 2009-09-04  Glenn Morris  <rgm@gnu.org>
7497         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
7498         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
7499         * play/solitaire.el, play/tetris.el:
7500         Remove leading * from defcustom and defface docs.
7502         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
7503         necessary.
7504         (diary-fancy-overriding-map): New variable.
7505         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
7506         Use view-mode.
7508         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
7509         goto-line.
7511 2009-09-03  Glenn Morris  <rgm@gnu.org>
7513         * arc-mode.el (archive-mode):
7514         * dos-fns.el (set-default-process-coding-system):
7515         * man.el (Man-getpage-in-background):
7516         * menu-bar.el (menu-bar-describe-menu):
7517         * server.el (server-process-filter):
7518         * startup.el (command-line):
7519         * tar-mode.el (tar-header-block-tokenize, tar-extract):
7520         * w32-fns.el (set-default-process-coding-system):
7521         * x-dnd.el (x-dnd-handle-file-name):
7522         * international/mule-cmds.el (mule-menu-keymap)
7523         (set-default-coding-systems, language-info-alist, set-language-info)
7524         (set-language-environment, standard-display-european-internal)
7525         (set-locale-environment):
7526         * international/mule-diag.el (mule-diag):
7527         * mail/emacsbug.el (report-emacs-bug):
7528         * mail/rmail.el (rmail-mode):
7529         * mail/sendmail.el (mail-setup):
7530         Use default-value rather than default-enable-multibyte-characters.
7532         * progmodes/f90.el: Move all safe properties into the defcustoms.
7533         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
7535         * calendar/appt.el (appt-check):
7536         * calendar/diary-lib.el (diary-set-header, diary-live-p)
7537         (diary-check-diary-file, diary-list-entries)
7538         (diary-include-other-diary-files, diary-simple-display)
7539         (diary-fancy-display, diary-print-entries)
7540         (diary-mark-included-diary-files, diary-make-entry):
7541         Don't call substitute-in-file-name on diary-file.
7543 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
7544             Stefan Monnier  <monnier@iro.umontreal.ca>
7546         * mail/footnote.el (footnote-prefix): Make it a defcustom.
7547         (footnote-mode-map): Move initialization into the declaration.
7548         (footnote-minor-mode-map): Define it rather than changing global-map.
7549         (footnote-mode): Use define-minor-mode.
7551 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
7553         * net/tramp.el (tramp-handle-file-attributes-with-ls)
7554         (tramp-do-file-attributes-with-perl)
7555         (tramp-do-file-attributes-with-stat): Rename from
7556         `tramp-handle-file-attributes-with-*'.
7557         (tramp-handle-file-attributes): Use them.
7558         (tramp-do-directory-files-and-attributes-with-perl)
7559         (tramp-do-directory-files-and-attributes-with-stat): Rename from
7560         `tramp-handle-directory-files-and-attributes-with-*'.
7561         (tramp-handle-directory-files-and-attributes): Use them.
7562         (tramp-method-out-of-band-p): Additional parameter SIZE.
7563         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
7564         (tramp-handle-write-region): Use it.
7565         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
7566         (tramp-handle-vc-registered): Check, whether the first run did
7567         return files to be tested.
7568         (tramp-advice-make-auto-save-file-name): Do not call directly
7569         `tramp-handle-make-auto-save-file-name', because this would bypass
7570         the locking mechanism.
7572         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
7573         (file-remote-p, process-file, start-file-process, set-file-times)
7574         (tramp-compat-file-attributes): Compatibility functions shall not
7575         call directly `tramp-handle-*', because this would bypass the
7576         locking mechanism.
7577         (tramp-compat-number-sequence): New defun.
7579 2009-09-02  Glenn Morris  <rgm@gnu.org>
7581         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
7582         alias for float-time.
7583         (time-to-number-of-days): In Emacs, use float-time.
7584         * net/newst-backend.el (time-add): Suppress warnings from compat
7585         function.
7586         * time.el (emacs-uptime, emacs-init-time):
7587         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
7588         Use float-time rather than time-to-seconds.
7590         * minibuffer.el (completion-initials-expand): Fix typo.
7592         * faces.el (modeline, modeline-inactive, modeline-highlight)
7593         (modeline-buffer-id):
7594         * info.el (info-menu-5): Mark these face aliases as obsolete.
7596 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
7598         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
7599         space ...
7600         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
7601         no "--thread" option.
7602         (gdb-stopped): Don't print "Switched to thread" message when it is
7603         unchanged.
7605 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7607         * minibuffer.el (completion-try-completion)
7608         (completion-all-completions): Remove ill-defined (and
7609         mistakenly installed and luckily never used nor documented)
7610         `completion-styles' property.
7611         (completion-initials-expand, completion-initials-all-completions)
7612         (completion-initials-try-completion): New functions.
7613         (completion-styles-alist): Add doc to each entry.
7614         Add new `initials' entry.
7616 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
7618         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
7619         MI command -var-evaluate-expression.
7620         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
7621         and tweak for case of string child.
7622         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
7624 2009-09-01  Glenn Morris  <rgm@gnu.org>
7626         * add-log.el (change-log-date-face, change-log-name-face)
7627         (change-log-email-face, change-log-file-face, change-log-list-face)
7628         (change-log-conditionals-face, change-log-function-face)
7629         (change-log-acknowledgement-face):
7630         * cus-edit.el (custom-invalid-face, custom-rogue-face)
7631         (custom-modified-face, custom-set-face, custom-changed-face)
7632         (custom-saved-face, custom-button-face, custom-button-pressed-face)
7633         (custom-documentation-face, custom-state-face, custom-comment-face)
7634         (custom-comment-tag-face, custom-variable-tag-face)
7635         (custom-variable-button-face, custom-face-tag-face)
7636         (custom-group-tag-face-1, custom-group-tag-face):
7637         * diff-mode.el (diff-header-face, diff-file-header-face)
7638         (diff-index-face, diff-hunk-header-face, diff-removed-face)
7639         (diff-added-face, diff-changed-face, diff-function-face)
7640         (diff-context-face, diff-nonexistent-face):
7641         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
7642         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
7643         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
7644         (Info-title-4-face):
7645         * isearch.el (isearch-lazy-highlight-face):
7646         * log-view.el (log-view-file-face, log-view-message-face):
7647         * paren.el (show-paren-match-face, show-paren-mismatch-face):
7648         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
7649         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
7650         (cvs-msg-face):
7651         * smerge-mode.el (smerge-mine-face, smerge-other-face)
7652         (smerge-base-face, smerge-markers-face):
7653         * wid-edit.el (widget-documentation-face, widget-button-face)
7654         (widget-field-face, widget-single-line-field-face)
7655         (widget-inactive-face, widget-button-pressed-face):
7656         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
7657         (woman-addition-face):
7658         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
7659         (eshell-ls-executable-face, eshell-ls-readonly-face)
7660         (eshell-ls-unreadable-face, eshell-ls-special-face)
7661         (eshell-ls-missing-face, eshell-ls-archive-face)
7662         (eshell-ls-backup-face, eshell-ls-product-face)
7663         (eshell-ls-clutter-face):
7664         * eshell/em-prompt.el (eshell-prompt-face):
7665         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
7666         * obsolete/old-whitespace.el (whitespace-highlight-face):
7667         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
7668         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
7669         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
7670         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
7671         (antlr-font-lock-literal-face):
7672         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
7673         (ebrowse-root-class-face, ebrowse-file-name-face)
7674         (ebrowse-default-face, ebrowse-member-attribute-face)
7675         (ebrowse-member-class-face, ebrowse-progress-face):
7676         * progmodes/make-mode.el (makefile-space-face):
7677         * progmodes/sh-script.el (sh-heredoc-face):
7678         * textmodes/flyspell.el (flyspell-incorrect-face)
7679         (flyspell-duplicate-face):
7680         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
7681         * textmodes/texinfo.el (texinfo-heading-face):
7682         Mark face aliases with "-face" suffix as obsolete.
7684         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
7685         compiler.
7687         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
7688         (eudc-bob-sound-menu): Use defvar rather than defconst, since
7689         easy-menu-define wants to modify these.
7691         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
7693         * net/browse-url.el (browse-url-file-url):
7694         * term/internal.el (dos-codepage-setup):
7695         Use default-value rather than default-enable-multibyte-characters.
7697         * progmodes/etags.el (etags-goto-tag-location):
7698         * progmodes/flymake.el (flymake-highlight-line)
7699         (flymake-goto-file-and-line, flymake-goto-line):
7700         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
7701         (gdb-goto-breakpoint):
7702         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
7703         * progmodes/python.el (python-find-function)
7704         (python-pdbtrack-track-stack-file):
7705         * progmodes/verilog-mode.el (verilog-surelint-off):
7706         * term/ns-win.el (ns-open-file-select-line):
7707         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
7708         Use forward-line rather than goto-line.
7710         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
7711         * textmodes/reftex-index.el (reftex-display-index):
7712         * textmodes/reftex-ref.el (reftex-offer-label-menu):
7713         * textmodes/reftex-toc.el (reftex-toc):
7714         Remove unnecessary bindings of default-major-mode (all are followed by
7715         major-mode check and possible mode switch).
7717 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
7719         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
7720         Handle watchpoints (bug#4282).
7721         (def-gdb-thread-buffer-command): Enable thread to be selected by
7722         clicking without selecting threads buffer first.
7723         (gdb-current-context-command): Use selected frame so that "up",
7724         "down" etc work in the GUD buffer.
7725         (gdb-update): Find selected frame before rendering stack buffer.
7726         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
7728 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
7730         * progmodes/sym-comp.el (displayed-completions): Remove.
7731         (symbol-complete): Use minibuffer-complete.
7733 2009-08-31  Glenn Morris  <rgm@gnu.org>
7735         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
7737         * apropos.el (apropos-symbols-internal):
7738         Handle (obsolete) face aliases.
7740         * faces.el (describe-face): Adjust the output format to be more like
7741         describe-variable, and to mention (obsolete) face aliases.
7742         Adjust the whitespace so that help-setup-xref works.
7744         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
7745         * calendar/diary-lib.el (diary-button-face):
7746         Mark these face aliases as obsolete.
7748         * calendar/calendar.el (calendar-today): Doc fix.
7750 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
7752         * progmodes/gdb-mi.el (gdb-control-all-threads)
7753         (gdb-control-current-thread): Force tool bar update.
7754         (gdb-non-stop-handler): New function.
7755         (gdb-init-1): Use it to test if non-stop mode is supported.
7756         Remove unused gdbmi buffer type.
7758 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
7760         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
7761         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
7763 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
7765         * comint.el (comint-exec-1): Check command is non-null first.
7766         Part of gdb-mi.el change (2009-08-28).
7768 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7770         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
7772 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
7774         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
7775         instead of `dolist' to avoid a recursive require when bootstrapping.
7777 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7779         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
7781         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
7783         * net/imap.el (imap-send-command): Simplify.
7784         (imap-wait-for-tag): point-max -> buffer-size.
7786         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
7788         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
7789         with constant argument.
7791         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
7793         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
7795         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
7796         Change default, since most of our files don't have a history.
7797         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
7798         the user.
7800         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7801         Add comint-run.
7803         * calc/calc.el: Improve commenting convention.
7804         (calc-digit-map, toplevel): Simplify.
7806         * comint.el (comint-insert-input): Be careful to only set point if we
7807         don't delegate to some other command.
7809         * proced.el (proced-signal-list): Make it an alist.
7810         (proced-grammar-alist): Capitalize names.
7811         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
7812         Disable undo manually and make it read-only.
7813         Use completion-annotate-function.
7815         * minibuffer.el (minibuffer-message): If the current buffer is not
7816         a minibuffer, insert the message in the echo area rather than at the
7817         end of the buffer.
7818         (completion-annotate-function): New variable.
7819         (minibuffer-completion-help): Use it.
7820         (completion--embedded-envvar-table): Environment vars are
7821         always case-sensitive.
7823 2009-08-30  Glenn Morris  <rgm@gnu.org>
7825         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
7826         from fortran-current-defun.
7827         (fortran-beginning-of-subprogram): Be more precise about finding the
7828         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
7829         (fortran-end-of-subprogram): Simplify.
7830         (fortran-current-defun): Use fortran-start-prog-re.
7832 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
7834         * subr.el (do-after-load-evaluation): Simplify.
7836 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
7838         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
7840         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
7841         (vc-rcs-print-log): Use it.
7843         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
7845 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7847         * paths.el (abbrev-file-name): Move to abbrev.el.
7848         * abbrev.el (abbrev-file-name): Move from paths.el.
7849         Obey user-emacs-directory.
7850         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
7851         user-emacs-directory.
7852         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
7853         abbrev-file-name and calc-settings-file any more.
7854         * startup.el (command-line): Recompute abbrev-file-name and
7855         abbreviated-home-dir.
7856         (normal-no-mouse-startup-screen): Improve the generic code and get rid
7857         of the special code for when C-h bindings haven't been changed.
7858         (display-startup-echo-area-message): Use with-current-buffer.
7859         (command-line-1): Use a list of strings, rather than a list of lists
7860         of strings for longopts.
7862         * files.el (get-free-disk-space): Use / for default-directory.
7864         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
7865         Use with-current-buffer.
7867         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
7868         Recognize immutable variables like most-positive-fixnum.
7869         (byte-compile-setq-default): Check and warn if trying to assign
7870         to an immutable variable, or a non-variable.
7872         * progmodes/cc-vars.el (c-comment-continuation-stars):
7873         * progmodes/cc-engine.el (c-looking-at-bos):
7874         * progmodes/cc-cmds.el (c-toggle-auto-state)
7875         (c-forward-into-nomenclature, c-backward-into-nomenclature)
7876         (c-comment-line-break-function): Add version of obsolescence.
7878 2009-08-28  Juri Linkov  <juri@jurta.org>
7880         * files.el (magic-fallback-mode-alist): Add ZIP magic number
7881         associated with `archive-mode'.
7883         * image.el (image-type-header-regexps): Use only JPEG magic number
7884         to determine JPEG images, and don't use `image-jpeg-p' because
7885         Emacs can display non-JFIF non-Exif JPEG images.
7887 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
7889         * arc-mode.el (archive-mode):
7890         * emacs-lisp/re-builder.el (re-builder-unload-function):
7891         Protect against the default value of `major-mode' being nil.
7893 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
7895         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
7896         Fix typos in docstrings.
7898         * progmodes/js.el (js--macro-decl-re): Doc fix.
7899         (js--plain-method-re, js--split-name): Refloc docstring.
7900         (js--class-styles, js--make-merged-item, js--splice-into-items):
7901         Fix typos in docstrings; reflow docstrings.
7902         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
7903         (js--variable-decl-matcher, js--inside-pitem-p)
7904         (js--parse-state-at-point, js--get-all-known-symbols)
7905         (js--symbol-history, js-find-symbol, js--js-references)
7906         (js--moz-interactor, js--js-encode-value, js--read-tab):
7907         Fix typos in docstrings.
7909 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7911         * textmodes/reftex.el (reftex-get-file-buffer-force):
7912         * progmodes/verilog-mode.el (verilog-batch-execute-func):
7913         * emulation/viper.el (viper-go-away, viper-set-hooks):
7914         * emacs-lisp/re-builder.el (re-builder-unload-function):
7915         * emacs-lisp/bytecomp.el (byte-compile-file):
7916         * ses.el (ses-unload-function):
7917         * hexl.el (hexl-find-file):
7918         * files.el (normal-mode):
7919         * ehelp.el (with-electric-help):
7920         * autoinsert.el (auto-insert-alist):
7921         * arc-mode.el (archive-mode):
7922         Use (default-value 'major-mode) instead of default-major-mode.
7924         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
7925         * international/mule.el (load-with-code-conversion):
7926         * emacs-lisp/debug.el (debug):
7927         * ediff-vers.el (ediff-rcs-get-output-buffer):
7928         * dired.el (dired-internal-noselect): Don't let-bind
7929         default-major-mode around code that doesn't use it.
7930         E.g. buffer creation via get-buffer-create doesn't use it.
7932 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
7934         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
7935         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
7936         when writing the temp file.  Otherwise, epa-file gets confused.
7937         (tramp-register-file-name-handlers): Make it a defun.  Move also
7938         `epa-file-handler' to the front of `file-name-handler-alist'.
7940 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7942         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
7943         start right after a ^M.
7944         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
7945         (tramp-completion-file-name-regexp-separate)
7946         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
7947         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
7948         Don't modify last-coding-system-used by accident.
7949         (tramp-completion-file-name-handler): Apply the checks here,
7950         instead during registration.
7951         (tramp-register-file-name-handlers) Renamed from
7952         `tramp-register-file-name-handler'.  Register both
7953         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
7954         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
7956 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
7958         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
7959         Remove variable ...
7960         (gdb-init-1, gdb-display-separate-io-buffer)
7961         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
7962         references to it.
7963         (gdb-inferior-io-mode): Use make-comint-in-buffer.
7964         (gdb-inferior-filter): Use comint-output-filter to stop
7965         echoing and remove ^M characters.
7967 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7969         * emulation/viper-init.el (viper-restore-cursor-type):
7970         * emulation/cua-base.el (cua--update-indications):
7971         Replace default-cursor-type with (default-value 'cursor-type).
7973         * mail/sendmail.el (mail-recover-1):
7974         * international/mule-diag.el (describe-current-coding-system-briefly)
7975         (describe-current-coding-system):
7976         * international/mule-cmds.el (select-safe-coding-system)
7977         (select-message-coding-system)
7978         (set-language-environment-coding-systems, set-locale-environment):
7979         * hexl.el (hexl-insert-multibyte-char):
7980         * dos-w32.el (find-buffer-file-type-coding-system):
7981         * simple.el (what-cursor-position):
7982         Replace uses of default-buffer-file-coding-system
7983         with (default-value 'buffer-file-coding-system).
7985         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
7986         Replace uses of default-cursor-in-non-selected-windows
7987         with (default-value 'cursor-in-non-selected-windows).
7988         Use with-current-buffer.
7990         * mail/feedmail.el: Use CL macros.
7991         (feedmail-run-the-queue, feedmail-send-it-immediately):
7992         * dos-w32.el (find-buffer-file-type): Replace uses of
7993         default-buffer-file-type with (default-value 'buffer-file-type).
7995 2009-08-28  Glenn Morris  <rgm@gnu.org>
7997         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
7998         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
7999         Use default-value of major-mode rather than default-major-mode.
8001 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8003         * Makefile.in (update-elcfiles): Report left over elc files.
8005         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
8006         expand-file-name and with-current-buffer.
8007         (mail-get-names, mail-directory): Use with-current-buffer.
8009         * vc.el (vc-read-revision): New function.
8010         (vc-version-diff, vc-merge): Use it.
8012 2009-08-27  Sam Steingold  <sds@gnu.org>
8014         * simple.el (kill-do-not-save-duplicates): New user option.
8015         (kill-new): When it is non-nil, and the new string is the same as
8016         the latest kill, set replace to t to avoid duplicates in kill-ring.
8018 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
8020         * net/tramp.el (tramp-handle-process-file): Do not flush all
8021         caches when `process-file-side-effects' is set.
8022         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
8023         instead of `tramp-find-file-exists-command'.
8024         Unset `process-file-side-effects'.
8026 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
8028         * net/tramp.el (tramp-methods): New method "rsyncc".
8029         (top): Add completion function for "rsyncc".
8030         (tramp-message-show-message): New defvar.
8031         (tramp-message, tramp-error): Use it.
8032         (tramp-do-copy-or-rename-file-directly): Extend check for direct
8033         remote copying.
8034         (tramp-do-copy-or-rename-file-out-of-band): Handle new
8035         `tramp-methods' entry `copy-env' of "rsyncc".
8036         (tramp-vc-registered-read-file-names): New defconst.
8037         (tramp-vc-registered-file-names): New defvar.
8038         (tramp-handle-vc-registered): Implement optimization strategy.
8039         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
8040         (tramp-vc-file-name-handler): New defun.
8041         (tramp-get-ls-command, tramp-get-test-command)
8042         (tramp-get-file-exists-command, tramp-get-remote-ln)
8043         (tramp-get-remote-perl, tramp-get-remote-stat)
8044         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
8046         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
8047         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
8048         timestamps.
8049         (tramp-get-file-property): Check for timestamps in
8050         `tramp-cache-inhibit-cache'.
8051         (tramp-set-file-property): Write timestamp.
8053 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
8055         * language/japan-util.el (japanese-symbol-table): Add entries for
8056         cp932-2-byte.
8058         * international/characters.el: Add category `j' to cp932-2-byte.
8060 2009-08-27  Kenichi Handa  <handa@m17n.org>
8062         * international/fontset.el (build-default-fontset-data): New macro.
8063         (setup-default-fontset): Use build-default-fontset-data for CJK,
8064         tibetan, ethiopic, and ipa.
8066 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8068         * cus-start.el (default-major-mode): Customize `major-mode' instead.
8069         (enable-multibyte-characters): Not customizable any more.
8071         * subr.el (default-mode-line-format, default-header-line-format)
8072         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
8073         (default-direction-reversed, default-truncate-lines)
8074         (default-left-margin, default-tab-width, default-case-fold-search)
8075         (default-left-margin-width, default-right-margin-width)
8076         (default-left-fringe-width, default-right-fringe-width)
8077         (default-fringes-outside-margins, default-scroll-bar-width)
8078         (default-vertical-scroll-bar, default-indicate-empty-lines)
8079         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
8080         (default-fringe-cursor-alist, default-scroll-up-aggressively)
8081         (default-scroll-down-aggressively, default-fill-column)
8082         (default-cursor-type, default-buffer-file-type)
8083         (default-cursor-in-non-selected-windows)
8084         (default-buffer-file-coding-system, default-major-mode)
8085         (default-enable-multibyte-characters): Mark as obsolete.
8087 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
8089         * vc-dir.el (vc-dir-update): Remove debug helper.
8091         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
8093 2009-08-26  Sam Steingold  <sds@gnu.org>
8095         * simple.el (save-interprogram-paste-before-kill): New user option.
8096         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
8097         save the interprogram-paste into kill-ring before overriding it
8098         with the Emacs kill.
8100 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
8102         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
8103         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
8104         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
8105         and move to vc-rcs.el.
8106         (vc-default-next-revision): Rename to vc-rcs-next-revision and
8107         move to vc-rcs.el.
8108         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
8109         (vc-rcs-update-changelog): Remove.
8110         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
8111         and move to vc-rcs.el.
8113         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
8114         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
8115         renaming.
8116         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
8117         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
8118         vc.el, renamed to be RCS specific.
8120         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
8121         New functions.
8122         (vc-cvs-update-changelog): Move here from vc.el.
8124         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
8125         New functions.
8127 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8129         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
8131 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
8133         * vc-git.el (vc-git-register): Use "git add" for directories.
8134         (vc-git-stash, vc-git-stash-show): New functions.
8135         (vc-git-extra-menu-map): Bind them.
8137         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
8138         directory correctly in case the item is a directory itself.
8140         * vc.el: Document the desired behavior for reverted files in the
8141         `added' state.
8142         (vc-default-prettify-state-info): Remove function, unused.
8144         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
8146 2009-08-26  Glenn Morris  <rgm@gnu.org>
8148         * bindings.el (standard-mode-line-format): Reposition dashes in
8149         which-func entry.  (Bug#4217)
8151         * files.el (enable-local-variables, enable-local-eval)
8152         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
8153         the defcustoms.
8154         (auto-mode-alist, ignored-local-variables)
8155         (save-some-buffers-action-alist): Move risky declarations to the
8156         definitions.
8157         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
8158         (font-lock-defaults, format-alist, imenu--index-alist)
8159         (imenu-generic-expression, input-method-alist, minor-mode-alist)
8160         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
8161         (mode-line-modified, mode-line-mule-info, mode-line-position)
8162         (mode-line-process, mode-line-remote, outline-level)
8163         (parse-time-rules, rmail-output-file-alist)
8164         (special-display-buffer-names, vc-mode):
8165         Move risky declarations to the relevant files.
8166         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
8167         (mode-line-modified, mode-line-process, mode-line-position)
8168         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
8169         * font-core.el (font-lock-defaults):
8170         * format.el (format-alist):
8171         * vc-hooks.el (vc-mode):
8172         * window.el (special-display-buffer-names):
8173         * international/mule-cmds.el (input-method-alist):
8174         Define riskiness here (dumped file) rather than in files.el.
8175         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
8176         * imenu.el (imenu-generic-expression, imenu--index-alist):
8177         * outline.el (outline-level):
8178         * time.el (display-time-string):
8179         * calendar/parse-time.el (parse-time-rules):
8180         * mail/rmailout.el (rmail-output-file-alist):
8181         Autoload riskiness here, rather than placing in files.el.
8183 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
8185         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
8187 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
8189         * simple.el (process-file-side-effects): New defvar.
8191         * dired-aux.el (dired-show-file-type):
8192         * vc.el (vc-diff-internal):
8193         * vc-arch.el (vc-arch-diff):
8194         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
8195         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
8196         * vc-git.el (vc-git-registered, vc-git-working-revision)
8197         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
8198         (vc-git--empty-db-p):
8199         * vc-hooks.el (vc-user-login-name):
8200         * vc-svn.el (vc-svn-registered, vc-svn-state)
8201         (vc-svn-dir-extra-headers, vc-svn-find-revision):
8202         * progmodes/grep.el (grep-probe): Let-bind
8203         `process-file-side-effects' with nil.
8205         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
8207         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
8208         daemon.  Replace ping by checking for running service for bluez
8209         and zeroconf.  (Bug#4239)
8211 2009-08-25  Kevin Ryde  <user42@zip.com.au>
8213         * net/dig.el (dig): Add autoload cookie.
8215 2009-08-25  Glenn Morris  <rgm@gnu.org>
8217         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
8218         load-history for absolute file-names.
8219         (byte-compile-file-form-require): Warn about use of the cl package.
8221         * format.el (format-alist): Doc fix.
8223         * play/bubbles.el (top-level): Don't require cl at run-time.
8225         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
8226         run-time cl).
8228 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
8230         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
8231         from cl package.
8232         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
8234 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
8236         * calc/calc-alg.el (math-trig-rewrite)
8237         (math-hyperbolic-trig-rewrite): New functions.
8238         (calc-simplify): Simplify trig functions when asked.
8240 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8242         * diff-mode.el (diff-find-source-location): Avoid goto-line.
8244 2009-08-24  Kenichi Handa  <handa@m17n.org>
8246         * language/ind-util.el (mapthread): Delete it.
8247         (combinatorial): New function.
8248         (indian--puthash-cv): Use combinatorial instead of mapthread.
8250 2009-08-22  Kevin Ryde  <user42@zip.com.au>
8252         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
8253         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
8254         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
8255         Clarify docstring that the value is strings not symbols.
8256         (checkdoc-list-of-strings-p): New function.
8258 2009-08-22  Glenn Morris  <rgm@gnu.org>
8260         * files.el (auto-mode-alist):
8261         * hippie-exp.el (he-concat-directory-file-name):
8262         * lpr.el (lpr-windows-system, printer-name):
8263         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
8264         * ps-print.el (ps-windows-system):
8265         * startup.el (command-line):
8266         * emulation/viper-ex.el (viper-glob-function):
8267         * international/mule-cmds.el (set-language-environment-coding-systems):
8268         * net/ange-ftp.el (ange-ftp-write-region):
8269         * obsolete/fast-lock.el (fast-lock-cache-name):
8270         Remove code for defunct system-types emx, macos, mswindows, next-mach,
8271         unisoft-unix, vax-vms, win32, w32.
8273         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
8274         given name if the pattern is not more specific.
8276         * calendar/lunar.el (lunar-phase-names): New option.
8277         (lunar-phase): Doc fix.
8278         (lunar-cycles-per-year): New constant.
8279         (lunar-index): New function.
8280         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
8281         (lunar-phase-name): Use lunar-phase-names.
8282         (calendar-lunar-phases): Use format.
8283         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
8285         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
8286         Copy imenu-example--name-and-position function here for own use.
8287         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
8289         * bs.el (bs--redisplay):
8290         * cus-edit.el (custom-redraw):
8291         * ibuffer.el (ibuffer-bury-buffer):
8292         * server.el (server-goto-line-column):
8293         * startup.el (command-line-1):
8294         * strokes.el (strokes-xpm-for-stroke):
8295         * term.el (term-display-buffer-line):
8296         * view.el (View-goto-line):
8297         * calc/calc.el (calc-do, calc-trail-buffer):
8298         * play/gamegrid.el (gamegrid-add-score-insecure):
8299         * progmodes/ada-mode.el (ada-compile-goto-error):
8300         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
8301         (ebrowse-select-1st-to-9nth):
8302         * progmodes/cperl-mode.el (cperl-time-fontification):
8303         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
8304         * progmodes/gud.el (gud-display-line):
8305         (idlwave-shell-display-line):
8306         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
8307         * progmodes/make-mode.el (makefile-browser-toggle):
8308         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
8309         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
8310         * textmodes/picture.el (picture-draw-rectangle):
8311         * textmodes/reftex-index.el (reftex-index-goto-letter):
8312         (reftex-select-jump-to-previous):
8313         * textmodes/reftex-sel.el (reftex-find-start-point)
8314         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
8315         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
8316         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
8317         * textmodes/tex-mode.el (tex-compilation-parse-errors):
8318         * textmodes/two-column.el (2C-associated-buffer):
8319         Use forward-line rather than goto-line.
8321         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
8322         goto-line.
8324         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
8325         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
8326         (quick-check-list-to-regexp): Declare.
8328         * progmodes/make-mode.el (makefile-browser-insert-selection):
8329         Use goto-char rather than goto-line.
8331         * progmodes/prolog.el (compilation-error-regexp-alist)
8332         (compilation-forget-errors): Declare.
8334 2009-08-22  Juri Linkov  <juri@jurta.org>
8336         * progmodes/grep.el (lgrep, rgrep): At the beginning
8337         set `dir' to `default-directory' unless `dir' is a non-nil
8338         readable directory.  (Bug#4052)
8339         (lgrep, rgrep): Change a weird way to report an error
8340         from using `read-string' to using `error'.
8341         Instead of using interactive arguments in the function body,
8342         add new argument `confirm'.
8344 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8346         * textmodes/remember.el (remember-buffer):
8347         * progmodes/cperl-mode.el (cperl-vc-header-alist):
8348         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
8349         (icalendar-extract-ical-from-buffer):
8350         * net/newst-treeview.el (newsticker-groups-filename):
8351         * net/newst-backend.el (newsticker-cache-filename):
8352         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
8353         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
8354         (speedbar-add-ignored-path-regexp, speedbar-line-path)
8355         (speedbar-buffers-line-path, speedbar-path-line)
8356         (speedbar-buffers-line-path):
8357         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
8358         (epg-sign-keys):
8359         * epa.el (epa-display-verify-result):
8360         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
8362 2009-08-21  Glenn Morris  <rgm@gnu.org>
8364         * progmodes/js.el (inferior-moz-process): Fix declaration.
8366         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
8368         * obsolete/rnewspost.el (news-mail-reply):
8369         Use goto-char rather than goto-line.
8371         * term/ns-win.el (ns-open-file-select-line):
8372         Use line-beginning-position rather than goto-line.
8374         * apropos.el (apropos-command):
8375         * ehelp.el (electric-helpify):
8376         * printing.el (pr-show-setup):
8377         * strokes.el (strokes-help):
8378         * tutorial.el (tutorial--describe-nonstandard-key)
8379         (tutorial--detailed-help):
8380         * woman.el (woman-mini-help, woman-display-extended-fonts):
8381         * calc/calc-help.el (calc-describe-key):
8382         * emulation/edt.el (edt-electric-helpify):
8383         * international/mule-diag.el (mule-diag):
8384         * play/yow.el (apropos-zippy):
8385         * progmodes/python.el (python-describe-symbol):
8386         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
8387         * textmodes/table.el (*table--cell-describe-mode)
8388         (*table--cell-describe-bindings):
8389         Use help-print-return-message rather than the now obsolete alias.
8391         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
8392         (calendar-cursor-to-visible-date):
8393         * play/5x5.el (5x5-position-cursor):
8394         * play/decipher.el (decipher):
8395         * play/gomoku.el (gomoku-goto-xy):
8396         * play/landmark.el (lm-goto-xy):
8397         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
8398         (mpuz-paint-digit):
8399         Use forward-line, not goto-line.
8401         * mail/rmail.el (rmail-obsolete): Delete custom group.
8402         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
8403         (rmail-remote-password, rmail-remote-password-required):
8404         Remove unneeded :set-after and :set properties.
8406 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
8408         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
8410 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
8412         * loadup.el: Remove leftover macos code.
8414         * vc-git.el (vc-git-annotate-command): Run asynchronously.
8415         Explicitly pass the date format to git blame so that user local
8416         so that the output format can be parsed.
8418 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
8420         * net/dbus.el (top): Don't check for (getenv
8421         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
8423 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
8425         * log-edit.el (log-edit-strip-single-file-name): New var.
8426         (log-edit-insert-changelog): Use it.  Bug#3571
8428 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8430         * subr.el (read-passwd): Use read-key so keypad keys work as well.
8431         Bug#3287
8433         * help.el (help-print-return-message): Rename from
8434         print-help-return-message.
8436         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
8437         cvs-mode-map parent hack.
8438         (log-view-mode): Derive from special-mode.
8440         * linum.el (linum-mode): window-size-change-functions is redundant.
8441         Adapt to new window-configuration-change-hook behavior.
8442         (linum-after-size, linum-after-config): Remove.
8444         * imenu.el (imenu-example--name-and-position)
8445         (imenu-example--lisp-extract-index-name)
8446         (imenu-example--create-lisp-index, imenu-example--create-c-index):
8447         Mark as obsolete.
8449         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
8450         (inferior-prolog-mode): Use it.
8451         (inferior-prolog-load-file): Reset list of errors.
8453 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
8455         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
8457         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
8459 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
8461         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
8462         is running already.
8464 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8466         * subr.el (listify-key-sequence-1): Use normal syntax since those
8467         integers are nowadays always represented by the same (positive) number
8468         on all platforms.
8469         (read-key-empty-map): New const.
8470         (read-key-delay): New var.
8471         (read-key): New function.
8472         (force-mode-line-update): Use with-current-buffer.
8473         (locate-user-emacs-file): Don't forget to abbreviate the file name.
8474         (start-process-shell-command, start-file-process-shell-command):
8475         Discourage the use of command-args.
8477 2009-08-19  Glenn Morris  <rgm@gnu.org>
8479         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
8481 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8483         * simple.el (choose-completion-string): Don't rely on
8484         minibuffer-completing-file-name and ad-hoc checks to decide whether
8485         to continue completion or not.
8487         * minibuffer.el (minibuffer-hide-completions): New function.
8488         (completion--do-completion): Use it.
8489         (completions-annotations): New face.
8490         (completion--insert-strings): Use it.
8491         (completion-pcm--delim-wild-regex): Add docstring.
8492         (completion-pcm--string->pattern): Add support for 0-width delimiters
8493         in completion-pcm--delim-wild-regex.
8495 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8497         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
8498         Remove unused var `buffer-modified-p'.
8500         * minibuffer.el (completion--do-completion): Move point for the #b001
8501         case as well (bug#4176).
8502         (minibuffer-complete, minibuffer-complete-word): Don't move point.
8504 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
8506         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
8507         and :session buses.
8509 2009-08-18  Kenichi Handa  <handa@m17n.org>
8511         * international/ucs-normalize.el (ucs-normalize-version):
8512         Change to 1.1.
8513         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
8514         (utf-8-hfs): Make it perform normalization on encoding too.
8516         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
8517         (sentence-end-without-space): Delete duplicated chars.
8518         (sentence-end-base): Likewise.
8520         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
8521         (html-mode): Delete duplicated chars from sentence-end-base.
8523         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
8524         (texinfo-mode): Delete duplicated chars from sentence-end-base.
8526 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
8528         * files.el (hack-one-local-variable): If the mode function is for
8529         a minor mode, pass it an argument (Bug#4148).
8531 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
8533         * net/tramp.el (tramp-register-completion-file-name-handler):
8534         Check also for (member 'partial-completion completion-styles).
8536 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
8538         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
8539         abbrev (Bug#3943).
8541 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
8543         * progmodes/cperl-mode.el: Merge upstream 6.2.
8544         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
8545         (cperl-forward-re): Check cperl-brace-recursing.
8546         (cperl-highlight-charclass): New function.
8547         (cperl-find-pods-heres): Use it.
8548         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
8549         (cperl-beautify-regexp-piece): Fix column calculation.
8550         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
8551         (cperl-beautify-level): Don't process entire regexp.
8552         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
8553         calling man.
8554         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
8555         (cperl-init-faces): Build a list in the normal way.
8557 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
8559         * calendar/parse-time.el (parse-time-string-chars): Save match
8560         data.
8562 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8564         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
8565         (sql-product): Use it.
8566         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
8567         (sql-set-product): Add completion.
8568         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
8569         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
8570         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
8571         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
8572         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
8573         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
8574         (sql-highlight-db2-keywords): Remove.
8575         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
8576         (sql-highlight-product): Use derived-mode-p.
8577         (sql-set-sqli-buffer): Use with-current-buffer.
8578         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
8579         Simplify.
8581         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
8583         * term.el: Fix commenting convention, turn comments into docstrings.
8585 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
8587         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
8589 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
8591         * calendar/parse-time.el (parse-time-string-chars): Compute using
8592         character classes, to handle non-ascii characters (Bug#3190).
8594 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
8596         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
8597         another heredoc if the user adds another < (Bug#3226).
8599         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
8600         Don't initialize based on window-system (Bug#4124).
8602         * facemenu.el (facemenu-read-color): Use a completion function
8603         that accepts any defined color, such as RGB triplets (Bug#3677).
8605         * files.el (get-free-disk-space): Change fallback default
8606         directory to /.  Expand DIR argument before switching to fallback.
8607         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
8609 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
8611         * files.el (load-library): Doc fix.
8613 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
8615         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
8616         (viper-if-string): Redefine C-s in the minibuffer to insert the last
8617         incremental search string.
8619         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
8620         XEmacs.
8622         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
8623         (ediff-merge-region-is-non-clash)
8624         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
8625         Also check if the job is really a merge job.
8627         * ediff.el (ediff-current-file): New function.
8629 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
8631         * progmodes/js.el: Edit docstrings throughout to follow Emacs
8632         conventions.
8633         (js-insert-and-indent): Delete function.
8634         (js-mode-map): Don't bind keys to js-insert-and-indent.
8635         (js-beginning-of-defun): Rename from js--beginning-of-defun.
8636         (js-end-of-defun): Rename from js--end-of-defun.
8637         (js-auto-indent-flag): Delete variable.
8639 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
8641         * progmodes/js.el: Remove proclaim statement.
8642         Defvar which-func-imenu-joiner-function to silence compiler.
8644         * files.el (auto-mode-alist): Use js-mode for .js files.
8646         * progmodes/js2-mode.el: Remove file.
8648         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
8650         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
8652         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
8654 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
8655             Karl Landstrom  <karl.landstrom@brgeight.se>
8657         * progmodes/js.el: New file.
8659 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
8661         * timezone.el (timezone-parse-date): Add ability to understand ISO
8662         basic format (minimal separators) dates in addition to the
8663         already-supported extended format dates.
8665 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
8667         * international/ucs-normalize.el: Add a `coding' file variable.
8669         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
8671 2009-08-14  Sam Steingold  <sds@gnu.org>
8673         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
8675 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
8677         * faces.el (help-argument-name): Define it here instead of
8678         help-fns.el, because in daemon mode help-fns.el may be loaded when
8679         faces are still uninitialized (Bug#1078).
8681         * help-fns.el (help-argument-name): Move defface to faces.el.
8683 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
8685         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
8686         create buffer with a pty but no process so that GDB can make the
8687         inferior the controlling process.
8689 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
8691         * international/ucs-normalize.el: New file.
8693 2009-08-13  Richard Stallman  <rms@gnu.org>
8695         * mail/rmail.el (rmail-get-attr-names):
8696         Accept an attribute header that is too short.
8698         * mail/rmail.el (rmail-forget-messages):
8699         Ignore nil elt in rmail-message-vector.  Use dotimes.
8701         * progmodes/compile.el (compilation-goto-locus):
8702         Use next-error-move-function.
8704         * simple.el (next-error-move-function): New variable.
8706 2009-08-12  Juri Linkov  <juri@jurta.org>
8708         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
8709         always non-nil.  (Bug#4052)
8711         * replace.el (read-regexp): Return empty string when
8712         `default-value' is nil.
8713         (keep-lines-read-args): Don't use empty string as the
8714         default value for `read-regexp'.  (Bug#2495)
8716 2009-08-12  Juri Linkov  <juri@jurta.org>
8718         * international/mule-cmds.el (ucs-insert): Change arguments
8719         from `arg' to `character', `count', `inherit' to be the same
8720         as in `insert-char'.  Doc fix.  (Bug#4039)
8722         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
8724 2009-08-12  Juri Linkov  <juri@jurta.org>
8726         * files-x.el: New file.
8728         * files.el: Move code that deals with adding/deleting
8729         file/directory-local variables to files-x.el.
8731         * Makefile.in (ELCFILES): Add files-x.elc.
8733 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
8735         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
8736         to use `goto-line'.
8737         (gdb-place-breakpoints, gdb-get-location): Rewritten without
8738         `goto-line'.
8739         (gdb-invalidate-disassembly): Do not refresh upon receiving
8740         'update signal.  Instead, update all disassembly buffers only after
8741         threads list.
8742         (gdb): Send -target-detach when buffer is killed (Bug#3794).
8743         (gdb-starting): Moved -data-list-register-names...
8744         (gdb-stopped): ...here so it's sent when first thread stops.
8745         (gdb-registers-handler-custom): Do nothing if register names are
8746         unknown yet.
8748         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
8749         from `gdb-mi.el' to avoid extra tangling.
8751         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
8752         change which breaks `gud-def' definitions used in `gdb'.
8753         (gdb-update-gud-running): No extra fuss for updating frame number.
8755 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8757         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
8758         (describe-language-environment-map, setup-language-environment-map)
8759         (set-coding-system-map): Move initialization into declaration.
8760         (set-language-info-alist): Last arg to define-key-after can be skipped.
8762         * international/quail.el (quail-completion-1): Simplify.
8763         (quail-define-rules): Use slightly more compact code.
8764         (quail-insert-decode-map): Propertize keys, compact columns.
8766         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8767         Add goto-line.
8769 2009-08-10  Miles Bader  <miles@gnu.org>
8771         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
8772         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
8773         (js2-instance-member, js2-private-member, js2-private-function-call)
8774         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
8775         (js2-magic-paren, js2-external-variable):
8776         Remove "-face" suffix from face names.
8777         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
8778         (js2-highlight-undeclared-vars, js2-peek-token)
8779         (js2-parse-function-params, js2-mode-show-errors)
8780         (js2-mode-show-warnings, js2-make-magic-delimiter)
8781         (js2-mode-highlight-magic-parens): Update to use new face names.
8783 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
8785         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
8786         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
8788 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
8790         * subr.el: Provide hashtable-print-readable.
8792         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
8793         hs-c-like-adjust-block-beginning.
8794         (hs-hide-block-at-point): Stop hiding at the beginning of
8795         hs-block-end-regexp (Bug#700).
8797 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
8799         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
8800         a macro.
8801         (gdb-registers-handler-custom): Do not fail when register names
8802         are unavailable.
8804 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
8806         * progmodes/gdb-mi.el (gdb-control-all-threads)
8807         (gdb-control-current-thread): Interactive setters for
8808         `gdb-gud-control-all-threads' to use in menu.
8809         (gdb-show-run-p): Show «Go» when process is not active.
8810         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
8811         gud/thread.xpm and gud/all.xpm.
8813 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
8815         * net/net-utils.el (net-utils-font-lock-keywords): New var.
8816         (nslookup-font-lock-keywords): Make it a variable.
8817         (net-utils-mode): New mode for viewing diagnostic network output.
8818         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
8819         (net-utils-run-simple): New function.
8820         (ifconfig, iwconfig, netstat, arp, route): Use it.
8822 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
8824         * progmodes/gdb-mi.el (gdb-read-memory-custom)
8825         (gdb-memory-set-address, def-gdb-set-positive-number)
8826         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
8827         after changing settings.
8828         (gdb-invalidate-disassembly): Update when first shown.
8829         (gdb-edit-locals-value): Fixed.
8830         (gdb-registers-handler-custom): Print registers in right order and
8831         allow changing register values (only for current thread yet).
8832         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
8833         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
8834         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
8835         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
8836         info in mode name.
8837         (gdb-registers-mode-map): TAB to switch to locals.
8839 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
8841         * mail/rmail.el (rmail-add-mbox-headers)
8842         (rmail-set-message-counters-counter): Search for
8843         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
8845 2009-08-08  Glenn Morris  <rgm@gnu.org>
8847         * Makefile.in (ELCFILES): Update.
8849 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
8851         * mail/sendmail.el (mail-yank-original): Set
8852         buffer-file-coding-system from the one used by the message whose
8853         text is yanked.
8855         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
8856         to "windows" when "pgnuplot" is used.
8857         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
8858         call accept-process-output if "pgnuplot" is used.
8859         (calc-graph-init): Don't send -display and -geometry to
8860         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
8861         running "pgnuplot -V" with shell-command-to-string.
8863         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
8864         the default.
8866 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
8868         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
8869         org/org-latex.elc.
8871 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
8873         * vc-dispatcher.el (vc-resynch-window): Update comment.
8875         * term.el (term-handle-ansi-escape): Add comments with the
8876         terminfo capabilities implemented.
8878 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
8880         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
8881         (gdb-var-create-handler): Rewritten using JSON parser.
8882         (gdb-propertize-header): Moved earlier.
8883         (gdb-set-header): Removed to avoid duplication.
8884         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
8885         Refresh disassembly buffers only after threads list have been
8886         update.
8887         (gdb-threads-header, gdb-registers-header): Per-buffer header line
8888         variables.
8890 2009-08-04  Juri Linkov  <juri@jurta.org>
8892         * files.el: Commands to add/delete file/directory-local variables.
8893         (read-file-local-variable, read-file-local-variable-value)
8894         (read-file-local-variable-mode, modify-file-local-variable)
8895         (modify-file-local-variable-prop-line)
8896         (modify-dir-local-variable): New functions.
8897         (add-file-local-variable, delete-file-local-variable)
8898         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
8899         (add-dir-local-variable, delete-dir-local-variable)
8900         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
8901         (copy-dir-locals-to-file-locals-prop-line): New commands.
8903 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
8905         * abbrev.el (insert-abbrev-table-description): Prettify output.
8906         Suggested by Karl Chen.
8908 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
8910         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
8911         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
8912         (gdb-overlay-arrow-position, gdb-thread-position)
8913         (gdb-disassembly-position): Declare variables.
8914         (gdb-wait-for-pending): Function now.
8915         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
8916         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
8917         compilation goes smoothly.
8918         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
8919         (gdb-non-stop-setting): New customization setting which replaces
8920         `gdb-non-stop' so changing it doesn't break active GDB session.
8921         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
8922         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
8923         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
8924         (gdb-show-threads-by-default): New customization options.
8925         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
8926         routines.
8927         (gdb-get-buffer-create): Send buffers update signal when they are
8928         created.
8929         (gdb-invalidate-locals, gdb-invalidate-registers)
8930         (gdb-invalidate-breakpoints)
8931         (gdb-invalidate-threads, gdb-invalidate-disassembly)
8932         (gdb-invalidate-memory): Accept update signal.
8933         (gdb-current-context-command): Use --frame option.
8934         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
8935         Implement `gdb-frame-number' selection logic.
8936         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
8937         whether to show GUD toolbar buttons.
8938         (gdb-thread-exited): Unselect current thread when it exits.
8939         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
8940         (gdb-mark-line): Routine which sets overlay arrow or inverses
8941         video on fringeless displays.
8942         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
8943         to build aligned columns of data in GDB buffers and set text
8944         properties line-by-line.
8945         (gdb-invalidate-breakpoints)
8946         (gdb-breakpoints-list-handler-custom)
8947         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
8948         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
8949         (gdb-registers-handler-custom): Align data columns.
8950         (gdb-locals-handler-custom): Now prints data like in variable
8951         declarations.
8952         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
8953         Removed confusing buttons.
8954         (gdb-invalidate-threads): Append --frame.
8955         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
8956         between breakpoints/threads buffers.
8957         (gdb-set-window-buffer): Now can ignore dedicated windows.
8958         (gdb-propertize-header): Use `gdb-set-window-buffer'.
8959         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
8960         (def-gdb-thread-buffer-gud-command): Replaces
8961         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
8962         for fine thread control.
8963         (gdb-preempt-existing-or-display-buffer): New function used to
8964         display bound buffers without breaking window layout.
8965         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
8966         (gdb-select-frame): New version of `gdb-frames-select' which now
8967         sets `gdb-frame-number' so commands may use --frame option instead
8968         of inner debugger state.
8969         (gdb-frame-handler): Do not set `gdb-frame-number'.
8970         (gdb-threads-mode-map): Select threads with mouse.
8972         * progmodes/gud.el (gdb-gud-context-call): Declare function to
8973         avoid compilation warning.
8974         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
8975         `gdb-show-stop-p`.
8977         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
8978         Argument `key' renamed to `buffer-type'.
8979         (gdb-current-context-buffer-name): Do not add thread info to
8980         buffer name when no thread is selected.
8981         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
8982         command (bug 3794).
8983         (gdb-thread-selected): Handle `=thread-selected' notification.
8984         (gdb-wait-for-pending): New macro to deal with congestion problems.
8985         (gdb-breakpoints-list-handler-custom): Don't fail on pending
8986         breakpoints.
8987         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
8988         This fixes problem similar to one described in bug 3947.
8989         (gud-menu-map): More menu items.
8990         (gdb-init-1): Reset `gdb-thread-number' to nil.
8992         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
8993         non-stop settings.
8995         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
8996         (gdb-current-context-command): Do not append --thread if
8997         `gdb-thread-number' is nil.
8998         (gdb-running-threads-count, gdb-stopped-threads-count): New
8999         variables.
9000         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
9001         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
9002         customization options.
9003         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
9004         GUD commands.
9005         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
9006         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
9007         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
9008         set `gdb-thread-number' and update `gud-running' properly.
9009         (gdb-running): Update threads list when new threads appear.
9010         (gdb-stopped): Support non-stop operation and new thread switching
9011         logic.
9012         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
9013         (gdb-json-partial-output): New set of JSON routines.
9014         (def-gdb-auto-update-trigger): New `signal-list' optional
9015         argument.
9016         (gdb-thread-list-handler-custom): Update `gud-running',
9017         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
9018         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
9019         (gdb-continue-thread, gdb-step-thread): New commands for fine
9020         thread execution control.
9021         (gud-menu-map): New menu items to switch non-stop options.
9022         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
9023         (gdb-send): Mimic RET properly (bug 3794).
9025         * progmodes/gdb-mi.el (gdb-rules-name-maker)
9026         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
9027         gdb-buffer-rules.
9028         (def-gdb-auto-update-handler): New nopreserve optional argument.
9029         (gdb-stack-list-frames-custom): Print stack from top to bottom.
9031         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
9032         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
9033         (gdb-parent-mode): New mode to derive other GDB modes from.
9034         (gdb-display-disassembly-for-thread)
9035         (gdb-frame-disassembly-for-thread): New commands for threads
9036         buffer.
9038         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
9039         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
9040         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
9041         (gdb-update): We now store all GDB buffers in a list so that they
9042         can be updated by traversing a list instead of calling invalidate
9043         triggers explicitly.
9044         (def-gdb-trigger-and-handler): New macro to define trigger-handler
9045         pair for GDB buffer.
9046         (gdb-stack-buffer-name): Add thread information.
9047         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
9048         handle pending triggers.
9049         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
9050         (def-gdb-thread-buffer-simple-command)
9051         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
9052         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
9053         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
9054         New commands which show buffers bound to thread.
9055         (gdb-stack-list-locals-regexp): Removed unused regexp.
9057         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
9058         (gdb-locals-buffer-name, gdb-registers-buffer-name)
9059         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
9060         to (gud-comint-buffer) in *-buffer-name functions
9061         because (gdb-get-target-string) already does that.
9062         (gdb-locals-handler-custom, gdb-registers-handler-custom)
9063         (gdb-changed-registers-handler): Rewritten without regexps.
9065         * progmodes/gdb-mi.el: Basic thread selection support.
9066         (gdb-thread-number): New variable.
9067         (gdb-current-context-command): New macro which adds --thread
9068         option to command.
9069         (gdb-threads-mode-map): Select thread with SPC.
9070         (gdb-thread-list-handler-custom): Mark current thread with overlay
9071         arrow.  Synchronize GDB thread and Emacs thread.
9072         (gdb-select-thread): New command which selects current thread.
9073         (gdb-invalidate-frames, gdb-invalidate-locals)
9074         (gdb-invalidate-registers): Use --thread option.
9076 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
9078         * net/tramp.el (top): Make check for tramp-gvfs loading more
9079         robust.  (Bug#3977)
9080         (tramp-handle-insert-file-contents): `unwind-protect' must be
9081         inside `with-parsed-tramp-file-name'.
9083         * net/tramp-gvfs.el (top): Remove superfluous message when loading
9084         fails.
9086 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
9088         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
9089         directory if CLASSPATH is not set.
9091 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
9093         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
9094         New defconst.
9095         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
9097 2009-08-02  Kevin Ryde  <user42@zip.com.au>
9099         * net/newst-backend.el (newsticker--raw-url-list-defaults):
9100         Update freshmeat link.  Delete newsforge.com as it seems gone.
9102 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
9104         * select.el (x-set-selection): Doc fix (Bug#4021).
9106         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
9108         * help-fns.el (describe-variable): Treat list return values from
9109         dir-locals-find-file properly (Bug#4005).
9111 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
9113         * net/tramp.el (tramp-debug-message): Print also microseconds.
9115 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
9117         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
9118         or END is non-nil.
9119         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
9120         (tramp-get-debug-buffer): Change `outline-regexp' according to new
9121         format.
9123         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
9124         (tramp-get-file-property): Use it.
9126         * autorevert.el (auto-revert-handler): Allow
9127         `auto-revert-tail-mode' for remote files.
9129 2009-08-02  Jason Rumney  <jasonr@gnu.org>
9131         * minibuffer.el (read-file-name): Treat confirm options to
9132         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
9134 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
9136         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
9137         (font-lock-variable-name-face, font-lock-constant-face): Darken
9138         the colors for light backgrounds.
9140 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
9142         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
9143         month names.  (Bug#3987)
9145 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
9147         * simple.el (line-move-finish): Pass whole number to
9148         line-move-to-column.
9149         (line-move-visual): Perform hscroll to the recorded position.
9151 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
9153         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
9155 2009-07-29  Alan Mackenzie  <acm@muc.de>
9157         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
9159 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
9161         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
9162         (gdb-place-breakpoints): Use full path when setting breakpoints.
9164 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
9166         * calc/calc.el (calc-mode-map): Add keybinding for
9167         `calc-transpose-lines'.
9169 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
9171         * calc/calc-misc.el (calc-transpose-lines): New function.
9173 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
9175         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
9176         Simplify check for out-of-band methods.
9177         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
9178         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
9180 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
9182         * vc-git.el (vc-git-checkin): Fix typo.
9184 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
9186         * progmodes/js2-mode.el: New file.
9188 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
9190         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
9191         (gud-menu-map): Adjust tooltip accordingly.
9193 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
9195         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
9196         (vc-bzr-log-view-mode): Adjust log-view-file-re.
9198         * add-log.el (change-log-mode-map): Add a menu.
9200 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
9202         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
9203         function returns nil.
9204         (dbus-handle-event): Handle special return value :ignore.
9205         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
9207 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
9209         * view.el (view-mode-enable): Don't define Helper-return-blurb if
9210         it's not needed.
9212 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
9214         Fix Bug#3888:
9216         * w32-vars.el (x-select-enable-clipboard): Doc fix.
9218         * term/pc-win.el (x-display-name, x-colors)
9219         (x-select-enable-clipboard, x-select-text): Doc fix.
9221         * term/common-win.el (x-display-name, x-colors): Doc fix.
9223         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
9224         (xw-defined-colors): Doc fix.
9226         * w32-fns.el (x-select-text, x-setup-function-keys)
9227         (x-get-selection, x-set-selection): Doc fix.
9229         * term/x-win.el (x-select-text, x-setup-function-keys)
9230         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
9232         * select.el (x-set-selection): Doc fix.
9234 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
9236         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
9237         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
9238         "IsNSSSupportAvailable" method is not available.  Reported by
9239         Steve Youngs <steve@sxemacs.org>.
9241 2009-07-24  Kenichi Handa  <handa@m17n.org>
9243         * international/characters.el: Fix setting of category ?C, ?|, ?K,
9244         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
9245         (build-unicode-category-table): Fix range checks.
9247 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
9249         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
9250         the buffer we try to sync is current when calling
9251         vc-resynch-buffer.
9253         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
9254         not show up to date files.
9256 2009-07-24  Glenn Morris  <rgm@gnu.org>
9258         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
9259         Add autoload cookies.  If necessary, initialize.
9260         (elint-log): Handle non-file buffers.
9261         (elint-initialize): Add optional argument to reinitialize.
9262         (elint-find-builtin-variables): Save excursion.
9264 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
9266         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
9267         for Lint.
9269 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
9271         * vc.el (vc-print-log-internal): New function, split out from ...
9272         (vc-print-log): ... here.
9273         (vc-dir-move-to-goal-column): Declare.
9275         * vc-git.el (vc-git-add-signoff): New variable.
9276         (vc-git-checkin): Use it.
9277         (vc-git-toggle-signoff): New function.
9278         (vc-git-extra-menu-map): Bind it to menu.
9279         (vc-git--run-command-string): Accept a nil FILE argument.
9280         (vc-git-stash-list): New function.
9281         (vc-git-dir-extra-headers): Use it.
9283 2009-07-23  Glenn Morris  <rgm@gnu.org>
9285         * help-fns.el (describe-variable): Describe ignored and risky local
9286         variables in a similar way to that in which we describe safe ones.
9288         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
9289         (byte-compile-output-file-form, byte-compile-output-docform)
9290         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
9291         Give some more local variables with common names a "bytecomp-" prefix,
9292         so as not to shadow things during compilation.
9293         * emacs-lisp/cl-macs.el (load-time-value)
9294         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
9295         `outbuffer' to `bytecomp-outbuffer'.
9297         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
9298         since the next two variables cover them automatically now.
9299         (elint-builtin-variables, elint-autoloaded-variables): New.
9300         (elint-unknown-builtin-args): Remove all members, since they can be
9301         parsed automatically now.
9302         (elint-extra-errors): New.
9303         (elint-env-add-env, elint-env-add-macro): Use cadr.
9304         (elint-current-buffer): Use or.  Change final message.
9305         (elint-get-top-forms): Use line-end-position.
9306         (elint-init-env): Use cadr.  Handle autoload, declare-function,
9307         and defalias.
9308         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
9309         (regexp-assoc): Remove unused function.
9310         (elint-top-form): Set elint-current-pos, to record the start of the
9311         top-level form, for compilation-mode.
9312         (elint-form): Trap errors in macro expansion.  Use dolist.
9313         (elint-unbound-variable): Use elint-builtin-variables and
9314         elint-autoloaded-variables.
9315         (elint-get-args): Use cadr, or.
9316         (elint-check-cond-form): Use dolist, cadr.
9317         (elint-check-condition-case-form): Doc fix.  Use cadr.
9318         Use elint-extra-errors.
9319         (elint-log): New function.
9320         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
9321         Distinguish errors and warnings.
9322         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
9323         Use a bytecomp-style format.
9324         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
9325         (elint-get-log-buffer): Use compilation mode.  Disable undo.
9326         Don't truncate lines.
9327         (elint-initialize): Set builtin and autoloaded variable lists.
9328         Only process elint-unknown-builtin-args if non-nil.
9329         (elint-find-builtin-variables, elint-find-autoloaded-variables):
9330         New functions.
9331         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
9333 2009-07-22  Kevin Ryde  <user42@zip.com.au>
9335         * net/newst-backend.el (newsticker--parse-atom-1.0)
9336         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
9337         (newsticker--parse-rss-1.0):
9338         * progmodes/idlwave.el (idlwave-mode):
9339         * progmodes/idlw-shell.el (idlwave-shell-mode):
9340         * progmodes/vera-mode.el (vera-mode):
9341         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
9342         * progmodes/vhdl-mode.el (vhdl-mode):
9343         * textmodes/table.el (table-generate-source)
9344         (table--warn-incompatibility):
9345         Hyperlink urls in docstrings with URL `...'.
9347 2009-07-22  Glenn Morris  <rgm@gnu.org>
9349         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
9350         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
9351         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
9352         Remove leading * from defcustom docs.
9354         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
9356         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
9357         defcustom doc.
9358         (list-load-path-shadows): Optionally, just return shadows as a string.
9360         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
9362 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
9364         * mail/rmailedit.el (rmail-edit-mode): Use
9365         auto-save-include-big-deletions.
9367         * mail/rmail.el (rmail-variables): Use
9368         auto-save-include-big-deletions.
9370         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
9371         changes.
9373 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
9375         * calc/calc.el (calc-undo-length): New variable.
9376         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
9378 2009-07-21  Richard Stallman  <rms@gnu.org>
9380         * files.el (auto-save-mode): Handle buffer-save-size = -2
9381         for toggling mode.
9383 2009-07-21  Glenn Morris  <rgm@gnu.org>
9385         * textmodes/ispell.el (ispell-looking-back): Update declaration.
9387         * calendar/todo-mode.el (calendar-current-date): Update declaration.
9389         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
9390         silence compiler.  Instead...
9391         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
9392         (ps-print-ensure-fontified): Update for above function name changes.
9394         * printing.el (pr-mh-get-msg-num, pr-mh-show)
9395         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
9396         silence compiler.  Instead...
9397         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
9398         (mh-show-buffer): Only define for compiler.
9399         (pr-mh-current-message): Update for above function name changes.
9401         * files.el (abort-if-file-too-large): Explicitly pass `filename'
9402         as an argument.
9403         (find-file-noselect, insert-file-1): Update for above change.
9405         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
9407         * mail/mailclient.el (mailclient-send-it): Fix message.
9409         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
9410         (edebug-eval): Check cl-debug-env is bound.
9411         (print-level, print-circle): Don't redefine built-in variables.
9413         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
9414         (custom-print-vectors): Remove old comments from doc.
9416         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
9417         (emerge-version): Make the variable an obsolete alias for the
9418         emacs-version variable.  Make the function obsolete.
9419         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
9420         Emerge options, rather than merging in into the main Options menu.
9421         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
9422         and auto advance modes.  Disable edit/fast items when not relevant.
9424 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
9426         * term/vt420.el (terminal-init-vt420): Fix typo.
9428 2009-07-20  Sam Steingold  <sds@gnu.org>
9430         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
9431         variable (removed from compile.el on 2004-03-11).
9433 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
9435         * files.el (hack-local-variables-filter): Fix last change.
9437 2009-07-19  Juri Linkov  <juri@jurta.org>
9439         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
9440         (dir-local-variables-alist): New buffer-local variable.
9441         (hack-local-variables-filter): If variable is not dir-local,
9442         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
9443         because file-local overrides dir-local.
9444         (c-postprocess-file-styles) <declare-function>:
9445         Remove obsolete declaration.
9446         (hack-dir-local-variables): Add dir-local variable/value pair to
9447         `dir-local-variables-alist' and remove duplicates.  Doc fix.
9449         * help-fns.el (describe-variable): Add information about
9450         file-local and dir-local variables.
9452 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
9454         * files.el (hack-local-variables-filter): Rewrite.
9456 2009-07-19  Glenn Morris  <rgm@gnu.org>
9458         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
9459         Silence compiler by only defining on XEmacs.
9461         * international/mule.el (auto-coding-regexp-alist): Only match
9462         BABYL... at the start of buffer, not of lines.  (Bug#3790)
9464         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
9465         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
9466         (cal-menu-context-mouse-menu): Doc fix.
9468         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
9470         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
9472 2009-07-18  Juri Linkov  <juri@jurta.org>
9474         * info.el: Virtual Info keyword finder.
9475         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
9476         (Info-finder-file): New variable.
9477         (Info-finder-find-file): New function.
9478         (finder-known-keywords, finder-package-info)
9479         (find-library-name, lm-commentary): Use defvar and
9480         declare-function to silence compiler warnings.
9481         (Info-finder-find-node): New function.
9482         (info-finder): New command.
9484         * subr.el (process-kill-buffer-query-function): New function.
9485         (add-hook)<kill-buffer-query-functions>: Add hook
9486         `process-kill-buffer-query-function'.
9488 2009-07-18  Alan Mackenzie  <acm@muc.de>
9490         * progmodes/cc-mode.el (c-before-hack-hook)
9491         (c-postprocess-file-styles): Give invocation of `c-set-style'
9492         DONT-OVERRIDE parameter of t.  Already set style variables will
9493         thus not be overridden by style settings given by `c-file-syle'.
9495         * files.el (hack-local-variables-filter): Remove entries with
9496         duplicate keys from `file-local-variables-alist'.
9498 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
9500         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
9501         x-set-selection if display-selections-p returns nil for the
9502         current frame.
9504 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
9506         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
9508 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
9510         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
9511         Accept nil in addition to a regexp.
9512         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
9513         Accept nil in addition to a regexp.
9514         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
9515         buffers that have an associated file.  Handle nil values of
9516         desktop-buffers-not-to-save and desktop-files-not-to-save.
9517         (Bug#3833)
9519         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
9520         (x-disown-selection-internal): New functions.
9522 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
9524         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
9525         warning.
9526         (gdb-breakpoints-header): Move forward to avoid compiler warning.
9527         (gdb-make-header-line-mouse-map): Remove duplicate definition.
9529 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
9531         * simple.el (set-mark): Revert last change.
9533 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
9535         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
9536         rendering of pngs is not possible instead of messaging a long
9537         description.
9539 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
9541         * w32-fns.el (x-selection-owner-p): New function.
9543         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
9544         (mouse-yank-at-click, mouse-yank-primary): If
9545         select-active-regions is non-nil, deactivate the mark before
9546         insertion.
9548         * simple.el (deactivate-mark, set-mark): Only save selection if we
9549         own it.
9551 2009-07-17  Kenichi Handa  <handa@m17n.org>
9553         * case-table.el (describe-buffer-case-table): Fix for the case
9554         that KEY is a cons.
9556 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
9558         * vc-rcs.el (vc-rcs-find-file-hook):
9559         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
9561 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
9563         * net/tramp.el (tramp-wait-for-output): Handle the case when
9564         commands do not return a newline but a null byte before the shell
9565         prompt.  (Bug#3858)
9567 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9569         * term/ns-win.el (ns-set-alpha): Don't declare.
9570         (ns-set-background-alpha): Remove function.
9572 2009-07-16  Kevin Ryde  <user42@zip.com.au>
9574         * emacs-lisp/copyright.el (copyright-update): Save match-data across
9575         y-or-n-p, for safety.
9577 2009-07-16  Richard Stallman  <rms@gnu.org>
9579         * files.el (auto-save-mode): If buffer-saved-size is -2,
9580         don't clobber it.
9582         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
9583         (rmail-retry-ignored-headers): Add more uninteresting fields.
9585 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
9587         * net/rcirc.el (rcirc): Use history variables.
9588         (rcirc-server-name-history, rcirc-nick-name-history)
9589         (rcirc-server-port-history): New variables.
9591 2009-07-15  Kenichi Handa  <handa@m17n.org>
9593         * international/mule-cmds.el (set-language-environment-charset):
9594         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
9595         ignore them.
9597         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
9598         Delete unibyte-display.
9600 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
9602         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
9604 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
9606         * simple.el (deactivate-mark): Optional argument FORCE.
9607         (set-mark): Use deactivate-mark.
9609         * info.el (Info-search): No need to check transient-mark-mode
9610         before calling deactivate-mark.
9612         * select.el (x-set-selection): Doc fix.
9613         (x-valid-simple-selection-p): Allow buffer values.
9614         (xselect--selection-bounds): Handle buffer values.  Suggested by
9615         David De La Harpe Golden.
9617         * mouse.el (mouse-set-region, mouse-drag-track): Call
9618         copy-region-as-kill before setting the mark, to let
9619         select-active-regions work.
9621 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
9623         * simple.el (deactivate-mark): If select-active-regions is
9624         non-nil, copy the selection data into a string.
9625         (activate-mark): If select-active-regions is non-nil, set the
9626         selection to the current buffer.
9627         (set-mark): Update selection if select-active-regions is non-nil.
9629         * select.el (x-valid-simple-selection-p): Allow buffer values.
9631 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9633         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
9634         and more featureful message-mode.
9636 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
9638         * select.el (x-set-selection): Doc fix.
9639         (x-valid-simple-selection-p): Disallow selection data consisting
9640         of a list or cons of integers, since that is not used.
9641         (xselect--selection-bounds, xselect--int-to-cons): New functions.
9642         (xselect-convert-to-string, xselect-convert-to-length)
9643         (xselect-convert-to-filename, xselect-convert-to-charpos)
9644         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
9646 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
9648         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
9649         output in -break-info command (Emacs bug #3794).
9651 2009-07-14  Glenn Morris  <rgm@gnu.org>
9653         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
9654         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
9655         (edebug-print-length, edebug-print-level, edebug-print-circle)
9656         (edebug-sit-for-seconds, edebug-view-outside)
9657         (edebug-bounce-point, edebug-set-global-break-condition)
9658         (edebug-Go-nonstop-mode, edebug-trace-mode)
9659         (edebug-Trace-fast-mode, edebug-continue-mode)
9660         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
9661         (edebug-visit-eval-list): Doc fixes.
9663         * subr.el (def-edebug-spec): Doc fix.
9665 2009-07-14  Kenichi Handa  <handa@m17n.org>
9667         * international/characters.el: Fix setting of category ?C.
9669 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
9671         * term/ns-win.el (x-select-font): defalias x-select-font to
9672         ns-popup-font-panel instead of generate-fontset-menu.
9674 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
9676         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
9678 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
9680         * arc-mode.el (archive-find-type): Allow for a PK00 string before
9681         the PK\003\004 header (Bug#3770).
9683 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
9685         * pcomplete.el (pcomplete-comint-setup): Check for
9686         shell-dynamic-complete-filename too.
9688 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
9690         * simple.el (temporary-goal-column): Change the value for
9691         line-move-visual to a cons cell.
9692         (line-move-visual): Record or set the window hscroll, if
9693         necessary (Bug#3494).
9694         (line-move-1): Handle cons value of temporary-goal-column.
9696 2009-07-11  Kenichi Handa  <handa@m17n.org>
9698         * international/mule-diag.el (describe-character-set): Don't show
9699         width.
9701 2009-07-10  Sam Steingold  <sds@gnu.org>
9703         * progmodes/compile.el (compilation-mode-font-lock-keywords):
9704         Omake sometimes indents the errors it prints, so allow all
9705         regexps to start with spaces.
9707 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
9709         * cus-edit.el (customize-changed-options-previous-release):
9710         Bump value to 22.1.  (Bug#3804)
9712 2009-07-08  Sam Steingold  <sds@gnu.org>
9714         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
9715         to be a cons cell (test . ignored-directory) to selectively ignore
9716         some directories depending on the location of the search.
9718 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
9720         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
9721         remote user is root, on the local host.
9722         (tramp-local-host-p): Either the local user or the remote user
9723         must be root.  (Bug#3771)
9725 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
9727         * progmodes/gdb-mi.el (gdb): Remove description of
9728         gdb-use-separate-io-buffer.
9729         (menu): Don't allow toggling of or enable
9730         gdb-use-separate-io-buffer from menubar.
9732 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
9734         * mail/unrmail.el (unrmail): Make sure the message ends with two
9735         newlines (Bug#3769).
9737 2009-07-08  Glenn Morris  <rgm@gnu.org>
9739         * calendar/calendar.el (calendar-current-date): Rework previous change.
9741 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
9743         * calendar/calendar.el (calendar-current-date):
9744         Add an optional argument giving an offset from today.
9746 2009-07-08  Glenn Morris  <rgm@gnu.org>
9748         * tutorial.el (tutorial--describe-nonstandard-key):
9749         Adjust the message for when a key has been unbound.
9750         (help-with-tutorial): Hide the arch-tag.
9752 2009-07-08  Kenichi Handa  <handa@m17n.org>
9754         * international/fontset.el (setup-default-fontset): For each
9755         script, append (not set) font-specs.
9757         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
9758         docstring.
9760 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
9762         * progmodes/gdb-mi.el (gdb-init-1): Move sending
9763         -data-list-register-names to ...
9764         (gdb-starting): ... here because GDB 7.0 requires execution to
9765         have started when using this MI command.
9766         (gdb-set-header): New function to distinguish select and
9767         unselected tabs in gdb buffers.
9768         (gdb-propertize-header): New macro that uses gdb-set-header.
9769         (gdb-breakpoints-header, gdb-locals-header): Use it.
9770         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
9772 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
9774         * Makefile.in (ELCFILES): Remove fadr.elc.
9776 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
9778         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
9779         may contain frame information, so `string-match' should be used.
9780         (gdb-update): Disassembly is invalidated through
9781         `gdb-get-selected-frame'.
9782         (gdb-pad-string): New function to pad string with spaces.
9783         (gdb-invalidate-disassembly): Invalidate only if the buffer
9784         exists.
9785         (gdb-disassembly-handler-custom): Column alignment.
9786         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
9787         placing new ones.
9788         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
9789         end of line, too.
9790         (gdb-frame-handler): Match convention to for disassembly buffer
9791         mode name.
9792         (gdb-stack-list-frames-handler): Rewritten without regexps.
9793         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
9794         not highlight breakpoints without line information.
9795         (gdb-input): Add trailing newline to command.
9797         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
9798         buffer properly.
9799         (gdb-breakpoints-list-handler-custom): Replacement for
9800         `gdb-break-list-handler'.  Using real parser instead of regexps
9801         now.
9802         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
9803         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
9804         to place breakpoints.
9805         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
9806         functions.
9807         (gdb-disassembly-handler-custom): Show overlay arrow.
9808         (gdb-disassembly-place-breakpoints): Show breakpoints in
9809         disassembly buffer.
9810         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
9811         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
9812         instead of parsing breakpoints buffer.  Fixed old menu references
9813         in `gud-menu-map'.
9815         * fadr.el: Remove.
9817         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
9818         (gdb-memory-address): New variable which holds top address of
9819         memory page shown in memory buffer.
9820         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
9821         customization variables.
9822         New functions:
9823         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
9824         display the memory buffer.
9825         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
9826         buffer display parameters.
9827         (def-gdb-memory-format, gdb-memory-format-binary)
9828         (gdb-memory-format-octal, gdb-memory-format-unsigned)
9829         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
9830         Functions for setting memory buffer format.
9831         (gdb-memory-unit-word, gdb-memory-unit-halfword)
9832         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
9833         unit size used in memory buffer.
9834         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
9835         to next/previous page of memory buffer.
9836         Now using (bindat-get-field) instead of fadr functions.
9838 2009-07-07  Sam Steingold  <sds@gnu.org>
9840         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
9841         non-top-level files.
9843 2009-07-07  Kenichi Handa  <handa@m17n.org>
9845         * international/mule-cmds.el (reset-language-environment): Put
9846         the highset priority to the charset iso-8859-1.
9848 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
9850         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
9851         to the end of the line when locating the block (Bug#700).
9853 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
9855         * net/tramp.el (tramp-handle-write-region): Flush file properties
9856         in case of short track.
9858 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
9860         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
9861         Coded custom representation of verilog error regular expressions
9862         to work with Emacs-22's new format.
9863         (verilog-error-regexp-xemacs-alist): Coded custom representation
9864         of verilog error regular expressions to work with XEmacs format.
9865         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
9866         error recognition into XEmacs.
9867         (verilog-error-regexp-add-emacs): Hook routine to install verilog
9868         error recognition into Emacs-22.
9870 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
9872         * woman.el: Remove stand-alone closing parentheses.
9873         (woman-file-name, woman2-format-paragraphs)
9874         (woman-leave-blank-lines): Code cleanup.
9875         (woman-use-own-frame): Change default to nil.
9876         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
9877         defaults to inherit from default faces.
9878         (woman2-process-escapes): Consume the newline after a stand-alone
9879         filler character (Bug#3651).
9881 2009-07-06  Glenn Morris  <rgm@gnu.org>
9883         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
9884         (top-level): Move provide to the end.
9885         (ffap): Remove defunct URL from custom group.
9887         * subr.el (eval-after-load): Doc fix.
9889 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
9891         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
9892         `calc-embedded-word' is called twice.
9894 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9896         * files.el (find-alternate-file-other-window, find-alternate-file):
9897         Obey confirm-nonexistent-file-or-buffer.
9899 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
9901         * dired-aux.el (dired-show-file-type): Handle remote files.
9903 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
9905         * desktop.el (desktop-globals-to-save):
9906         Add file-name-history (Bug#2750).
9908 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
9910         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
9912 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
9914         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
9915         property on entire argument since this is what eshell-lisp-command
9916         expects.
9918 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
9920         * net/tramp-gvfs.el (tramp-gvfs-methods)
9921         (tramp-gvfs-zeroconf-domain)
9922         (tramp-bluez-discover-devices-timeout): Add version flag.
9923         (tramp-gvfs-handler-mounted-unmounted)
9924         (tramp-gvfs-connection-mounted-p): Polish handling of
9925         incompatibilities between GVFS 0.2 and 1.0.
9927 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
9929         * cus-start.el (all): Add make-pointer-invisible.
9931 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
9933         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
9934         formatted correctly.
9936 2009-07-02  Juri Linkov  <juri@jurta.org>
9938         * info.el: Virtual Info files and nodes.
9939         (Info-virtual-files, Info-virtual-nodes): New variables.
9940         (Info-current-node-virtual): New variable.
9941         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
9942         New functions.
9943         (Info-file-supports-index-cookies): Use Info-virtual-file-p
9944         to check for a virtual file instead of checking a fixed list
9945         of node names.
9946         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
9947         instead of ad-hoc processing of "dir" and (apropos history toc).
9948         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
9949         instead of ad-hoc processing of "dir" and (apropos history toc).
9950         Reread a file when moving from a virtual node.
9951         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
9952         (Info-directory-toc-nodes, Info-directory-find-file)
9953         (Info-directory-find-node): New functions.
9954         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
9955         (Info-history): Move part of code to
9956         `Info-history-find-node'.
9957         (Info-history-toc-nodes, Info-history-find-file)
9958         (Info-history-find-node): New functions.
9959         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
9960         (Info-toc): Move part of code to `Info-toc-find-node'.
9961         (Info-toc-find-node): New function.
9962         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
9963         the current Info file name to references because now the node
9964         "*TOC*" belongs to the same Info manual.
9965         (Info-toc-build): Rename from `Info-build-toc'.
9966         (Info-toc-nodes): Rename input argument `file' to `filename'.
9967         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
9968         instead of ad-hoc processing of ("dir" apropos history toc).
9969         (Info-index-nodes): Use Info-virtual-file-p
9970         to check for a virtual file instead of checking a fixed list
9971         of node names.
9972         (Info-index-node): Add check for `Info-current-node-virtual'.
9973         Raise `save-match-data' higher up the tree to contain
9974         `search-forward' too (bug fix).
9975         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
9976         (Info-virtual-index-nodes): New variable.
9977         (Info-virtual-index-find-node, Info-virtual-index): New functions.
9978         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
9979         (Info-apropos-file, Info-apropos-nodes): New variables.
9980         (Info-apropos-toc-nodes, Info-apropos-find-file)
9981         (Info-apropos-find-node, Info-apropos-matches): New functions.
9982         (info-apropos): Move part of code to `Info-apropos-find-node' and
9983         `Info-apropos-matches'.
9984         (Info-mode-map): Bind "I" to `Info-virtual-index'.
9985         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
9986         for a virtual file instead of checking a fixed list of node names.
9988         * simple.el (async-shell-command): New command.
9990         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
9992         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
9993         instead of `mount-info'.
9995 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
9997         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
9998         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
10000 2009-07-02  Kenichi Handa  <handa@m17n.org>
10002         * international/mule.el (set-keyboard-coding-system): Force *-unix
10003         coding-system to avoid eol conversion.
10005 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
10007         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
10008         Add handler for `process-file', `shell-command' and
10009         `start-file-process'.
10010         (tramp-gvfs-handle-shell-command)
10011         (tramp-gvfs-handle-start-file-process)
10012         (tramp-gvfs-handle-process-file): New defuns.
10013         (tramp-synce-list-devices): Simplify check for existence of property.
10015 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
10017         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
10019 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
10021         * language/korean.el (set-language-info-alist): Add korean-cp949,
10022         cp949 to spec.
10024 2009-07-01  Kenichi Handa  <handa@m17n.org>
10026         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
10028         * international/encoded-kb.el: Deleted.
10030         * international/mule.el (set-keyboard-coding-system): Perform the
10031         necessary setup here instead of calling encoded-kbd-setup-display.
10033 2009-07-01  Glenn Morris  <rgm@gnu.org>
10035         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
10037 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
10039         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
10041 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
10043         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
10044         Handle also the 'rename case, when setting file modes.  (Bug#3712)
10045         (tramp-default-file-modes) Remove execute permissions.
10047         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
10048         (top): Add a default for "synce" in `tramp-default-user-alist'.
10049         Add completion function for "synce" method.
10050         (tramp-hal-service, tramp-hal-path-manager)
10051         (tramp-hal-interface-manager, tramp-hal-interface-device):
10052         New defconst.
10053         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
10054         (tramp-synce-list-devices, tramp-synce-parse-device-names):
10055         New defuns.
10057         * net/trampver.el: Update release number.
10059 2009-06-30  Kenichi Handa  <handa@m17n.org>
10061         * international/fontset.el (setup-default-fontset): Add CJK fonts
10062         for symbols and the other miscellaneous characters.
10064         * language/korea-util.el (setup-korean-environment-internal):
10065         Make char-width-table suitable for Korean environments.
10066         (exit-korean-environment): Cancel above.
10068         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
10069         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
10070         setup-funcion to make char-widht-table suitable for respective
10071         environments, and an exit-function to cancel that.
10073         * language/japan-util.el (setup-japanese-environment-internal):
10074         Call use-cjk-char-width-table with arg `ja_JP'.
10076         * international/characters.el (cjk-char-width-table): Delete it.
10077         (cjk-char-width-table-list): New variable.
10078         (use-cjk-char-width-table): New arg local-name.
10079         (use-default-char-width-table): Fix for the case that Emacs is
10080         already using the default char-width-table.
10082 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
10084         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
10085         modes mandatory.  (Bug#3712)
10087 2009-06-29  Alan Mackenzie  <acm@muc.de>
10089         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
10090         correction between the visible width of TABs and their number of bytes.
10092 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
10094         * server.el (server-buffer-done): Prevent kill-buffer from
10095         prompting by clearing the buffer modification flag (Bug#3696).
10097 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
10099         * progmodes/verilog-mode.el (verilog-beg-of-statement)
10100         (verilog-endcomment-reason-re): Support unique case and priority case.
10101         (verilog-basic-complete-re): Support localparam lineup.
10102         (verilog-beg-of-statement-1): Fix for robustness, unique case.
10103         (verilog-set-auto-endcomments): Fix for unique case, always_comb
10104         commenting.
10105         (verilog-leap-to-case-head): Now support *nested* unique &
10106         priority case statements.
10107         (verilog-auto-lineup): Make just declarations the default (as it
10108         had been).
10109         (verilog-leap-to-case-head): Support priority/unique case statements.
10110         (verilog-auto-lineup): Rework to give users radio buttons to
10111         select the various styles of automatic lineup.
10112         (verilog-error-regexp-alist): Rework to support the XEmacs style
10113         of error regular expressions from compilers, lint tools &
10114         simulators.  Note that GNU Emacs has made it impossible for a mode
10115         to load such things.
10116         (electric-verilog-terminate-line, verilog-indent-declaration)
10117         (verilog-auto-wiure): Rework for radio button selection of
10118         auto-lineup selection of specification of auto lineup.
10119         (verilog-beg-of-statement-1): Redesign to support proper operation
10120         in additional code, based on testing with auto-lineup.
10121         (verilog-calculate-indent, assignments & declarations)
10122         (verilog-backward-token): Enhance to support auto-lineup of
10123         assignments & declarations.
10124         (verilog-in-directive-p, verilog-at-struct-p): New function for
10125         easy test of whether we are.
10126         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
10127         to support safe execution at almost anyline.
10128         (verilog-calc-1): Properly support indenting deep inside generate
10129         blocks.
10130         (verilog-init-font) Remove definition & use of verilog-init-font,
10131         as it is redundant with font-lock-defaults.
10132         (verilog-mode): Alter the definition of verilog-font-lock-defaults
10133         to avoid circular calls if syntax-ppss is a function (as is the
10134         case now in 22.x GNU Emacs) as that function would sometimes call
10135         itself, leading to (nearly) infinite recursion.
10136         (verilog-ovm-begin-re, verilog-ovm-end-re)
10137         (verilog-ovm-statement-re, verilog-leap-to-head)
10138         (verilog-backward-token): Add support for OVM macros.  Some are
10139         complete statements, and others open and close scopes like begin
10140         and end.
10141         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
10142         (verilog-defun-level-generate-only-re): Really fix the defun-list
10143         compilation issue.
10144         (verilog-calc-1) (verilog-beg-of-statement): Enhance support for
10145         coverpoint, constraint and cross statements.
10146         (verilog-defun-level-list, verilog-generate-defun-level-list)
10147         (verilog-all-defun-level-list): Redo these specifications - it is
10148         too hard to support eval-when compile aggregation of lists also
10149         built at when-compile time.
10150         (verilog-defun-level-list): Place defconsts of variables used in
10151         building regular expressions which are built in eval-when-compile
10152         bodies in the same eval-when-compile body to facilitate compile
10153         without load.
10154         (verilog-beg-block-re-ordered): Support indenting
10155         virtual/protected tasks and functions.
10156         (verilog-defun-level-list, verilog-in-generate-region-p)
10157         (verilog-backward-ws&directives, verilog-calc-1): Speed up
10158         indentation of some module items (generate items).
10159         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
10160         across virtual/protected tasks and functions.
10162 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
10164         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
10165         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
10166         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
10167         in concatenations.  Reported by Yishay Belkind.
10168         (verilog-auto-ascii-enum): Support one-hot state machines in
10169         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
10170         (verilog-auto-inst, verilog-auto-inst-port): Include interface
10171         modport in AUTOINST and add vl-modport for users.  Reported by
10172         David Rogoff.
10173         (verilog-auto-inout-module, verilog-auto-inst)
10174         (verilog-decls-get-interfaces, verilog-insert-definition)
10175         (verilog-insert-one-definition, verilog-read-decls)
10176         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
10177         (verilog-sig-modport, verilog-signals-combine-bus)
10178         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
10179         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
10180         Suggested by David Rogoff.
10181         (verilog-repair-open-comma): Fix non-insertion of comma when
10182         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
10183         (verilog-make-width-expression): Simplify [A-1:0] expression
10184         widths to just {A{1'b0}}.
10185         (verilog-mode): Cleanup checkdoc warnings.
10186         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
10187         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
10188         inputs/outputs or data type.  Suggested by Vasu Kandadi.
10189         (next-error-last-buffer): Fix byte-compiler warning.
10190         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
10191         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
10192         or shell command text during AUTO expansion.  Suggested by Tad Truex.
10193         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
10194         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
10195         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
10196         in AUTOINOUT.  Reported by Matthew Lovell.
10197         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
10198         causing use of <= assignments.  Reported by Alex Reed.
10199         (verilog-read-decls): Fix triand, trior, wand, wor to be
10200         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
10201         (verilog-extended-complete-re): Support import "DPI-C" functions.
10202         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
10203         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
10204         (verilog-insert-date, verilog-insert-year)
10205         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
10206         Windows systems.  Reported by Michael Potts.
10207         (verilog-read-module-name): Fix AUTOINST when the child module
10208         declaration's name is a tick define.  Reported by Elliot Mednick.
10209         (verilog-read-decls): Fix V2K parameter bit subscripts getting
10210         passed to next parameter's definition.  Reported by Bruce T.
10211         (verilog-read-decls): Fix detecting "parameter int" when using
10212         AUTOINSTPARAM.  Reported by Bruce T.
10213         (verilog-goto-defun): Fix goto not finding modules unless first
10214         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
10215         (verilog-mode): Expand -f flag arguments on entry to mode so
10216         verilog-goto-defun will work.  Reported by Lawrence Butcher.
10217         (verilog-getopt): Expand environment variables in -f file
10218         arguments.  Suggested by Lawrence Butcher.
10219         (verilog-set-define): Fix "Symbol's value as variable is void"
10220         when reading enumerations.
10221         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
10222         Suggested by Stephen Peltan.
10223         (verilog-read-defines): Fix reading of enumerations in include
10224         files.  Reported by Steve Peltan.
10226 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
10228         * files.el (trash-directory): Fix defcustom type.
10230 2009-06-28  Juri Linkov  <juri@jurta.org>
10232         * help-fns.el (describe-function-1): Correctly locate adviced
10233         functions in hyperlink (Bug#2438).
10235 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
10237         * files.el (trash-directory): Change default to nil.
10238         (move-file-to-trash): If trash-directory is nil and
10239         system-move-file-to-trash is unbound, perform freedesktop-style
10240         trashing.
10242 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
10244         * files.el (move-file-to-trash): Add freedesktop trash
10245         support (Bug#973).
10247 2009-06-28  Glenn Morris  <rgm@gnu.org>
10249         * autorevert.el (global-auto-revert-non-file-buffers)
10250         (global-auto-revert-mode): Doc fixes.
10252 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
10254         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
10256 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
10258         * faces.el (x-handle-named-frame-geometry): Ensure that we have
10259         opened an X connection before calling x-get-resource (Bug#3194).
10261         * play/doctor.el: Remove reference to obsolete website.
10262         (make-doctor-variables): Correct grammar mistake (Bug#2633).
10264 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
10266         Remove find-file-not-found-hook VC method.  (Bug#2757)
10267         * vc-hooks.el (vc-file-not-found-hook)
10268         (vc-default-find-file-not-found-hook): Remove functions.
10269         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
10270         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
10271         * vc.el:
10272         * vc-hg.el:
10273         * vc-git.el: Do not mention find-file-not-found-hook VC method.
10275 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
10277         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
10278         compatibility function for `looking-back'.
10280         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
10281         Use `ispell-looking-back'.
10283 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
10285         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
10286         rather than `filename'.
10288 2009-06-23  Miles Bader  <miles@gnu.org>
10290         * face-remap.el (text-scale-set): New function.
10292 2009-06-23  Glenn Morris  <rgm@gnu.org>
10294         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
10296         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
10298         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
10300         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
10302         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
10303         Simplify Persian conditionals.
10305         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
10306         variable `filename'.
10308         * comint.el (comint-insert-input): Doc fix.
10310         * Makefile.in (ELCFILES): Fix typo in previous change.
10312 2009-06-23  Miles Bader  <miles@gnu.org>
10314         * cus-start.el: Add entry for `recenter-redisplay'.
10316 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
10318         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
10319         Add an optional argument for the backend, use it instead of
10320         calling vc-backend.
10321         (vc-mode-line): Add an optional argument for the backend.
10322         Pass the backend to vc-state and vc-working-revision.  Move code for
10323         special handling for vc-state being a buffer to ...
10325         * vc-rcs.el (vc-rcs-find-file-hook):
10326         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
10328         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
10329         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
10330         vc-stay-local-p and vc-mode-line calls.
10332         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
10333         (vc-cvs-diff, vc-cvs-annotate-command)
10334         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
10335         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
10336         vc-mode-line calls.
10338         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
10339         direct comparison.
10340         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
10341         backend when calling vc-mode-line.
10342         (vc-register): Do not create a closure for calling the vc register
10343         function, call it directly.
10345 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
10347         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
10348         to make it obvious item can be clicked.
10350         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
10352 2009-06-23  Kenichi Handa  <handa@m17n.org>
10354         * language/korea-util.el (korean-key-bindings): Change the binding
10355         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
10356         same command.
10358 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
10360         Sync with Tramp 2.1.16.
10362         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
10364         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
10365         when a loading of a package fails.  Completion function for rsync
10366         is `tramp-completion-function-alist-ssh'.
10367         (all): Replace all calls of `split-string' and
10368         `tramp-split-string' by `tramp-compat-split-string'.
10369         (tramp-default-method): Use `tramp-compat-process-running-p'.
10370         (tramp-default-proxies-alist): Allow also Lisp forms.
10371         (tramp-remote-path): Add choice "Private Directories".
10372         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
10373         (tramp-domain-regexp): Allow also "-", "_" and ".".
10374         (tramp-end-of-output): Remove newlines, and add "$" at the end.
10375         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
10376         (tramp-debug-message): Insert header line in debug buffer.
10377         (tramp-handle-directory-files-and-attributes-with-stat):
10378         Care about filenames with spaces, or starting with "-".
10379         (tramp-handle-dired-uncache): New defun.
10380         (tramp-handle-insert-directory): Don't flush the directory from
10381         cache, this is handled by `dired-uncache' now.
10382         (tramp-handle-insert-file-contents): Improve error handling.
10383         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
10384         Quote `tramp-end-of-output'.
10385         (tramp-action-password): Improve trace message.
10386         (tramp-check-for-regexp): Both echoes must be present, before removing.
10387         (tramp-open-connection-setup-interactive-shell): Trace coding system.
10388         (tramp-compute-multi-hops): Eval cons cells of
10389         `tramp-default-proxies-alist'.
10390         (tramp-maybe-open-connection): Use the same command pattern for
10391         first hop and further hops.
10392         (tramp-wait-for-output): Remove handling of newlines.
10393         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
10394         (tramp-split-string): Remove function.  It is handled in
10395         tramp-compat now.
10397         * net/tramp-cmds.el (tramp-bug):
10398         Recommend `tramp-cleanup-all-connections' in the bug mail.
10400         * net/tramp-compat.el (tramp-compat-split-string)
10401         (tramp-compat-process-running-p): New defuns.
10403         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
10404         for `dired-uncache'.
10406         * net/tramp-gvfs.el: New package.
10408         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
10409         Add handler for `dired-uncache'.
10410         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
10412         * net/trampver.el: Update release number.  Make version check fit
10413         for SXEmacs 22.
10415 2009-06-22  Jim Meyering  <meyering@redhat.com>
10417         Automatically handle .xz suffix (XZ-compressed files), too.
10418         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
10419         XZ is the successor to LZMA: <http://tukaani.org/xz/>
10421 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
10422             Nick Roberts  <nickrob@snap.net.nz>
10424         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
10425         repository (http://sphinx.net.ru/hg/gdb-mi/).
10427 2009-06-22  Glenn Morris  <rgm@gnu.org>
10429         * files.el (dir-locals-collect-mode-variables): Allow for any number of
10430         `mode' and `eval' entries.  (Bug#3430)
10432         * Makefile.in (ELCFILES): Add fadr.elc.
10434         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
10435         differing behavior of \n and ^ in strings.  (Bug#3385)
10437         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
10439         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
10440         property.
10441         (lisp-indent-function): Make it a defcustom.
10443 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
10445         * progmodes/gdb-ui.el: Replace with ...
10446         * progmodes/gdb-mi.el: ... this file.
10447         * progmodes/gud.el: Modify for gdb-mi.el.
10449 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
10451         * fadr.el: New file.
10453 See ChangeLog.14 for earlier changes.
10455 ;; Local Variables:
10456 ;; coding: utf-8
10457 ;; End:
10459     Copyright (C) 2009, 2010  Free Software Foundation, Inc.
10461   This file is part of GNU Emacs.
10463   GNU Emacs is free software: you can redistribute it and/or modify
10464   it under the terms of the GNU General Public License as published by
10465   the Free Software Foundation, either version 3 of the License, or
10466   (at your option) any later version.
10468   GNU Emacs is distributed in the hope that it will be useful,
10469   but WITHOUT ANY WARRANTY; without even the implied warranty of
10470   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10471   GNU General Public License for more details.
10473   You should have received a copy of the GNU General Public License
10474   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
10476 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1