Prevent server-mode from issuing a prompt in kill-emacs-hook.
[emacs.git] / lisp / ChangeLog
blobbc43863e6b4bfacd4646efa8e0f5d0424190de41
1 2010-11-01  Chong Yidong  <cyd@stupidchicken.com>
3         * server.el (server-start): New arg INHIBIT-PROMPT prevents asking
4         user for confirmation.
5         (server-force-stop): Use it.
6         (server-start): Use server-force-stop for kill-emacs-hook, to
7         avoid user interaction while killing Emacs.
9 2010-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11         * vc/log-edit.el (log-edit-rewrite-fixes): New var.
12         (log-edit-author): New dynamic var.
13         (log-edit-changelog-ours-p, log-edit-insert-changelog-entries):
14         Use it to return the author if different from committer.
15         (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
17 2010-10-31  Eli Zaretskii  <eliz@gnu.org>
19         * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
21 2010-10-31  Chong Yidong  <cyd@stupidchicken.com>
23         * vc/vc.el (vc-deduce-backend): New fun.  Handle diff buffers.
24         (vc-root-diff, vc-print-root-log, vc-log-incoming)
25         (vc-log-outgoing): Use it.
26         (vc-diff-internal): Set diff-vc-backend.
28         * vc/diff-mode.el (diff-vc-backend): New var.
30 2010-10-31  Juri Linkov  <juri@jurta.org>
32         * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
33         buffer-locally to lambda that re-runs the vc diff command.
34         (Bug#6447)
36 2010-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
38         * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
40         Make 'g' (AKA revert-buffer) rerun VC log, log-incoming and
41         log-outgoing commands.
42         * vc/vc.el (vc-log-internal-common): Add a new argument and use it
43         to create a buffer local revert-buffer-function variable.
44         (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
45         revert-buffer-function lambda.
47         Improve VC create/retrieve tag/branch.
48         * vc.el (vc-create-tag): Do not read the directory name for VCs
49         with repository revision granularity.  Adjust the tag/branch
50         prompt.  Reset VC properties.
51         (vc-retrieve-tag): Do not read the directory name for VCs
52         with repository revision granularity.  Reset VC properties.
54         Add optional support for resetting VC properties.
55         * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
56         call vc-file-clearprops when true.
57         (vc-resynch-buffer): Add new optional argument, pass it down.
58         (vc-resynch-buffers-in-directory): Likewise.
60         Improve support for special markup in the VC commit message.
61         * vc-mtn.el (vc-mtn-checkin): Support Author: and Date: markup.
62         * vc-hg.el (vc-hg-checkin): Add support for Date:.
63         * vc-git.el (vc-git-checkin):
64         * vc-bzr.el (vc-bzr-checkin): Likewise.
66         Add support for vc-log-incoming, improve vc-log-outgoing for Git.
67         * vc-git.el (vc-git-log-view-mode): Fix font lock for
68         incoming/outgoing logs.
69         (vc-git-log-outgoing, vc-git-log-incoming): New functions.
71         * vc-git.el (vc-git-log-outgoing): Use the same format as the
72         short log.
73         (vc-git-log-incoming): Likewise.  Run "git fetch" before the log
74         command
76         Add bindings for vc-log-incoming and vc-log-outgoing.
77         * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
78         and vc-log-outgoing.
79         * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
80         and vc-log-outgoing.
82         Improve state updating for VC tag commands.
83         * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
84         to update the state of all buffers in the directory.
86 2010-05-19  Glenn Morris  <rgm@gnu.org>
88         * vc-dir.el (vc-dir): Don't pop-up-windows.  (Bug#6204)
90 2010-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
92         * vc.el (vc-checkin, vc-modify-change-comment):
93         Adjust to new vc-start/finish-logentry.
94         (vc-find-conflicted-file): New command.
95         (vc-transfer-file): Adjust to new vc-checkin.
96         (vc-next-action): Improve scoping.
98         * vc-git.el (vc-git-checkin): Use log-edit-extract-headers.
99         (vc-git-commits-coding-system): Rename from git-commits-coding-system.
101         * vc-dispatcher.el (vc-log-edit): Shorten names for
102         log-edit-show-files.
104         * vc-bzr.el (vc-bzr-checkin): Use log-edit-extract-headers.
105         (vc-bzr-conflicted-files): New function.
107         * log-edit.el (log-edit-summary, log-edit-header)
108         (log-edit-unknown-header): New faces.
109         (log-edit-headers-alist): New var.
110         (log-edit-header-contents-regexp): New const.
111         (log-edit-match-to-eoh): New function.
112         (log-edit-font-lock-keywords): Use them.
113         (log-edit): Insert a "Summary:" header as default.
114         (log-edit-mode): Mark font-lock rules as case-insensitive.
115         (log-edit-done): Cleanup headers.
116         (log-edit-extract-headers): New function to replace it.
118         * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with
119         the windows/frames.
121         * vc-bzr.el (vc-bzr-shelve-apply): Don't use *vc-bzr-shelve*.
123         * vc-dir.el (vc-dir-kill-line): New command.
124         (vc-dir-mode-map): Bind it to C-k.
125         (vc-dir-headers): Abbreviate the working dir.
127         * vc-git.el (vc-git-revision-table): Include remote branches.
129 2010-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
131         New VC methods: vc-log-incoming and vc-log-outgoing.
132         * vc.el (vc-print-log-setup-buttons, vc-log-internal-common)
133         (vc-incoming-outgoing-internal, vc-log-incoming, vc-log-outgoing):
134         New functions.
135         (vc-print-log-internal): Just call vc-log-internal-common.
136         (vc-log-view-type): New permanent local variable.
138         * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
140         * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
141         of the dynamic bound vc-short-log.
142         (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
144         * vc-git.el (vc-git-log-outgoing): New function.
145         (vc-git-log-view-mode): Use vc-log-view-type instead
146         of the dynamic bound vc-short-log.
148         * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead of
149         the dynamic bound vc-short-log.  Highlight the tag.
150         (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
151         (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
152         (vc-hg-incoming-mode): Remove.
153         (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
155         Fix default-directory for vc-root-diff.
156         * vc.el (vc-root-diff): Bind default-directory to the root
157         directory for the diff command.
159 2010-10-31  Sam Steingold  <sds@gnu.org>
161         * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
162         `vc-hg-command' with a list of flags.
164 2010-10-31  Glenn Morris  <rgm@gnu.org>
166         * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
167         log-edit-before-checkin-process.
169         * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
171         * vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
173         * vc-dispatcher.el (vc-start-logentry): Doc fix.
174         (log-view-process-buffer, log-edit-extra-flags): Declare.
176 2010-10-31  Dan Nicolaescu  <dann@ics.uci.edu>
178         Add special markup processing for commit logs.
179         * log-edit.el (log-edit): Add new argument MODE.  Use that mode
180         when non-nil instead of the log-view-mode.
182         * vc.el (vc-default-log-edit-mode): New function.
184         * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
185         log-edit.
187         Support for shelving snapshots and for showing shelves.
188         * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
189         (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
190         New functions.
191         (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
192         (vc-bzr-extra-menu-map): Map them.
194 2010-10-30  Michael Albinus  <michael.albinus@gmx.de>
196         * net/tramp.el (tramp-handle-insert-file-contents): For root,
197         preserve owner and group when editing files.  (Bug#7289)
199 2010-10-29  Glenn Morris  <rgm@gnu.org>
201         * speedbar.el (speedbar-mode):
202         * play/fortune.el (fortune-in-buffer, fortune):
203         * play/gomoku.el (gomoku-mode):
204         * play/landmark.el (lm-mode):
205         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
206         Replace inappropriate uses of toggle-read-only.  (Bug#7292)
208 2010-10-28  Glenn Morris  <rgm@gnu.org>
210         * select.el (x-selection): Mark it as an obsolete alias.
212 2010-10-27  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
214         * add-log.el (find-change-log): Use derived-mode-p rather than
215         major-mode (bug#7284).
217 2010-10-27  Glenn Morris  <rgm@gnu.org>
219         * menu-bar.el (menu-bar-files-menu): Make it into an actual alias,
220         rather than just an unused variable that inherits from the real one.
222 2010-10-23  Michael McNamara  <mac@mail.brushroad.com>
224         * verilog-mode.el (verilog-directive-re): Make this variable
225         auto-built for efficiency of execution and updating.
226         (verilog-extended-complete-re): Support 'pure' fucntion & task
227         declarations (these have no bodies).
228         (verilog-beg-of-statement): General cleanup to enable support of
229         'pure' fucntion & task declarations (these have no bodies).
230         These efforts together fix Verilog bug210 from veripool; which was also
231         noticed by Steve Pearlmutter.
232         (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
233         (verilog-directive-nest-re, verilog-set-auto-endcomments):
234         Support `elsif.  Reported by Shankar Giri.
235         (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
236         attribute handling for lining up declarations and assignments.
237         (verilog-beg-of-statement-1): Fix issue where continued declaration
238         is indented differently if it is after a begin..end clock.
239         (verilog-in-attribute-p, verilog-skip-backward-comments)
240         (verilog-skip-forward-comment-p): Support proper treatment of
241         attributes by indent code. Reported by Jeff Steele.
242         (verilog-in-directive-p): Fix comment to correctly describe function.
243         (verilog-backward-up-list, verilog-in-struct-region-p)
244         (verilog-backward-token, verilog-in-struct-p)
245         (verilog-in-coverage-p, verilog-do-indent)
246         (verilog-pretty-declarations): Use verilog-backward-up-list as
247         wrapper around backward-up-list inorder to properly skip comments.
248         Reported by David Rogoff.
249         (verilog-property-re, verilog-endcomment-reason-re)
250         (verilog-beg-of-statement, verilog-set-auto-endcomments)
251         (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
252         of if). Reported by Max Bjurling and
253         (verilog-calc-1): Fix for clocking block in modport
254         declaration. Reported by Brian Hunter.
256 2010-10-23  Wilson Snyder  <wsnyder@wsnyder.org>
258         * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
259         (verilog-gate-keywords, verilog-read-sub-decls)
260         (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
261         (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
262         AUTOINST for gate primitives, bug284.  Reported by Mark Johnson.
263         (verilog-read-decls): Fix spaces in V2K module parameters causing
264         mis-identification as interfaces, bug287.
265         (verilog-read-decls): Fix not treating "parameter string" as a
266         parameter in AUTOINSTPARAM.
267         (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
268         treating `elsif similar to `endif inside AUTOSENSE.
269         (verilog-do-indent): Implement correct automatic or static task or
270         function end comment highlight. Reported by Steve Pearlmutter.
271         (verilog-font-lock-keywords-2): Fix highlighting of single
272         character pins, bug264.  Reported by Michael Laajanen.
273         (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
274         (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
275         (verilog-subdecls-get-interfaced, verilog-subdecls-new): Support
276         interfaces with AUTOINST, bug270.  Reported by Luis Gutierrez.
277         (verilog-pretty-expr): Fix interactive arguments, bug272.
278         Reported by Mark Johnson.
279         (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp):
280         Add 'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
281         bug269. Suggested by Gary Delp.
282         (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
283         (verilog-preprocessor, verilog-set-compile-command):
284         Create verilog-preprocess and verilog-preprocessor to show
285         preprocessed output.
286         (verilog-get-beg-of-line, verilog-get-end-of-line)
287         (verilog-modi-file-or-buffer, verilog-modi-name)
288         (verilog-modi-point, verilog-within-string): Move defmacro's
289         before first use to avoid warning. Reported by Steve Pearlmutter.
290         (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
291         (verilog-colorize-region, verilog-highlight-buffer)
292         (verilog-highlight-includes, verilog-highlight-modules)
293         (verilog-highlight-region, verilog-mode): Rename colorize to
294         highlight to match other packages.  Disable module highlighting,
295         as received speed complaints, reenable for experimentation only
296         using new verilog-highlight-modules.
297         (verilog-read-decls): Fix regexp stack overflow in very large
298         AUTO_TEMPLATEs, bug250.
299         (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
300         (verilog-scan): Create verilog-save-buffer-state to standardize
301         making insignificant changes that shouldn't call hooks.
302         (verilog-save-no-change-functions, verilog-save-scan-cache)
303         (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
304         Create verilog-save-no-change-functions to wrap verilog-scan
305         preservation, and fix to work with nested preserved calls.
306         (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
307         port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
308         generate .name with AUTOINST, bug245.  Suggested by David Rogoff.
309         (verilog-submit-bug-report): Update variable list to be complete.
310         (verilog-auto, verilog-colorize-region): Fix AUTO expansion
311         breaking on-the-fly font-locking.
312         (verilog-colorize-buffer, verilog-colorize-include-files)
313         (verilog-colorize-include-files-buffer, verilog-colorize-region)
314         (verilog-load-file-at-mouse, verilog-load-file-at-point)
315         (verilog-mode, verilog-read-inst-module-matcher): With point on a
316         AUTOINST cell instance name, middle mouse button now finds-file on
317         it.  Suggested by Brad Dobbie.
318         (verilog-alw-get-temps, verilog-auto-reset)
319         (verilog-auto-sense-sigs, verilog-read-always-signals)
320         (verilog-read-always-signals-recurse): Fix loop indexes being
321         AUTORESET. AUTORESET now assumes any variables in the
322         initialization section of a for() should be ignored.  Reported by
323         Dan Dever.
324         (verilog-error-font-lock-keywords)
325         (verilog-error-regexp-emacs-alist)
326         (verilog-error-regexp-xemacs-alist): Fix error detection of
327         Cadence HAL, reported by David Asher.  Repair drift between the
328         three similar error variables.
329         (verilog-modi-lookup, verilog-modi-lookup-cache)
330         (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
331         (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
332         Fix slow verilog-auto expansion on very large files.
333         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line):
334         Fix AUTOOUTPUT treating "1*2" as a signal name in submodule connection
335         "{1*2{...".  Broke in last revision.
336         (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
337         submodule connections with replications "{#{a},#{b}}".
339 2010-10-23  Glenn Morris  <rgm@gnu.org>
341         * comint.el (comint-password-prompt-regexp):
342         Match "enter the password".  (Bug#7224)
344 2010-10-22  Juanma Barranquero  <lekktu@gmail.com>
346         * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
347         Fix typo in docstring.
349 2010-10-21  Michael Albinus  <michael.albinus@gmx.de>
351         * net/tramp.el (tramp-get-inline-coding): Return `nil' in case of
352         errors.
354         * net/trampver.el: Update release number.
356 2010-10-20  Kenichi Handa  <handa@m17n.org>
358         * face-remap.el (text-scale-adjust): Call read-event with a proper
359         prompt.
361 2010-10-19  Michael Albinus  <michael.albinus@gmx.de>
363         * net/tramp.el (tramp-do-file-attributes-with-stat)
364         (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
365         order to make stat results a float.  Patch by Andreas Schwab
366         <schwab@linux-m68k.org>.
368 2010-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
370         * repeat.el (repeat): Use read-key (bug#6256).
372 2010-10-18  Chong Yidong  <cyd@stupidchicken.com>
374         * emacs-lisp/unsafep.el: Don't mark functions that display
375         messages as safe.  Suggested by Johan Bockgård.
377 2010-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
379         * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
380         Turn comments into docstrings.
382         * minibuffer.el (completion--replace): Move point where it belongs
383         when there's a common suffix (bug#7215).
385 2010-10-15  Michael Albinus  <michael.albinus@gmx.de>
387         * net/tramp.el (tramp-open-connection-setup-interactive-shell):
388         Suppress expansion of tabs to spaces.  Reported by Dale Sedivec
389         <dale@codefu.org>.
391 2010-10-15  Kenichi Handa  <handa@m17n.org>
393         * international/characters.el: Add category '|' (word breakable)
394         to fullwidth characters.
396 2010-10-14  Kenichi Handa  <handa@m17n.org>
398         * mail/rmail.el (rmail-show-message-1): Catch an error of
399         base64-decode-region and just show an error message (bug#7165).
401         * ps-mule.el (ps-mule-font-spec-list): Delete it.  Not used anymore.
402         (ps-mule-begin-job): Fix for the case that only ENCODING is set in
403         a font-spec (bug#7197).
405 2010-10-13  Glenn Morris  <rgm@gnu.org>
407         * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
409 2010-10-12  Juanma Barranquero  <lekktu@gmail.com>
411         * international/mule.el (define-coding-system):
412         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
413         * composite.el (compose-region): Fix typo in docstring.
415 2010-10-10  Jan Djärv  <jan.h.d@swipnet.se>
417         * term/ns-win.el (ns-right-alternate-modifier): New defvar.
418         (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
419         (mac-right-option-modifier): New alias for ns-right-option-modifier.
421         * cus-start.el (all): ns-right-alternate-modifier is new.
423 2010-10-10  Andreas Schwab  <schwab@linux-m68k.org>
425         * Makefile.in (ELCFILES): Update.
427 2010-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
429         * emacs-lisp/lisp.el (lisp-completion-at-point):
430         Use emacs-lisp-mode-syntax-table for the whole function.
432 2010-10-09  Richard Sharman  <richard_sharman@mitel.com>  (tiny change)
434         * progmodes/gdb-ui.el (gdb-mouse-toggle-breakpoint-margin)
435         (gdb-mouse-toggle-breakpoint-fringe): Correct regexp to
436         work when breakpoint number exceeds nine.
438 2010-10-05  David Koppelman  <koppel@ece.lsu.edu>
440         * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
441         instead of font-lock-mode before adding keywords.
442         Remove hi-lock-mode off code.  Remove inhibit hack.
443         (hi-lock-set-pattern): Only add keywords if font-lock-fontified
444         non-nil; removed hook inhibit hack.
446 2010-10-09  Glenn Morris  <rgm@gnu.org>
448         * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
449         (load-path-shadows-find): ... to this.
450         (list-load-path-shadows): Update for above change.
452         * mail/mail-utils.el (mail-mbox-from): Also try return-path.
454 2010-10-08  Glenn Morris  <rgm@gnu.org>
456         * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
458         * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
459         (shadows-compare-text-p): Make it an obsolete alias for...
460         (load-path-shadows-compare-text): ... new name.
461         (find-emacs-lisp-shadows): Update for above name change.
462         (load-path-shadows-same-file-or-nonexistent): New name for the old
463         shadow-same-file-or-nonexistent.
465 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
467         * minibuffer.el (completion--some, completion--do-completion)
468         (minibuffer-complete-and-exit, minibuffer-completion-help)
469         (completion-basic-try-completion)
470         (completion-basic-all-completions)
471         (completion-pcm--find-all-completions): Use lexical-let to
472         avoid some false matches in variable completion (Bug#7056)
474 2010-10-03  Olof Ohlsson Sax  <olof.ohlsson.sax@gmail.com>  (tiny change)
476         * vc-svn.el (vc-svn-merge-news): Use --non-interactive.  (Bug#7152)
478 2010-10-03  Leo  <sdl.web@gmail.com>
480         * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
481         return non-nil if the file exists (Bug#7090).
483 2010-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
485         * minibuffer.el (completion--replace):
486         Better preserve markers (bug#7138).
488 2010-09-29  Juanma Barranquero  <lekktu@gmail.com>
490         * server.el (server-process-filter): Doc fix.
492 2010-09-27  Drew Adams  <drew.adams@oracle.com>
494         * dired.el (dired-save-positions): Doc fix.  (Bug#7119)
496 2010-09-27  Andreas Schwab  <schwab@linux-m68k.org>
498         * Makefile.in (ELCFILES): Update.
500         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
501         Avoid infinite recursion on erroneous lambda form.  (Bug#7114)
503 2010-09-27  Kenichi Handa  <handa@m17n.org>
505         * tar-mode.el (tar-header-block-tokenize): Decode filenames in
506         "ustar" format.
508 2010-09-27  Kenichi Handa  <handa@m17n.org>
510         * international/mule.el (define-coding-system): Docstring fixed.
512         * international/mule-diag.el (describe-character-set): Use princ
513         with proper print-length and print-level instead of insert.
515 2010-09-26  Juanma Barranquero  <lekktu@gmail.com>
517         * window.el (walk-windows): Doc fix (bug#7105).
519 2010-09-23  Glenn Morris  <rgm@gnu.org>
521         * isearch.el (isearch-lazy-highlight-cleanup)
522         (isearch-lazy-highlight-initial-delay)
523         (isearch-lazy-highlight-interval)
524         (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
525         * net/net-utils.el (ipconfig-program-options):
526         Move aliases to options before the associated definitions.
528 2010-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
530         * newcomment.el (comment-normalize-vars): Better test validity of
531         comment-end-skip.
533 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
535         * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
536         (float-e): New name for `e'.
537         (degrees-to-radians, radians-to-degrees):
538         * calendar/solar.el (solar-longitude):
539         * calculator.el (calculator-registers, calculator-funcall):
540         * textmodes/artist.el (artist-spray-random-points):
541         * play/bubbles.el (bubbles--initialize-images): Use new names.
543 2010-09-19  Eric M. Ludlam  <zappo@gnu.org>
545         Update to CEDET 1.0's version of EIEIO.
547         * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
548         New function.
549         (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
550         (eieio-default-eval-maybe): Eval val instead of unquoting only.
551         (class-precedence-list): If class is nil, return nil.
552         (eieio-generic-call): If class of first input arg is nil, don't
553         look up static methods, and do check for primary methods.
554         (initialize-instance): See if the default needs to be evaluated
555         during the constructor.
556         (eieio-perform-slot-validation-for-default): Don't do the check
557         for values that will eventually be evaluated.
558         (eieio-eval-default-p): New function.
559         (eieio-default-eval-maybe): Use it.
561 2010-07-03  Jan Moringen  <jan.moringen@uni-bielefeld.de>
563         * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
564         method-invocation-order.
565         (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
566         (eieio-class-precedence-dfs): Compute class precedence list using
567         dfs algorithm.
568         (eieio-class-precedence-bfs): Compute class precedence list using
569         bfs algorithm.
570         (eieio-class-precedence-c3): Compute class precedence list using
571         c3 algorithm.
572         (class-precedence-list): New function.
573         (eieiomt-method-list, eieiomt-sym-optimize): Use it.
574         (inconsistent-class-hierarchy): New error symbol.
575         (call-next-method): Stow the replacement argument list for future
576         call-next-method invocations.
578 2010-09-15  Glenn Morris  <rgm@gnu.org>
580         * calendar/appt.el (appt-check): If not displaying the diary,
581         use (diary 1) to only get the entries we need.
582         (appt-make-list): Sort diary-list-entries, if we cannot guarantee
583         that it is in day order.  (Bug#7019)
585         * calendar/appt.el (appt-check): Rather than showing the diary,
586         just turn off invisible display, and only if needed.
588         * calendar/diary-lib.el (diary-list-entries): Doc fix.  (Bug#7019)
590 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
592         * emacs-lisp/byte-run.el (set-advertised-calling-convention):
593         Add `when' argument.  Update callers.
595         * subr.el (unintern): Declare the obarray arg mandatory.
597 2010-09-14  Glenn Morris  <rgm@gnu.org>
599         * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
600         Doc fixes.
602         * calendar/diary-lib.el (diary-included-files): New variable.
603         (diary-list-entries): Maybe initialize diary-included-files.
604         (diary-include-other-diary-files): Append to diary-included-files.
605         * calendar/appt.el (appt-update-list): Also check the members of
606         diary-included-files.  (Bug#6999)
607         (appt-check): Doc fix.
609 2010-09-12  David Reitter  <david.reitter@gmail.com>
611         * simple.el (line-move-visual): Do not truncate goal column to
612         integer size.  (Bug#7020)
614 2010-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
616         * repeat.el (repeat): Allow repeating when the last event is a click.
617         Suggested by Drew Adams (bug#6256).
619 2010-09-11  Sascha Wilde  <wilde@sha-bang.de>
621         * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
622         Replace setting HGRCPATH to "" by some less invasive --config options.
624 2010-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
626         * font-lock.el (font-lock-beginning-of-syntax-function):
627         Mark as obsolete.
629 2010-09-10  Glenn Morris  <rgm@gnu.org>
631         * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
632         and tool-bar modes.  (Bug#6211)
633         (menu-bar-mode): Move setting of standard-value after the
634         minor-mode definition, otherwise it seems to have no effect.
636 2010-09-08  Masatake YAMATO  <yamato@redhat.com>
638         * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
639         Fix typo.  (Bug#6976)
641 2010-09-06  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
643         * whitespace.el: Allow cleaning up blanks without blank
644         visualization (Bug#6651).  Adjust help window for
645         whitespace-toggle-options (Bug#6479).  Allow to use fill-column
646         instead of whitespace-line-column (from EmacsWiki).  New version 13.1.
647         (whitespace-style): Add new value 'face.  Adjust docstring.
648         (whitespace-space, whitespace-hspace, whitespace-tab):
649         Adjust foreground property face.
650         (whitespace-line-column): Adjust docstring and type declaration.
651         (whitespace-style-value-list, whitespace-toggle-option-alist)
652         (whitespace-help-text): Adjust const initialization.
653         (whitespace-toggle-options, global-whitespace-toggle-options):
654         Adjust docstring.
655         (whitespace-display-window, whitespace-interactive-char)
656         (whitespace-style-face-p, whitespace-color-on): Adjust code.
657         (whitespace-help-scroll): New fun.
659 2010-09-05  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
661         * files.el (directory-abbrev-alist): Use \` as default regexp.
663         * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
664         chars like - or ] (bug#6984).
665         (rx-any-condense-range): Explode 2-char ranges.
667 2010-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
669         * textmodes/bibtex.el:
670         * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
672 2010-09-02  Glenn Morris  <rgm@gnu.org>
674         * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
676 2010-08-31  Kenichi Handa  <handa@m17n.org>
678         * international/mule-cmds.el (standard-display-european-internal):
679         Setup standard-display-table for 8-bit characters by storing 8-bit
680         characters in the element vector.
682         * disp-table.el (standard-display-8bit):
683         Setup standard-display-table for 8-bit characters by storing 8-bit
684         characters in the element vector.
685         (standard-display-european): Likewise.
687 2010-08-26  Michael Albinus  <michael.albinus@gmx.de>
689         Sync with Tramp 2.1.19.
691         * net/tramp-cmds.el (tramp-cleanup-all-connections)
692         (tramp-reporter-dump-variable, tramp-load-report-modules)
693         (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
694         (tramp-bug): Recommend setting of `tramp-verbose' to 9.
696         * net/tramp-compat.el (top): Do not autoload
697         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
698         only when `start-file-process' is not bound.
699         (byte-compile-not-obsolete-vars): Define if not bound.
700         (tramp-compat-funcall): New defmacro.
701         (tramp-compat-line-beginning-position)
702         (tramp-compat-line-end-position)
703         (tramp-compat-temporary-file-directory)
704         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
705         (tramp-compat-copy-file, tramp-compat-copy-directory)
706         (tramp-compat-delete-file, tramp-compat-delete-directory)
707         (tramp-compat-number-sequence, tramp-compat-process-running-p):
708         Use it.
709         (tramp-advice-file-expand-wildcards): Do not use
710         `tramp-handle-file-remote-p'.
711         (tramp-compat-make-temp-file): Simplify fallback implementation.
712         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
713         (tramp-compat-copy-tree): Remove function.
714         (tramp-compat-delete-file): New defun.
715         (tramp-compat-delete-directory): Provide implementation for older
716         Emacsen.
717         (tramp-compat-file-attributes): Handle only
718         `wrong-number-of-arguments' error.
720         * net/tramp-fish.el (tramp-fish-handle-copy-file):
721         Add PRESERVE_SELINUX_CONTEXT.
722         (tramp-fish-handle-delete-file): Add TRASH arg.
723         (tramp-fish-handle-directory-files-and-attributes):
724         Do not use `tramp-fish-handle-file-attributes.
725         (tramp-fish-handle-file-local-copy)
726         (tramp-fish-handle-insert-file-contents)
727         (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
729         * net/tramp-gvfs.el (top): Require url-util.
730         (tramp-gvfs-mount-point): Remove.
731         (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
732         and `set-file-selinux-context'.
733         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
734         (tramp-gvfs-handle-file-selinux-context)
735         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
736         (with-tramp-dbus-call-method): Format trace message.
737         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
738         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
739         Implement backup call, when operation on local files fails.
740         Use progress reporter.  Flush properties of changed files.
741         (tramp-gvfs-handle-delete-file): Add TRASH arg.
742         Use `tramp-compat-delete-file'.
743         (tramp-gvfs-handle-expand-file-name): Expand "~/".
744         (tramp-gvfs-handle-make-directory): Make more traces.
745         (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
746         (tramp-gvfs-url-file-name): Hexify file name in url.
747         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
748         into account for the resulting file name.
749         (tramp-gvfs-handler-askquestion): Preserve current message, in
750         order to let progress reporter continue afterwards.  (Bug#6257)
751         Return dummy mountpoint, when the answer is "no".
752         See `tramp-gvfs-maybe-open-connection'.
753         (tramp-gvfs-handler-mounted-unmounted)
754         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
755         attribute "default_location".  Set "prefix" property.
756         Handle default-location.
757         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
758         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
759         exists.  Raise an error, if not (due to a corresponding answer
760         "no" in interactive questions, for example).
761         Use `tramp-compat-funcall'.
763         * net/tramp-imap.el (top): Autoload `epg-make-context'.
764         (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
765         (tramp-imap-do-copy-or-rename-file)
766         (tramp-imap-handle-insert-file-contents)
767         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
768         (tramp-imap-handle-delete-file): Add TRASH arg.
770         * net/tramp-smb.el (tramp-smb-handle-copy-file):
771         Add PRESERVE-SELINUX-CONTEXT.
772         (tramp-smb-handle-copy-file)
773         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
774         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
775         Use `with-progress-reporter'.
776         (tramp-smb-handle-delete-file): Add TRASH arg.
778         * net/tramp.el (tramp-methods): Move hostname to the end in all
779         ssh `tramp-login-args'.  Add `tramp-async-args' attribute where
780         appropriate.
781         (tramp-verbose): Describe verbose level 9.
782         (tramp-completion-function-alist)
783         (tramp-file-name-regexp, tramp-chunksize)
784         (tramp-local-coding-commands, tramp-remote-coding-commands)
785         (with-connection-property, tramp-completion-mode-p)
786         (tramp-action-process-alive, tramp-action-out-of-band)
787         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
788         (tramp-exists-file-name-handler): Fix docstring.
789         (tramp-remote-process-environment): Use `format' instead of
790         `concat'.  Protect version string by apostroph.
791         (tramp-shell-prompt-pattern): Do not use a shy group in case of
792         XEmacs.
793         (tramp-file-name-regexp-unified)
794         (tramp-completion-file-name-regexp-unified): On W32 systems, do
795         not regard the volume letter as remote filename.  (Bug#5447)
796         (tramp-perl-file-attributes)
797         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
798         (tramp-vc-registered-read-file-names): Read input as
799         here-document, otherwise the command could exceed maximum length
800         of command line.
801         (tramp-file-name-handler-alist): Add `file-selinux-context' and
802         `set-file-selinux-context'.
803         (tramp-debug-message): Add `tramp-compat-funcall' to ignored
804         backtrace functions.
805         (tramp-error-with-buffer): Don't show the connection buffer when
806         we are in completion mode.
807         (tramp-progress-reporter-update, tramp-remote-selinux-p)
808         (tramp-handle-file-selinux-context)
809         (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
810         (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
811         New defuns.
812         (with-progress-reporter): New defmacro.
813         (tramp-debug-outline-regexp): New defconst.
814         (top, tramp-rfn-eshadow-setup-minibuffer)
815         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
816         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
817         (tramp-completion-mode-p, tramp-check-for-regexp)
818         (tramp-open-connection-setup-interactive-shell)
819         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
820         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
821         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
822         Use `tramp-compat-funcall'.
823         (tramp-handle-make-symbolic-link): Flush file properties.
824         (tramp-handle-load, tramp-handle-file-local-copy)
825         (tramp-handle-insert-file-contents, tramp-handle-write-region)
826         (tramp-handle-vc-registered, tramp-maybe-send-script)
827         (tramp-find-shell): Use `with-progress-reporter'.
828         (tramp-do-file-attributes-with-stat): Add space in format string,
829         in order to work around a bug in pdksh.  Reported by Gilles Pion
830         <gpion@lfdj.com>.
831         (tramp-handle-verify-visited-file-modtime): Do not send a command
832         when the connection is not established.
833         (tramp-handle-set-file-times): Simplify the check for utc.
834         (tramp-handle-directory-files-and-attributes)
835         (tramp-get-remote-path): Use `copy-tree'.
836         (tramp-completion-handle-file-name-all-completions): Ensure, that
837         non remote files are still checked.  Oops.
838         (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
839         Handle PRESERVE-SELINUX-CONTEXT.
840         (tramp-do-copy-or-rename-file): Add progress reporter.
841         (tramp-do-copy-or-rename-file-directly): Do not use
842         `tramp-handle-file-remote-p'.
843         (tramp-do-copy-or-rename-file-out-of-band):
844         Use `tramp-compat-delete-directory'.
845         (tramp-do-copy-or-rename-file-out-of-band)
846         (tramp-compute-multi-hops, tramp-maybe-open-connection):
847         Use `format-spec-make'.
848         (tramp-handle-delete-file): Add TRASH arg.
849         (tramp-handle-dired-uncache): Flush directory cache, not only file
850         cache.
851         (tramp-handle-expand-file-name)
852         (tramp-completion-handle-file-name-all-completions)
853         (tramp-completion-handle-file-name-completion):
854         Use `tramp-connectable-p'.
855         (tramp-handle-start-file-process): Set connection property "vec".
856         Use it, in order to invalidate file caches.  Check only for
857         `remote-tty' process property.
858         Implement tty setting.  (Bug#4604, Bug#6360)
859         (tramp-file-name-for-operation): Add `call-process-region' and
860         `set-file-selinux-context'.
861         (tramp-find-foreign-file-name-handler)
862         (tramp-advice-make-auto-save-file-name)
863         (tramp-set-auto-save-file-modes): Remove superfluous check for
864         `stringp'.  This is done inside `tramp-tramp-file-p'.
865         (tramp-file-name-handler): Trace 'quit.  Catch the error for some
866         operations when we are in completion mode.  This gives the user
867         the chance to correct the file name in the minibuffer.
868         (tramp-completion-mode-p): Use `non-essential'.
869         (tramp-handle-file-name-all-completions): Backward/ XEmacs
870         compatibility: Use `completion-ignore-case' if
871         `read-file-name-completion-ignore-case' does not exist.
872         (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
873         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
874         `tramp-open-shell'.
875         (tramp-action-password): Hide password prompt before next run.
876         (tramp-process-actions): Widen connection buffer for the trace.
877         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
878         process property.  Trace stty settings if `tramp-verbose' >= 9.
879         Apply workaround for IRIX64 bug.  Move argument of last
880         `tramp-send-command' where it belongs to.
881         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
882         front of `login-args'.
883         (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
884         on "/dev/null" instead of "/".
885         (tramp-get-ls-command-with-dired): Make test for "--dired"
886         stronger.
887         (tramp-set-auto-save-file-modes): Adapt version check.
888         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
889         (tramp-handle-process-file): Call the program in a subshell, in
890         order to preserve working directory.
891         (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
892         `tramp-remote-sh' from `tramp-methods'.
893         (tramp-get-ls-command): Make test for "--color=never" stronger.
894         (tramp-check-for-regexp): Use (forward-line 1).
896         * net/trampver.el: Update release number.
898 2010-08-26  Magnus Henoch  <magnus.henoch@gmail.com>
900         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
901         empty argument to gvfs-copy.
903 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
905         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
906         handle new TRASH arg of `delete-file'.
908 2010-08-26  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
910         * net/tramp.el (tramp-handle-insert-directory): Don't use
911         `forward-word', its default syntax could be changed.
913 2010-08-26  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
914             Michael Albinus  <michael.albinus@gmx.de>
916         Implement compression for inline methods.
918         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
919         (tramp-copy-size-limit): Allow also nil.
920         (tramp-inline-compress-commands): New defconst.
921         (tramp-find-inline-compress, tramp-get-inline-compress)
922         (tramp-get-inline-coding): New defuns.
923         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
924         replaced by `tramp-get-inline-coding'.
925         (tramp-handle-file-local-copy, tramp-handle-write-region)
926         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
928 2010-08-26  Noah Lavine  <noah549@gmail.com>  (tiny change)
930         Detect ssh 'ControlMaster' argument automatically in some cases.
932         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
933         (tramp-default-method): Use it.
935 2010-08-26  Karel Klíč  <kklic@redhat.com>
937         * net/tramp.el (tramp-file-name-for-operation):
938         Add file-selinux-context.
940 2010-08-26  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
942         * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
944 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
946         * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
947         (Bug#6907).
949 2010-08-23  Chris Foote <chris@foote.com.au>  (tiny change)
951         * progmodes/python.el (python-block-pairs): Allow use of "finally"
952         with "else" (Bug#3991).
954 2010-08-22  Leo  <sdl.web@gmail.com>
956         * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
957         (ignore, bright, dim, keyword): Split list of nicknames before
958         passing to rcirc-add-or-remove (Bug#6894).
960 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
962         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
964 2010-08-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
966         * whitespace.el: Fix slow cursor movement (Bug#6172).  Reported by
967         Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
968         New version 13.0.
969         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
970         Adjust initialization.
971         (whitespace-bob-marker, whitespace-eob-marker)
972         (whitespace-buffer-changed): New vars.
973         (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
974         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
975         (whitespace-post-command-hook, whitespace-display-char-on):
976         Adjust code.
977         (whitespace-looking-back, whitespace-buffer-changed): New funs.
978         (whitespace-space-regexp, whitespace-tab-regexp): Eliminate funs.
980 2010-08-21  Leo  <sdl.web@gmail.com>
982         Fix buffer-list rename&refresh after killing a buffer in ido.
983         * lisp/ido.el: Revert Óscar's.
984         (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
985         Remember the buffers at head, rather than their name.
986         * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
988 2010-08-21  Kirk Kelsey  <kirk.kelsey@0x4b.net>  (tiny change)
989             Stefan Monnier  <monnier@iro.umontreal.ca>
991         * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
992         extra backslash added to each line (bug#6890).
994 2010-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
996         * subr.el (read-key): Don't echo keystrokes (bug#6883).
998 2010-08-21  Glenn Morris  <rgm@gnu.org>
1000         * menu-bar.el (menu-bar-games-menu): Add landmark.
1002 2010-08-20  Glenn Morris  <rgm@gnu.org>
1004         * align.el (align-regexp): Make group and spacing arguments
1005         use the interactive defaults when non-interactive.  (Bug#6698)
1007         * mail/rmail.el (rmail-forward): Replace mail-text-start with its
1008         expansion, so as not to need sendmail.
1009         (mail-text-start): Remove declaration.
1010         (rmail-retry-failure): Require sendmail.
1012 2010-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1014         * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
1016 2010-08-18  Michael Albinus  <michael.albinus@gmx.de>
1018         * progmodes/flymake.el (flymake-start-syntax-check-process):
1019         Use `start-file-process' in order to let it run also on remote hosts.
1021 2010-08-18  Kenichi Handa  <handa@m17n.org>
1023         * files.el: Add `word-wrap' as safe local variable.
1025 2010-08-18  Glenn Morris  <rgm@gnu.org>
1027         * woman.el (woman-translate): Case matters.  (Bug#6849)
1029 2010-08-14  Chong Yidong  <cyd@stupidchicken.com>
1031         * simple.el (kill-region): Doc fix (Bug#6787).
1033 2010-08-14  Glenn Morris  <rgm@gnu.org>
1035         * calendar/diary-lib.el (diary-header-line-format):
1036         Fit it to the window, not the frame.
1038 2010-08-11  Andreas Schwab  <schwab@linux-m68k.org>
1040         * subr.el (ignore-errors): Add debug declaration.
1042 2010-08-09  Geoff Gole  <geoffgole@gmail.com>  (tiny change)
1044         * whitespace.el (whitespace-color-off): Remove post-command-hook
1045         locally.
1047 2010-08-08  Johan Bockgård  <bojohan@gnu.org>
1049         * replace.el (replace-highlight): Bind isearch-forward and
1050         isearch-error, ensuring that highlighting is updated if the user
1051         switches the search direction (Bug#6808).
1053         * isearch.el (isearch-lazy-highlight-forward): New var.
1054         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
1055         (isearch-lazy-highlight-update): Use it.
1057 2010-08-06  Kenichi Handa  <handa@m17n.org>
1059         * international/mule.el (define-charset): Store NAME as :base property.
1060         (ctext-non-standard-encodings-table): Pay attention to charset aliases.
1061         (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
1062         current priority.  Force using the designation of the specific
1063         charset by adding `charset' text property.  Improve the whole
1064         algorithm.
1066 2010-08-05  Juanma Barranquero  <lekktu@gmail.com>
1068         * emulation/pc-select.el (pc-selection-mode-hook)
1069         (copy-region-as-kill-nomark, beginning-of-buffer-mark)
1070         (pc-selection-mode): Fix typos in docstrings.
1072 2010-08-04  Kenichi Handa  <handa@m17n.org>
1074         * language/cyrillic.el: Don't add "microsoft-cp1251" to
1075         ctext-non-standard-encodings-alist here.
1077         * international/mule.el (ctext-non-standard-encodings-alist):
1078         Add "koi8-r" and "microsoft-cp1251".
1079         (ctext-standard-encodings): New variable.
1080         (ctext-non-standard-encodings-table): List only elements for
1081         non-standard encodings.
1082         (ctext-pre-write-conversion): Adjust for the above change.
1083         Check ctext-standard-encodings.
1085         * international/mule-conf.el (compound-text): Doc fix.
1086         (ctext-no-compositions): Doc fix.
1087         (compound-text-with-extensions): Doc fix.
1089 2010-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
1091         * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
1093 2010-08-03  Juanma Barranquero  <lekktu@gmail.com>
1095         * progmodes/which-func.el (which-func-format): Split help-echo text
1096         into lines, like other mode-line tooltips.
1098         * server.el (server-start): When using TCP sockets, force IPv4
1099         and use a literal 127.0.0.1 for localhost.  (Related to bug#6781.)
1101 2010-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1103         * bindings.el (complete-symbol): Run completion-at-point as a fallback.
1105 2010-08-02  Juanma Barranquero  <lekktu@gmail.com>
1107         * term.el (term-delimiter-argument-list): Reflow docstring.
1108         (term-read-input-ring, term-write-input-ring, term-send-input)
1109         (term-bol, term-erase-in-display, serial-supported-or-barf):
1110         Fix typos in docstrings.
1112 2010-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1114         * bindings.el (function-key-map): Add a S-tab => backtab fallback.
1116 2010-08-01  Juanma Barranquero  <lekktu@gmail.com>
1118         * dabbrev.el (dabbrev-completion): Fix typo in docstring.
1120 2010-08-01  MON KEY  <monkey@sandpframing.com>  (tiny change)
1122         * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
1123         Fix typo in docstring (bug#6747).
1125 2010-07-30  Leo  <sdl.web@gmail.com>
1127         * eshell/esh-io.el (eshell-get-target): Better detection of
1128         read-only file (Bug#6762).
1130 2010-07-30  Juanma Barranquero  <lekktu@gmail.com>
1132         * align.el (align-default-spacing): Doc fix.
1133         (align-region-heuristic, align-regexp): Fix typos in docstrings.
1135 2010-07-23  Juanma Barranquero  <lekktu@gmail.com>
1137         * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
1139 2010-07-19  Juanma Barranquero  <lekktu@gmail.com>
1141         * time.el (display-time-day-and-date): Remove spurious * in docstring.
1142         (display-time-world-buffer-name, display-time-world-mode-map):
1143         Fix typos in docstrings.
1145 2010-07-17  Shyam Karanatt  <shyam@swathanthran.in>  (tiny change)
1147         * image-mode.el (image-display-size): New function.
1148         (image-forward-hscroll, image-next-line, image-eol, image-eob)
1149         (image-mode-fit-frame): Use it (Bug#6639).
1151 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
1153         * dired.el (dired-buffers-for-dir): Handle list values of
1154         dired-directory (Bug#6636).
1156 2010-07-16  Reiner Steib  <Reiner.Steib@gmx.de>
1158         * vc.el (vc-coding-system-inherit-eol): New defvar.
1159         (vc-coding-system-for-diff): Use it to decide whether to inherit
1160         from the file the EOL format for reading the diffs of that file.
1161         (Bug#4451)
1163 2010-07-16  Eli Zaretskii  <eliz@gnu.org>
1165         * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
1166         unibyte, so compressed attachments are not compressed again.
1168 2010-07-14  Jan Djärv  <jan.h.d@swipnet.se>
1170         * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
1171         now that unicode is used (Bug#6594).
1173 2010-07-14  Chong Yidong  <cyd@stupidchicken.com>
1175         * simple.el (push-mark-command): Set the selection if
1176         select-active-regions is non-nil.
1178 2010-07-10  Glenn Morris  <rgm@gnu.org>
1180         * calendar/calendar.el (calendar-week-end-day): New function.
1181         * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
1182         Respect calendar-week-start-day.  (Bug#6606)
1183         (cal-tex-insert-day-names, cal-tex-insert-blank-days)
1184         (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
1185         (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
1186         respect calendar-week-start-day.
1188 2010-07-10  Chong Yidong  <cyd@stupidchicken.com>
1190         * simple.el (use-region-p): Doc fix (Bug#6607).
1192 2010-07-07  Christoph Scholtes  <cschol2112@gmail.com>
1194         * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
1195         builtins (BufferError, BytesWarning, WindowsError; callables
1196         bin, bytearray, bytes, format, memoryview, next, print; __package__).
1198 2010-07-07  Glenn Morris  <rgm@gnu.org>
1200         * play/zone.el (zone-fall-through-ws): Fix next-line ->
1201         forward-line fallout.
1203 2010-07-06  Chong Yidong  <cyd@stupidchicken.com>
1205         * mouse.el (mouse-appearance-menu): Add docstring.
1207         * help.el (describe-key): Print up-event using key-description.
1209 2010-07-03  Michael Albinus  <michael.albinus@gmx.de>
1211         * net/zeroconf.el (zeroconf-resolve-service)
1212         (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
1213         (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
1215 2010-07-03  Jan Moringen  <jan.moringen@uni-bielefeld.de>
1217         * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
1219 2010-06-30  Dan Nicolaescu  <dann@ics.uci.edu>
1221         Avoid displaying files with a nil state in vc-dir.
1222         * vc-dir.el (vc-dir-update): Obey the noinsert argument in all
1223         cases that cause insertion.
1224         (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
1225         with a nil state.
1227 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
1229         * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
1231 2010-06-29  Leo  <sdl.web@gmail.com>
1233         * emacs-lisp/rx.el (rx): Doc fix.  (Bug#6537)
1235 2010-06-27  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
1237         * generic-x.el (bat-generic-mode): Fix regexp for command line
1238         switches (Bug#5719).
1240 2010-06-27  Masatake YAMATO  <yamato@redhat.com>
1242         * htmlfontify.el (hfy-face-attr-for-class): Use append instead
1243         of nconc to avoid pure storage error (Bug#6239).
1245 2010-06-27  Christoph  <cschol2112@googlemail.com>  (tiny change)
1247         * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
1248         (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
1249         bindings of bookmark-automatically-show-annotations (Bug#6515).
1251 2010-06-25  Eli Zaretskii  <eliz@gnu.org>
1253         * arc-mode.el (archive-zip-extract): Don't quote the file name on
1254         MS-Windows and MS-DOS.  (Bug#6467, Bug#6144)
1256 2010-06-24  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
1258         * comint.el (make-comint, make-comint-in-buffer): Mention return
1259         value in the docstrings.  (Bug#6498)
1261 2010-06-24  Yoni Rabkin  <yoni@rabkins.net>
1263         * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
1264         since it is not present when using some non-default switches.
1266 2010-06-23  Karl Fogel  <kfogel@red-bean.com>
1268         * simple.el (compose-mail): Fix doc string to refer to
1269         `compose-mail-user-agent-warnings', instead of to the
1270         nonexistent `compose-mail-check-user-agent'.
1272 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
1274         Fix vc-annotate for renamed files when using Git.
1275         * vc-git.el (vc-git-find-revision): Deal with empty results from
1276         ls-files.  Doe not pass the object as a file name to cat-file, it
1277         is not a file name.
1278         (vc-git-annotate-command): Pass the file name using -- to avoid
1279         ambiguity with the revision.
1280         (vc-git-previous-revision): Pass a relative file name.
1282 2010-06-22  Glenn Morris  <rgm@gnu.org>
1284         * progmodes/js.el (js-mode-map): Use standard capitalization and
1285         ellipses for menu entries.
1287         * wid-edit.el (widget-complete): Doc fix.
1289 2010-06-22  Jürgen Hötzel  <juergen@hoetzel.info>  (tiny change)
1291         * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
1293 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
1295         Fix annotating other revisions for renamed files in vc-annotate.
1296         * vc-annotate.el (vc-annotate): Add an optional argument for the
1297         VC backend.  Use it when non-nil.
1298         (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.  (Bug#6487)
1300         Fix vc-annotate-show-changeset-diff-revision-at-line for git.
1301         * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
1302         Do not pass the file name to the 'previous-revision call when we
1303         don't want a file diff.  (Bug#6489)
1305 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
1307         Fix finding revisions for renamed files in vc-annotate.
1308         * vc.el (vc-find-revision): Add an optional argument for
1309         the VC backend.  Use it when non-nil.
1310         * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
1311         backend to vc-find-revision.  (Bug#6487)
1313 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
1315         Fix reading file names in Git annotate buffers.
1316         * vc-git.el (vc-git-annotate-extract-revision-at-line):
1317         Remove trailing whitespace.  Suggested by Eric Hanchrow.  (Bug#6481)
1319 2010-06-20  Alan Mackenzie  <acm@muc.de>
1321         * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
1322         in file local variables, set it first.
1324 2010-06-19  Glenn Morris  <rgm@gnu.org>
1326         * descr-text.el (describe-char-unicode-data): Insert separating
1327         space when needed.  (Bug#6422)
1329         * progmodes/idlwave.el (idlwave-action-and-binding):
1330         Fix typo in 2009-12-03 change.  (Bug#6450)
1332 2010-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1334         * subr.el (read-quoted-char): Fix up last change (bug#6290).
1336 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1338         * font-lock.el (font-lock-major-mode): Rename from
1339         font-lock-mode-major-mode to distinguish it from
1340         global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
1341         (font-lock-set-defaults):
1342         * font-core.el (font-lock-default-function): Adjust users.
1343         (font-lock-mode): Don't set it at all.
1345 2010-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1347         * vc-annotate.el (vc-annotate): Use vc-read-revision.
1349 2010-06-15  Glenn Morris  <rgm@gnu.org>
1351         * calendar/appt.el (appt-time-msg-list): Doc fix.
1352         (appt-check): Let-bind appt-warn-time.
1353         (appt-add): Make the 3rd argument optional.
1354         Simplify argument names.  Doc fix.  Check for integer WARNTIME.
1355         Only add WARNTIME to the output list if non-nil.
1357 2010-06-15  Ivan Kanis  <apple@kanis.eu>
1359         * calendar/appt.el (appt-check): Let the 3rd element of
1360         appt-time-msg-list specify the warning time.
1361         (appt-add): Add new argument with the warning time.  (Bug#5176)
1363 2010-06-12  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
1365         * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
1366         older than version 1.6.  (Bug#6361)
1368 2010-06-12  Helmut Eller  <eller.helmut@gmail.com>
1370         * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
1371         used by cl-do-arglist.  (Bug#6408)
1373 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1375         * emacs-lisp/advice.el (ad-compile-function):
1376         Define warning-suppress-types before we let-bind it (bug#6275).
1378         * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
1379         declare it, make it buffer-local and permanent-local (bug#6324).
1380         (vc-resynch-window): Adjust name.
1381         * vc-hooks.el (vc-find-file-hook): Adjust name.
1383 2010-06-07  Jonathan Rockway  <jon@jrock.us>
1385         * net/rcirc.el: Add support for password authentication.
1386         (rcirc-server-alist): Add :password keyword.
1387         (rcirc): Ask for a password, or get it from the server's alist.
1388         (rcirc-connect): Add password argument.  Pass it to server.
1390 2010-06-05  Juanma Barranquero  <lekktu@gmail.com>
1392         * net/dbus.el (dbus-register-method): Declare function.
1393         (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
1394         (dbus-introspect): Doc fix.
1395         (dbus-event-bus-name, dbus-introspect-get-interface)
1396         (dbus-introspect-get-argument): Reflow docstrings.
1398 2010-06-04  Chong Yidong  <cyd@stupidchicken.com>
1400         * term/common-win.el (x-colors): Add "dark green" and "dark
1401         turquoise" (Bug#6332).
1403 2010-06-03  Glenn Morris  <rgm@gnu.org>
1405         * desktop.el (desktop-clear-preserve-buffers):
1406         Add "*Warnings*" buffer.  (Bug#6336)
1408 2010-06-02  Dan Nicolaescu  <dann@ics.uci.edu>
1410         * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
1412 2010-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1414         * vc-bzr.el (vc-bzr-revision-completion-table): Apply
1415         `file-directory-p' to the filename part rather than to the whole text.
1417 2010-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1419         * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
1421 2010-05-31  Drew Adams  <drew.adams@oracle.com>
1423         * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
1425 2010-05-31  Juanma Barranquero  <lekktu@gmail.com>
1427         * subr.el (momentary-string-display): Just use read-event to read
1428         the exit event (Bug#6238).
1430 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
1432         * ansi-color.el: Delete unused escape sequences (Bug#6085).
1433         (ansi-color-drop-regexp): New constant.
1434         (ansi-color-apply, ansi-color-filter-region)
1435         (ansi-color-apply-on-region): Delete unrecognized control sequences.
1436         (ansi-color-apply): Build string list before calling concat.
1438 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
1440         * progmodes/verilog-mode.el (verilog-type-font-keywords):
1441         Use font-lock-constant-face, not obsolete font-lock-reference-face.
1443 2010-05-27  Masatake YAMATO  <yamato@redhat.com>
1445         * htmlfontify.el (hfy-face-resolve-face): New function.
1446         (hfy-face-to-style): Use it (Bug#6279).
1448 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1450         * epa.el (epa--select-keys): Don't explicitly delete the window since
1451         that can fail (e.g. sole window in frame).  Use dedication instead.
1453 2010-05-19  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
1455         * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
1457 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1459         * subr.el (read-quoted-char): Resolve modifiers after key
1460         remapping (bug#6212).
1462 2010-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1464         * tmm.el (tmm-prompt): Don't try to precompute bindings.
1465         (tmm-get-keymap): Compute shortcuts (bug#6171).
1467 2010-05-10  Glenn Morris  <rgm@gnu.org>
1469         * desktop.el (desktop-save-buffer-p): Don't mistakenly include
1470         all dired buffers, even tramp ones.  (Bug#5755)  [Backport from trunk]
1472 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
1474         * Version 23.2 released.
1476 2010-05-03  Chong Yidong  <cyd@stupidchicken.com>
1478         * international/mule.el (auto-coding-alist): Only purecopy
1479         car of each item, not the whole list (Bug#6083).
1481 2010-05-02  Chong Yidong  <cyd@stupidchicken.com>
1483         * progmodes/js.el (js-mode): Make paragraph variables local before
1484         calling c-setup-paragraph-variables (Bug#6071).
1486 2010-05-01  Eli Zaretskii  <eliz@gnu.org>
1488         * composite.el (compose-region, reference-point-alist): Fix typos
1489         in the doc strings.
1491 2010-04-28  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
1493         * calc/calc-graph.el (calc-graph-plot): Use the proper form for
1494         gnuplot's "set" command.
1496 2010-04-26  Juanma Barranquero  <lekktu@gmail.com>
1498         * abbrev.el (last-abbrev-text): Doc fix.
1499         (abbrev-prefix-mark): Don't escape parenthesis.
1501 2010-04-24  Andreas Schwab  <schwab@linux-m68k.org>
1503         * composite.el (find-composition): Doc fix.
1505 2010-04-24  Juanma Barranquero  <lekktu@gmail.com>
1507         * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
1508         (sql-oracle-program, sql-sqlite-options)
1509         (sql-query-placeholders-and-send): Doc fixes.
1510         (sql-set-product, sql-interactive-mode): Reflow docstrings.
1511         (sql-imenu-generic-expression, sql-buffer)
1512         (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
1513         (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
1514         (sql-mode-sybase-font-lock-keywords)
1515         (sql-mode-informix-font-lock-keywords)
1516         (sql-mode-interbase-font-lock-keywords)
1517         (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
1518         (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
1519         (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
1520         (sql-product-feature, sql-highlight-product)
1521         (comint-line-beginning-position, sql-rename-buffer)
1522         (sql-toggle-pop-to-buffer-after-send-region)
1523         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
1524         (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
1525         Fix typos in docstrings.
1527 2010-04-23  Juri Linkov  <juri@jurta.org>
1529         * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
1530         property instead of `invisible' and `after-string' (bug#5998).
1532 2010-04-23  Juri Linkov  <juri@jurta.org>
1534         * image-mode.el (image-mode-as-text): Fix typo in docstring.
1536 2010-04-23  Juanma Barranquero  <lekktu@gmail.com>
1538         * filecache.el (file-cache-add-directory-list)
1539         (file-cache-add-directory-recursively): Fix typos in docstrings.
1541 2010-04-22  Kenichi Handa  <handa@m17n.org>
1543         * language/indian.el (gurmukhi-composable-pattern): Fix typo.
1544         (gujarati-composable-pattern): Fix typo.
1546 2010-04-20  Kenichi Handa  <handa@m17n.org>
1548         * language/indian.el (oriya-composable-pattern)
1549         (tamil-composable-pattern, malayalam-composable-pattern):
1550         Add two-part vowels to "v" (vowel sign).
1552 2010-04-20  Chong Yidong  <cyd@stupidchicken.com>
1554         * files.el (copy-directory): Handle symlinks (Bug#5982).
1556         * progmodes/compile.el (compilation-next-error-function):
1557         Revert 2009-10-12 change (Bug#5983).
1559 2010-04-20  Dan Nicolaescu  <dann@ics.uci.edu>
1561         * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
1562         (vc-hg-working-revision): Likewise.  Use hg parents, not hg parent
1563         (Bug#5846).
1565 2010-04-20  Glenn Morris  <rgm@gnu.org>
1567         * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
1569         * minibuffer.el (completion-at-point): Doc fix.
1571 2010-04-17  Dan Nicolaescu  <dann@ics.uci.edu>
1573         Fix the version number for added files.
1574         * vc-hg.el (vc-hg-working-revision): Check if the file is
1575         registered after hg parent fails (Bug#5961).
1577 2010-04-17  Glenn Morris  <rgm@gnu.org>
1579         * htmlfontify.el (htmlfontify-buffer)
1580         (htmlfontify-copy-and-link-dir): Autoload entry points.
1582 2010-04-17  Magnus Henoch  <magnus.henoch@gmail.com>
1584         * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
1585         name relative to the project root (Bug#5960).
1587 2010-04-16  Glenn Morris  <rgm@gnu.org>
1589         * vc-git.el (vc-git-print-log): Doc fix.
1591 2010-04-14  Óscar Fuentes  <ofv@wanadoo.es>
1593         * ido.el (ido-file-internal): Fix 2009-12-02 change.
1595 2010-04-14  Christoph  <cschol2112@googlemail.com>  (tiny change)
1597         * progmodes/grep.el (grep-compute-defaults): Fix handling of host
1598         default settings (Bug#5928).
1600 2010-04-10  Glenn Morris  <rgm@gnu.org>
1602         * progmodes/fortran.el (fortran-match-and-skip-declaration):
1603         New function.
1604         (fortran-font-lock-keywords-3): Use it.  (Bug#1385)
1606 2010-04-07  Kenichi Handa  <handa@m17n.org>
1608         * language/indian.el (malayalam-composable-pattern): Fix previous
1609         change (add U+0D4D "SIGN VIRAMA").
1610         (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
1611         (tamil-composable-pattern): Fix typo in the regexp.
1612         (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
1613         (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
1614         (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
1616 2010-04-06  Chong Yidong  <cyd@stupidchicken.com>
1618         * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
1619         paragraph-separate (Bug#5821).
1621 2010-04-05  Juri Linkov  <juri@jurta.org>
1623         Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
1625         * info.el (Info-find-node-2): Comment out code that skips
1626         breadcrumbs line.
1627         (Info-mouse-follow-link): New command.
1628         (Info-link-keymap): New keymap.
1629         (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
1630         Return a string with links instead of inserting breadcrumbs
1631         to the Info buffer.
1632         (Info-fontify-node): Comment out code that inserts breadcrumbs.
1633         Instead of putting the `invisible' text property over the Info
1634         header, make an overlay over the Info header with the `invisible'
1635         property and `after-string' set to the string returned by
1636         `Info-breadcrumbs'.
1638 2010-04-03  Chong Yidong  <cyd@stupidchicken.com>
1640         * help.el (help-window-setup-finish): Doc fix (Bug#5830).
1641         Reported by monkey@sandpframing.com.
1643 2010-03-30  Tomas Abrahamsson  <tab@lysator.liu.se>
1645         * textmodes/artist.el (artist-mode): Fix typo in docstring.
1646         Reported by Alex Schröder <kensanata@gmail.com>.  (Bug#5807)
1648 2010-03-30  Kenichi Handa  <handa@m17n.org>
1650         * language/sinhala.el (composition-function-table): Fix regexp for
1651         the new Unicode specification.
1653         * language/indian.el (devanagari-composable-pattern)
1654         (tamil-composable-pattern, kannada-composable-pattern)
1655         (malayalam-composable-pattern): Adjust for the new Unicode
1656         specification.
1657         (bengali-composable-pattern, gurmukhi-composable-pattern)
1658         (gujarati-composable-pattern, oriya-composable-pattern)
1659         (telugu-composable-pattern): New variables to cope with the new
1660         Unicode specification.  Use them in composition-function-table.
1662 2010-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1664         Make tmm-menubar work for the Buffers menu again (bug#5726).
1665         * tmm.el (tmm-prompt): Also handle keymap entries in the form of
1666         vectors rather than cons cells, as used in menu-bar-update-buffers.
1668 2010-03-28  Chong Yidong  <cyd@stupidchicken.com>
1670         * progmodes/js.el (js-auto-indent-flag, js-mode-map)
1671         (js-insert-and-indent): Revert 2009-08-15 change, restoring
1672         electric punctuation for "{}();,:" (Bug#5586).
1674         * mail/sendmail.el (mail-default-directory): Doc fix.
1676 2010-03-27  Chong Yidong  <cyd@stupidchicken.com>
1678         * mail/sendmail.el (mail-default-directory): Doc fix.
1680 2010-03-27  Eli Zaretskii  <eliz@gnu.org>
1682         * subr.el (version-regexp-alist, version-to-list)
1683         (version-list-<, version-list-=, version-list-<=)
1684         (version-list-not-zero, version<, version<=, version=): Doc fix.
1685         (Bug#5744).
1687 2010-03-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1688             Nick Roberts  <nickrob@snap.net.nz>
1690         * progmodes/gdb-ui.el (gdb-apple-test): New function.
1691         (gdb-init-1): Use it.
1693 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
1695         * vc.el (vc-root-diff): Doc fix.
1697 2010-03-25  Chong Yidong  <cyd@stupidchicken.com>
1699         * vc.el (vc-print-log, vc-print-root-log): Doc fix.
1701         * simple.el (append-to-buffer): Fix last change.
1703 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
1705         * simple.el (append-to-buffer): Ensure that point is preserved if
1706         BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
1707         (Bug#5749)
1709 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1711         * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
1712         (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
1713         not be present any more.
1715 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1717         * faces.el (set-face-attribute): Fix typo in docstring.
1718         (face-valid-attribute-values): Reflow docstring.
1720 2010-03-23  Glenn Morris  <rgm@gnu.org>
1722         * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
1724 2010-03-21  Chong Yidong  <cyd@stupidchicken.com>
1726         * indent.el (indent-for-tab-command): Doc fix.
1728 2010-03-22  Juanma Barranquero  <lekktu@gmail.com>
1730         * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
1731         (image-dired-read-comment): Doc fix.
1733         * json.el (json-object-type, json-array-type, json-key-type)
1734         (json-false, json-null, json-read-number):
1735         * minibuffer.el (completion-in-region-functions):
1736         * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
1737         (cal-tex-cursor-week):
1738         * emacs-lisp/trace.el (trace-function):
1739         * eshell/em-basic.el (eshell/printnl):
1740         * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
1741         (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
1742         * obsolete/levents.el (allocate-event, event-key, event-object)
1743         (event-point, event-process, event-timestamp, event-to-character)
1744         (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
1745         * textmodes/reftex-vars.el (reftex-index-macros-builtin)
1746         (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
1747         (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
1748         (reftex-highlight-selection): Fix typos in docstrings.
1750 2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
1752         * minibuffer.el (completion-in-region-functions): Fix docstring typos.
1754 2010-03-18  Glenn Morris  <rgm@gnu.org>
1756         * mail/rmail.el (rmail-highlight-face): Restore option deleted
1757         2008-02-13 without comment; mark it obsolete.
1758         (rmail-highlight-headers): Use rmail-highlight-face once more.
1760 2010-03-16  Chong Yidong  <cyd@stupidchicken.com>
1762         * woman.el (woman2-process-escapes): Only consume the newline if
1763         the filler character is on a line by itself (Bug#5729).
1765 2010-03-16  Kenichi Handa  <handa@m17n.org>
1767         * language/indian.el (devanagari-composable-pattern): Add more
1768         consonants.
1770 2010-03-14  Michael Albinus  <michael.albinus@gmx.de>
1772         * net/trampver.el: Update release number.
1774 2010-03-13  Glenn Morris  <rgm@gnu.org>
1776         * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
1778 2010-03-13  Michael Albinus  <michael.albinus@gmx.de>
1780         * net/tramp.el (tramp-find-executable):
1781         Use `tramp-get-connection-buffer'.  Make the regexp for checking
1782         output of "wc -l" more robust.
1783         (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
1784         (tramp-open-connection-setup-interactive-shell): Remove workaround
1785         for OpenSolaris bug, it is not needed anymore.
1787 2010-03-12  Glenn Morris  <rgm@gnu.org>
1789         * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie.  (Bug#4427)
1791 2010-03-11  Wilson Snyder  <wsnyder@wsnyder.org>
1793         * files.el (auto-mode-alist): Accept more verilog file patterns.
1795 2010-03-09  Miles Bader  <miles@gnu.org>
1797         * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
1798         instead of "format:"; this ensures that the output is
1799         newline-terminated.
1801 2010-03-08  Chong Yidong  <cyd@stupidchicken.com>
1803         * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
1804         that all errors are caught, and that the return value is always a
1805         list (Bug#5692).
1807 2010-03-08  Kenichi Handa  <handa@m17n.org>
1809         * language/misc-lang.el (windows-1256): New coding system.
1810         (cp1256): New alias of windows-1256 (bug#5690).
1812 2010-03-07  Andreas Schwab  <schwab@linux-m68k.org>
1814         * mail/rfc822.el (rfc822-addresses): Move catch clause down around
1815         call to rfc822-bad-address.  (Bug#5692)
1817 2010-03-07  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
1819         * vc-git.el (vc-git-annotate-extract-revision-at-line):
1820         Use vc-git-root as default directory for revision path (Bug#5657).
1822 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
1824         * calculator.el (calculator): Don't bind split-window-keep-point
1825         (Bug#5674).
1827 2010-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1829         * vc-git.el: Re-flow to fit into 80 columns.
1830         (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
1831         Remove spurious `quote' element in each case alternative.
1832         (vc-git-show-log-entry): Use prog1.
1833         (vc-git-after-dir-status-stage): Remove unused var `remaining'.
1835 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1837         * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
1839 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
1841         * macros.el (insert-kbd-macro): Look up keyboard macro using the
1842         definition, not the name (Bug#5481).
1844 2010-03-03  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
1846         * subr.el (momentary-string-display): Don't overwrite the MESSAGE
1847         argument with a local variable.  (Bug#5670)
1849 2010-03-02  Juri Linkov  <juri@jurta.org>
1851         * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
1853 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
1855         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
1856         error when FILENAME and NEWNAME are existing remote directories.
1858         * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
1859         parameter DIR-FLAG.
1861 2010-03-02  Glenn Morris  <rgm@gnu.org>
1863         * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
1864         of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
1866 2010-03-01  Kenichi Handa  <handa@m17n.org>
1868         * language/burmese.el (burmese-composable-pattern): Rename from
1869         myanmar-composable-pattern.
1871         * international/characters.el (script-list):
1872         * international/fontset.el (script-representative-chars):
1873         Change myanmar to burmese.
1874         (otf-script-alist): Likewise.
1875         (setup-default-fontset): Likewise.  Re-fix :otf spec.
1877 2010-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1879         * menu-bar.el (menu-bar-manuals-menu): Fix typo.
1881 2010-02-28  Jan Djärv  <jan.h.d@swipnet.se>
1883         * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
1885 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
1887         * net/tramp.el (tramp-handle-write-region): START can be a string.
1888         Take care in the checks.  Reported by Dan Davison
1889         <davison@stats.ox.ac.uk>.
1891 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
1893         * net/dbus.el (dbus-introspect, dbus-get-property)
1894         (dbus-set-property, dbus-get-all-properties): Use
1895         `dbus-call-method' when noninteractive.  (Bug#5645)
1897 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
1899         * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
1900         * emacs-lisp/elint.el (elint-add-required-env):
1901         * calendar/icalendar.el (icalendar--add-diary-entry):
1902         * calc/calcalg2.el (math-tracing-integral):
1903         * files.el (recover-session-finish): Use with-current-buffer
1904         instead of save-excursion.
1906 2010-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1908         Fix in-buffer completion when after-change-functions modify the buffer.
1909         * minibuffer.el (completion--replace): New function.
1910         (completion--do-completion): Use it and use relative movement.
1912 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
1914         * international/fontset.el (setup-default-fontset): Fix :otf spec.
1916 2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
1918         * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
1919         Allow the characters _<> in the stack entry (Bug#5653).
1921 2010-02-26  Kenichi Handa  <handa@m17n.org>
1923         * language/burmese.el: Fix entries in composition-function-table.
1924         (myanmar-composable-pattern): New variable.
1926         * international/fontset.el (setup-default-fontset): Add an entry
1927         for myanmar.
1929         * international/characters.el (script-list): Add Myanmar
1930         Extended-A.
1932 2010-02-26  Glenn Morris  <rgm@gnu.org>
1934         * custom.el (custom-initialize-delay): Doc fix.
1936         * mail/sendmail.el (send-mail-function): Autoload the call
1937         to custom-initialize-delay, not otherwise preserved in loaddefs.el.
1939 2010-02-24  Chong Yidong  <cyd@stupidchicken.com>
1941         * files.el (hack-local-variables-filter): For eval forms, also
1942         check safe-local-variable-p (Bug#5636).
1944 2010-02-24  Eduard Wiebe  <usenet@pusto.de>
1946         * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
1947         and use c(ad)r of cddr (Bug#5640).
1949 2010-02-22  Michael Albinus  <michael.albinus@gmx.de>
1951         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
1952         setting the modes by `ignore-errors'.  It might fail, for example
1953         if the file is not owned by the user but the group.
1954         (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
1956 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
1958         * files.el (directory-listing-before-filename-regexp): Use
1959         stricter matching for iso-style dates, to avoid false matches with
1960         date-like filenames (Bug#5597).
1962         * htmlfontify.el (htmlfontify): Doc fix.
1964         * eshell/eshell.el (eshell): Doc fix.
1966         * startup.el (fancy-about-screen): In mode-line, apply
1967         mode-line-buffer-id face only to the buffer name (Bug#5613).
1969 2010-02-20  Kevin Ryde  <user42@zip.com.au>
1971         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1972         In `watcom' anchor regexp to start of line, to avoid slowness
1973         (Bug#5599).
1975 2010-02-20  Eli Zaretskii  <eliz@gnu.org>
1977         * subr.el (remove-yank-excluded-properties): Explain in a comment
1978         why `category' property is removed.
1980 2010-02-19  Chong Yidong  <cyd@stupidchicken.com>
1982         * isearch.el (isearch-update-post-hook, isearch-update): Revert
1983         2010-02-17 change.
1985 2010-02-19  Ulf Jasper  <ulf.jasper@web.de>
1987         * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
1988         (icalendar--convert-weekly-to-ical)
1989         (icalendar--convert-yearly-to-ical)
1990         (icalendar--convert-block-to-ical)
1991         (icalendar--convert-cyclic-to-ical)
1992         (icalendar--convert-anniversary-to-ical): Take care of time
1993         specifications where hour has 1-digit only (Bug#5549).
1995 2010-02-19  Nick Roberts  <nickrob@snap.net.nz>
1997         * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
1998         of disassemble output in GDB 7.1.
2000 2010-02-19  Glenn Morris  <rgm@gnu.org>
2002         * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
2003         property.  (Bug#5593)
2005 2010-02-18  Sam Steingold  <sds@gnu.org>
2007         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
2009 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2011         Use abbreviated file names in bookmarks (bug#5591).
2012         * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
2013         calls to expand-file-name.
2014         (bookmark-relocate): Use abbreviated file names in bookmarks.
2015         (bookmark-load): Use abbreviated file names in messages.
2017 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
2019         * net/tramp.el (tramp-handle-directory-files): When FULL, do not
2020         expand "." and "..".  Reported by Thierry Volpiatto
2021         <thierry.volpiatto@gmail.com>.
2023 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
2025         * net/tramp.el (tramp-handle-insert-file-contents): Set always the
2026         permissions of the temporary file to "0600".  In case the remote
2027         file has no read permissions for the owner, there might be
2028         problems otherwise.  Reported by Ole Laursen <olau@iola.dk>.
2030 22010-02-18  Glenn Morris  <rgm@gnu.org>
2032         * emacs-lisp/authors.el (authors-renamed-files-alist):
2033         Add entries for INSTALL.CVS.
2035 2010-02-17  Mark A. Hershberger  <mah@everybody.org>
2037         * vc-bzr.el: Fix typo in Known Bugs section.
2039         * isearch.el (isearch-update-post-hook): New hook.
2040         (isearch-update): Use the new hook.
2042 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
2044         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
2045         Fix errors in copying directories.
2046         (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
2047         (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
2048         (tramp-handle-delete-file)
2049         (tramp-handle-dired-recursive-delete-directory)
2050         (tramp-handle-write-region): Flush also the cache for the upper
2051         directory.
2053 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
2055         * simple.el (save-interprogram-paste-before-kill): Doc fix.
2057         * cus-edit.el (hardware): Doc fix.
2059         * man.el (man): Add to external custom group.
2061         * delim-col.el (columns): Move to wp custom group.
2063         * doc-view.el (doc-view): Add to data custom group.
2065         * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
2067         * textmodes/flyspell.el (flyspell-word): Obey the offset specified
2068         by ispell-parse-output (Bug#5575).
2070 2010-02-16  Kenichi Handa  <handa@m17n.org>
2072         * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
2073         (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
2074         (skkdic-convert): Use `euc-japan' coding system for writing.
2076 2010-02-16  Glenn Morris  <rgm@gnu.org>
2078         * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
2079         tex-main-file before using it.  (Bug#5562)
2081 2010-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2083         * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
2084         warnings, since it is annoying for the user to see them each time he
2085         runs the code.
2087 2010-02-15  Michael Albinus  <michael.albinus@gmx.de>
2089         * net/tramp.el (tramp-process-actions, tramp-read-passwd):
2090         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
2091         instead of PROC for caching "first-password-request".  Otherwise,
2092         new processes would not profit from passwords already entered.
2094         * net/tramp-cache.el (tramp-dump-connection-properties):
2095         Don't save "first-password-request" property.
2097 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
2099         * outline.el (outline-head-from-level):
2100         * simple.el (with-wrapper-hook):
2101         * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
2102         (elint-defun, elint-buffer-env, elint-top-form-logged)
2103         (elint-unbound-variable):
2104         * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
2105         Fix typos in docstrings.
2107 2010-02-14  Michael Albinus  <michael.albinus@gmx.de>
2109         * files.el (insert-directory): When WILDCARD-REGEXP and
2110         FULL-DIRECTORY-P are nil, insert the file entry instead of the
2111         whole directory.  (Bug#5551)
2113         * net/ange-ftp.el (ange-ftp-insert-directory): Insert "  " for
2114         dired's alignment sanity.  (Bug#5516)
2116 2010-02-14  Juri Linkov  <juri@jurta.org>
2118         * man.el (Man-fontify-manpage, Man-cleanup-manpage):
2119         Remove remaining ^H with their preceding chars.  (Bug#5566)
2121 2010-02-13  Glenn Morris  <rgm@gnu.org>
2123         * simple.el (transpose-subr): Give it a doc-string.
2125         * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
2126         Doc fixes.
2128 2010-02-12  Juri Linkov  <juri@jurta.org>
2130         * arc-mode.el (archive-unique-fname): Make directories for nested
2131         archives.  (Bug#5540)
2133 2010-02-12  Juri Linkov  <juri@jurta.org>
2135         * ffap.el (dired-at-point): Fix docstring.  (Bug#5565)
2137 2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2139         * subr.el (copy-overlay): Handle deleted overlays.
2141         * man.el (Man-completion-table): Don't signal an error if we can't run
2142         manual-program (bug#4056).
2144 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
2146         * textmodes/artist.el (artist-mt): Fix typos in docstring.
2148 2010-02-10  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2150         * info.el (Info-bookmark-jump): Simplify.
2152         * bookmark.el (bookmark-handle-bookmark): Catch the right error.
2153         (bookmark-default-handler): Accept new bookmark field `buffer'.
2155 2010-02-10  Chong Yidong  <cyd@stupidchicken.com>
2157         * iswitchb.el (iswitchb-completions): Revert last change.
2159 2010-02-10  Michael Albinus  <michael.albinus@gmx.de>
2161         * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
2162         FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
2163         This prevents file names like "~/" being listed literally.
2165 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
2167         * term/xterm.el (xterm-maybe-set-dark-background-mode):
2168         Remove dead code.  (Bug#5546)
2170 2010-02-09  Chong Yidong  <cyd@stupidchicken.com>
2172         * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
2173         correctly (Bug#5548).
2175 2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
2177         * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
2178         (ada-adjust-case): Don't adjust case in hexadecimal number literals.
2180 2010-02-08  Kenichi Handa  <handa@m17n.org>
2182         * international/mule-util.el (with-coding-priority): Add autoload
2183         cookie for putting `lisp-indent-function'.
2185 2010-02-07  Glenn Morris  <rgm@gnu.org>
2187         * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
2188         Move F2003 named interfaces from keywords-2 to keywords-1, and
2189         use function-name-face rather than constant-face.
2190         Simplify "abstract interface" regexp.
2192 2010-02-07  Chong Yidong  <cyd@stupidchicken.com>
2194         * eshell/esh-util.el (eshell-file-attributes): New optional arg
2195         ID-FORMAT.  Pass it to `file-attributes'.
2197         * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
2199 2010-02-07  sj  <prime.wizard+emacs@gmail.com>  (tiny change)
2201         * faces.el (set-face-attribute): Allow calling
2202         internal-set-lisp-face-attribute with 'unspecified family and
2203         foundry argument (Bug#5536).
2205 2010-02-07  Glenn Morris  <rgm@gnu.org>
2207         * progmodes/f90.el (f90-font-lock-keywords-2)
2208         (f90-looking-at-type-like, f90-looking-at-program-block-end):
2209         Handle F2003 named interfaces.
2211 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
2213         * progmodes/cc-mode.el (c-common-init): Bind temporary variables
2214         beg and end before calling c-get-state-before-change-functions.
2216 2010-02-06  Dan Nicolaescu  <dann@ics.uci.edu>
2218         * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
2220 2010-02-05  Juri Linkov  <juri@jurta.org>
2222         * doc-view.el (doc-view-mode):
2223         * image-mode.el (image-mode): Put property mode-class=special.
2224         (Bug#4896)
2226 2010-02-05  Mark A. Hershberger  <mah@everybody.org>
2228         * vc-svn.el (vc-svn-revision-table): New function.
2230 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
2232         * net/ange-ftp.el (ange-ftp-insert-directory):
2233         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2234         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2235         Handle also directories.  (Bug#5478)
2237 2010-02-05  Glenn Morris  <rgm@gnu.org>
2239         * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
2241 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
2243         * startup.el (command-line-1): Convert options beginning with a
2244         single dash as well (Bug#5519).
2246 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2248         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
2249         * minibuffer.el (completion-initials-expand): Only check the presence
2250         of delims *within* the boundaries, since otherwise the / delim is
2251         always found for files.
2253         Fix up various corner case problems.
2254         * doc-view.el (doc-view-last-page-number): New function.
2255         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
2256         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
2257         (doc-view-kill-proc): Avoid inf-loop in freak cases.
2258         (doc-view-reconvert-doc): Use the new recursive delete-directory.
2259         (doc-view-convert-current-doc): Don't create the resolution.el file
2260         here any more.
2261         (doc-view-pdf/ps->png): Do it here instead.
2262         (doc-view-already-converted-p): Check that resolution.el is present.
2263         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
2264         windows that are not yet showing images.
2266 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
2268         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
2269         `dired-uncache' for every elemnt which is an absolute file name.
2271         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
2272         directory, handle its directory component.
2273         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
2274         function is called permanently and creates noise, otherwise.
2276         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
2277         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
2278         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
2280 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
2282         * macros.el (apply-macro-to-region-lines):
2283         Minor simplification.  (Bug#5485)
2285 2010-02-04  Glenn Morris  <rgm@gnu.org>
2287         * mail/rmail.el (rmail-show-message-1): Handle malformed
2288         quoted-printable text.  (Bug#5441)
2290         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
2292         * simple.el (visual-line-mode): Capitalize lighter.
2294 2010-02-03  John Wiegley  <jwiegley@gmail.com>
2296         * iswitchb.el (iswitchb-completions): Add bookmark files to the
2297         list of files considered for "virtual buffer" completions.
2299 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
2301         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
2302         also in case of (and (not full) (not wildcard)). This is needed,
2303         when dired is called with a list of files, which are not in
2304         `default-directory'.  (Bug#5478)
2306 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2308         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
2310 2010-02-02  Juri Linkov  <juri@jurta.org>
2312         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
2313         from unidiff to allow function-line after @@.
2315 2010-02-02  Juri Linkov  <juri@jurta.org>
2317         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
2318         '(RCS SCCS) with inverted condition.
2320 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
2322         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
2323         messages.
2325 2010-02-01  Juri Linkov  <juri@jurta.org>
2327         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
2328         compare with "pkunzip" and "pkzip" instead of only "pkzip".
2329         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
2330         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
2332 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2334         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
2335         (doc-view-revert-buffer): New command.
2336         (doc-view-mode-map): Use it.
2338 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
2340         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
2341         pending merge is detected.
2343 2010-01-31  Juri Linkov  <juri@jurta.org>
2345         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
2346         beginning of interactive spec like all other grep commands do.
2347         Put "all" in front of "gz".  (Bug#5260)
2349 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
2351         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
2353 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
2355         * dirtrack.el (dirtrack): Warn instead of signalling error if the
2356         regexp is incorrect (Bug#5476).
2358 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
2360         * net/tramp.el (tramp-handle-insert-directory): Handle also
2361         symlinks, when FILENAME is not in `default-directory'.
2363 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
2365         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
2366         FILE is not in `default-directory'.  (Bug#5478)
2368         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
2369         of SWITCHES.  Handle the case, FILENAME is not in
2370         `default-directory'.  (Bug#5478)
2371         (tramp-register-file-name-handlers): Add safe-magic property.
2373 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
2375         * arc-mode.el (archive-zip-extract): Quote the argument passed to
2376         unzip (Bug#5475).
2378 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
2380         * progmodes/flymake.el (flymake-allowed-file-name-masks)
2381         (flymake-master-make-header-init): Add other C++ filename masks.
2382         (flymake-find-possible-master-files)
2383         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
2385 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
2387         Fix some busybox annoyances.
2389         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
2390         not responding." string.
2391         (tramp-open-connection-setup-interactive-shell): Dump stty
2392         settings.  Enable "neveropen" arg for all `tramp-send-command'
2393         calls.  Handle "=" in variable values properly.
2394         (tramp-find-inline-encoding): Raise an error, when no encoding is
2395         found.
2396         (tramp-wait-for-output): Check, whether PROC buffer is available.
2397         Remove spurious " ^H" sequences, sent by busybox.
2398         (tramp-get-ls-command): Suppress coloring, if possible.
2400 2010-01-28  Glenn Morris  <rgm@gnu.org>
2402         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
2404         * log-edit.el (log-edit-strip-single-file-name): Add missing
2405         :safe, :group, and :version tags.
2407 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
2409         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
2410         buffers.  (Bug#5477)
2412 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
2414         * files.el (delete-directory): Handle moving to trash without
2415         first doing recursion (Bug#5436).
2417 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
2419         * vc-hooks.el (vc-path): Mark as obsolete.
2421 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
2423         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
2424         names too.
2426         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
2427         for the short log.
2428         (vc-bzr-log-view-mode): Adjust regexp for the above change.
2430 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
2432         * progmodes/python.el: Replace reference to obsolete c-subword-mode.
2434         * vc-bzr.el (vc-bzr-revision-table): New function.
2436 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
2438         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
2439         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
2441 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
2443         Remove support for adding --signoff on commit.
2444         Future support will use an incompatible generic mechanism.
2445         * vc-git.el (vc-git-add-signoff): Remove variable.
2446         (vc-git-toggle-signoff): Remove function.
2447         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
2449         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
2450         from xterm-set-background-mode.  Return t if the background mode
2451         was set.
2452         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
2453         earlier, call it again in case the background mode has changed.
2455 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
2457         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
2458         (Bug#3541).
2460 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
2462         * emacs-lisp/assoc.el (aelement): Doc fix.
2463         (aput, adelete, amake): Use lexical-let (Bug#5450).
2465 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
2467         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
2468         is the same as subprogram call, not declaration.  (Bug#5435).
2470 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
2472         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
2473         (tramp-smb-maybe-open-connection): Use it.
2475 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
2477         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
2479 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2481         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
2482         just because we see "encoding: 8bit".
2483         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
2485 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
2487         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
2489 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
2491         * jka-compr.el (jka-compr-load): If load-file is not in
2492         load-history, try its file-truename version.  (bug#5447)
2494 2010-01-21  Alan Mackenzie  <acm@muc.de>
2496         Fix a situation where deletion of a cpp construct throws an error.
2497         * progmodes/cc-engine.el (c-invalidate-state-cache): Before
2498         invoking c-with-all-but-one-cpps-commented-out, check that the
2499         special cpp construct is still in the buffer.
2500         (c-parse-state): Record the special cpp with markers, not numbers.
2502 2010-01-21  Kenichi Handa  <handa@m17n.org>
2504         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
2505         process last-command-event, as it is now decoded first (Bug#5380).
2507 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
2509         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
2511 2010-01-20  Glenn Morris  <rgm@gnu.org>
2513         * indent.el (tab-always-indent): Fix custom-type.
2515 2010-01-19  Alan Mackenzie  <acm@muc.de>
2517         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
2518         buffer throws "args out of range".
2519         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
2520         playing the role of delimiter.
2522 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
2524         * progmodes/ada-mode.el: Fix bug#5400.
2525         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
2526         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
2527         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
2528         Improve comments in "is" portion.  Handle null procedure declaration.
2529         (ada-move-to-end): Improve doc string.
2531 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
2533         * ido.el (ido-cur-list): Initialize to nil.
2534         Remove obsolete information from commentary.
2535         (ido-choice-list): Initialize to nil.
2536         (ido-get-bufname): Reject minibuffers.
2537         (ido-make-buffer-list): If "default" is a nonexistent
2538         buffer, ignore it, as per the function's comment.
2539         (ido-kill-buffer-internal): New function.
2540         (ido-kill-buffer-at-head): Use it.
2541         (ido-visit-buffer): Likewise.
2543 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
2545         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
2547 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
2549         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
2550         Fix typos in chart titles.
2552         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
2553         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
2554         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
2555         (describe-class, eieio-describe-generic, describe-generic):
2556         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
2557         (eieio-speedbar-expand):
2558         * emulation/viper-cmd.el (viper-exec-form-in-vi)
2559         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
2560         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
2561         (viper-del-backward-char-in-replace, viper-backward-indent)
2562         (viper-brac-function, viper-register-to-point, viper-submit-report):
2563         * net/tramp.el (tramp-remote-coding-commands):
2564         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
2565         Fix typos in docstrings.
2567 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
2569         * mail/sendmail.el (mail-yank-original): Set the mark if the
2570         specified function for yanking does not do it.
2572 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
2574         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
2576         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
2577         resyncing a directory.
2579 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
2581         * progmodes/ada-mode.el: Fix bug#1920.
2582         (ada-ident-re): Delete ., allow multibyte characters.
2583         (ada-goto-label-re): New; matches goto labels.
2584         (ada-block-label-re): New; matches block labels.
2585         (ada-label-re): New; matches both.
2586         (ada-named-block-re): Deleted; callers changed to use
2587         `ada-block-label-re' instead.
2588         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
2589         Use `ada-block-label-re'.
2590         (ada-indent-on-previous-lines): Improve handling of goto labels.
2591         (ada-get-indent-block-start): Special-case block label.
2592         (ada-get-indent-label): Split into `ada-indent-block-label' and
2593         `ada-indent-goto-label'.
2594         (ada-goto-stmt-start, ada-goto-next-non-ws):
2595         Optionally ignore goto labels.
2596         (ada-goto-next-word): Simplify.
2597         (ada-indent-newline-indent-conditional): Insert newline before
2598         trying to fix indentation; doc fix.
2600 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
2602         * calc/calc.el (calc-command-flags): Give it an initial value.
2604 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
2606         * files.el (minibuffer-with-setup-hook):
2607         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
2608         (artist-key-draw-continously, artist-key-do-continously-continously)
2609         (artist-key-set-point-continously, artist-mouse-draw-continously):
2610         Fix typos in docstrings.
2612 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
2614         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
2615         return t (Bug#3898).
2617 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
2619         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
2620         can parse the output of the external commands (Bug#5279).
2622 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
2624         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
2626 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
2628         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
2630         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
2632         * startup.el (command-line): Remove unused --icon-type arg.
2633         Handle --display arg, passing it to command-line-1 (Bug#5392).
2635 2010-01-16  Mario Lang  <mlang@delysid.org>
2637         * emacs-lisp/chart.el (chart-translate-namezone):
2638         * textmodes/artist.el (artist-compute-popup-menu-table):
2639         Remove duplicated words in doc-strings.
2641 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
2643         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
2644         to mairix-search to suppress threading (Bug#5342).
2646 2010-01-15  Kenichi Handa  <handa@m17n.org>
2648         * international/mule-cmds.el (canonicalize-coding-system-name):
2649         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
2651 2010-01-15  Glenn Morris  <rgm@gnu.org>
2653         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
2655         * wid-edit.el (widget-keymap): Doc fix.
2657         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
2658         former seems to be more widely accepted by various svn versions.
2660 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
2662         * find-cmd.el (find-constituents):
2663         * vc-arch.el (vc-arch-root):
2664         * window.el (window-body-height, pop-up-frames):
2665         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
2666         * progmodes/ada-stmt.el (ada-if):
2667         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
2668         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
2669         (ispell-encoding8-command, ispell-aspell-supports-utf8)
2670         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
2672         * progmodes/flymake.el (flymake-post-syntax-check):
2673         Fix typo in error message.
2675 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
2677         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
2678         which is always a string.  (Bug#5313)
2680 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
2682         * progmodes/ada-xref.el (ada-default-prj-properties):
2683         Simplify previous change.
2685 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2687         * progmodes/ada-xref.el (ada-default-prj-properties):
2688         Default ada_project_path to $ADA_PROJECT_PATH.
2690 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2692         * progmodes/ada-mode.el (ada-create-keymap):
2693         Override `narrow-to-defun' with `ada-narrow-to-defun'.
2695 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2697         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
2698         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
2699         (ada-get-current-indent, ada-imenu-generic-expression)
2700         (ada-which-function): Check for it.
2702 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
2704         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
2705         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
2707 2010-01-14  Glenn Morris  <rgm@gnu.org>
2709         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
2711 2010-01-14  Kenichi Handa  <handa@m17n.org>
2713         * composite.el (auto-composition-mode): Make it a buffer local
2714         variable (permanent-local).
2715         (auto-composition-function): Set the default value to
2716         auto-compose-chars.
2717         (auto-composition-mode): Make it a simple function, not a minor mode.
2718         (global-auto-composition-mode): Likewise.
2719         (turn-on-auto-composition-if-enabled): Delete it.
2721 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
2723         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
2725 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
2727         * files.el (copy-directory): Compute target for recursive
2728         directories with identical names.  (Bug#5343)
2730 2010-01-12  Glenn Morris  <rgm@gnu.org>
2732         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
2733         it to bug-gnu-emacs rather than emacs-pretest-bug.
2735 2010-01-11  Sam Steingold  <sds@gnu.org>
2737         * imenu.el (imenu-default-create-index-function): Detect infinite
2738         loops caused by imenu-prev-index-position-function.
2740 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
2742         * htmlfontify.el (htmlfontify-load-rgb-file)
2743         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
2744         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
2745         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
2746         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
2747         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
2748         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
2749         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
2750         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
2751         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
2752         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
2753         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
2754         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
2755         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
2756         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
2757         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
2758         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
2759         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
2760         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
2761         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
2762         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
2763         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
2764         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
2765         backslash-quoting from parentheses, etc.
2767 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
2769         * progmodes/js.el: Autoload javascript-mode alias.
2771 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
2773         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
2774         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
2775         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
2776         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
2777         Fix typos in docstrings.
2778         (ffap-url-regexp): Doc fix.
2779         (ffap-at-mouse): Fix typo in message.
2781 2010-01-11  Glenn Morris  <rgm@gnu.org>
2783         * version.el (emacs-copyright): Set copyright year to 2010.
2785 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2787         * format.el (format-annotate-function): Only set
2788         write-region-post-annotation-function after running to-fn so as not to
2789         affect nested write-region calls (bug#5273).
2791 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
2793         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
2794         wisent/python.el.
2796 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
2798         * man.el (Man-goto-section): Signal error if the section is not
2799         found (Bug#5317).
2801 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
2803         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
2804         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
2806 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
2808         * progmodes/compile.el: Don't treat compile-command as safe if
2809         compilation-read-command might be nil (Bug#4218).
2811 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
2813         * startup.el (command-line-1): Use orig-argi to check for ignored X and
2814         NS options.
2816 2010-01-08  Kenichi Handa  <handa@m17n.org>
2818         * international/fontset.el (build-default-fontset-data):
2819         Exclude characters in scripts kana, hangul, han, or cjk-misc.
2821 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
2823         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
2824         to `create-file-buffer' as it expects, not just a buffer name.
2825         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
2826         to help uniquify.  (Bug#3224)
2828 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
2830         * font-setting.el (font-setting-change-default-font): Use user-spec
2831         instead of name.
2833 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
2835         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
2837 2010-01-05  Tom Tromey  <tromey@redhat.com>
2839         * progmodes/python.el (python-font-lock-keywords):
2840         Handle qualified decorators (Bug#881).
2842 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2844         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
2845         in a lightweight checkout.
2847 2010-01-05  Kenichi Handa  <handa@m17n.org>
2849         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
2851 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2853         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
2855 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
2857         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
2858         checkouts.  (Bug#618)
2859         (vc-bzr-log-view-mode): Also highlight the author.
2860         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
2861         (vc-bzr-shelve-menu-map):
2862         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
2863         (vc-bzr-shelve-apply): Make prompt more explicit.
2865 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
2867         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
2868         They are valid characters in URL paths (rfc3986), and at least
2869         Firefox does not understand the encoded version (Bug#3166).
2871 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
2873         * progmodes/octave-mod.el (octave-end-keywords)
2874         (octave-block-begin-or-end-regexp, octave-block-match-alist):
2875         Add "end" keyword (Bug#3061).
2876         (octave-end-as-array-index-p): New function.
2877         (calculate-octave-indent): Use it.
2879 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2881         * bookmark.el: Consistently put the text property on the bookmark name.
2882         (bookmark-bmenu-marks-width): Bump back to 2, to include
2883         annotation marks.
2884         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
2885         property on the bookmark name, instead of not putting it at all.
2886         (bookmark-bmenu-list): Fix where we put the text property.
2888 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2890         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
2891         for showing buffer modified state (as added in the previous change).
2893 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2895         * bookmark.el: Show modified state of bookmark buffer more accurately.
2896         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
2897         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
2898         (with-buffer-modified-unmodified): New macro.
2899         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
2900         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
2901         Use new macro to preserve the buffer modified state.
2903 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2905         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
2906         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
2907         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
2908         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
2909         (bookmark-bmenu-rename, bookmark-bmenu-locate)
2910         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
2911         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
2913 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
2915         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
2916         Make the lines in the generated doc string shorter.  (Bug#4668)
2918 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
2920         * net/rcirc.el: Add follow-link binding (Bug#4738).
2922 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
2924         * Makefile.in (bzr-update): Rename from cvs-update.
2925         (cvs-update): New target for backward compatibility.
2927         * makefile.w32-in (bzr-update): Rename from cvs-update.
2928         (cvs-update): New target for backward compatibility.
2930 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2932         * bookmark.el: Remove gratuitous gratitude.
2934 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2936         * bookmark.el (bookmark-bmenu-any-marks): New function
2937         (bookmark-bmenu-save): Clear buffer modification if no marks.
2939 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2941         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
2942         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
2943         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
2944         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
2946         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
2947         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
2948         To: emacs-devel {_AT_} gnu.org
2949         Subject: bookmark.el bug report
2950         Date: Mon, 28 Dec 2009 14:19:16 +0800
2951         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
2953 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2955         * bookmark.el: Improvements suggested by Drew Adams:
2956         (bookmark-bmenu-ensure-position): New name for
2957         `bookmark-bmenu-check-position'.  Just ensure the position,
2958         don't return any meaningful value.
2959         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
2960         New constants.
2962 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
2964         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
2965         (bookmark-yank-point, bookmark-bmenu-check-position):
2966         Fix typos in docstrings.
2967         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
2968         (bookmark-name-from-full-record, bookmark-get-position)
2969         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
2970         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
2971         Remove useless quoting of parenthesis, etc. in docstrings.
2973         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
2974         (ediff-append-custom-diff): Fix typo in error message.
2975         (ediff-meta-mark-equal-files): Fix typos in messages.
2977         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
2979         * net/imap-hash.el (imap-hash-make): Doc fix.
2980         (imap-hash-test): Fix typo in error message; reflow docstring.
2981         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
2982         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
2983         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
2984         Fix typos in docstrings.
2985         (imap-hash-open-connection): Fix typo in error message.
2987         * play/gomoku.el (gomoku): Fix typos in docstring.
2989         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
2990         (gdb-jsonify-buffer): Fix typos in docstring.
2991         (gdb-goto-breakpoint): Fix typo in error message.
2992         ("Display Other Windows"): Fix typo in help message.
2993         (gdb-speedbar-expand-node): Fix typo in question.
2995         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
2996         (idlwave-html-system-help-location, idlwave-html-help-location)
2997         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
2998         (idlwave-help-browser-generic-args, idlwave-help-directory)
2999         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
3000         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
3001         (idlwave-online-help, idlwave-help-html-link)
3002         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
3003         Fix typos in docstrings.
3004         (idlwave-help-with-source, idlwave-help-find-routine-definition):
3005         Reflow docstrings.
3006         (idlwave-help-assistant-start): Fix typo in error message.
3008         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
3009         (octave-electric-space): Fix typos in docstrings.
3011 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
3013         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
3015 2010-01-01  Juri Linkov  <juri@jurta.org>
3017         * comint.el (comint-input-ring-size): Make it a defcustom and
3018         increase the default to 500 (Bug#5148).
3020 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
3022         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
3023         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
3024         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
3026 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
3028         Show working revision correctly for mercurial.
3029         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
3030         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
3032 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
3034         Declare some functions for the byte-compiler.
3035         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
3036         (speedbar-timer-fn, speedbar-change-expand-button-char)
3037         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
3039 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
3041         This changeset reverts GDB Graphical Interface to use annotations.
3042         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
3044 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
3046         Make vc-dir work on subdirectories of the bzr root.
3047         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
3048         file names relative to it.
3049         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
3050         relative directory to vc-bzr-after-dir-status.
3052 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
3054         * font-lock.el (font-lock-refresh-defaults): New function, which
3055         can be used to let font-lock react to external changes in
3056         variables like font-lock-defaults and keywords.
3057         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
3059 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
3061         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
3063         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
3065 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
3067         Supersede color.diff settings in git log (bug#5211).
3069         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
3070         escape chars in its output when the user has color.diff set to `always'.
3071         This fix works on git 1.4.2 and newer (released on 2006-08-13).
3073 2009-12-26  Kevin Ryde  <user42@zip.com.au>
3075         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
3076         node.  Keep previous "Index" name to work with past coreutils too.
3078         * man.el (man): Revise docstring a bit to show -a and -l as
3079         examples.  Add -k description since support for it has otherwise
3080         been a secret.  (Further to bug#3717.)
3081         (Man-bgproc-sentinel): When "-k foo" produces no output show error
3082         "no matches" rather than "Can't find manpage", as the latter reads
3083         like -k was interpreted as a page name, which is not so.  (Bug#5431)
3085 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
3087         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
3088         switches.  Check also for //SUBDIRED// line.
3090 2009-12-25  Kenichi Handa  <handa@m17n.org>
3092         * language/indian.el (devanagari-composable-pattern): Fixed to
3093         handle ZWNJ and ZWJ.  Use it in composition-function-table for
3094         Devanagari.
3095         (malayalam-composable-pattern): Fix previous change.
3097 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3099         * ps-print.el (ps-face-attributes): It was not returning the
3100         attribute face for faces specified as string.  Reported by harven
3101         <harven@free.fr>.  (Bug#5254)
3102         (ps-print-version): New version 7.3.5.
3104 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
3106         * calendar/icalendar.el (icalendar--convert-tz-offset): Fixed
3107         timezone names.
3108         (icalendar--convert-tz-offset): Fixed the "last-day-problem".
3109         (icalendar--add-diary-entry): Remove the trailing blank that
3110         diary-make-entry inserts.
3112 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
3114         Make `file-expand-wildcards' work for remote files.
3116         * files.el (file-expand-wildcards): In case of remote files, check
3117         only local file name part for wildcards.  Provide feature 'files
3118         and subfeature 'remote-wildcards.  (Bug#5198)
3120         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
3121         if there is already an established connection.
3122         (tramp-advice-file-expand-wildcards): Remove it.
3124         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
3125         (tramp-advice-file-expand-wildcards): Moved from tramp.el.
3126         Activate advice for older GNU Emacs versions.  (Bug#5237)
3128 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
3130         Some doc fixes (more needed).
3132         * find-cmd.el (find-constituents): Reflow docstring.
3133         (find-cmd, find-prune, find-command): Fix typos in docstrings.
3134         (find-generic): Doc fix.
3136 2009-12-17  Juri Linkov  <juri@jurta.org>
3138         Fix regression from 23.1 to allow multiple modes in Local Variables.
3140         * files.el (hack-local-variables-filter): While ignoring duplicates,
3141         don't take `mode' into account.
3142         (hack-local-variables-filter, hack-dir-local-variables): Don't
3143         remove duplicate `mode' from local-variables-alist (like `eval').
3145 2009-12-17  Juri Linkov  <juri@jurta.org>
3147         Make `dired-diff' more safe.  (Bug#5225)
3149         * dired-aux.el (dired-diff): Signal an error when `file' equals to
3150         `current' or when `file' is a directory of the `current' file.
3152 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
3154         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
3155         unconditionally preloaded files.
3157 2009-12-16  Juri Linkov  <juri@jurta.org>
3159         Revert to old 23.1 logic of using the file at the mark as default.
3160         * dired-aux.el (dired-diff): Use the file at the mark as default
3161         if it's not the same as the current file, and the target dir is
3162         the current dir or the mark is active.  Add the current file
3163         as the arg of `dired-dwim-target-defaults'.  Use the default file
3164         in the prompt.  (Bug#5225)
3166 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
3168         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
3169         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
3170         (tramp-check-for-regexp): Check also, when an echoing shell stops
3171         to echo sent commands.
3173 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
3175         * Makefile.in: Revert last change (Bug#5191).
3177 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
3179         * vc-hg.el (vc-hg-print-log): Fix argument order.
3180         (vc-hg-working-revision): Make sure the command is executed in a
3181         known environment so that we can parse the output.  (Bug#4417)
3183 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
3185         * progmodes/python.el (python-symbol-completions): Remove text
3186         properties from symbol string before calling python-send-receive.
3188 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
3190         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
3191         when there are values for both file and line.  (Bug#5060)
3193 2009-12-14  Juri Linkov  <juri@jurta.org>
3195         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
3196         whitespace after the file name of the first line of unified format,
3197         because git-diff doesn't output whitespace and file modification time
3198         after the file name.
3200 2009-12-14  David Kastrup  <dak@gnu.org>
3202         * info.el (Info-hide-cookies-node): Before hiding a cookie,
3203         check if it already has the `display' property added by
3204         `Info-display-images-node', and not put the `invisible' property
3205         in this case.
3207 2009-12-13  Glenn Morris  <rgm@gnu.org>
3209         * mail/emacsbug.el (message-sort-headers): Define for compiler.
3210         (report-emacs-bug): In message-mode, sort manually before storing
3211         original report text.  (Bug#5178)
3212         Remove superfluous save-excursion.
3214 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
3216         * net/dbus.el (dbus-property-handler): Filter lambda forms out
3217         when responding to "GetAll" properties.
3219 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
3221         * simple.el (compose-mail): Remove mail-setup-with-from from
3222         customization checks.
3224 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
3226         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
3227         RAR archives created on Unix systems.
3229 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3231         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
3232         the varalias that was accidentally removed by the 2009-11-19 change
3233         (bug#5186).
3235 2009-12-12  Kenichi Handa  <handa@m17n.org>
3237         * language/indian.el (indian-compose-regexp): New function.
3238         (malayalam-composable-pattern): Fix the pattern.
3239         (composition-function-table): Set malayalam-composable-pattern for
3240         Malayalam characters.
3242 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
3244         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
3245         rather than down-mouse-1, based on follow-link conventions.
3247         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
3248         are compiled.
3250 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
3252         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
3253         (verilog-vmm-statement-re, verilog-ovm-statement-re)
3254         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
3255         (verilog-leap-to-head, verilog-backward-token):
3256         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
3258 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
3260         * progmodes/verilog-mode.el (verilog-auto-lineup)
3261         (verilog-nameable-item-re): Cleanup user-visible spelling and
3262         documentation errors.  One reported by Gary Delp.
3263         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
3264         (verilog-read-decls): Fix AUTOWIRE with types declared in a
3265         package, bug195.  Reported by Pierre-David Pfister.
3267 2009-12-11  Glenn Morris  <rgm@gnu.org>
3269         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
3271         * mail/emacsbug.el: No longer require sendmail.
3272         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
3273         (report-emacs-bug-orig-text): Doc fix.
3274         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
3275         New local variables, to adapt to different mail-user-agents.
3276         (report-emacs-bug): Fix test for a gnu.org address.
3277         Use overlays for emphasis, since font-lock defeats 'face property.
3278         Pretest bugs also end up at the newsgroup these days.
3279         Stop message-mode stripping text properties.
3280         Set and use the new buffer-local variables.
3281         (report-emacs-bug-hook): Add doc-string.
3282         Remove some unnecessary save-excursions and simplify.
3283         Use the appropriate hook and send-command.
3285         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
3286         capitalization of some menu entries.
3288 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3290         * whitespace.el (whitespace-display-char-on): Ensure
3291         `buffer-display-table' is unique when two or more windows are
3292         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
3293         New version 12.1.
3295 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
3297         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
3298         characters in the Attribute field.
3300 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
3302         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
3304 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3306         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
3307         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3308         Disregard autoload-excludes.
3309         (update-directory-autoloads): Obey autoload-excludes here instead.
3310         But don't store its contents in no-autoloads and remove entries that
3311         refer to excludes files.
3313 2009-12-10  Glenn Morris  <rgm@gnu.org>
3315         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
3316         (expand-mail-aliases): Define for compiler.
3318         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
3319         Define for compiler.
3321         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
3322         appropriate for the mail-user-agent in use.
3324 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
3326         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
3328 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
3330         Fix short log parsing and fontification.
3331         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
3332         Fix fontification for the [merge] label.
3334 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
3336         Drop some properties to avoid surprises.
3337         * htmlfontify.el (hfy-ignored-properties): New defcustom.
3338         (hfy-fontify-buffer): Use it.
3340 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3342         Minor cleanup.
3343         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
3344         Adjust all callers.
3345         (ffap-locate-file): Remove unused arg `dir-ok' and make other
3346         args compulsory.  Adjust callers.
3347         (ffap-gopher-at-point): Remove unused var `name'.
3349         Get rid of the ELCFILES abomination.
3350         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
3351         (compile-elcfiles): New phony target.
3352         (compile-main): Compute ELCFILES dynamically.
3353         (compile-clean): New target to remove left-over elc files.
3354         (compile, all): Use it.
3356 2009-12-09  Kenichi Handa  <handa@etlken>
3358         * international/mule-diag.el: Require help-mode instead of help-fns.
3360 2009-12-09  Kenichi Handa  <handa@m17n.org>
3362         * international/mule-cmds.el (ucs-names): Supply sufficiently
3363         fine ranges instead of pre-calculating accurate ranges.
3364         Iterate with bigger gc-cons-threshold.
3366 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
3368         Add support for stashing a snapshot of the current tree.
3369         * vc-git.el (vc-git-stash-snapshot): New function.
3370         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
3372 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
3374         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
3375         instead of `(beginning|end)-of-line'.
3377 2009-12-08  Glenn Morris  <rgm@gnu.org>
3379         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
3381         * Makefile.in (ELCFILES): Regenerate.
3383 2009-12-07  Juri Linkov  <juri@jurta.org>
3385         Don't lazy-highlight the comint output in history Isearch mode.
3387         * comint.el (comint-history-isearch-search): Instead of
3388         `comint-line-beginning-position', use `comint-after-pmark-p'
3389         to check if point if before the process mark, and go to
3390         `process-mark' in this case.
3392 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3394         * textmodes/tex-mode.el (latex-complete)
3395         (latex-indent-or-complete): Remove.
3396         (latex-mode): Set completion-at-point-functions instead.
3398         Provide a standard completion command and hook it into TAB.
3399         * minibuffer.el (completion-at-point-functions): New var.
3400         (completion-at-point): New command.
3401         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
3402         * progmodes/python.el (python-mode-map): Use completion-at-point.
3403         (python-completion-at-point): Rename from python-partial-symbol and
3404         adjust for use in completion-at-point-functions.
3405         (python-mode): Setup completion-at-point for Python completion.
3406         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
3407         extracted from lisp-complete-symbol.
3408         (lisp-complete-symbol): Use it.
3409         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
3410         setup completion-at-point for Elisp completion.
3411         (emacs-lisp-mode-map, lisp-interaction-mode-map):
3412         Use completion-at-point.
3413         * ielm.el (ielm-map): Use completion-at-point.
3414         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
3415         * progmodes/sym-comp.el: Move to...
3416         * obsolete/sym-comp.el: Move from progmodes.
3418 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
3420         Prevent save-buffer in Rmail buffers from using the coding-system
3421         of the current message, and from clobbering the encoding mnemonics
3422         in the mode line (Bug#4623).
3424         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
3425         flag, too.
3426         (rmail-message-encoding): New variable.
3427         (rmail-write-region-annotate): Record the encoding of the current
3428         message in rmail-message-encoding.
3429         (rmail-after-save-hook): New function, restores the encoding of
3430         the current message after the message collection is saved.
3432 2009-12-07  Juri Linkov  <juri@jurta.org>
3434         * progmodes/grep.el (grep-read-files): Use `completing-read'
3435         instead of `read-string'.  Set its `collection' arg to
3436         `read-file-name-internal'.  (Bug#4301)
3438 2009-12-07  Juri Linkov  <juri@jurta.org>
3440         Correctly restore original Isearch point.  (Bug#4994)
3442         * isearch.el (isearch-mode): Move `isearch-push-state' after
3443         `(run-hooks 'isearch-mode-hook)'.
3444         (isearch-cancel): When `isearch-push-state-function' is defined,
3445         let-bind `isearch-cmds' to the first state (the last element of
3446         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
3447         function and restores the original point).  Otherwise, move point
3448         to `isearch-opoint'.
3450 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3452         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
3453         chars that don't have names, so the table can be built much faster at
3454         run-time.
3456 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
3458         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
3459         change.  Suggested by David Kastrup.
3461         * simple.el (compose-mail): Check for incompatibilities and warn.
3462         (compose-mail-user-agent-warnings): New option.
3464 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
3466         Support showing a single log entry from vc-annotate.
3467         * vc.el (print-log): Add a new argument: START-REVISION.
3468         (vc-print-log-internal): Add a new optional argument and
3469         pass it to the backend.
3470         (vc-print-log, vc-print-root-log): Adjust callers.
3471         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
3472         buffer already displays the requested log entry, use it.
3473         Otherwise display only the log entry in question.
3474         * vc-svn.el (vc-svn-print-log):
3475         * vc-mtn.el (vc-mtn-print-log):
3476         * vc-hg.el (vc-hg-state):
3477         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
3478         (vc-git-show-log-entry): Return t on success.
3479         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
3480         (vc-bzr-show-log-entry): Return t on success.
3481         * vc-rcs.el (vc-rcs-print-log):
3482         * vc-sccs.el (vc-sccs-print-log):
3483         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
3485 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
3487         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
3488         Add menus to the meta mode.  (Bug#5043)
3490 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
3492         * ediff-init.el (ediff-event-key): Use event-to-character instead of
3493         event-key.
3495         * ediff.el (ediff-buffers-internal): Add unwind-protect.
3497 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
3499         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
3500         Berbain <raphael.berbain@gmail.com>.
3502         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
3503         characters.
3504         (tramp-initial-end-of-output): New defconst.
3505         (tramp-methods, tramp-find-shell)
3506         (tramp-open-connection-setup-interactive-shell)
3507         (tramp-maybe-open-connection): Use it.
3508         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
3509         existence of `#' and `$'.
3511         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
3512         `tramp-initial-end-of-output'.
3514 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
3516         Get the background mode from the terminal for xterm, and set
3517         faces accordingly.
3518         * term/xterm.el (xterm-set-background-mode): New function.
3519         (terminal-init-xterm): Use it in case xterm supports background
3520         color queries.  Recompute faces after getting the background
3521         color.
3523 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
3525         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
3526         number comment back on its own line, for easier parsing.
3528 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3530         Make it work for non-file buffers (bug#5102).
3531         * doc-view.el (doc-view-current-cache-dir):
3532         Use doc-view-buffer-file-name rather than buffer-file-name.
3533         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
3535 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
3537         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
3538         author field is too short.
3540 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
3542         * vc-git.el (vc-git-print-log): Handle a limit argument.
3543         Display the short log in graph form and with labels.
3544         (vc-git-log-view-mode): Handle labels.
3546         Make vc-revert change VC state from 'added to 'unregistered.
3547         * vc-git.el (vc-git-revert): Call git reset first.
3549 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
3551         * net/newst-backend.el, net/newst-plainview.el:
3552         * net/newst-reader.el, net/newst-ticker.el:
3553         * net/newst-treeview.el, net/newsticker.el:
3554         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
3556 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
3558         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
3560         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
3561         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
3562         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
3563         Update annotation regexp.
3565         * simple.el (beginning-of-visual-line): Constrain to field
3566         boundaries (Bug#5106).
3568 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
3570         * xml.el (xml-substitute-numeric-entities): Move
3571         newsticker--decode-numeric-entities in newst-backend.el to
3572         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
3573         * net/newst-backend.el (newsticker--parse-generic-feed)
3574         (newsticker--parse-generic-items)
3575         (newsticker--decode-numeric-entities): Move
3576         newsticker--decode-numeric-entities in newst-backend.el to
3577         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
3579 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
3581         * progmodes/js.el (js--js-not): Add null to the list of values.
3583 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
3585         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
3587 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3589         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
3590         delimiter if it is at the end of the current line.
3591         (bibtex-generate-url-list): Fix docstring.
3593 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3595         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
3596         minibuffer's content with itself.
3597         Fold the confirm-after-completion case into the `confirm' case.
3598         (completion-pcm-word-delimiters): Add : and / to the delimiters.
3600 2009-12-06  Kevin Ryde  <user42@zip.com.au>
3602         * ffap.el (ffap-rfc-path): Make this a defcustom since
3603         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
3605         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
3606         manuals, similar to existing setup for help-mode.  (Bug#3913.)
3608 2009-12-05  Juri Linkov  <juri@jurta.org>
3610         Save and restore dired buffer's point positions too.  (Bug#4880)
3612         * dired.el (dired-save-positions): Return in the first element
3613         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
3614         Doc fix.
3615         (dired-restore-positions): First restore buffer's position.
3616         While restoring window's positions, check if window still displays
3617         the original buffer.
3619 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
3621         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
3622         if possible.
3624         * shell.el (shell): Require ansi-color (Bug#5113).
3626         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
3628         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
3630 2009-12-05  Alan Mackenzie  <acm@muc.de>
3632         * progmodes/cc-mode.el (c-before-hack-hook)
3633         (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
3634         `c-file-style' to work again.  This reversion restores the current
3635         software to its state in Emacs 23.1.  (Bug#4146)
3637 2009-12-05  Kevin Ryde  <user42@zip.com.au>
3639         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
3640         comment-start-skip to comment-end-skip as comment (Bug#4781).
3642 2009-12-05  Juri Linkov  <juri@jurta.org>
3644         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
3645         for virtual nodes.  (Bug#4147)
3646         (Info-find-node-2): Set `Info-current-node-virtual' to nil
3647         when moving from a virtual node.
3648         (Info-mode-menu): Add `Info-virtual-index' to the menu.
3649         (Info-mode): Add `Info-virtual-index' to the docstring.
3651 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3653         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
3654         track of the buffer position of the end of a BibTeX entry as this
3655         position may change during reformatting.
3656         (bibtex-format-entry): Remove whitespace before processing
3657         numerical fields so that we recognize the latter properly.
3658         (bibtex-reformat): Do not use push which changes the global value
3659         of bibtex-entry-format.
3660         (bibtex-field-braces-alist, bibtex-field-strings-alist)
3661         (bibtex-field-re-init): Replace only space characters by regexp
3662         for whitespace.
3663         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
3664         (bibtex-initialize): Also update bibtex-strings.
3665         (bibtex-kill-field): Preserve white space at end of entry.
3666         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
3667         Update bibtex-reference-keys.
3669 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3671         * minibuffer.el (completion-pcm--merge-try): Also consider placing
3672         point after a star, if that's the only place where modifications can
3673         make progress.
3675 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
3677         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
3678         in docstrings.
3680 2009-12-04  Juri Linkov  <juri@jurta.org>
3682         * proced.el (proced): Call `(proced-update t)' to update process
3683         information instead of only running proced-post-display-hook.
3684         (proced-send-signal): Add a leading space to the buffer name
3685         " *Marked Processes*" to make this buffer ephemeral.
3687 2009-12-04  Juri Linkov  <juri@jurta.org>
3689         * dired.el (dired-auto-revert-buffer): New defcustom.
3690         (dired-internal-noselect): Use it.
3692 2009-12-04  Juri Linkov  <juri@jurta.org>
3694         Change roles of modes and functions in image-mode.el (Bug#5062).
3696         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
3697         in `auto-mode-alist'.
3698         (image-mode-previous-major-mode): New variable.
3699         (image-minor-mode-map): Rename from `image-mode-text-map'.
3700         (image-mode): Move graceful error-handling code from
3701         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
3702         (image-minor-mode): Remove all image-handling code.
3703         Replace `image-mode-text-map' with `image-minor-mode-map'.
3704         Check for `image-type' in mode-line format string.
3705         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
3706         (image-mode-as-text): New function with most code from
3707         `image-mode-maybe'.
3708         (image-toggle-display-text): Move code that removes image
3709         properties from `image-toggle-display' to here.
3710         (image-toggle-display-image): New function with code that adds
3711         image properties copied from `image-toggle-display'.
3712         (image-toggle-display): Remove most code with leaving only code
3713         that toggles between `image-mode-as-text' and `image-mode'.
3715 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
3717         * net/newst-treeview.el
3718         (newsticker--treeview-list-highlight-start): Restored call to
3719         save-excursion: Selected item was stuck.
3720         (newsticker--treeview-list-select): New.
3721         (newsticker--treeview-item-show-text)
3722         (newsticker--treeview-item-show)
3723         (newsticker--treeview-item-update): Use new
3724         newsticker-treeview-item-mode.
3725         (newsticker-treeview-update): Keep current item.
3726         (newsticker-treeview-next-new-or-immortal-item): Doc change.
3727         (newsticker--treeview-first-feed): Doc change.
3728         (newsticker-treeview-list-menu)
3729         (newsticker-treeview-item-menu): Added menu entries.
3730         (newsticker-treeview-item-mode): New.
3732         * net/newst-backend.el (newsticker-customize): Delete other
3733         windows.
3735 2009-12-04  Sam Steingold  <sds@gnu.org>
3737         * log-view.el (log-view-mode-map): "q" calls quit-window,
3738         like in all the other non-self-insert buffers.
3740 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3742         Minor cleanup.
3743         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
3744         key decoding rather than do it manually via last-input-event +
3745         ascii-character.
3746         (term-exec): Use delete-and-extract-region.
3747         (term-handle-ansi-terminal-messages): Remove unused var `end'.
3748         (term-process-pager): Remove unused var `i'.
3749         (term-dynamic-simple-complete): Make obsolete.
3750         (serial-update-config-menu): Remove unused vars `y' and `str'.
3751         (term-update-mode-line): Remove unused var `temp'.
3753 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3755         Limit the number of log entries displayed by default.
3756         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
3757         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
3758         using a prefix argument.
3760 2009-12-03  Glenn Morris  <rgm@gnu.org>
3762         * progmodes/idlwave.el (class): Restore still useful declaration.
3764 2009-12-03  Alan Mackenzie  <acm@muc.de>
3766         Enhance `c-parse-state' to run efficiently in "brace deserts".
3768         * progmodes/cc-mode.el (c-basic-common-init):
3769         Call c-state-cache-init.
3770         (c-neutralize-syntax-in-and-mark-CPP): Rename from
3771         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
3772         placing `category' properties value 'c-cpp-delimiter at its boundaries.
3774         * progmodes/cc-langs.el (c-before-font-lock-function):
3775         c-extend-and-neutralize-syntax-in-CPP has been renamed
3776         c-neutralize-syntax-in-and-mark-CPP.
3778         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
3779         with `category' properties now, not `syntax-table' ones.
3781         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
3782         enhanced (but slower) version of c-end-of-macro that won't land
3783         inside a literal or on another awkward character.
3784         (c-state-cache-too-far, c-state-cache-start)
3785         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
3786         (c-state-nonlit-pos-cache-limit, c-state-point-min)
3787         (c-state-point-min-lit-type, c-state-point-min-lit-start)
3788         (c-state-min-scan-pos, c-state-brace-pair-desert)
3789         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
3790         buffer local variables.
3791         (c-state-literal-at, c-state-lit-beg)
3792         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
3793         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
3794         (c-state-cache-top-paren, c-state-cache-after-top-paren)
3795         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
3796         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
3797         (c-renarrow-state-cache)
3798         (c-append-lower-brace-pair-to-state-cache)
3799         (c-state-push-any-brace-pair, c-append-to-state-cache)
3800         (c-remove-stale-state-cache)
3801         (c-remove-stale-state-cache-backwards, c-state-cache-init)
3802         (c-invalidate-state-cache-1, c-parse-state-1)
3803         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
3804         (c-parse-state): Enhance and refactor.
3805         (c-debug-parse-state): Amend to deal with all the new variables.
3807         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
3808         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
3809         modify to use category text properties rather than syntax-table ones.
3810         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
3811         to switch off/on the syntactic paren property of C++ template
3812         delimiters using the category property.
3813         (c-with-<->-as-parens-suppressed): Macro to invoke code with
3814         template delims suppressed.
3815         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
3816         New constant/macros which apply category properties to the start
3817         and end of preprocessor constructs.
3818         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
3819         "comment out" the syntactic value of characters in preprocessor
3820         constructs.
3821         (c-with-cpps-commented-out)
3822         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
3823         with characters in all or all but one preprocessor constructs
3824         "commented out".
3826 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3828         * proced.el (proced-filter-alist): Use regexp-quote.
3830 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
3832         Cleanup.
3833         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
3834         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
3835         arguments.  Expand `default-directory'.
3837         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
3838         the benefit of returning an expanded localname.
3839         (tramp-tramp-file-p): Handle the case NAME is not a string.
3841 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3843         Add support for bzr shelve/unshelve.
3844         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
3845         (vc-bzr-extra-menu-map): New variables.
3846         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
3847         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
3848         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
3849         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
3850         (vc-bzr-dir-extra-headers): Display shelves.
3852         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
3854 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3856         * textmodes/bibtex.el (bibtex-complete-internal):
3857         Use completion-in-region.
3858         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
3860 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3862         Support applying stashes.  Improve UI.
3863         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
3864         (vc-git-stash-apply, vc-git-stash-pop)
3865         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
3866         (vc-git-stash-menu): New functions.
3867         (vc-git-stash-menu-map): New variable.
3868         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
3870 2009-12-03  Glenn Morris  <rgm@gnu.org>
3872         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
3873         (vc-print-log-internal): Fix previous change.
3874         (vc-revert): Correct pluralization.
3876 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3878         * progmodes/make-mode.el (makefile-special-targets-list): No need for
3879         it to be an alist any more.
3880         (makefile-complete): Use completion-in-region.
3882         * progmodes/octave-mod.el (octave-complete-symbol):
3883         Use completion-in-region.
3885         Misc cleanup.
3886         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
3887         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
3888         (idlwave-complete-class): Don't quote lambda.
3889         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
3890         (idlwave-mode-map): Move initialization into declaration.
3891         (idlwave-action-and-binding): Use backquotes.
3892         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
3893         Simplify.
3894         (idlwave-is-pointer-dereference): Remove unused var `pos'.
3895         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
3896         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
3897         `parts', and `all-parts'.
3898         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
3899         (idlwave-convert-xml-system-routine-info): Remove unused string
3900         `version-string'.
3901         (idlwave-display-user-catalog-widget): Use dolist.
3902         (idlwave-scanning-lib): Declare dynamically-scoped var.
3903         (idlwave-scan-library-catalogs): Remove unused var `flags'.
3904         (completion-highlight-first-word-only): Declare to silence bytecomp.
3905         (idlwave-popup-select): Tighten scope of `resp'.
3906         (idlwave-find-struct-tag): Remove unused var `beg'.
3907         (idlwave-after-load-rinfo-hook): Declare.
3908         (idlwave-sintern-class-info): Remove unused var `taglist'.
3909         (idlwave-find-class-definition): Remove unused var `list'.
3910         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
3911         (idlwave-what-module-find-class): Remove unused var `classes'.
3913 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
3915         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
3917 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3919         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
3920         buffers visited.  Remove redundant current-buffer-saving.
3922 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3924         Use completion-in-buffer and remove uses of dynamic scoping.
3925         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
3926         (pascal-buffer-to-use, pascal-flag): Don't declare.
3927         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
3928         (pascal-get-completion-decl, pascal-keyword-completion):
3929         Add `pascal-str' argument, save-excursion,
3930         return the found completions, and don't filter with pascal-pred.
3931         (pascal-completion-cache): New var.
3932         (pascal-completion): Don't switch buffer any more (it was never
3933         necessary).  Don't save-excursion any more (it's done by the called
3934         subroutines).  Use a cache to avoid redundant computations.
3935         Use complete-with-action rather than pascal-completion-response and
3936         let it apply the predicate as well.
3937         (pascal-complete-word): Use completion-in-buffer when
3938         pascal-toggle-completions is nil.
3939         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
3940         not used any more.
3941         (pascal-comp-defun): Don't change buffer any more.
3942         Use complete-with-action rather than pascal-completion-response and
3943         let it apply the predicate as well.
3944         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
3945         when neded.
3947 2009-12-02  Kenichi Handa  <handa@m17n.org>
3949         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
3950         shape for all Indic scripts.
3952 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3954         Use completion-in-buffer.
3955         * wid-edit.el (widget-field-text-end): New function.
3956         (widget-field-value-get): Use it.
3957         (widget-string-complete, widget-file-complete)
3958         (widget-color-complete): Use it and completion-in-region.
3959         (widget-complete): Don't narrow the buffer.
3961 2009-12-02  Glenn Morris  <rgm@gnu.org>
3963         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
3964         (rmail-select-summary): Use rmail-pop-to-buffer.
3965         * mail/rmailsum.el: Replace all pop-to-buffer calls with
3966         rmail-pop-to-buffer, to prevent horizontal splits.
3968         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
3969         save-excursion with save-current-buffer.
3970         Widen before searching.  (Bug#5093)
3971         (diary-list-sexp-entries): Remove superfluous save-excursion.
3973 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
3975         * woman.el (woman-make-bufname): Handle man-pages with "." in the
3976         name.  (Bug#5038)
3978 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
3980         * ido.el (ido-file-internal): Handle filenames at point that do
3981         not have a directory part.  (Bug#5049)
3983 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
3985         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
3986         (mpc-songs-jump-to, mpc-resume): Doc fixes.
3988 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
3990         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
3991         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
3992         any more.
3994 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3996         * comint.el (comint-insert-input): Ignore clicks to the right of
3997         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
3999         * vc.el (vc-print-log-internal): Don't wait for the process to
4000         terminate before setting up the major mode.
4002         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
4003         in case.
4005         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
4006         the last element.
4008         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
4010 2009-12-01  Glenn Morris  <rgm@gnu.org>
4012         * window.el (window--display-buffer-2): Fix previous changes.
4014 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
4016         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
4018 2009-12-01  Glenn Morris  <rgm@gnu.org>
4020         * Makefile.in (ELCFILES): Add mpc.elc.
4022 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4024         * mpc.el: New file.
4026 2009-12-01  Glenn Morris  <rgm@gnu.org>
4028         * window.el (window-to-use): Define for compiler.
4030         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
4031         consistent with others (no final period).
4033         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
4034         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
4036 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
4038         Make vc-print-log buttons work.
4039         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
4041 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
4043         * savehist.el (savehist-autosave-interval): Allow setting to nil
4044         through customize.  (Bug#5056)
4046 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
4048         Fix references to jit-lock properties.
4049         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
4050         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
4051         (perl-font-lock-special-syntactic-constructs):
4052         Quote jit-lock-defer-multiline property.
4054 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
4056         * vc-git.el (vc-git-registered): Call vc-git-root only once.
4058 2009-11-30  Juri Linkov  <juri@jurta.org>
4060         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
4061         value `buffer' of `multi-isearch-next-buffer-current-function'.
4062         Use `(current-buffer)' when `buffer' is nil.
4063         (multi-isearch-next-buffer-from-list): Don't fallback to
4064         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
4066 2009-11-30  Juri Linkov  <juri@jurta.org>
4068         * misearch.el (multi-isearch-read-buffers): Move canonicalization
4069         of buffers with `get-buffer' to `multi-isearch-buffers'.
4070         (multi-isearch-buffers, multi-isearch-buffers-regexp):
4071         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
4072         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
4073         FILES with `expand-file-name' converting relative file names
4074         to absolute.  Doc fix.  (Bug#4727)
4076 2009-11-30  Juri Linkov  <juri@jurta.org>
4078         * misearch.el (multi-isearch-read-buffers)
4079         (multi-isearch-read-matching-buffers): New functions.
4080         (multi-isearch-buffers, multi-isearch-buffers-regexp):
4081         Use them in the `interactive' spec.  Doc fix.
4082         (multi-isearch-read-files, multi-isearch-read-matching-files):
4083         New functions.
4084         (multi-isearch-files, multi-isearch-files-regexp):
4085         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
4087 2009-11-30  Juri Linkov  <juri@jurta.org>
4089         * doc-view.el (doc-view-continuous):
4090         Rename from `doc-view-continuous-mode'.
4091         (doc-view-menu): Move "Toggle display" to the top.
4092         Add submenu "Continuous" with radio buttons "Off"/"On"
4093         and "Save as Default".
4094         (doc-view-scroll-up-or-next-page)
4095         (doc-view-scroll-down-or-previous-page)
4096         (doc-view-next-line-or-next-page)
4097         (doc-view-previous-line-or-previous-page): Rename
4098         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
4100 2009-11-30  Juri Linkov  <juri@jurta.org>
4102         * comint.el (comint-mode-map): Rebind `M-r' from
4103         `comint-previous-matching-input' to
4104         `comint-history-isearch-backward-regexp'.
4105         Unbind `M-s' to allow global key binding `M-s'.
4106         Add menu items for `comint-history-isearch-backward' and
4107         `comint-history-isearch-backward-regexp'.  (Bug#3746)
4109 2009-11-30  Juri Linkov  <juri@jurta.org>
4111         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
4112         For def=recenter, replace `recenter' with `recenter-top-bottom'
4113         that is called with `this-command' and `last-command' let-bound
4114         to `recenter-top-bottom'.  When the last `def' was not `recenter',
4115         set `recenter-last-op' to nil.  (Bug#4981)
4117 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4119         Minor cleanup and simplification.
4120         * filecache.el (file-cache-add-directory)
4121         (file-cache-add-directory-recursively)
4122         (file-cache-add-from-file-cache-buffer)
4123         (file-cache-delete-file-regexp, file-cache-delete-directory)
4124         (file-cache-files-matching-internal, file-cache-display): Use dolist.
4125         (file-cache-temp-minibuffer-message): Delete function.
4126         (file-cache-minibuffer-complete): Use minibuffer-message instead.
4128         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
4129         Don't signal an error when bumping into EOB in tr, s, or y.
4131 2009-11-29  Juri Linkov  <juri@jurta.org>
4133         * startup.el (fancy-about-text): Fix wording of Guided Tour.
4134         (Bug#4960)
4136         * descr-text.el (describe-char-unidata-list): Use lowercase name
4137         for "Unicode name" like in other tags.
4139 2009-11-29  Juri Linkov  <juri@jurta.org>
4141         * ediff-util.el (ediff-minibuffer-with-setup-hook):
4142         New compatibility macro.
4143         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
4145 2009-11-29  Juri Linkov  <juri@jurta.org>
4147         Add defcustom to define the cycling order of `recenter-top-bottom'.
4148         (Bug#4981)
4150         * window.el (recenter-last-op): Doc fix.
4151         (recenter-positions): New defcustom.
4152         (recenter-top-bottom): Rewrite to use `recenter-positions'.
4153         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
4155 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
4157         Improve integration of Tramp and ange-ftp in eshell.
4159         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
4160         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
4161         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
4163         * eshell/esh-util.el (top): Require also Tramp when compiling.
4164         (eshell-directory-files-and-attributes): Check for FTP remote
4165         connection.
4166         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
4167         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
4168         (eshell-file-attributes): Handle ".".  Return `entry'.
4170         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
4171         (ange-ftp-directory-files-and-attributes)
4172         (ange-ftp-real-directory-files-and-attributes): New defuns.
4174         * net/tramp.el (tramp-maybe-open-connection): Open the remote
4175         shell with "exec" when possible.  This prevents trailing prompts
4176         in `start-file-process'.
4178 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4180         Try and remove assumptions about point-min==1.
4181         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
4182         (rng-compute-mode-line-string): Show the validation percentage in
4183         terms of the narrowed text, not the widened text.
4184         (rng-do-some-validation): Don't catch internal errors when debugging.
4185         (rng-first-error): Simplify.
4186         (rng-after-change-function): Remove work around.  AFAIK the bug has
4187         been fixed a while ago.
4189         * image-mode.el (image-minor-mode): Exit more gracefully when the image
4190         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
4192         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
4194         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
4195         `cd' doesn't always do it for us (bug#5067).
4197         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
4198         on 2009-10-25 as part of some other change (bug#5067).
4200 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4202         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
4203         `suspicious'.
4204         (byte-compile-warnings): Use byte-compile-warning-types.
4205         (byte-compile-save-excursion): Warn about use of set-buffer right
4206         after save-excursion.
4208         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
4209         the excursion as well.
4211 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
4213         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
4214         providing a Tramp related implementation of "su" and "sudo".
4215         (eshell-unix-initialize): Add "su" and "sudo".
4217 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
4219         * net/socks.el (socks-send-command): Convert binary request to
4220         unibyte before sending.  This fixes mishandling of some port
4221         numbers such as 129.
4223 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4225         * help.el (describe-bindings-internal): Remove `interactive'.
4227         * man.el (Man-completion-table): Trim a terminating "(".
4228         Remove the space between name page a section.
4229         Add the command's description on the `help-echo' property.
4230         Remove `process-connection-type' binding since it's unused by
4231         call-process.
4232         Provide completion for the "<section> <name>" format as well.
4233         (Man-default-man-entry): Remove spurious var shadowing the argument.
4235 2009-11-26  Kevin Ryde  <user42@zip.com.au>
4237         * log-view.el: Add "Keywords: tools", since its other keywords
4238         aren't in finder-known-keywords, and following vc.el.
4240         * sha1.el (sha1-string-external): default-directory "/" in case
4241         otherwise non-existent.  process-connection-type pipe for touch of
4242         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
4244 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4246         Misc coding convention cleanups.
4247         * htmlfontify.el (hfy-init-kludge-hook): Rename from
4248         hfy-init-kludge-hooks.
4249         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
4250         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
4251         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
4252         and push.
4253         (hfy-slant, hfy-weight): Use tables rather than code.
4254         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
4255         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
4256         (hfy-face-attr-for-class): Initialize `face-spec' directly.
4257         (hfy-face-to-css): Remove `nconc' with single arg.
4258         (hfy-p-to-face-lennart): Use `or'.
4259         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
4260         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
4261         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
4262         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
4263         (hfy-force-fontification): Use run-hooks.
4265 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
4267         Various minor fixes.
4268         * htmlfontify.el (hfy-default-header): Add toggle_invis since
4269         Javascript belongs in the header, not the body.
4270         (hfy-javascript): Remove.
4271         (hfy-fontify-buffer): Don't insert it any more.
4272         (hfy-face-at): Handle (face0 face1 face2) style face properties.
4273         Fix bug in invis handling when there were no invis props in a chunk.
4275 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4277         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
4279 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
4281         * finder.el (finder-mode-map): Add a menu.
4283 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
4285         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
4286         "unsigned" structs.
4288         (verilog-leap-to-head, verilog-backward-token): Handle "disable
4289         fork" statement better.
4291 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
4293         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
4294         (verilog-delete-auto, verilog-delete-empty-auto-pair)
4295         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
4296         Reported by Clay Douglass.
4298         (verilog-auto-inst, verilog-auto-star-safe)
4299         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
4300         Fix removing "// Interfaces" when saving .* expansions.  Reported by
4301         Pierre-David Pfister.
4303 2009-11-26  Glenn Morris  <rgm@gnu.org>
4305         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
4306         the scope.
4308 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
4310         * vc-annotate.el (vc-annotate-revision-previous-to-line):
4311         Really use previous revision.
4313 2009-11-25  Kevin Ryde  <user42@zip.com.au>
4315         * man.el (Man-completion-table): default-directory "/" in case
4316         doesn't otherwise exist.  process-environment COLUMNS=999 so as
4317         not to truncate long names.  process-connection-type pipe to avoid
4318         any chance of hitting the pseudo-tty TIOCGWINSZ.
4319         (man): completion-ignore-case t for friendliness and since man
4320         itself is case-insensitive on the command line.
4321         Further to Bug#3717.
4323         * arc-mode.el: Add "Keywords: files", so the details in its
4324         commentary can be reached from finder-by-keyword.
4325         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
4326         editing mode, but it's comms related and sgml-mode.el has "comm"
4327         on that basis too.
4328         * textmodes/bibtex-style.el: Add "Keywords: tex".
4329         * international/isearch-x.el, international/ja-dic-cnv.el:
4330         * international/ja-dic-utl.el, international/kkc.el:
4331         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
4333 2009-11-25  Juri Linkov  <juri@jurta.org>
4335         * man.el (Man-completion-table): Modify regexp to include
4336         section names to completion strings.  (Bug#3717)
4338 2009-11-25  Juri Linkov  <juri@jurta.org>
4340         Search recursively in gzipped files.  (Bug#4982)
4342         * progmodes/grep.el (grep-highlight-matches): Add new options
4343         `always' and `auto'.  Doc fix.
4344         (grep-process-setup): Check `grep-highlight-matches' for
4345         `auto-detect' to determine the need to compute grep defaults.
4346         Move Windows/DOS specific --colors settings handling
4347         to `grep-compute-defaults'.  Check `grep-highlight-matches'
4348         to get the value of "--color=".
4349         (grep-compute-defaults): Compute `grep-highlight-matches' when it
4350         has the value `auto-detect'.  Move Windows/DOS specific settings
4351         from `grep-process-setup'.
4352         (zrgrep): New command with alias `rzgrep'.
4354 2009-11-25  Juri Linkov  <juri@jurta.org>
4356         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
4357         to nil instead of switching off view-mode.  (Bug#4896)
4359 2009-11-25  Juri Linkov  <juri@jurta.org>
4361         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
4363         * mwheel.el (mwheel-scroll-up-function)
4364         (mwheel-scroll-down-function): New defvars.
4365         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
4366         `scroll-up', and `mwheel-scroll-down-function' instead of
4367         `scroll-down'.
4369         * doc-view.el (doc-view-scroll-up-or-next-page)
4370         (doc-view-scroll-down-or-previous-page): Add optional ARG.
4371         Use this ARG in the call to image-scroll-up/image-scroll-down.
4372         Change `interactive' spec to "P".  Goto next/previous page only
4373         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
4374         SPC/DEL case).  Doc fix.
4375         (doc-view-next-line-or-next-page)
4376         (doc-view-previous-line-or-previous-page): Rename arg to ARG
4377         for consistency.
4378         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
4379         `doc-view-scroll-up-or-next-page', and buffer-local
4380         `mwheel-scroll-down-function' to
4381         `doc-view-scroll-down-or-previous-page'.
4383 2009-11-25  Juri Linkov  <juri@jurta.org>
4385         Provide additional default values (directories at other Dired
4386         windows) via M-n in the minibuffer of some Dired commands.
4388         * dired-aux.el (dired-diff, dired-compare-directories)
4389         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
4390         `minibuffer-default' in `minibuffer-with-setup-hook'.
4391         (dired-dwim-target-directory): Find a window that displays Dired
4392         buffer instead of failing when the next window is not Dired.
4393         Use `get-window-with-predicate' to find for the next Dired window.
4394         (dired-dwim-target-defaults): New function.
4396         * ediff-util.el (ediff-read-file-name):
4397         Use `dired-dwim-target-defaults' to set `minibuffer-default'
4398         in `minibuffer-with-setup-hook'.
4400 2009-11-25  Juri Linkov  <juri@jurta.org>
4402         Provide additional default values (file name at point or at the
4403         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
4405         * minibuffer.el (read-file-name-defaults): New function.
4406         (read-file-name): Reset `minibuffer-default' to nil when
4407         it duplicates initial input `insdef'.
4408         Bind `minibuffer-default-add-function' to lambda that
4409         calls `read-file-name-defaults' in `minibuffer-selected-window'.
4410         (minibuffer-insert-file-name-at-point): New command.
4412         * files.el (file-name-at-point-functions): New defcustom.
4413         (find-file-default): Remove defvar.
4414         (find-file-read-args): Don't use `find-file-default'.
4415         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4416         to `read-file-name'.
4417         (find-file-literally): Use `read-file-name' with
4418         `confirm-nonexistent-file-or-buffer'.
4420         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
4422         * dired.el (dired-read-dir-and-switches):
4423         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
4424         to `read-file-name'.
4425         (dired-file-name-at-point): New function.
4426         (dired-mode): Add hook `dired-file-name-at-point' to
4427         `file-name-at-point-functions'.
4429 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4431         Really make the *Completions* window soft-dedicated (bug#5030).
4432         * window.el (window--display-buffer-2): Add `dedicated' argument.
4433         (display-buffer): Pass it when needed so the dedicated flag is set
4434         after calling set-window-buffer, which would otherwise reset it.
4436 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4438         * progmodes/meta-mode.el (meta-complete-symbol):
4439         * progmodes/etags.el (complete-tag):
4440         * mail/mailabbrev.el (mail-abbrev-complete-alias):
4441         Use completion-in-region.
4443         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
4444         (dabbrev-completion): Use completion-in-region.
4445         (dabbrev--abbrev-at-point): Simplify regexp.
4447         * abbrev.el (abbrev--before-point): Use word-motion functions
4448         if :regexp is not specified (bug#5031).
4450         * subr.el (string-prefix-p): New function.
4452         * man.el (Man-completion-cache): New var.
4453         (Man-completion-table): Use it.
4455         * vc.el (vc-print-log-internal): Make `limit' optional for better
4456         compatibility (e.g. with vc-annotate.el).
4458 2009-11-24  Kevin Ryde  <user42@zip.com.au>
4460         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
4461         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
4463         * emacs-lisp/elint.el (elint-add-required-env): Better error message
4464         when .el source file not found or other error.
4466 2009-11-24  Markus Triska  <markus.triska@gmx.at>
4468         * linum.el (linum-update-window): Ignore intangible (bug#4996).
4470 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4472         Handle the [back] button properly (bug#4979).
4473         * descr-text.el (describe-text-properties): Add a `buffer' argument.
4474         Use help-setup-xref, help-buffer, and with-help-window.
4475         (describe-char): Add `buffer' argument.
4476         Pass proper command to help-setup-xref.  Don't meddle with
4477         help-xref-stack-item directly.
4478         (describe-text-category): Use with-help-window and help-buffer.
4480         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
4481         for the displayed buffer (bug#4887).
4483         * man.el (Man-completion-table): New function.
4484         (man): Use it.
4486 2009-11-24  David Reitter  <david.reitter@gmail.com>
4488         * vc-git.el (vc-git-registered): Use checkout directory (where
4489         .git is) rather than the file's directory and a relative path spec
4490         to work around a bug in git.
4492 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
4494         Improve handling of processes on remote hosts.
4496         * eshell/esh-util.el (eshell-path-env): New defvar.
4497         (eshell-parse-colon-path): New defun.
4498         (eshell-file-attributes): Use `eshell-parse-colon-path'.
4500         * eshell/esh-ext.el (eshell-search-path):
4501         Use `eshell-parse-colon-path'.
4502         (eshell-remote-command): Remove argument HANDLER.
4503         (eshell-external-command): Check for FTP remote connection.
4505         * eshell/esh-proc.el (eshell-gather-process-output):
4506         Use `file-truename', in order to start also symlinked files.
4507         Apply `start-file-process' instead of `start-process'.
4508         Shorten `command' to the local file name part.
4510         * eshell/em-cmpl.el (eshell-complete-commands-list):
4511         Use `eshell-parse-colon-path'.
4513         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
4515         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
4516         to `eshell-directory-change-hook'.
4518 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
4520         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
4521         because it could be enabled automatically if view-read-only is non-nil.
4523 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
4525         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
4526         made on 2009-11-22.
4528 2009-11-24  Glenn Morris  <rgm@gnu.org>
4530         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
4531         deleted variable bookmark-bmenu-bookmark-column.
4533 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4535         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
4537 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
4539         * net/browse-url.el (browse-url-filename-alist): On Windows, add
4540         two slashes to the "file:" prefix.
4541         (browse-url-file-url): De-munge Cygwin filenames before passing
4542         them to Windows browser.
4543         (browse-url-default-windows-browser): Use call-process.
4545 2009-11-23  Juri Linkov  <juri@jurta.org>
4547         Implement DocView Continuous mode.  (Bug#4896)
4548         * doc-view.el (doc-view-continuous-mode): New defcustom.
4549         (doc-view-mode-map): Bind C-n/<down> to
4550         `doc-view-next-line-or-next-page', C-p/<up> to
4551         `doc-view-previous-line-or-previous-page'.
4552         (doc-view-next-line-or-next-page)
4553         (doc-view-previous-line-or-previous-page): New commands.
4555 2009-11-23  Juri Linkov  <juri@jurta.org>
4557         Implement Isearch in comint input history.  (Bug#3746)
4558         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
4559         `isearch-mode-hook'.
4560         (comint-history-isearch): New defcustom.
4561         (comint-history-isearch-backward)
4562         (comint-history-isearch-backward-regexp): New commands.
4563         (comint-history-isearch-message-overlay): New buffer-local variable.
4564         (comint-history-isearch-setup, comint-history-isearch-end)
4565         (comint-goto-input, comint-history-isearch-search)
4566         (comint-history-isearch-message, comint-history-isearch-wrap)
4567         (comint-history-isearch-push-state)
4568         (comint-history-isearch-pop-state): New functions.
4570 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
4572         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
4573         return.
4574         (tramp-handle-make-symbolic-link)
4575         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
4576         Quote file names.
4577         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
4578         (tramp-handle-process-file): Use it.
4580 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4582         * window.el (move-to-window-line-last-op): Remove.
4583         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
4585 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
4587         Make M-r mirror the new cycling behavior of C-l.
4588         * window.el (move-to-window-line-last-op): New var.
4589         (move-to-window-line-top-bottom): New command.
4590         (global-map): Bind M-r move-to-window-line-top-bottom.
4592 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
4594         * dired-x.el (dired-guess-shell-alist-default):
4595         Support xz format.  (Bug#4953)
4597 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
4599         * emulation/viper-cmd.el: Use viper-last-command-char instead of
4600         last-command-char/last-command-event.
4601         (viper-prefix-arg-value): Do correct conversion of event-char for
4602         XEmacs.
4604         * emulation/viper-util.el, emulation/viper.el:
4605         Use viper-last-command-char instead of
4606         last-command-char/last-command-event.
4608         * ediff-init.el, ediff-mult.el, ediff-util.el:
4609         Replace last-command-char and last-command-event
4610         with (ediff-last-command-char) everywhere.
4612         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
4613         created in fundamental mode.
4615         * ediff.el (ediff-version): Revert the change of interactive-p to
4616         called-interactively-p.
4618 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
4620         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
4621         generation from word-movement command names.
4623 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
4625         * cus-start.el (all): Add native condition for font-use-system-font.
4627 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
4629         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
4630         Correct the patch from 2009-11-18.  (Bug#3910)
4632 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
4634         * progmodes/subword.el: Rename from lisp/subword.el.
4636         * subword.el: Rename to progmodes/subword.el.
4638         * Makefile.in (ELCFILES): Adapt to subword.el move.
4640 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4641             Stefan Monnier  <monnier@iro.umontreal.ca>
4643         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
4644         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
4645         (bookmark-bmenu-show-filenames): Use push.
4646         (bookmark-bmenu-hide-filenames): Use local var instead of
4647         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
4648         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
4649         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
4650         filenames now that the bookmark names are always available.
4652 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4654         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
4655         (bookmark-search-pattern): Move and leave unbound.
4656         (bookmark-bmenu-mode-map): Change binding.
4657         (bookmark-read-search-input): Simplify.
4658         Don't use text-char-description.  Don't error on non-char events.
4659         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
4660         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
4661         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
4662         Use a local var for the timer.
4663         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
4664         (i.e. bookmark-bmenu-search).
4666 2009-11-21  Glenn Morris  <rgm@gnu.org>
4668         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
4670 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
4672         * net/browse-url.el (browse-url-default-windows-browser):
4673         Use cygstart for cygwin.
4675 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
4677         * bookmark.el: Formatting and doc fixes only:
4678         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
4679         (bookmark-bmenu-search): Wrap to fit within 80 columns.
4680         Minor grammar and punctuation fixes in doc string.
4681         (bookmark-read-search-input): Adjust to fit within 80 columns.
4683 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
4685         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
4686         (c-backward-into-nomenclature): Adapt to subword renaming.
4688         * subword.el (subword-forward, subword-backward, subword-mark)
4689         (subword-kill, subword-backward-kill, subword-transpose)
4690         (subword-downcase, subword-upcase, subword-capitalize)
4691         (subword-forward-internal, subword-backward-internal):
4692         Rename from forward-subword, backward-subword, mark-subword,
4693         kill-subword, backward-kill-subword, transpose-subwords,
4694         downcase-subword, upcase-subword, capitalize-subword,
4695         forward-subword-internal, backward-subword-internal.
4697 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4699         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
4700         New options.
4701         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
4702         New vars.
4703         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
4704         (bookmark-bmenu-filter-alist-by-regexp)
4705         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
4706         (bookmark-bmenu-search): New command.
4707         (bookmark-bmenu-mode-map): Bind it.
4709 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
4711         * progmodes/cc-cmds.el: declare-functioned forward-subword and
4712         backward-subword to quit the byte-compiler.
4714         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
4716         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
4718         * progmodes/cc-cmds.el (c-update-modeline)
4719         (c-forward-into-nomenclature, c-backward-into-nomenclature):
4720         Refer to subword.el functions instead of cc-subword.el.
4722         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
4723         subword.el functions instead of cc-subword.el.
4725         * progmodes/cc-subword.el: Rename to subword.el.
4726         * subword.el: Rename from progmodes/cc-subword.el.
4727         (subword-mode-map): Rename from c-subword-mode-map.
4728         (subword-mode): Rename from c-subword-mode.
4729         (global-subword-mode): New global minor mode.
4730         (forward-subword): Rename from c-forward-subword.
4731         (backward-subword): Rename from c-backward-subword.
4732         (mark-subword): Rename from c-mark-subword.
4733         (kill-subword): Rename from c-kill-subword.
4734         (backward-kill-subword): Rename from c-backward-kill-subword.
4735         (transpose-subwords): Rename from c-tranpose-subword.
4736         (downcase-subword): Rename from c-downcase-subword.
4737         (capitalize-subword): Rename from c-capitalize-subword.
4738         (forward-subword-internal): Rename from c-forward-subword-internal.
4739         (backward-subword-internal): Rename from c-backward-subword-internal.
4741 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
4743         * vc.el (vc-deduce-fileset): Allow non-state changing operations
4744         from a dired buffer.
4745         (vc-dired-deduce-fileset): New function.
4746         (vc-root-diff, vc-print-root-log): Use it.
4748         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
4749         nil LIMIT argument to vc-print-log-internal.
4751 2009-11-20  Glenn Morris  <rgm@gnu.org>
4753         * Makefile.in (ELCFILES): Regenerate.
4755 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
4757         * calc/calc.el (calc-set-mode-line):
4758         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4759         (math-format-number): Rename `math-format-complement-signed' to
4760         `math-format-twos-complement'.
4762         * calc/calc-bin.el (math-format-twos-complement): Rename from
4763         math-format-complement-signed.
4764         (calc-radix): Rename `calc-complement-signed-mode' to
4765         `calc-twos-complement-mode'.
4766         (calc-octal-radix, calc-hex-radix): Add an argument for
4767         two's complement.
4769         * calc/calc-embed.el (calc-embedded-mode-vars):
4770         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4772         * calc/calc-ext.el (calc-init-extensions):
4773         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4774         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
4776         * calc/calc-units.el (math-build-units-table-buffer):
4777         Let `calc-twos-complement-mode' be nil.
4779         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
4780         entries.
4782         * calc/calc-vec.el (calcFunc-vunpack):
4783         * calc/calc-aent.el (calc-do-calc-eval):
4784         * calc/calc-forms.el (math-format-date):
4785         * calc/calc-graph.el (calc-graph-plot):
4786         * calc/calc-math.el (math-use-emacs-fn):
4787         * calc/calccomp.el (math-compose-expr):
4788         Let `calc-twos-complement-mode' be nil.
4790 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4792         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
4793         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
4794         * minibuffer.el (completion-in-region-functions): New hook.
4795         (completion-in-region): New function.
4796         * emacs-lisp/lisp.el (lisp-complete-symbol):
4797         * pcomplete.el (pcomplete-std-complete): Use it.
4799 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4801         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
4802         (latex-complete-alist): New vars.
4803         (latex-string-prefix-p, latex-complete-bibtex-keys)
4804         (latex-complete-envnames, latex-complete-refkeys)
4805         (latex-complete-data): New functions.
4806         (latex-complete, latex-indent-or-complete): New commands.
4808         * window.el (display-buffer-mark-dedicated): New var.
4809         (display-buffer): Obey it.
4810         * minibuffer.el (minibuffer-completion-help): Use it.
4812         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
4814         * filecache.el (file-cache-add-file): Use push and cons.
4815         (file-cache-delete-file-regexp): Use push.
4816         (file-cache-complete): Use completion-in-region.
4818         * simple.el (with-wrapper-hook): Fix thinko.
4820         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
4821         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
4822         Use with-current-buffer and string-to-number.
4823         (hfy-fallback-colour-values): Use assoc-string.
4824         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
4825         (hfy-face-at): Remove unused var `found-face'.
4826         (hfy-compile-stylesheet): Remove unused var `css'.
4827         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
4828         and `orig-buffer'.
4829         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
4830         Use with-current-buffer.
4831         (hfy-text-p): Use expand-file-name and fewer setq.
4833 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
4835         * htmlfontify.el, hfy-cmap.el: New files.
4837 2009-11-19  Juri Linkov  <juri@jurta.org>
4839         * minibuffer.el (completions-format): New defcustom.
4840         (completion--insert-strings): Implement vertical format.
4842         * simple.el (switch-to-completions): Move point to the first
4843         completion when point was at the beginning of the buffer.
4845 2009-11-19  Juri Linkov  <juri@jurta.org>
4847         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
4849         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
4851 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
4853         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
4854         (mail-signature): Change default to t.
4855         (mail-from-style): Deprecate `system-default' value.
4856         (mail-insert-from-field): For default value of mail-from-style,
4857         default to `angles' unless `angles' needs quoting and `parens'
4858         does not.
4859         (mail-citation-prefix-regexp): Use citation regexp from
4860         message-mode.
4862 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
4864         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
4865         Set variables for computing the prompt for reading password.
4867 2009-11-19  Glenn Morris  <rgm@gnu.org>
4869         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
4871         * textmodes/flyspell.el (sgml-lexical-context): Declare.
4873         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
4874         (newsticker-treeview-listwindow-height): Fix custom type.
4876 2009-11-19  Kenichi Handa  <handa@m17n.org>
4878         * descr-text.el (describe-char-padded-string): Compose with TAB
4879         only if there's a font for CH.
4880         (describe-char): Fix the condition for detecting a trivial composition.
4882 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
4884         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
4885         more accurate version of the regexp.  (Bug#3910)
4887 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
4889         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
4891 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
4893         * font-setting.el (font-use-system-font): Declare for byte-compiler.
4894         (font-setting-change-default-font): Fix typo in docstring.
4896 2009-11-18  Alan Mackenzie  <acm@muc.de>
4898         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
4900 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
4902         * font-setting.el (font-use-system-font): Move ...
4904         * cus-start.el (all): ... to here.
4906 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
4908         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
4909         Don't set `ad-return-value' if `ad-do-it' doesn't.
4911         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
4912         modification time.
4914 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
4916         * menu-bar.el: Put "Use system font" in Option-menu.
4917         (menu-bar-options-save): Add font-use-system-font.
4919         * loadup.el: If feature system-font-setting or font-render-setting is
4920         there, load font-setting.
4922         * Makefile.in (ELCFILES): Add font-settings.el.
4923         * font-setting.el: New file.
4925 2009-11-17  Glenn Morris  <rgm@gnu.org>
4927         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
4929         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
4930         Preserve point in the list buffer.  (Bug#4939)
4931         Use point-at-eol.
4932         (newsticker--treeview-list-update-highlight)
4933         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
4935 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
4937         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
4938         Remove.
4940         * calc/calc-ext.el (calc-init-extensions): Remove references to
4941         symclip.
4943         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
4945         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
4946         * calc/calc-help.el (calc-b-prefix-help): Remove references to
4947         `calc-symclip'.
4949 2009-11-16  Kevin Ryde  <user42@zip.com.au>
4951         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
4952         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
4954         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
4955         (lm-keywords-list): Allow comma-only separator like "foo,bar".
4956         Ignore trailing spaces by omit-nulls to split-string (fixing
4957         regression from Emacs 21 due to the incompatible split-string
4958         change).  (Bug #4928.)
4960 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4962         * vc.el (vc-log-show-limit): Default to 2000.
4963         (vc-print-log-internal): Insert buttons to request more entries
4964         when limiting the output.
4966         * vc-sccs.el (vc-sccs-print-log):
4967         * vc-rcs.el (vc-rcs-print-log):
4968         * vc-cvs.el (vc-cvs-print-log):
4969         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
4970         LIMIT is non-nil.
4972 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
4974         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
4975         error when `tramp-gvfs-dbus-event-vector' is set.
4976         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
4978 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4980         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
4982 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
4984         * net/dbus.el (dbus-unregister-service): New defun.
4985         (dbus-register-property): Register the handlers of
4986         "org.freedesktop.DBus.Properties" for SERVICE.
4987         (dbus-property-handler): Fix docstring.
4989 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4991         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
4992         Quote doc string reference in defvaralias as it is not in special form.
4993         (byte-compile-output-docform): Doc fix.
4995 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
4997         * calc/calc.el (math-2-word-size, math-half-2-word-size)
4998         (calc-complement-signed-mode): New variables.
4999         (calc-set-mode-line): Add indicator for twos-complements.
5000         (math-format-number): Format twos-complement notation.
5002         * calc/calc-bin.el (calc-word-size): Reset the variables
5003         `math-2-word-size' and `math-half-2-word-size'.
5004         (math-format-complement-signed, math-symclip, calcFunc-symclip)
5005         (calc-symclip): New functions.
5007         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
5009         * calc/calc-embed.el (calc-embedded-mode-vars):
5010         Add `calc-complement-signed-mode' to the list of modes.
5012         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
5013         (calc-b-oper-keys): Add `calc-symclip' to list.
5015         * calc/calc-ext.el (math-read-number-fancy): Read complement
5016         signed numbers.
5017         (calc-init-extensions): Add binding for `calc-symclip'.
5018         Add autoload for `calcFunc-symclip' and `calc-symclip'.
5020         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
5021         `calc-symclip'.
5022         (calc-modes-menu): Add item for twos complement mode.
5024         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
5026 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
5028         * register.el (jump-to-register, insert-register): Handle Semantic
5029         tags.  From commented-out advice in semantic/senator.el.
5031 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
5033         * vc.el (vc-log-show-limit): New variable.
5034         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
5035         when using a prefix argument.
5036         (vc-print-log-internal): Add new argument LIMIT.
5038         * vc-svn.el (vc-svn-print-log):
5039         * vc-mtn.el (vc-mtn-print-log):
5040         * vc-hg.el (vc-hg-print-log):
5041         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
5042         pass it to the log command when set.  Make the BUFFER argument
5043         non-optional.
5045         * vc-sccs.el (vc-sccs-print-log):
5046         * vc-rcs.el (vc-rcs-print-log):
5047         * vc-git.el (vc-git-print-log):
5048         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
5049         ignore it.  Make the BUFFER argument non-optional
5051         * bindings.el (mode-line-buffer-identification): Do not purecopy.
5053 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
5055         * dired.el (dired-mode-map): Move encryption items to "Operate"
5056         menu (Bug#4703).
5058         * strokes.el (strokes-update-window-configuration): Make strokes
5059         buffer current before erasing (Bug#4906).
5061 2009-11-15  Juri Linkov  <juri@jurta.org>
5063         * simple.el (set-mark-default-inactive): Add :type, :group
5064         and :version.  (Bug#4876)
5066 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
5068         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
5069         (archive-unique-fname): ... here.  (Bug#4929)
5071 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5073         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
5074         with a real fix.
5076         * novice.el (disabled-command-function): Add useful args.
5077         Setup the help buffer so that [back] works.
5078         Remove redundant call to help-mode.
5079         (disabled-command-function): Use `case'.
5080         (en/disable-command): New function extracted from enable-command.
5081         (enable-command, disable-command): Use it.
5083 2009-11-14  Glenn Morris  <rgm@gnu.org>
5085         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
5086         constants.  (Bug#4913)
5088         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
5090 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
5092         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
5093         defined in C that have no doc-strings.  (Bug#1063)
5095 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
5097         * cus-edit.el (data, files):
5098         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
5100 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
5102         * simple.el (shell-command): Doc fix (Bug#4891).
5104         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
5106 2009-11-14  Glenn Morris  <rgm@gnu.org>
5108         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
5109         statements for vc-diff, emerge-quit, and rmail-cease-edit.
5110         If they are already loaded, eval-after-load will do the right thing.
5112         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
5113         compiling.
5115         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
5117         * simple.el (x-selection-owner-p): Declare.
5118         (read-mail-command): Use custom radio type rather than choice.
5119         (completion-no-auto-exit): Doc fix.
5121         * custom.el (defgroup):
5122         * epg-config.el (epg): Doc fixes.
5124 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
5126         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
5127         * international/ccl.el (define-ccl-program): Do not purecopy the
5128         docstring, defconst does it anyway.
5130 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5132         * add-log.el (add-change-log-entry): Avoid displaying the changelog
5133         a second time.
5135         * x-dnd.el (x-dnd-maybe-call-test-function):
5136         * window.el (split-window-vertically):
5137         * whitespace.el (whitespace-help-on):
5138         * vc-rcs.el (vc-rcs-consult-headers):
5139         * userlock.el (ask-user-about-lock-help)
5140         (ask-user-about-supersession-help):
5141         * type-break.el (type-break-force-mode-line-update):
5142         * time-stamp.el (time-stamp-conv-warn):
5143         * terminal.el (te-set-output-log, te-more-break, te-filter)
5144         (te-sentinel, terminal-emulator):
5145         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
5146         (term-write-input-ring, term-check-source, term-start-output-log):
5147         (term-display-buffer-line, term-dynamic-list-completions):
5148         (term-ansi-make-term, serial-term):
5149         * subr.el (selective-display):
5150         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
5151         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
5152         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
5153         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
5154         (speedbar-remove-localized-speedbar-support)
5155         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
5156         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
5157         (speedbar-buffers-line-directory):
5158         * simple.el (shell-command-on-region, append-to-buffer)
5159         (prepend-to-buffer):
5160         * shadowfile.el (shadow-save-todo-file):
5161         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
5162         (scroll-bar-maybe-set-window-start):
5163         * sb-image.el (speedbar-image-dump):
5164         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
5165         (load-save-place-alist-from-file):
5166         * ps-samp.el (ps-print-message-from-summary):
5167         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
5168         (ps-background-image, ps-begin-job, ps-do-despool):
5169         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
5170         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
5171         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
5172         (pr-call-process, pr-file-list, pr-interface-save):
5173         * novice.el (disabled-command-function)
5174         (enable-command, disable-command):
5175         * mouse.el (mouse-buffer-menu-alist):
5176         * mouse-copy.el (mouse-kill-preserving-secondary):
5177         * macros.el (kbd-macro-query):
5178         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
5179         * informat.el (batch-info-validate):
5180         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
5181         * hippie-exp.el (try-expand-dabbrev-visible):
5182         * help-mode.el (help-make-xrefs):
5183         * help-fns.el (describe-variable):
5184         * generic-x.el (bat-generic-mode-run-as-comint):
5185         * finder.el (finder-mouse-select):
5186         * find-dired.el (find-dired-sentinel):
5187         * filesets.el (filesets-file-close):
5188         * files.el (list-directory):
5189         * faces.el (list-faces-display, describe-face):
5190         * facemenu.el (list-colors-display):
5191         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
5192         * epg.el (epg--process-filter, epg-cancel):
5193         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
5194         (epa--read-signature-type):
5195         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
5196         (emerge-file-names):
5197         * ehelp.el (electric-helpify):
5198         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
5199         * ediff-vers.el (rcs-ediff-view-revision):
5200         * ediff-util.el (ediff-setup):
5201         * ediff-mult.el (ediff-append-custom-diff):
5202         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
5203         (ediff-wordify):
5204         * echistory.el (Electric-command-history-redo-expression):
5205         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
5206         * disp-table.el (describe-display-table):
5207         * dired.el (dired-find-buffer-nocreate):
5208         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
5209         * dabbrev.el (dabbrev--same-major-mode-p):
5210         * chistory.el (list-command-history):
5211         * apropos.el (apropos-documentation):
5212         * allout.el (allout-obtain-passphrase):
5213         (allout-copy-exposed-to-buffer):
5214         (allout-verify-passphrase): Use with-current-buffer.
5216 2009-11-13  Glenn Morris  <rgm@gnu.org>
5218         * Makefile.in (ELCFILES): Regenerate.
5220 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
5222         * net/dbus.el (dbus-registered-objects-table): Rename from
5223         `dbus-registered-functions-table', because it contains also properties.
5224         (dbus-unregister-object): Unregister also properties.
5225         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
5226         Use a timeout of 500 msec, in order to not block.
5227         (dbus-register-property, dbus-property-handler): New defuns.
5229 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5231         * simple.el (minibuffer-default-add-completions): Drop deprecated
5232         4th arg.
5234 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
5236         * textmodes/artist.el (artist-mouse-choose-operation):
5237         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
5238         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
5239         (artist-compute-up-event-key): New function.
5240         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
5242 2009-11-13  Kenichi Handa  <handa@m17n.org>
5244         * language/japan-util.el: Make sure that the value of jisx0208
5245         property is jisx0208 character.
5247 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
5249         * international/mule.el (auto-coding-regexp-alist): Only purecopy
5250         car or each item, not the whole list.
5252 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5254         * minibuffer.el (minibuffer-completion-help):
5255         Use minibuffer-hide-completions.
5257 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
5259         * dired.el (dired-save-positions, dired-restore-positions): New funs.
5260         (dired-revert): Use them (bug#4880).
5262 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
5264         * tooltip.el (tooltip-frame-parameters): Undo previous change.
5266 2009-11-12  Juri Linkov  <juri@jurta.org>
5268         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
5269         New functions.
5270         (find-file-literally-at-point): Alias of `ffap-literally'.
5272 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
5274         * textmodes/ispell.el (ispell-skip-region-alist):
5275         * textmodes/css-mode.el (auto-mode-alist):
5276         * progmodes/compile.el (auto-mode-alist):
5277         * international/mule.el (ctext-non-standard-encodings-alist)
5278         (ctext-non-standard-encodings-regexp):
5279         * simple.el (shell-command-switch, text-read-only):
5280         * replace.el (occur-mode-map):
5281         * paths.el (rmail-file-name):
5282         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
5283         * find-file.el (ff-special-constructs):
5284         * files.el (file-name-handler-alist):
5285         * composite.el: Purecopy strings.
5287         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
5289 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
5291         * widget.el (define-widget): Purecopy the docstring.
5292         * international/mule-cmds.el (charset): Do not purecopy the
5293         docstring here, define-widget does it.
5295         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
5296         * textmodes/bibtex-style.el (auto-mode-alist):
5297         * progmodes/inf-lisp.el (inferior-lisp-prompt):
5298         * progmodes/compile.el (compile-command):
5299         * language/korea-util.el (default-korean-keyboard):
5300         * international/mule-conf.el (file-coding-system-alist):
5301         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
5302         * tooltip.el (tooltip-frame-parameters):
5303         * newcomment.el (comment-end, comment-padding):
5304         * dired.el (dired-trivial-filenames):
5305         * comint.el (comint-file-name-prefix): Purecopy initial values.
5307 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
5309         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
5310         (tramp-advice-minibuffer-electric-tilde): Unload advices via
5311         `tramp-unload'.
5312         (tramp-advice-make-auto-save-file-name)
5313         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
5314         after removing the advice.
5316 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
5318         * progmodes/grep.el (grep-regexp-alist):
5319         * international/mule-cmds.el (iso-2022-control-alist):
5320         * emacs-lisp/timer.el (timer-duration-words):
5321         * subr.el (version-separator, version-regexp-alist):
5322         * minibuffer.el (completion-styles-alist):
5323         * faces.el (face-attribute-name-alist, list-faces-sample-text):
5324         Change defvars to defconsts.
5326         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
5327         * loadup.el ("international/mule-conf"): Load the byte compiled version.
5328         * international/mule-conf.el: Allow to be byte compiled.
5330         * international/mule.el (define-charset): Purecopy props.
5331         (load-with-code-conversion): Purecopy doc string and file name.
5332         (put-charset-property): Purecopy strings.
5333         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
5335         * international/mule-cmds.el (register-input-method): Purecopy arguments.
5336         (define-char-code-property): Correctly purecopy the table.
5338         * international/ccl.el (define-ccl-program): Purecopy the docstring.
5340         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
5342         * subr.el (add-hook): Purecopy strings.
5343         (eval-after-load): Purecopy load-history-regexp and the form.
5345         * custom.el (custom-declare-group): Purecopy load-file-name.
5347         * subr.el (menu-bar-separator): New defconst.
5348         * net/eudc.el (eudc-tools-menu):
5349         * international/mule-cmds.el (set-coding-system-map)
5350         (mule-menu-keymap):
5351         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5352         * vc-hooks.el (vc-menu-map):
5353         * replace.el (occur-mode-map):
5354         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
5355         (menu-bar-edit-menu, menu-bar-goto-menu)
5356         (menu-bar-custom-menu, menu-bar-showhide-menu)
5357         (menu-bar-options-menu, menu-bar-tools-menu)
5358         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
5359         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
5360         (menu-bar-help-menu):
5361         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
5362         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
5364         * term/x-win.el (x-gtk-stock-map):
5365         * progmodes/vera-mode.el (auto-mode-alist):
5366         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
5367         (inferior-lisp-program, inferior-lisp-load-command):
5368         * progmodes/hideshow.el (hs-special-modes-alist):
5369         * progmodes/gud.el (same-window-regexps):
5370         * progmodes/grep.el (grep-program, find-program, xargs-program):
5371         * net/telnet.el (same-window-regexps):
5372         * net/rlogin.el (same-window-regexps):
5373         * language/ethiopic.el (font-ccl-encoder-alist):
5374         * vc-sccs.el (vc-sccs-master-templates):
5375         * vc-rcs.el (vc-rcs-master-templates):
5376         * subr.el (cl-assertion-failed):
5377         * simple.el (next-error-overlay-arrow-position):
5378         * lpr.el (lpr-command):
5379         * locate.el (locate-ls-subdir-switches):
5380         * info.el (same-window-regexps, info)
5381         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
5382         * image-mode.el (image-mode, auto-mode-alist):
5383         * hippie-exp.el (hippie-expand-ignore-buffers):
5384         * format.el (format-alist):
5385         * find-dired.el (find-ls-subdir-switches, find-grep-options)
5386         (find-name-arg):
5387         * facemenu.el (facemenu-keybindings):
5388         * dired.el (dired-listing-switches, dired-chown-program):
5389         * diff.el (diff-switches, diff-command):
5390         * cus-edit.el (same-window-regexps):
5391         * bindings.el (mode-line-mule-info)
5392         (mode-line-buffer-identification): Purecopy strings.
5394 2009-11-11  Juri Linkov  <juri@jurta.org>
5396         * simple.el (dired-get-filename) <declare-function>:
5397         Tell the byte-compiler about dired-get-filename.
5398         (shell-command): In Dired mode, get filename from the current line
5399         as the default value.
5401 2009-11-10  Glenn Morris  <rgm@gnu.org>
5403         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
5404         * calendar/holidays.el, progmodes/cperl-mode.el:
5405         Update x-popup-menu declarations.
5407         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
5408         (list-load-path-shadows): Use dolist.
5409         (list-load-path-shadows): Use with-current-buffer.
5411 2009-11-10  Juri Linkov  <juri@jurta.org>
5413         * minibuffer.el (read-file-name): Support a list of default values
5414         in `default-filename'.  Use the first file name where only one
5415         element is required.  Doc fix.
5417 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
5419         * net/dbus.el (dbus-unregister-object): Release service, if no
5420         other method is registered for it.
5422 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
5424         * bookmark.el (bookmark-completing-read): Sort bookmark names if
5425         bookmark-sort-flag is non-nil (Bug#4653).
5427 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
5429         * emulation/cua-base.el: Add CUA property to some CC mode commands
5430         (Bug#4100).
5432 2009-11-08  Kevin Ryde  <user42@zip.com.au>
5434         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
5435         at end of sentence (Bug#4818).
5437 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
5439         * progmodes/compile.el (compilation-error-regexp-alist-alist):
5440         Handle "see declaration of" MSFT statements (Bug#4100).
5442 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
5444         * net/tramp.el (tramp-advice-make-auto-save-file-name)
5445         (tramp-advice-file-expand-wildcards): Unload via
5446         `ad-remove-advice'.
5448         * net/trampver.el: Update release number.
5450 2009-11-08  Kevin Ryde  <user42@zip.com.au>
5452         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
5453         `ad-do-it'.
5455 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
5457         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
5458         in order to keep context in SELinux.
5460 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
5462         * dired-aux.el (dired-query): Place cursor in echo area and allow
5463         C-g.
5465         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
5466         menu item if not on a directory (Bug#4701).
5468 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
5470         Sync with Tramp 2.1.17.
5472         * net/tramp.el (tramp-handle-copy-directory): Don't use
5473         `file-remote-p' (due to compatibility).
5475         * net/tramp-compat.el (tramp-compat-copy-directory)
5476         (tramp-compat-delete-directory): New defuns.
5478         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
5479         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
5480         `tramp-compat-delete-directory'.
5482         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5483         (tramp-smb-handle-delete-directory): Use
5484         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
5486         * net/trampver.el: Update release number.
5488 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
5490         * tar-mode.el (tar-copy): Call write-region on the right buffer
5491         (Bug#4857).
5493         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
5494         by hand, if necessary (Bug#4878).
5496 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
5498         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
5499         align size column (Bug#4839).
5501         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
5502         statement.
5504 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
5506         * progmodes/ld-script.el (auto-mode-alist):
5507         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
5509         * cus-face.el (custom-declare-face): Purecopy face spec.
5511 2009-11-06  Kenichi Handa  <handa@m17n.org>
5513         * international/uni-bidi.el: Re-generated.
5514         * international/uni-category.el: Re-generated.
5515         * international/uni-combining.el: Re-generated.
5516         * international/uni-mirrored.el: Re-generated.
5518 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
5520         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
5521         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
5522         (tex-start-options, slitex-run-command, latex-run-command)
5523         (tex-run-command, tex-directory):
5524         * textmodes/ispell.el (ispell-html-skip-alists)
5525         (ispell-tex-skip-alists, ispell-tex-skip-alists):
5526         * textmodes/fill.el (adaptive-fill-first-line-regexp):
5527         (adaptive-fill-regexp):
5528         * textmodes/dns-mode.el (auto-mode-alist):
5529         * progmodes/python.el (interpreter-mode-alist):
5530         * progmodes/etags.el (tags-compression-info-list):
5531         * progmodes/etags.el (tags-file-name):
5532         * net/browse-url.el (browse-url-galeon-program)
5533         (browse-url-firefox-program):
5534         * mail/sendmail.el (mail-signature-file)
5535         (mail-citation-prefix-regexp):
5536         * international/mule-conf.el (eight-bit):
5537         * international/latexenc.el (latex-inputenc-coding-alist):
5538         * international/fontset.el (x-pixel-size-width-font-regexp):
5539         * emacs-lisp/warnings.el (warning-type-format):
5540         * emacs-lisp/trace.el (trace-buffer):
5541         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
5542         (emacs-lisp-mode-map):
5543         * calendar/holidays.el (holiday-solar-holidays)
5544         (holiday-bahai-holidays, holiday-islamic-holidays)
5545         (holiday-christian-holidays, holiday-hebrew-holidays)
5546         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
5547         (hebrew-holidays-1, holiday-oriental-holidays)
5548         (holiday-general-holidays):
5549         * x-dnd.el (x-dnd-known-types):
5550         * tool-bar.el (tool-bar):
5551         * startup.el (site-run-file):
5552         * shell.el (shell-dumb-shell-regexp):
5553         * rfn-eshadow.el (file-name-shadow-tty-properties)
5554         (file-name-shadow-properties):
5555         * paths.el (remote-shell-program, news-directory):
5556         * mouse.el ([C-down-mouse-3]):
5557         * menu-bar.el (menu-bar-tools-menu):
5558         * jka-cmpr-hook.el (jka-compr-load-suffixes)
5559         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
5560         (jka-compr-compression-info-list):
5561         * isearch.el (search-whitespace-regexp):
5562         * image-file.el (image-file-name-extensions):
5563         * find-dired.el (find-ls-option):
5564         * files.el (directory-listing-before-filename-regexp)
5565         (directory-free-space-args, insert-directory-program)
5566         (list-directory-brief-switches, magic-fallback-mode-alist)
5567         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
5568         (automount-dir-prefix):
5569         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
5570         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
5571         (face-font-registry-alternatives, face-font-registry-alternatives)
5572         (face-font-family-alternatives):
5573         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
5574         (facemenu-foreground-menu, facemenu-face-menu):
5575         * epa-hook.el (epa-file-name-regexp):
5576         * dnd.el (dnd-protocol-alist):
5577         * textmodes/rst.el (auto-mode-alist):
5578         * button.el (default-button): Purecopy strings.
5580 2009-11-06  Glenn Morris  <rgm@gnu.org>
5582         * Makefile.in (ELCFILES): Update.
5584 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5586         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
5587         * emacs-lisp/levents.el: Move to obsolete/levents.el.
5589         * nxml/xsd-regexp.el (xsdre-gen-categories):
5590         * nxml/xmltok.el (xmltok-parse-entity):
5591         * nxml/rng-parse.el (rng-parse-validate-file):
5592         * nxml/rng-maint.el (rng-format-manual)
5593         (rng-manual-output-force-new-line):
5594         * nxml/rng-loc.el (rng-save-schema-location-1):
5595         * nxml/rng-cmpct.el (rng-c-parse-file):
5596         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
5597         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
5599 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
5601         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
5602         Remove extra save-excursions and make-variable-buffer-local's.
5603         Suggested by Stefan Monnier.
5605         (verilog-getopt-file, verilog-module-inside-filename-p)
5606         (verilog-set-define): Merge GNU 1.35 and repair changes from
5607         switching to using with-current-buffer.
5609         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
5610         being treated as a number and confusing AUTORESET.
5611         Reported by Dan Dever.
5613         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
5614         Add verilog-auto-ignore-concat to fix backward compatibility with
5615         older verilog-modes.  Reported by Dan Katz.
5617         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
5618         containing closing anchors "...$".
5620         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
5621         Reported by Wade Smith.
5623         (verilog-batch-execute-func): Comment on function usage.
5625 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
5627         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
5628         for labels.
5630         (verilog-label-re, verilog-calc-1): Support proper indent of named
5631         asserts.
5633         (verilog-backward-token, verilog-basic-complete-re)
5634         (verilog-beg-of-statement, verilog-indent-re): Support proper
5635         indent of the assert statement at the beginning of a block of text.
5637         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
5638         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
5639         tokens as begins.
5641 2009-11-05  Glenn Morris  <rgm@gnu.org>
5643         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
5644         Emacs 19.  (Bug#1531)
5645         (byte-compile-fix-header): Update for the above change.
5646         Drop test for epoch::version.
5648         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
5649         * cus-dep.el (custom-make-dependencies):
5650         * finder.el (finder-compile-keywords):
5651         Use autoload-rubric's feature argument.
5653         * calendar/diary-lib.el (top-level): Make load behave more like require.
5655         * vc-git.el (vc-git-stash-map): Move definition before use.
5657 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
5659         * custom.el (custom-declare-group): Purecopy standard-value.
5660         (custom-declare-group): Purecopy custom-prefix.
5662         * international/mule.el (load-with-code-conversion):
5663         Call do-after-load-evaluation unconditionally.
5665         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
5667 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5669         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
5671 2009-11-04  Glenn Morris  <rgm@gnu.org>
5673         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
5674         (byte-compile-compatibility): Remove option.
5675         (byte-compile-close-variables, byte-compile-fix-header)
5676         (byte-compile-insert-header, byte-compile-output-docform)
5677         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
5678         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
5679         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
5680         (byte-compile-insert, byte-compile-defun):
5681         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
5682         (byte-defop-compiler19): Remove.
5683         Without byte-compile-compatibility, the 'emacs19-opcode property is not
5684         used by anything.  Replace all calls with byte-defop-compiler.
5686 2009-11-04  Juri Linkov  <juri@jurta.org>
5688         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
5689         (menu-bar-options-menu): Don't quote the `prop' arg of
5690         `menu-bar-make-mm-toggle'.
5692 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
5694         * calendar/calendar.el (cal-loaddefs):
5695         * calendar/diary-lib.el (diary-loaddefs):
5696         * calendar/holidays.el (hol-loaddefs):
5697         * eshell/esh-module.el (esh-groups): Load rather than require.
5699 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5701         * calendar/todo-mode.el (todo-add-category): Don't hardcode
5702         point-min==1.
5703         (todo-top-priorities): Only display-buffer when called interactively.
5704         (todo-item-start): Don't save excursion point.
5705         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
5706         (todo-insert-item-here, todo-file-item, todo-remove-item):
5707         Adjust uses of todo-item-start and todo-item-end.
5709         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
5710         (autoload-rubric): Don't use any more.
5712         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
5713         and only put a prop if it is non-nil.
5715 2009-11-03  Juri Linkov  <juri@jurta.org>
5717         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
5718         (menu-bar-options-menu): Fix list quoting (Bug#4429).
5720         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
5721         and "Menu" to make top-level menu item visually one unit (like
5722         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
5723         multi-word menu items).  Fix :help string for quit-window.
5725 2009-11-03  Glenn Morris  <rgm@gnu.org>
5727         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
5728         (byte-compile-file-form-define-abbrev-table)
5729         (byte-compile-file-form-custom-declare-variable)
5730         (byte-compile-variable-ref, byte-compile-defvar):
5731         Whether or not a warning is enabled should only affect whether we issue
5732         the warning, not whether or not we collect the relevant data.
5733         Eg warnings can be turned on and off throughout the course of a file.
5735         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
5736         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
5738 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5740         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
5741         * play/mpuz.el (mpuz-create-buffer):
5742         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
5743         (lm-print-y,s,noise, lm-print-w0, lm-init):
5744         * play/gomoku.el (gomoku-prompt-for-move):
5745         * play/fortune.el (fortune-in-buffer):
5746         * play/dissociate.el (dissociated-press):
5747         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
5748         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
5749         * mail/supercite.el (sc-eref-show):
5750         * mail/smtpmail.el (smtpmail-send-it):
5751         * mail/rmailsum.el (rmail-summary-next-labeled-message)
5752         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
5753         (rmail-summary-undelete-many, rmail-summary-rmail-update)
5754         (rmail-summary-goto-msg, rmail-summary-expunge)
5755         (rmail-summary-get-new-mail, rmail-summary-search-backward)
5756         (rmail-summary-add-label, rmail-summary-output-menu)
5757         (rmail-summary-output-body):
5758         * mail/rfc822.el (rfc822-addresses):
5759         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
5760         * mail/mailpost.el (post-mail-send-it):
5761         * mail/hashcash.el (hashcash-generate-payment):
5762         * mail/feedmail.el (feedmail-run-the-queue)
5763         (feedmail-queue-send-edit-prompt-help-first)
5764         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
5765         (feedmail-deduce-address-list):
5766         * eshell/esh-ext.el (eshell-remote-command):
5767         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
5768         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
5769         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
5770         (viper-save-string-in-file, viper-valid-marker):
5771         * emulation/viper-keym.el (viper-toggle-key):
5772         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
5773         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
5774         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
5775         * emulation/viper-cmd.el (viper-exec-form-in-vi)
5776         (viper-exec-form-in-emacs, viper-brac-function):
5777         * emulation/viper.el (viper-delocalize-var):
5778         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
5779         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
5780         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
5781         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
5782         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
5783         * emulation/edt.el (edt-electric-helpify):
5784         * emulation/cua-rect.el (cua--rectangle-aux-replace):
5785         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
5786         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
5787         (cua-indent-to-global-mark-column):
5788         * calendar/diary-lib.el (calendar-mark-1):
5789         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
5790         Use with-current-buffer.
5791         * emulation/viper.el (viper-delocalize-var): Use dolist.
5793 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
5795         * comint.el (comint-replace-by-expanded-history-before-point):
5796         Replace !! with the previous input string literally (Bug#1795).
5798 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
5800         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
5801         to be made up of whitespace.
5803 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
5805         * minibuffer.el (read-file-name): Don't use file dialogs for
5806         remote directories (Bug#99).
5808 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
5810         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
5812 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
5814         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
5815         instead of deleting the window or frame.
5817 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
5819         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
5820         Support face colors.
5822         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
5823         New function.  Support face colors (Bug#1168).
5824         (tex-common-initialization): Use it.
5826         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
5827         mode allows it (Bug#1168).
5829 2009-10-31  Juri Linkov  <juri@jurta.org>
5831         * facemenu.el (list-colors-display): Don't mark buffer as
5832         modified (Bug#3948).
5834 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
5836         * international/mule-diag.el (list-character-sets-1): Minor
5837         message fix (Bug#3526).
5839         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
5840         face property (Bug#4834).
5841         (etags-list-tags, etags-tags-apropos-additional)
5842         (etags-tags-apropos, tags-select-tags-table): Add follow-link
5843         property.
5845         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
5846         items.
5848 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5850         * textmodes/two-column.el (2C-split):
5851         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
5852         * textmodes/tex-mode.el (tex-set-buffer-directory):
5853         * textmodes/spell.el (spell-region, spell-string):
5854         * textmodes/reftex.el (reftex-erase-buffer):
5855         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
5856         * textmodes/reftex-toc.el (reftex-toc-promote-action):
5857         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
5858         (reftex-select-item):
5859         * textmodes/reftex-ref.el (reftex-label-info-update)
5860         (reftex-offer-label-menu):
5861         * textmodes/reftex-index.el (reftex-index-change-entry)
5862         (reftex-index-phrases-info):
5863         * textmodes/reftex-global.el (reftex-create-tags-file)
5864         (reftex-save-all-document-buffers, reftex-ensure-write-access):
5865         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
5866         (reftex-view-crossref-from-bibtex):
5867         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
5868         (reftex-extract-bib-entries-from-thebibliography)
5869         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
5870         * textmodes/refbib.el (r2b-capitalize-title):
5871         (r2b-convert-buffer, r2b-help):
5872         * textmodes/page-ext.el (pages-directory)
5873         (pages-directory-goto-with-mouse):
5874         * textmodes/bibtex.el (bibtex-validate-globally):
5875         * textmodes/bib-mode.el (bib-capitalize-title):
5876         * textmodes/artist.el (artist-clear-buffer, artist-system):
5877         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
5878         (local-set-scheme-interaction-buffer, xscheme-process-filter)
5879         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
5880         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
5881         (xscheme-send-control-g-interrupt, xscheme-start-process)
5882         (xscheme-process-sentinel, xscheme-cd):
5883         * progmodes/verilog-mode.el (verilog-read-always-signals)
5884         (verilog-set-define, verilog-getopt-file)
5885         (verilog-module-inside-filename-p):
5886         * progmodes/sh-script.el:
5887         * progmodes/python.el (python-pdbtrack-get-source-buffer)
5888         (python-pdbtrack-grub-for-buffer, python-execute-file):
5889         * progmodes/octave-inf.el (inferior-octave):
5890         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
5891         (idlwave-shell-compile-helper-routines, idlwave-set-local)
5892         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
5893         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
5894         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
5895         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
5896         (idlwave-shell-filter, idlwave-shell-examine-highlight)
5897         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
5898         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
5899         (idlwave-shell-examine-display, idlwave-shell-run-region)
5900         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
5901         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
5902         * progmodes/idlw-help.el (idlwave-help-get-special-help)
5903         (idlwave-help-get-help-buffer):
5904         * progmodes/gud.el (gud-basic-call, gud-find-class)
5905         (gud-tooltip-activate-mouse-motions-if-enabled):
5906         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
5907         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
5908         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
5909         (ebrowse-tags-next-file):
5910         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
5911         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
5912         (ebnf-eps-finish-and-write):
5913         * progmodes/cpp.el (cpp-edit-save):
5914         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
5915         * progmodes/cc-defs.el (c-emacs-features):
5916         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
5917         (antlr-directory-dependencies):
5918         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
5919         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
5920         (ada-find-any-references, ada-make-filename-from-adaname)
5921         (ada-make-body-gnatstub):
5922         * obsolete/rnews.el (news-list-news-groups):
5923         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
5924         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
5925         * net/rcirc.el (rcirc-debug):
5926         * net/newst-treeview.el (newsticker--treeview-list-add-item)
5927         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
5928         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
5929         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
5930         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
5931         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
5932         (newsticker--treeview-list-clear-highlight)
5933         (newsticker--treeview-list-update-highlight)
5934         (newsticker--treeview-list-highlight-start)
5935         (newsticker--treeview-tree-update-highlight)
5936         (newsticker--treeview-get-selected-item)
5937         (newsticker-treeview-mark-list-items-old)
5938         (newsticker--treeview-set-current-node):
5939         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
5940         * net/newst-backend.el (newsticker--get-news-by-funcall)
5941         (newsticker--get-news-by-wget, newsticker--image-get)
5942         (newsticker--image-sentinel):
5943         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
5944         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
5945         (eudc-ph-close-session):
5946         * net/eudc.el (eudc-save-options):
5947         * language/thai-word.el (thai-update-word-table):
5948         * language/japan-util.el (japanese-string-conversion):
5949         * international/titdic-cnv.el (tsang-quick-converter)
5950         (ziranma-converter, ctlau-converter):
5951         * international/mule-cmds.el (describe-language-environment):
5952         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
5953         (skkdic-convert-postfix, skkdic-convert-prefix):
5954         (skkdic-convert-okuri-nasi, skkdic-convert):
5955         * emacs-lisp/re-builder.el (reb-update-overlays):
5956         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
5957         * emacs-lisp/gulp.el (gulp-send-requests):
5958         * emacs-lisp/find-gc.el (trace-call-tree):
5959         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
5960         (eieio-describe-generic):
5961         * emacs-lisp/eieio-base.el (eieio-persistent-read):
5962         * emacs-lisp/edebug.el (edebug-outside-excursion):
5963         * emacs-lisp/debug.el (debugger-make-xrefs):
5964         * emacs-lisp/cust-print.el (custom-prin1-to-string):
5965         * emacs-lisp/chart.el (chart-new-buffer):
5966         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
5967         Use with-current-buffer.
5968         * textmodes/artist.el (artist-system): Don't call
5969         copy-sequence on a fresh string.
5970         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
5972 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
5974         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
5975         is no item to edit.  (Bug#4820)
5976         (todo-top-priorities): Restore point and restore narrowing in Todo
5977         buffer.  (Bug#4820)
5979 2009-10-31  Glenn Morris  <rgm@gnu.org>
5981         * net/ange-ftp.el (top-level): Don't require dired when compiling.
5982         (comint-last-output-start, comint-last-input-start)
5983         (comint-last-input-end): Don't defvar when compiling.
5984         (ange-ftp-process-file): Use bound-and-true-p.
5986         * pcmpl-rpm.el (top-level): Move provide statement to end.
5987         (pcmpl-rpm): Remove unused custom group.
5989         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
5991         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
5993         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
5994         (byte-compile-warnings): Add `constants' as an option.
5995         (byte-compile-callargs-warn, byte-compile-arglist-warn)
5996         (display-call-tree): Update for byte-compile-fdefinition possibly
5997         returning `(macro lambda ...)'.  (Bug#4778)
5998         (byte-compile-variable-ref, byte-compile-setq-default):
5999         Respect `constants' member of byte-compile-warnings.
6001 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6003         * vc-bzr.el (vc-bzr-revision-keywords): New var.
6004         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
6005         to "submit:".
6007 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
6009         * textmodes/ispell.el (ispell-skip-region-alist):
6010         * international/mule-conf.el (eight-bit):
6011         * international/fontset.el (font-encoding-alist):
6012         * startup.el (pure-space-overflow-message):
6013         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
6014         * paths.el (gnus-nntp-service, rmail-spool-directory)
6015         (term-file-prefix):
6016         * files.el (save-some-buffers-action-alist):
6017         * cmuscheme.el (same-window-buffer-names):
6018         * ielm.el (same-window-buffer-names):
6019         * shell.el (same-window-buffer-names):
6020         * mail/sendmail.el (same-window-buffer-names):
6021         * progmodes/inf-lisp.el (same-window-buffer-names):
6022         * bindings.el (mode-line-client)
6023         (mode-line-column-line-number-mode-map):
6024         * language/tibetan.el (tibetan-precomposition-rule-regexp)
6025         (tibetan-precomposed-regexp): Purecopy string arguments.
6027 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6029         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
6030         (calcDigit-nondigit):
6031         * calc/calc-yank.el (calc-copy-to-buffer):
6032         * calc/calc-units.el (calc-invalidate-units-table):
6033         * calc/calc-trail.el (calc-trail-yank):
6034         * calc/calc-store.el (calc-insert-variables):
6035         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
6036         * calc/calc-prog.el (calc-read-parse-table):
6037         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
6038         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
6039         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
6040         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
6041         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
6042         (calc-graph-name, calc-graph-find-command, calc-graph-view)
6043         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
6044         * calc/calc-ext.el (calc-realign):
6045         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
6046         (calc-embedded-finish-edit, calc-embedded-make-info)
6047         (calc-embedded-finish-command, calc-embedded-stack-change):
6048         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
6050         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
6051         shell-dynamic-complete-filename in preference to
6052         comint-dynamic-complete-filename.
6054         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
6055         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
6056         Don't consider whether the display supports colors.
6057         (bookmark-import-new-list): Use dolist.
6058         (bookmark-bmenu-mode-map): Move initialization into declaration.
6059         (bookmark-bmenu-list): Use dolist, simplify.
6060         (bookmark-show-all-annotations): Use save-selected-window and dolist.
6061         (menu-bar-final-items): Use push.
6063 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
6065         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
6066         it works on remote files.
6067         (vc-hg-diff): Don't pass any `--cwd' argument.
6069 2009-10-27  Kevin Ryde  <user42@zip.com.au>
6071         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6072         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
6073         (Further to Bug#3921).
6075 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
6077         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
6078         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
6079         calling `tramp-imap-put-file'.  Add file size to the call.
6080         (tramp-imap-get-file-entries): Compute also user name, file size,
6081         and date.
6082         (tramp-imap-handle-insert-directory): Insert uid and gid.
6083         (tramp-imap-handle-file-attributes): Transform uid and gid
6084         according to `id-format'.
6085         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
6086         size in header X-Size.
6088 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
6090         * simple.el (transpose-subr): Give clearer error when the mark
6091         is not set.  (Bug#4807)
6093 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
6095         * net/tramp.el (tramp-perl-file-truename): New defconst.
6096         Perl code contributed by yary <not.com@gmail.com> (tiny change).
6097         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
6098         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
6099         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
6101         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
6102         Ignore `dired-call-process'.
6103         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
6105 2009-10-26  Julian Scheid  <julians37@gmail.com>
6107         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
6108         (tramp-get-remote-readlink): New defun.
6109         (tramp-handle-file-truename): Use it.
6110         (tramp-handle-file-exists-p): Check file-attributes cache, assume
6111         file exists if cache value present.
6112         (tramp-check-cached-permissions): New defun.
6113         (tramp-handle-file-readable-p): Use it.
6114         (tramp-handle-file-writable-p): Likewise.
6115         (tramp-handle-file-executable-p): Likewise.
6116         (tramp-handle-file-name-all-completions): Try using Perl to get
6117         partial completions.  When perl not available, combine `cd' and
6118         `ls' into single remote operation and use shell expansion to get
6119         partial remote directory contents.  Set `file-exists-p' cache for
6120         directory and any files returned by ls.  Change cache handling to
6121         support partial directory contents.  Use error message emitted by
6122         remote `cd' or Perl code for local tramp-error.
6123         (tramp-do-copy-or-rename-file-directly): Avoid separate
6124         tramp-send-command-and-check call.
6125         (tramp-handle-process-file): Merge three remote ops into one.
6126         Do not flush all caches when `process-file-side-effects' is set.
6127         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
6128         file-attributes shows uid/gid to be set already.
6130 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
6132         * textmodes/tex-mode.el (tex-dvi-view-command)
6133         (tex-show-queue-command, tex-open-quote):
6134         * progmodes/ruby-mode.el (auto-mode-alist)
6135         (interpreter-mode-alist): Purecopy strings.
6137         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
6139         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
6140         string for the hook, keymap and abbrev table.
6142         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
6144         * x-dnd.el (x-dnd-xdnd-to-action):
6145         * startup.el (fancy-startup-text, fancy-about-text): Change to
6146         defconst from defvar.
6148         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
6150         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
6151         Purecopy initialization strings.
6153         * mail/sendmail.el (mail-header-separator)
6154         (mail-personal-alias-file):
6155         * mail/rmail.el (rmail-default-dont-reply-to-names)
6156         (rmail-ignored-headers, rmail-retry-ignored-headers)
6157         (rmail-highlighted-headers, rmail-secondary-file-directory)
6158         (rmail-secondary-file-regexp):
6159         * files.el (null-device, file-name-invalid-regexp)
6160         (locate-dominating-stop-dir-regexp)
6161         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
6162         (interpreter-mode-alist): Use mapcar instead of mapc.
6164         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
6166         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
6167         (completion-ignored-extensions):
6168         (debug-ignored-errors): Purecopy strings.
6170 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6172         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
6173         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
6174         (pcomplete--here): Use push.
6176         * subr.el (all-completions): Declare the 4th arg obsolete.
6178 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6180         * pcomplete.el (pcomplete-unquote-argument-function): New var.
6181         (pcomplete-unquote-argument): New function.
6182         (pcomplete--common-suffix): Always pay attention to case.
6183         (pcomplete--table-subvert): Quote and unquote the text.
6184         (pcomplete--common-quoted-suffix): New function.
6185         (pcomplete-std-complete): Use it and pcomplete-begin.
6187         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
6188         we're inside a dedicated or minibuffer window.
6190 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
6192         * bookmark.el: Update documentation, especially documentation
6193         of `bookmark-alist' and of the bookmark file format.
6194         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
6196 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
6198         * mail/emacsbug.el (report-emacs-bug): Clarify that the
6199         keybindings apply to the mail buffer (Bug#4003).  Shrink help
6200         window to buffer.
6202         * whitespace.el (whitespace-mode, whitespace-newline-mode)
6203         (global-whitespace-mode, global-whitespace-newline-mode)
6204         (whitespace-toggle-options, global-whitespace-toggle-options):
6205         Doc fix (Bug#3660).
6207         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
6208         of xmltok-start before the end tag was inserted (Bug#2840).
6210         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
6211         patterns that are preceded by an open-paren (Bug#1320).
6213 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
6215         * files.el (delete-directory): Delete symlinks to directories with
6216         delete-file (Bug#4739).
6218 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
6220         * vc.el (vc-backend-for-registration): Rename from
6221         vc-get-backend-for-registration.  Update callers.
6223         * international/mule-cmds.el (set-language-info-alist):
6224         Purecopy lang-env.
6225         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
6226         (charset): Purecopy the name.
6227         (define-char-code-property): Purecopy string arguments.
6229         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
6230         Purecopy string arguments.
6232         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
6233         * ediff-hook.el (menu-bar-ediff-menu):
6234         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
6235         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
6237 2009-10-24  Glenn Morris  <rgm@gnu.org>
6239         * comint.el (comint-dynamic-list-completions):
6240         * term.el (term-dynamic-list-completions): Use choose-completion rather
6241         than obsolete alias mouse-choose-completion.
6243         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
6244         file-cache-choose-completion.
6245         (file-cache-choose-completion): Handle an optional event argument.
6246         (file-cache-mouse-choose-completion): Make it an obsolete alias.
6248         * progmodes/octave-mod.el (octave-complete-symbol):
6249         Use choose-completion if mouse-choose-completion is ever removed.
6251         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
6252         use.
6254         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
6255         compiler.
6257         * vc-hooks.el (vc-responsible-backend): Fix declaration.
6259 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6261         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
6262         Ignore `pred' now that we receive one.
6263         Handle test-completion specially.
6265 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
6267         * vc.el (vc-responsible-backend): Throw an error if not backend is
6268         found.  Remove the REGISTER argument.  Move the code dealing with
6269         REGISTER ...
6270         (vc-get-backend-for-registration): ... here.  New function.
6271         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
6272         of vc-responsible-backend, pass the file name instead of the
6273         directory name.
6275 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6277         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
6278         New funs.
6279         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
6280         (pcomplete-comint-setup): Don't modify a global var via
6281         accidental side-effects.
6282         (pcomplete-shell-setup): Adjust call accordingly.
6283         (pcomplete-parse-comint-arguments): Use push.
6285 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
6287         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
6288         Allow uncapitalized info node names (Bug#3921).
6290         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
6291         to the DEBUG file (Bug#3781).
6293 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
6295         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
6296         dictionary entry (Bug#4579).
6298 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
6300         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
6301         from `rfn-eshadow-update-overlay-hook' when unloading.
6302         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
6303         "rsyncc".  Adjust doc string.
6304         (tramp-temp-buffer-file-name): New buffer-local defvar.
6305         (tramp-handle-insert-file-contents, tramp-handle-write-region):
6306         Keep temporary file when indicated by method ("rsync" and
6307         "rsyncc").
6308         (tramp-handle-write-region): Handle APPEND.
6309         (tramp-delete-temp-file-function): New defun.  Added to
6310         `kill-buffer-hook'.
6312 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
6314         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
6316 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
6318         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
6319         (color-name-rgb-alist, tty-standard-colors)
6320         (tty-color-mode-alist): Change to defconst.
6322         * simple.el (mark-inactive): Purecopy message.
6324         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
6325         (global-map, yank-menu):
6326         * textmodes/ispell.el (ispell-menu-map):
6327         * net/eudc.el (eudc-tools-menu):
6328         * international/mule-cmds.el (describe-language-environment-map)
6329         (setup-language-environment-map, set-coding-system-map)
6330         (mule-menu-keymap):
6331         * vc-hooks.el (vc-menu-entry, vc-menu-map):
6332         * replace.el (occur-mode-map):
6333         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
6335 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
6337         * calc/calc.el (math-read-number, math-read-number-simple): Use
6338         `save-match-data'.
6340 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6342         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
6343         rather than fiddling with global-map bindings, since it should only
6344         affect per-terminal settings.
6345         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
6347         * minibuffer.el (completion-table-with-terminator): Allow to specify
6348         the terminator-regexp.
6350         * simple.el (switch-to-completions): Look for *Completions* in other
6351         frames as well.
6353         * pcomplete.el: Allow the use of completion-tables.
6354         (pcomplete-std-complete): New command.
6355         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
6356         (pcomplete--here): Use a function for `form' rather than an expression,
6357         so it can be byte-compiled.
6358         (pcomplete-here, pcomplete-here*): Adjust accordingly.
6359         Add edebug declaration.
6360         (pcomplete-show-completions): Remove unused var `curbuf'.
6361         (pcomplete-do-complete, pcomplete-stub):
6362         Don't assume `completions' is a list of strings any more.
6364 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
6366         * find-dired.el (find-name-arg): Fix typo in docstring.
6368 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6370         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
6371         (pcmpl-linux-fs-types): Same, and update to new modules layout.
6373         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
6374         pcomplete-entries.
6376         * comint.el (comint-read-input-ring, comint-write-input-ring)
6377         (comint-substitute-in-file-name)
6378         (comint-dynamic-complete-as-filename)
6379         (comint-dynamic-simple-complete)
6380         (comint-dynamic-list-filename-completions)
6381         (comint-dynamic-list-completions)
6382         (comint-redirect-results-list-from-process): Minor simplifications.
6384 2009-10-21  Kevin Ryde  <user42@zip.com.au>
6386         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
6387         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
6388         the first form.  And insert a blank line after ";;; Code" since
6389         that's usual style.  (Bug#4612)
6391         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
6393 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6395         * minibuffer.el (completion-table-with-terminator): Properly implement
6396         boundaries, in case `terminator' appears in the suffix.
6397         (completion--embedded-envvar-table): Don't return boundaries if
6398         there's no valid completion.  Simplify.
6399         (completion-file-name-table): New completion table extracted from
6400         completion--file-name-table.
6401         (completion--file-name-table): Use it.
6402         (read-file-name-predicate): Declare obsolete.
6403         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
6404         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
6405         completion-file-name-table, and use the `pred' argument.
6406         * files.el (locate-file-completion-table): Use the `pred' arg rather
6407         than read-file-name-predicate.
6408         (abbreviate-file-name): Use \` rather than ^ for BOS.
6410 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
6412         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
6413         vc-responsible-backend to register, it causes problems.
6415 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6417         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
6419 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
6421         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
6422         (tramp-smb-handle-file-attributes): Use it.
6423         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
6424         (tramp-smb-handle-insert-directory): Use `mapc' rather than
6425         `mapcar'.  Use `tramp-smb-get-stat-capability'.
6426         Add `dired-filename' text properties.
6427         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
6428         (tramp-smb-maybe-open-connection): Simplify check for smbclient
6429         version.
6431 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6433         * subr.el (read-key-delay): Reduce to 0.01.
6434         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
6435         (bug#4751).
6437 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6439         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
6441         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
6442         (Info-menu): Remove unused vars `last' and `completions'.
6443         (Info-index-nodes): Remove unused var `node'.
6445         * info.el (Info-complete-menu-item): Use complete-with-action.
6447 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
6449         Make vc-annotate work through copies and renames.
6450         * vc-annotate.el (vc-annotate-extract-revision-at-line):
6451         Return the file name too.
6452         (vc-annotate-revision-at-line)
6453         (vc-annotate-find-revision-at-line)
6454         (vc-annotate-revision-previous-to-line)
6455         (vc-annotate-show-log-revision-at-line): Update to get the file
6456         name from vc-annotate-extract-revision-at-line.
6457         (vc-annotate-show-diff-revision-at-line-internal): Change the
6458         argument to mean whether to show a file diff or not.  Get the file
6459         name from vc-annotate-extract-revision-at-line.
6460         (vc-annotate-show-diff-revision-at-line):
6461         Update vc-annotate-show-diff-revision-at-line call.
6462         (vc-annotate-warp-revision): Add an optional file argument.
6464         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
6465         (vc-git-annotate-extract-revision-at-line): Also return the file
6466         name if found.
6468         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
6469         command.  Remove unused code.
6470         (vc-hg-annotate-re): Update to match --follow output.
6471         (vc-hg-annotate-extract-revision-at-line): Also return the file
6472         name if found.
6474         * vc.el: Update annotate-extract-revision-at-line documentation.
6476 2009-10-18  Kevin Ryde  <user42@zip.com.au>
6478         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
6479         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
6481         * net/browse-url.el (browse-url): Identify alist with "consp and
6482         not functionp" and let all other things go down the `apply' leg,
6483         as suggested by Stefan.  (Further to bug#4531.)
6485 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
6487         * minibuffer.el (read-file-name): Check for repeat before putting
6488         a default argument in file-name-history (Bug#4657).
6490         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
6491         read syntax (Bug#4737).
6493         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
6495 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
6497         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
6498         (html-tag-alist, html-tag-help): Add descriptions for undocumented
6499         entries and make note of obsolete tags.
6501 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6503         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
6505 2009-10-18  Glenn Morris  <rgm@gnu.org>
6507         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
6508         grep, so that binary files (eg international/uni-bidi.el) can match.
6509         Remove test for "UnicodeData" files, since it is hopefully unnecessary
6510         now, and in any case the file header format has changed.
6512 2009-10-17  Glenn Morris  <rgm@gnu.org>
6514         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
6515         (flyspell-get-word, flyspell-large-region)
6516         (flyspell-auto-correct-previous-word): Doc/error message fixes.
6518 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
6520         * Makefile.in (ELCFILES): Add ede/shell.
6522 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
6524         * term/common-win.el (x-colors): Purecopy it.
6526 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6528         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
6529         permissive for when the buffer is empty.
6530         (tar-header-block-tokenize): Decode the username and groupname.
6531         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
6533 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6535         * international/mule-cmds.el (select-safe-coding-system): If the file
6536         has a coding cookie, use it regardless of any other setting (bug#4712).
6538 2009-10-17  Glenn Morris  <rgm@gnu.org>
6540         * foldout.el (foldout-mouse-swallow-events):
6541         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
6543         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
6544         (dired-keep-marker-copy, dired-keep-marker-hardlink)
6545         (dired-keep-marker-symlink, dired-dwim-target)
6546         (dired-copy-preserve-time): Do not autoload these defcustoms.
6548         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
6549         messages from messing up the file coding.  (Bug#4623)
6551 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
6553         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
6554         if no match is found for the current dictionary.  (Bug#4578)
6556         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
6557         optional, since that is how it is documented, and this is often called
6558         with a nil argument.  (Bug#4577)
6559         (flyspell-external-point-words, flyspell-auto-correct-word)
6560         (flyspell-correct-word-before-point, flyspell-word-search-forward)
6561         (flyspell-word-search-backward): Remove nil argument in calls to
6562         flyspell-get-word, since it is not needed now.
6564 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
6566         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
6568 2009-10-16  Glenn Morris  <rgm@gnu.org>
6570         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
6572 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
6574         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
6575         (ange-ftp-file-size): New function.
6576         (ange-ftp-file-attributes): Use it.
6578 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
6580         * net/tramp-smb.el (tramp-smb-version): New defvar.
6581         (tramp-smb-maybe-open-connection): Use it, in order to avoid
6582         repeated checks.
6584 2009-10-16  Glenn Morris  <rgm@gnu.org>
6586         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
6587         Maybe copy some custom properties from old to new name.  (Bug#4706)
6589 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
6591         * subr.el (error, sit-for, start-process-shell-command)
6592         (start-file-process-shell-command): Set the calling convention
6593         after the function definition.
6595 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6597         * subr.el (error, sit-for, start-process-shell-command)
6598         (start-file-process-shell-command): Use the new
6599         set-advertised-calling-convention feature.
6601 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
6603         * international/ucs-normalize.el (ucs-normalize-version):
6604         Change to 1.2.
6605         (check-range): Adjust for Unicode 5.2.
6607 2009-10-15  Juri Linkov  <juri@jurta.org>
6609         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
6610         to the `menu-item' format.
6612 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
6614         * net/tramp.el (tramp-replace-environment-variables): Do not fail
6615         if the environment variable does not exist.
6617         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6618         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
6619         parameter.
6620         (tramp-smb-handle-add-name-to-file)
6621         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6622         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6623         (tramp-smb-handle-file-attributes)
6624         (tramp-smb-do-file-attributes-with-stat)
6625         (tramp-smb-handle-file-local-copy)
6626         (tramp-smb-handle-insert-directory)
6627         (tramp-smb-handle-make-directory)
6628         (tramp-smb-handle-make-directory-internal)
6629         (tramp-smb-handle-make-symbolic-link)
6630         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
6631         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
6632         (tramp-smb-maybe-open-connection): Apply the changed parameters.
6633         (tramp-smb-read-file-entry): Read Disk names in compressed format.
6634         Handle long file names.
6635         (tramp-smb-get-cifs-capabilities): Check, whether the connection
6636         process is running.
6637         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
6638         Read share names with "-g" option.
6640 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
6642         * net/rcirc.el (rcirc-view-log-file): New command.
6643         (rcirc-track-minor-mode-map): Remove C-c ` binding.
6644         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
6645         specified.
6647 2009-10-15  Glenn Morris  <rgm@gnu.org>
6649         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
6650         from the second command-line argument.
6651         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
6652         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
6653         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
6654         w32-batch-update-autoloads.
6655         * emacs-lisp/autoload.el (autoload-make-program): New variable.
6656         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
6658         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
6659         the headers cannot be located.  Simplify, subtracting superflous
6660         save-excursions.
6662 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6664         Replace completion-base-size by completion-base-position to fix bugs
6665         such as (bug#4699).
6666         * simple.el (completion-base-position): New var.
6667         (completion-base-size): Mark as obsolete.
6668         (choose-completion): Make it work for mouse events as well.
6669         Pass the new base-position to choose-completion-string.
6670         (choose-completion-guess-base-position): New function, extracted from
6671         choose-completion-delete-max-match.
6672         (choose-completion-delete-max-match): Use it.  Make obsolete.
6673         (choose-completion-string): Use the new base-position info.
6674         (completion-root-regexp): Delete.
6675         (completion-setup-function): Preserve completion-base-position.
6676         Eliminate obsolete base-size manipulation.
6677         * minibuffer.el (display-completion-list): Don't mess with base-size.
6678         (minibuffer-completion-help): Set completion-base-position instead.
6679         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
6680         choose-completion.
6681         * textmodes/bibtex.el (bibtex-complete):
6682         * emacs-lisp/crm.el (crm--choose-completion-string):
6683         Adjust to new calling convention.
6684         * complete.el (partial-completion-mode): Use minibufferp to avoid
6685         bumping into incompatible change to choose-completion-string-functions.
6686         * ido.el (ido-choose-completion-string): Make its calling convention
6687         more permissive.
6688         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
6689         base-size manipulation.
6690         (comint-dynamic-list-input-ring): Use dotimes and push.
6691         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
6692         fundamental-mode.  Use `or'.
6694 2009-10-14  Juri Linkov  <juri@jurta.org>
6696         * misearch.el (multi-isearch-next-buffer-from-list)
6697         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
6699 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6701         * Makefile.in (compile-onefile): Load `bytecomp' rather than
6702         `bytecomp.el'.
6704         * minibuffer.el (completion-pcm--merge-completions): Make sure the
6705         string we return is all made up of text from the completions rather
6706         than part from the completions and part from the input (bug#4219).
6708         * ido.el (ido-everywhere): Use define-minor-mode.
6710         * buff-menu.el (list-buffers, ctl-x-map):
6711         Mark the entry points with ;;;###autoload cookies.
6713 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
6715         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
6716         correctly in the detached head case.
6717         (vc-git-print-log): Remove unused binding.
6719         * vc.el (vc-responsible-backend): When a directory is passed for
6720         for registration create a VC repository if no backend is
6721         responsible for the directory argument.
6722         (vc-deduce-fileset): Tell vc-responsible-backend to register.
6724         * vc.el: Move comments about RCS and SCCS ...
6725         * vc-rcs.el:
6726         * vc-sccs.el: ... here, respectively.
6728 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6730         * minibuffer.el (completion--file-name-table): Return nil if there's
6731         no file completion, even if substitute-in-file-name changed
6732         the string (bug#4708).
6734 2009-10-13  Juri Linkov  <juri@jurta.org>
6736         * files-x.el (read-file-local-variable-value): Don't filter out
6737         minor modes from mode name completion (bug#4664).
6739 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
6741         * international/mule-cmds.el (ucs-names): Remove exclusion of
6742         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
6744 2009-10-13  Kenichi Handa  <handa@m17n.org>
6746         * international/uni-name.el: Regenerated.
6748 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
6750         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
6751         should be automatically buffer-local, but isn't.)
6753 2009-10-12  Sam Steingold  <sds@gnu.org>
6755         * progmodes/compile.el (compilation-next-error-function): Fix the
6756         timestamps if the buffer has been visited before.
6757         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
6758         non-anchored patterns, like the perl one (bug#3928).
6760 2009-10-12  Glenn Morris  <rgm@gnu.org>
6762         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
6763         Let-bind `size'.
6765 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
6767         * proced.el (proced-unload-function): New function.
6769         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
6770         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
6771         Doc fix.
6773         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
6775 2009-10-11  Juri Linkov  <juri@jurta.org>
6777         * files-x.el (read-file-local-variable-value):
6778         Provide default value only for bound variables (bug#4664).
6780 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
6782         * net/tramp.el (tramp-local-host-p): Function shall return nil for
6783         connection methods like smb.
6785         * net/tramp-cache.el (tramp-flush-connection-property): The hash
6786         can be empty.
6788         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6789         (tramp-smb-file-name-handler-alist): Add handlers for
6790         `add-name-to-file', `make-symbolic-link'.
6791         (tramp-smb-handle-add-name-to-file)
6792         (tramp-smb-do-file-attributes-with-stat)
6793         (tramp-smb-handle-make-symbolic-link)
6794         (tramp-smb-get-cifs-capabilities): New defuns.
6795         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6796         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6797         (tramp-smb-handle-file-local-copy)
6798         (tramp-smb-handle-make-directory-internal)
6799         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
6800         The file name syntax depends on cifs capabilities.
6801         (tramp-smb-handle-file-attributes):
6802         Call `tramp-smb-do-file-attributes-with-stat' if possible.
6803         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
6804         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
6806 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
6808         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
6809         (eieio-defclass): Apply deftype handler and setf-method properties
6810         directly.
6811         (eieio-add-new-slot): Avoid union function from cl library.
6812         (eieio--typep): New function.
6813         (eieio-perform-slot-validation): Use it.
6815 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
6817         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
6818         Update documentation to refer to the variables documented in r1.135.
6819         (Bug#4188)
6821 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
6823         * bookmark.el (Info-suffix-list): Remove this unused variable.
6824         (bookmark-current-point): Remove this obsolete variable.
6825         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
6826         Adjust for removal of bookmark-current-point.
6828         (bookmarks-already-loaded, bookmark-current-buffer)
6829         (bookmark-yank-point): Document.  (Bug#4188)
6831 2009-10-10  Glenn Morris  <rgm@gnu.org>
6833         * frame.el (frame-height): Doc fix.
6835         * calendar/calendar.el (calendar-split-width-threshold): New option.
6836         (calendar-basic-setup): Use calendar-split-width-threshold.
6838 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
6840         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
6841         Ideographic Supplement" range (U+1F200..U+1F2FF).
6843 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6845         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
6846         since the list will have been rebuilt anyway.  (Bug#4349)
6848 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6850         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
6851         (bookmark-bmenu-execute-deletions): Don't save here, as
6852         bookmark-delete will now do so if necessary.
6853         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
6854         (Bug#4348)
6856 2009-10-09  Glenn Morris  <rgm@gnu.org>
6858         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
6860 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6862         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
6863         (bookmark-jump-other-window): Just invoke bookmark-jump with new
6864         argument now, so the two function's behaviors will match.  (Bug#3645)
6866 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
6868         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
6869         (tramp-file-name-real-host, tramp-file-name-port):
6870         Apply `save-match-data'.
6872         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
6873         case both directories are remote.
6874         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
6875         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
6877 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
6879         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
6881 2009-10-07  Glenn Morris  <rgm@gnu.org>
6883         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
6884         of concat.
6886 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6888         * files-x.el (read-file-local-variable): Include some
6889         non-user-variables in the completion table (bug#4664).
6891 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
6893         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
6894         message.
6896         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6897         (tramp-smb-file-name-handler-alist): Add handler for
6898         `copy-directory', `expand-file-name', `set-file-modes'.
6899         (tramp-smb-handle-copy-directory)
6900         (tramp-smb-handle-expand-file-name)
6901         (tramp-smb-handle-set-file-modes): New defuns.
6902         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
6903         (tramp-smb-handle-file-attributes): Simplify check for retrieving
6904         entry.
6905         (tramp-smb-handle-insert-directory): Don't flush the cache.
6906         (tramp-smb-maybe-open-connection): Check for samba client and
6907         server versions.
6909 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
6911         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
6912         to not error out of search for "^lisp=" fails.
6914 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
6916         * makefile.w32-in (WINS_UPDATES): New macro.
6917         (custom-deps, finder-data, autoloads): Use it.
6919 2009-10-07  Glenn Morris  <rgm@gnu.org>
6921         * Makefile.in (autoloads): Revert previous change.
6922         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
6923         the list of preloaded files passed on the command-line, get
6924         it from src/Makefile.
6926         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
6927         show the original buffer rather than a random one.
6929 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
6931         * help.el (describe-no-warranty): Place point in a slightly better
6932         position in the GPLv3 text.
6934 2009-10-06  Sam Steingold  <sds@gnu.org>
6936         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
6937         the comm attribute is present before calling regexp-quote.
6939 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
6941         * play/animate.el (animate-string): For good effect, make sure
6942         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
6944         * play/animate.el (animate-sequence, animate-birthday-present):
6945         * misc.el (butterfly): Don't set `indent-tabs-mode'.
6947 2009-10-06  Glenn Morris  <rgm@gnu.org>
6949         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
6951         * emacs-lisp/autoload.el (autoload-excludes): New variable.
6952         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
6953         (batch-update-autoloads): Process a string value of autoload-excludes,
6954         set during the build process.
6955         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
6957         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
6958         inside with-parsed...  macro so that `v' is defined.
6960         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
6961         * progmodes/fortran.el (fortran-end-of-block)
6962         (fortran-beginning-of-block):
6963         Also push mark in the macro case.
6965         * emerge.el (emerge-show-file-name):
6966         * calc/calc.el (calc-quit):
6967         * calc/calc-misc.el (calc-big-or-small):
6968         * calc/calc-graph.el (calc-graph-view):
6969         * calc/calc-ext.el (calc-reset):
6970         * calendar/calendar.el (calendar-basic-setup):
6971         Use window-full-height-p.
6973         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
6974         header we don't understand, don't insert another.  (Bug#4624)
6975         If changing mime charset, insert the new one in the right place.
6977 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
6979         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
6980         (cal-tex-cursor-month): Correctly increment the end date for diary and
6981         holiday listing.  (Bug#4626)
6983 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6985         * help-fns.el (describe-function-1): Don't burp if the function is not
6986         a symbol.
6988 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
6990         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
6991         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
6992         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
6993         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
6995         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
6996         (eieio-default-superclass): Reflow docstrings.
6997         (this, class-option-assoc, defclass, eieio-class-un-autoload)
6998         (eieio-unbind-method-implementations, defmethod)
6999         (eieio-validate-slot-value, eieio-validate-class-slot-value)
7000         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
7001         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
7002         (eieio-slot-originating-class-p, eieio-slot-name-index)
7003         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
7004         (constructor, initialize-instance, no-next-method, object-print)
7005         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
7006         Fix typos in docstrings.
7007         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
7008         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
7009         (next-method-p): Doc fixes.
7010         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
7011         Fix typos in error messages.
7012         (eieio-defmethod): Fix typo in description of generic method.
7014         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
7015         (eieio-persistent-save-interactive, slot-missing):
7016         Fix typos in docstrings.
7017         (eieio-instance-inheritor-slot-boundp): Doc fix.
7019         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
7020         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
7022         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
7023         (eieio-custom-object-apply-reset):
7024         Fix typos in docstrings and error messages.
7026         * emacs-lisp/eieio-datadebug.el (data-debug-show):
7027         Fix typo in docstring.
7029         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
7030         (eieio-browse-tree): Doc fix.
7031         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
7032         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
7033         Fix typos in docstrings.
7035         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
7036         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
7037         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
7038         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
7039         Reflow docstrings.
7041 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
7043         * vc-hg.el (log-view-vc-backend): Declare for compiler.
7044         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
7045         Set log-view-vc-backend so that diff can work.
7047         * log-view.el (log-view-diff): Use vc-diff-internal instead of
7048         vc-version-diff.
7049         (vc-diff-internal): Autoload this instead of vc-version-diff.
7051 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
7053         * simple.el (eval-expression): Doc fix.
7055         * progmodes/cwarn.el (cwarn-mode): Doc fix.
7057 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
7059         * files.el (directory-files-no-dot-files-regexp): New defconst.
7060         (delete-directory): Use it.
7061         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
7063         * net/tramp.el (tramp-verbose): Fix docstring.
7064         (tramp-methods): Add recursive option to `tramp-copy-args'.
7065         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
7066         "scp1_old", "scp2_old", "rsync", "rsyncc".
7067         (tramp-default-method): Check also for `auth-source-user-or-password'.
7068         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
7069         Add handler for `copy-directory'.
7070         (tramp-handle-copy-directory): New defun.
7071         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
7072         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
7073         Optimize sent command.
7075 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7077         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
7078         window if necessary.
7080         * calendar/calendar.el (calendar-basic-setup): Don't call
7081         switch-to-buffer in a dedicated window.
7083 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
7085         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
7086         don't do anything related to relocating, just return nil.
7087         (bookmark-error-no-filename): New error.
7088         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
7089         bookmark has no file.  Don't even attempt to handle things that
7090         are not files; the whole point of custom handlers is to keep that
7091         knowledge elsewhere anyway.  Tighten some comments.
7092         (bookmark-file-or-variation-thereof): Remove now-unused function.
7093         (bookmark-location): Doc string fix.
7094         (Bug#4250)
7096 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
7098         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
7099         don't use a file dialog, because they usually don't know how to read
7100         a directory target from the user.  (Bug#4230)
7101         Also, make sure the prompt can display directories as well as files.
7103 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
7105         * bookmark.el (bookmark-set, bookmark-buffer-name):
7106         Improve doc strings.  (Bug#1193)
7108 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
7110         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
7111         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
7112         (bookmark-get-annotation, bookmark-set-annotation)
7113         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
7114         (bookmark-set-position, bookmark-get-front-context-string)
7115         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
7116         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
7117         (bookmark-jump-other-window, bookmark-handle-bookmark)
7118         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
7119         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
7120         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
7121         Improve doc strings to say whether bookmark can be a string or
7122         a record or both, and make other consistency and clarity fixes.
7123         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
7124         (bookmark-default-annotation-text, bookmark-yank-word)
7125         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
7126         (bookmark-import-new-list, bookmark-maybe-rename)
7127         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
7128         (bookmark-bmenu-bookmark): Give these doc strings.
7129         (bookmark-bmenu-check-position): Give this a doc string, but also
7130         add a FIXME comment about how the function may be pointless.
7131         (bookmark-default-handler): Rework doc string and change a
7132         parameter name, to clarify that this takes a bookmark record
7133         not a bookmark name.
7134         (bookmark-set): Change a parameter name to indicate its meaning,
7135         and improve the doc string a bit.
7136         (Bug#4188)
7138 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
7140         * bookmark.el (bookmark-alist): Document the new `handler' element
7141         in the param alist.
7142         (bookmark-make-record-function): Adjust documentation for above.
7143         (Bug#4193)
7145 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
7147         * info.el (Info-bookmark-make-record): Document this function.
7148         (Info-bookmark-jump): Document with a doc string, not just a comment.
7149         (Bug#4203)
7151 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
7153         * files.el (copy-directory): New defun.
7155         * dired-aux.el (dired-copy-file-recursive): Use it.
7157 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
7159         * files-x.el (modify-dir-local-variable)
7160         (copy-dir-locals-to-file-locals-prop-line): Fix typos in
7161         docstrings.
7163         * recentf.el (recentf-unload-function): New function.
7165 2009-10-04  Glenn Morris  <rgm@gnu.org>
7167         * window.el (window-full-height-p): Add doc string.
7169 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
7171         * window.el (window-full-height-p): New function.  (Bug#4543)
7173 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
7175         * vc.el: Remove commented out code.
7176         (vc-derived-from-dir-mode): Remove, unused.
7177         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
7179 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
7181         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
7182         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
7183         there could be recursive loading when `default-directory' is a
7184         remote file name.  (Bug#4614)
7186 2009-10-03  Glenn Morris  <rgm@gnu.org>
7188         * calendar/calendar.el (calendar-basic-setup): Handle the case where
7189         the frame is wide.
7190         (calendar-generate-window): Test for shrinkability rather than width.
7192         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
7193         reusing existing buffers, in case we happen to visit two files with the
7194         same basename.  (Bug#4593)
7196 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
7198         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
7199         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
7200         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
7201         subdirs of cedet as well.
7202         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
7204 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7206         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
7207         Obey advertised-signature-table.
7209         * help-fns.el (help-function-arglist): Don't check
7210         advertised-signature-table.
7211         (describe-function-1): Do it here instead so it also applies to subrs.
7213 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
7215         * simple.el (start-file-process): Say in the doc-string, that file
7216         handlers might not support pty association, if PROGRAM is nil.
7218         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
7219         HOST and USER are strings.  They are nil, when there are
7220         incomplete entries in ~/.netrc, for example.
7221         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
7222         root directory ("device busy" error otherwise).
7224         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
7225         Flush file properties of created directory.
7227 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
7229         * makefile.w32-in (WINS_BASIC): Remove cedet.
7230         (WINS_CEDET): Add cedet.
7231         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
7233 2009-10-02  Kevin Ryde  <user42@zip.com.au>
7235         * net/browse-url.el (browse-url): Pass any symbol in
7236         browse-url-browser-function to `apply', since if you've mistakenly put
7237         an unbound symbol then the error is clearer.  (Bug#4531)
7239 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
7241         * allout.el (allout-init, allout-back-to-current-heading)
7242         (allout-beginning-of-current-entry, allout-ascend-to-depth)
7243         (allout-ascend, allout-up-current-level, allout-end-of-level)
7244         (allout-previous-visible-heading, allout-forward-current-level)
7245         (allout-backward-current-level, allout-show-children):
7246         * apropos.el (apropos-describe-plist):
7247         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
7248         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
7249         * completion.el (add-completion, add-permanent-completion):
7250         * descr-text.el (describe-text-category, describe-char):
7251         * desktop.el (desktop-lazy-abort):
7252         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
7253         * dired.el (dired-build-subdir-alist):
7254         * ediff.el (ediff-version):
7255         * elide-head.el (elide-head, elide-head-show):
7256         * emerge.el (emerge-version):
7257         * env.el (getenv):
7258         * face-remap.el (variable-pitch-mode):
7259         * faces.el (describe-face):
7260         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
7261         (dired-at-point):
7262         * files.el (find-file-existing, auto-save-mode):
7263         * font-lock.el (font-lock-fontify-buffer):
7264         * help-fns.el (describe-function, describe-variable)
7265         (describe-syntax, describe-categories):
7266         * help.el (view-lossage, describe-bindings, describe-key)
7267         (describe-mode):
7268         * hexl.el (hexl-current-address):
7269         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
7270         * info.el (Info-goto-emacs-key-command-node):
7271         * log-edit.el (log-edit-insert-cvs-template)
7272         (log-edit-insert-cvs-rcstemplate):
7273         * menu-bar.el (menu-bar-mode):
7274         * mouse.el (mouse-appearance-menu):
7275         * newcomment.el (comment-indent-new-line):
7276         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
7277         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
7278         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
7279         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
7280         * recentf.el (recentf-mode):
7281         * savehist.el (savehist-mode, savehist-save):
7282         * shadowfile.el (shadow-copy-files):
7283         * simple.el (kill-ring-save, next-line, previous-line)
7284         (normal-erase-is-backspace-mode):
7285         * strokes.el (strokes-update-window-configuration)
7286         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
7287         (strokes-xpm-for-stroke):
7288         * time.el (emacs-uptime, emacs-init-time):
7289         * tutorial.el (tutorial--describe-nonstandard-key)
7290         (tutorial--detailed-help):
7291         * type-break.el (type-break-mode)
7292         (type-break-mode-line-message-mode, type-break-query-mode)
7293         (type-break-guesstimate-keystroke-threshold):
7294         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
7295         * version.el (emacs-version):
7296         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
7297         * winner.el (winner-mode):
7298         * calendar/timeclock.el (timeclock-in, timeclock-out)
7299         (timeclock-status-string, timeclock-change)
7300         (timeclock-workday-remaining-string)
7301         (timeclock-workday-elapsed-string)
7302         (timeclock-when-to-leave-string):
7303         * calendar/todo-mode.el (todo-add-category):
7304         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
7305         * emacs-lisp/autoload.el (update-file-autoloads):
7306         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
7307         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
7308         (checkdoc-message-text, checkdoc-defun):
7309         * emacs-lisp/debug.el (debugger-list-functions):
7310         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7311         * emacs-lisp/eieio-opt.el (eieio-describe-class)
7312         (eieio-describe-generic):
7313         * emacs-lisp/lisp-mnt.el (lm-synopsis):
7314         * emacs-lisp/shadow.el (list-load-path-shadows):
7315         * emulation/cua-base.el (cua-mode):
7316         * emulation/edt.el (edt-set-scroll-margins):
7317         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
7318         (tpu-toggle-regexp, tpu-toggle-search-direction)
7319         (tpu-toggle-rectangle, tpu-toggle-control-keys):
7320         * emulation/tpu-extras.el (tpu-set-scroll-margins):
7321         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7322         (viper-set-parsing-style-toggling-macro)
7323         (viper-set-emacs-state-searchstyle-macros):
7324         * emulation/viper.el (viper-set-hooks):
7325         * eshell/esh-mode.el (eshell-truncate-buffer):
7326         * international/mule-cmds.el (prefer-coding-system)
7327         (describe-input-method, describe-language-environment):
7328         * international/mule-diag.el (list-character-sets)
7329         (describe-character-set, describe-coding-system)
7330         (describe-fontset, list-fontsets, list-input-methods):
7331         * mail/sendmail.el (mail-signature):
7332         * net/ange-ftp.el (ange-ftp-copy-file):
7333         * net/browse-url.el (browse-url):
7334         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
7335         * net/quickurl.el (quickurl-add-url):
7336         * net/rcirc.el (names, topic):
7337         * net/xesam.el (xesam-mode):
7338         * play/5x5.el (5x5-new-game):
7339         * play/yow.el (apropos-zippy):
7340         * progmodes/ada-mode.el (ada-mode-version):
7341         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
7342         (f90-end-of-block)
7343         (f90-beginning-of-block):
7344         * progmodes/fortran.el (fortran-end-of-block)
7345         (fortran-beginning-of-block):
7346         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
7347         * progmodes/python.el (python-describe-symbol, python-shell):
7348         * term/ns-win.el (ns-print-buffer):
7349         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
7350         * textmodes/flyspell.el (flyspell-mode-on):
7351         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
7352         (pages-directory-for-addresses):
7353         * textmodes/table.el (table-recognize-cell)
7354         (table-query-dimension, table-generate-source)
7355         (table-insert-sequence, table--warn-incompatibility):
7356         * textmodes/tex-mode.el (tex-validate-buffer):
7357         * textmodes/texinfmt.el (texinfmt-version)
7358         (texinfo-format-buffer):
7359         Use `called-interactively-p' instead of `interactive-p'.
7361 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
7363         * image-mode.el (image-toggle-display):
7364         * emacs-lisp/elp.el (elp-instrument-function):
7365         * emacs-lisp/advice.el (ad-make-advised-definition):
7366         * emacs-lisp/easy-mmode.el (define-minor-mode):
7367         * net/browse-url.el (browse-url-maybe-new-window):
7368         * progmodes/sh-script.el (sh-learn-buffer-indent):
7369         Pass new argument 'any to `called-interactively-p'.
7371 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
7373         * international/uni-bidi.el:
7374         * international/uni-category.el:
7375         * international/uni-combining.el:
7376         * international/uni-comment.el:
7377         * international/uni-decimal.el:
7378         * international/uni-decomposition.el:
7379         * international/uni-digit.el:
7380         * international/uni-lowercase.el:
7381         * international/uni-mirrored.el:
7382         * international/uni-name.el:
7383         * international/uni-numeric.el:
7384         * international/uni-old-name.el:
7385         * international/uni-titlecase.el:
7386         * international/uni-uppercase.el:
7387         Regenerate from Unicode 5.2.0 data.
7389 2009-10-01  Glenn Morris  <rgm@gnu.org>
7391         * Makefile.in (ELCFILES): Regenerate.
7393 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7395         * subr.el (interactive-p): Mark obsolete.
7396         (called-interactively-p): Make the optional-ness of `kind' obsolete.
7397         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
7398         advertised-signature-table for subroutines as well.
7400         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
7401         (set-advertised-calling-convention): New function.
7402         (make-obsolete, define-obsolete-function-alias)
7403         (make-obsolete-variable, define-obsolete-variable-alias):
7404         Make the optional-ness of `when' obsolete.
7405         (define-obsolete-face-alias): Make `when' non-optional.
7406         * help-fns.el (help-function-arglist):
7407         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
7408         Use advertised-signature-table.
7410 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
7412         * files.el (delete-directory): New defun.  The original function
7413         in fileio.c has been renamed to `delete-directory-internal'.
7415         * dired.el (dired-delete-file): Call `delete-directory' with
7416         RECURSIVE parameter.
7418         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
7419         parameter RECURSIVE.  Implementation is missing.
7421         * net/tramp.el (tramp-handle-make-directory): Flush upper
7422         directory's file properties.
7423         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
7424         (tramp-handle-dired-recursive-delete-directory): Flush directory
7425         properties after the remove command only.
7427         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
7428         Handle optional parameter RECURSIVE.
7430         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
7431         Handle optional parameter RECURSIVE.
7433         * net/tramp-smb.el (tramp-smb-errors): Add error message for
7434         connection timeout.
7435         (tramp-smb-handle-delete-directory): Handle optional parameter
7436         RECURSIVE.
7438 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7440         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
7441         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
7442         (byte-compile-defmacro): Use backquotes.
7444         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
7446         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
7447         has no associated file.
7448         (vc-resynch-buffer): Use vc-dir-buffers.
7450 2009-10-01  Glenn Morris  <rgm@gnu.org>
7452         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
7453         (chart-file-count):
7454         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
7455         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
7456         * emacs-lisp/eieio-opt.el (eieio-describe-class):
7457         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
7458         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
7459         (eieio-copy-parents-into-subclass, make-instance, class-children)
7460         (eieio-generic-form):
7462         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
7463         match-data.  (Bug#4555).
7465         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
7466         rather than parsing it as a regexp.  This relaxes the layout
7467         requirements and makes errors easier to detect.
7468         (check-declare-verify): Check file is regular.
7469         (check-declare-directory): Doc fix.
7470         * subr.el (declare-function): Doc fix.
7472         * ibuffer.el (ibuffer-format-qualifier):
7473         * isearch.el (hi-lock-regexp-okay):
7474         * calc/calc.el (math-zerop):
7475         * mail/uce.el (rmail-msgbeg, rmail-msgend):
7476         * term/w32-win.el (setup-default-fontset, set-fontset-font):
7477         Remove unused declarations.
7479 2009-09-30  Glenn Morris  <rgm@gnu.org>
7481         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
7483         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
7484         filename is not a string.
7486 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
7488         * files.el (safe-local-eval-forms): Fix typo.
7490 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7492         * vc-hooks.el (vc-dir-buffers): New var.
7493         (vc-state-refresh): New function.
7494         (vc-state): Use it.
7495         (vc-after-save): Always ask the backend to recompute the new state.
7496         Always call vc-dir if necessary, using vc-dir-buffers.
7497         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
7498         Use vc-dir-buffers.
7499         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
7500         (vc-dir-prepare-status-buffer, vc-dir-update)
7501         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
7502         Don't call expand-file-name on default-directory.
7504 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
7506         * speedbar.el (speedbar-item-delete):
7507         * calc/calc-prog.el (calc-kbd-if):
7508         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
7510         * epa.el (epa-key-list-mode-map):
7511         * hi-lock.el (hi-lock-menu): Fix typos in menus.
7513         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
7514         (hs-show-hook): Fix typo in docstring.
7516 2009-09-29  Glenn Morris  <rgm@gnu.org>
7518         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
7519         file-name-nondirectory call preventing location of cedet files.
7520         (check-declare-verify): Use literal search rather than re-search.
7521         Add basic defmethod and defclass, and define-overloadable-function.
7523         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7524         Use tramp-compat-file-attributes rather than nonexistent
7525         tramp-compat-handle-file-attributes.
7527         * Makefile.in (lisptagsfiles4): New.
7528         (AUTOGENEL): Add cedet loaddefs files.
7529         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
7530         (update-elclist, compile-always, backup-compiled-files)
7531         (bootstrap-clean): Add yet another directory level.
7532         (update-elclist): Use LC_COLLATE rather than COLLATE.
7533         (ELCFILES): Update, via `make update-elclist'.
7535 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
7537         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
7538         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
7539         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
7541 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
7543         * Makefile.in (lisptagsfiles3): Define.
7544         (TAGS, TAGS-LISP): Use it.
7545         (update-elclist): Add third directory level to look for elc files.
7546         (compile-always): Likewise.
7547         (backup-compiled-files): Likewise.
7548         (bootstrap-clean): Likewise.
7549         (ELCFILES): Update.
7551 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
7553         * Makefile.in (ELCFILES): Add CEDET files.
7555 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
7557         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
7559         * net/tramp.el (top): Require tramp-imap.
7561         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7562         Use `tramp-compat-handle-file-attributes'.
7564 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
7566         * net/tramp-imap.el: New package.
7568 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7570         * whitespace.el (whitespace-trailing-regexp)
7571         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
7572         Fix doc string.
7574 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
7576         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
7577         menu.
7579         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
7580         menu-bar-ediff-menu.
7582         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
7583         define-overloadable-function.
7585         * progmodes/autoconf.el: Provide autoconf as well, so that this
7586         file can be `require'd.
7588         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
7590         * emacs-lisp/autoload.el (generated-autoload-feature)
7591         (generated-autoload-load-name): New vars.
7592         (autoload-rubric, autoload-generate-file-autoloads): Use them.
7593         (make-autoload): Recognize define-overloadable-function and
7594         defclass forms (for EIEIO).
7596         * Makefile.in (update-subdirs): Exclude cedet directory.
7598 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
7600         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
7602         * faces.el: Default light-background background for region face to
7603         ns_selection_color under NS.
7605 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
7607         * net/imap-hash.el: New library, see NEWS.
7609         * Makefile.in (ELCFILES): Add imap-hash.el.
7611 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7613         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
7614         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
7615         * help-macro.el (make-help-screen): Avoid using an ambiguous function
7616         definition where the docstring could be taken for the return value.
7618 2009-09-26  Glenn Morris  <rgm@gnu.org>
7620         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
7621         Add option to only show images below a certain size.
7622         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
7623         save-excursion calls.
7625 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
7627         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
7628         subdirectories) and eieio.
7630 2009-09-26  Alan Mackenzie  <acm@muc.de>
7632         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
7633         buggy bracketing.  (Bug#4289)
7635         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
7636         character constants (as case labels).  (Bug#4289)
7638 2009-09-25  Juri Linkov  <juri@jurta.org>
7640         * files.el (safe-local-eval-forms): Allow time-stamp in
7641         before-save-hook (Bug#4554).
7643 2009-09-25  Drew Adams  <drew.adams@oracle.com>
7645         * menu-bar.el (list-buffers-directory): Doc fix.
7647 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7649         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
7650         Try and avoid copying twice the same paragraph.
7651         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
7652         Remove save-excursion.
7653         (log-edit-changelog-entry): Do it here instead.
7655 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
7657         * bs.el (bs--get-file-name): Use `list-buffers-directory'
7658         when available, instead of hardcoding mode names.  Doc fix.
7660         * menu-bar.el (list-buffers-directory): Add docstring.
7661         Make automatically buffer-local.
7663         * dired.el (dired-mode):
7664         * files.el (cd-absolute):
7665         * pcvs.el (cvs-temp-buffer):
7666         * pcvs-util.el (cvs-get-buffer-create):
7667         * shell.el (shell-mode):
7668         * vc-dir.el (vc-dir-mode):
7669         Don't make `list-buffers-directory' buffer local.
7671 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
7673         * comint.el (comint-exec, comint-run, make-comint):
7674         Doc fixes (Bug#4542).
7676 2009-09-25  Glenn Morris  <rgm@gnu.org>
7678         * mail/rmailmm.el (rmail-mime): New custom group.
7679         Move all defcustoms in this file into this group.
7680         (rmail-mime-media-type-handlers-alist): Revert previous change.
7681         (rmail-mime-show-images): New option.
7682         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
7683         references to it, since it wasn't actually used for anything.
7684         (rmail-mime-insert-image): New function.
7685         (rmail-mime-image): Use rmail-mime-insert-image.
7686         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
7687         obey the value of `rmail-mime-show-images' option.  Print the size of
7688         attachments.
7690 2009-09-25  David Engster  <deng@randomsample.de>
7692         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
7694 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7696         * whitespace.el: Does not highlight trailing spaces While point is
7697         at end of line.  Does not highligt spaces at beginning of buffer
7698         while point is at beginning of buffer.  Does not highlight spaces
7699         at end of buffer while point is at end of buffer.  (Bug#4177)
7700         New version 12.0.
7701         (whitespace-display-mappings): Adjust initialization.
7702         (whitespace-point, whitespace-font-lock-refontify): New vars.
7703         (whitespace-color-on, whitespace-color-off): Adjust code.
7704         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
7705         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
7706         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
7708 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
7710         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
7712         * textmodes/sgml-mode.el: Remove xml-mode alias.
7714         * files.el (auto-mode-alist, conf-mode-maybe)
7715         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
7717 2009-09-24  Alan Mackenzie  <acm@muc.de>
7719         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
7720         c-forward-conditionals, but it doesn't move point and doesn't set
7721         the mark.
7722         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
7723         (c-down-conditional-with-else, c-backward-conditional)
7724         (c-forward-conditional): Refactor to use c-scan-conditionals.
7726 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
7728         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
7729         (help-default-arg-highlight): Remove.
7730         (help-highlight-arg): New function.
7731         (help-do-arg-highlight): Use it.
7732         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
7734 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7736         * term.el (term-set-scroll-region, term-handle-ansi-escape):
7737         Undo last change, which didn't fix the problem and introduced others.
7739 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
7741         * progmodes/gdb-mi.el: Don't require speedbar.
7742         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
7744 2009-09-24  Glenn Morris  <rgm@gnu.org>
7746         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
7748         * term/ns-win.el (ns-reg-to-script): Define for compiler.
7750         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
7751         there is no newline after the final mime boundary.  (Bug#4539)
7752         Move markers on insertion so that any buttons inserted don't end up in
7753         the next part of a multipart message.
7754         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
7755         (rmail-mime-bulk-handler): Optionally handle images.
7756         (rmail-mime-image): New button action.
7757         (rmail-mime-image-handler): New function.
7758         (rmail-mime-mode): New mode.
7759         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
7761 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7763         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
7764         than just dropping elements from it (bug#4504).
7766         * term.el (term-set-scroll-region): Don't move cursor any more.
7767         (term-handle-ansi-escape): Call term-goto here instead.
7768         Suggested by Ivan Kanis <apple@kanis.eu>.
7770         * term.el: Require CL.
7771         (term-ansi-reset): New function.
7772         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
7773         (term-handle-colors-array): Simplify.
7775 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
7777         * allout.el (allout-overlay-interior-modification-handler)
7778         (allout-obtain-passphrase):
7779         * epa-file.el (epa-file-write-region):
7780         * ps-print.el (ps-begin-job):
7781         * vc-hooks.el (vc-toggle-read-only):
7782         * vc-rcs.el (vc-rcs-rollback):
7783         * vc-sccs.el (vc-sccs-rollback):
7784         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
7785         (vc-version-diff, vc-revert, vc-rollback):
7786         * wdired.el (wdired-check-kill-buffer):
7787         * emacs-lisp/authors.el (authors):
7788         * net/socks.el (socks-open-connection):
7789         * net/zeroconf.el (zeroconf-service-add-hook):
7790         * obsolete/vc-mcvs.el (vc-mcvs-register):
7791         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
7792         (gdb-select-frame):
7793         * progmodes/grep.el (lgrep, rgrep):
7794         * progmodes/idlw-help.el (idlwave-help-check-locations)
7795         (idlwave-help-html-link, idlwave-help-assistant-open-link):
7796         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7797         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
7798         (reftex-toc-rename-label): Fix typos in error messages.
7800         * dired-aux.el (dired-do-shell-command): Reflow docstring.
7801         (dired-copy-how-to-fn): Doc fix.
7802         (dired-files-attributes, dired-read-shell-command):
7803         Fix typos in docstrings.
7805         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
7806         (dired-x-find-file-other-window): Reflow docstrings.
7807         (dired-omit-marker-char, dired-read-shell-command)
7808         (dired-x-submit-report): Fix typos in docstrings.
7810         * shell.el (shell-mode-hook):
7811         * view.el (View-scroll-line-forward):
7812         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
7813         Fix typos in docstrings.
7815         * net/dig.el (dig-invoke): Fix typo in docstring.
7816         (query-dig): Reflow docstring.
7818         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
7819         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
7820         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
7821         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
7822         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
7823         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
7824         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
7825         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
7826         (idlwave-completion-map, idlwave-current-indent)
7827         (idlwave-custom-ampersand-surround, idlwave-customize)
7828         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
7829         (idlwave-define-abbrev, idlwave-determine-class-special)
7830         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
7831         (idlwave-end-block-reg, idlwave-end-of-statement)
7832         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
7833         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
7834         (idlwave-explicit-class-listed, idlwave-file-header)
7835         (idlwave-fill-paragraph, idlwave-find-class-definition)
7836         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
7837         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
7838         (idlwave-in-quote, idlwave-indent-action-table)
7839         (idlwave-indent-expand-table, idlwave-indent-line)
7840         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
7841         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
7842         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
7843         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
7844         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
7845         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
7846         (idlwave-outlawed-buffers, idlwave-popup-select)
7847         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
7848         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
7849         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
7850         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
7851         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
7852         (idlwave-statement-type, idlwave-struct-skip)
7853         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
7854         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
7855         (idlwave-what-module-find-class): Fix typos in docstrings.
7856         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
7857         (idlwave-calculate-cont-indent, idlwave-expand-equal)
7858         (idlwave-find-module, idlwave-find-structure-definition)
7859         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
7860         (idlwave-list-load-path-shadows, idlwave-next-statement)
7861         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
7862         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
7863         (idlwave-template): Reflow docstrings.
7865         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
7866         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
7867         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
7868         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
7869         (idlwave-shell-display-line, idlwave-shell-display-wframe)
7870         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
7871         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
7872         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
7873         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
7874         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
7875         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
7876         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
7877         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
7878         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
7879         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
7880         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
7881         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
7882         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
7883         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
7884         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
7885         Fix typos in docstrings.
7886         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
7887         (idlwave-shell-hide-output, idlwave-shell-mode)
7888         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
7889         Reflow docstrings.
7891         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
7893 2009-09-24  Ivan Kanis  <apple@kanis.eu>
7895         * term.el (term-bold-attribute): New var.
7896         (term-handle-colors-array): Use it.
7898 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
7900         * progmodes/gdb-mi.el (gdb-version): New variable.
7901         (gdb-non-stop-handler): Set gdb-version.
7902         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
7903         Condition "--thread" option on gdb-version.
7904         (gdb-invalidate-threads): Remove unused argument.
7906 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7908         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
7909         to looking-back to avoid ridiculous slow down in large files (bug#4511).
7911 2009-09-23  Glenn Morris  <rgm@gnu.org>
7913         * mail/rmail.el (rmail-reply): Don't try to add a References header when
7914         replying to mail without References or Message-Id.  (Bug#4525)
7916 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
7918         * term/ns-win.el (ns-reg-to-script): New variable.
7920 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
7922         * epg.el (epg-wait-for-status): Preserve existing 'error results.
7924 2009-09-22  Sam Steingold  <sds@gnu.org>
7926         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
7927         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
7928         to 1 because hg returns status 1 when nothing is found.
7929         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
7931 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7933         * textmodes/fill.el: Convert to utf-8 encoding.
7934         (fill-french-nobreak-p): Remove redundant » and « inherited from our
7935         pre-unicode days.
7937         * add-log.el (change-log-fill-forward-paragraph): New function.
7938         (change-log-mode): Use it so fill-region DTRT.
7939         Set fill-indent-according-to-mode here rather than in
7940         change-log-fill-paragraph.
7941         (change-log-fill-paragraph): Remove.
7943 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
7945         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
7946         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
7948 2009-09-22  Glenn Morris  <rgm@gnu.org>
7950         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
7951         the scroll-bar scroll the calendar window rather than the buffer.
7953         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
7954         commands that move point (as opposed to scrolling).
7956         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
7958         * emacs-lisp/elint.el (elint): New custom group.
7959         (elint-log-buffer): Make it a defcustom.
7960         (elint-scan-preloaded, elint-ignored-warnings)
7961         (elint-directory-skip-re): New options.
7962         (elint-builtin-variables): Doc fix.
7963         (elint-preloaded-env): New variable.
7964         (elint-unknown-builtin-args): Add an entry for encode-time.
7965         (elint-extra-errors): Make it a variable rather than a constant.
7966         (elint-preloaded-skip-re): New constant.
7967         (elint-directory): Skip files matching elint-directory-skip-re.
7968         (elint-features): New variable, local to linted buffers.
7969         (elint-update-env): Initialize elint-features.  Possibly add
7970         elint-preloaded-env to the buffer's environment.
7971         (elint-get-top-forms): Bind elint-current-pos, for log messages.
7972         Skip quoted forms.
7973         (elint-init-form): New function, extracted from elint-init-env.
7974         Make non-list forms a warning rather than an error.
7975         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
7976         easy-menu-define, put that adds an error-condition, and provide.
7977         When requiring cl, also require cl-macs.  Really require cl, to handle
7978         some cl macros.  Store required libraries in the list elint-features,
7979         so as not to re-load them.  Treat cc-require like require.
7980         (elint-init-env): Call elint-init-form to do the work.
7981         Handle eval-and-compile and such like.
7982         (elint-add-required-env): Do not clear messages.
7983         (elint-special-forms): Add handlers for function, defalias, if, when,
7984         unless, and, or.
7985         (elint-form): Add optional argument to ignore elint-special-forms,
7986         useful to prevent recursive calls from handlers.  Doc fix.
7987         Respect elint-ignored-warnings.
7988         (elint-form): Respect elint-ignored-warnings.
7989         (elint-bound-variable, elint-bound-function): New variables.
7990         (elint-unbound-variable): Respect elint-bound-variable.
7991         (elint-get-args): Respect elint-bound-function.
7992         (elint-check-cond-form): Add some simple handling for (f)boundp and
7993         featurep tests.
7994         (elint-check-defalias-form): New handler.
7995         (elint-check-let-form): Make an empty let a warning rather than an
7996         error.
7997         (elint-check-setq-form): Make an empty setq a warning rather than an
7998         error.  Respect elint-ignored-warnings.
7999         (elint-check-defvar-form): Accept null doc-strings.
8000         (elint-check-conditional-form): New handler.  Does some simple-minded
8001         checking of featurep and (f)boundp tests.
8002         (elint-put-function-args): New function.
8003         (elint-initialize): Use elint-scan-doc-file rather than
8004         elint-find-builtin-variables.  Use elint-put-function-args.
8005         Possibly scan preloaded-file-list.
8006         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
8007         extend to handle functions as well.
8009 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
8011         * linum.el (linum-delete-overlays, linum-update-window):
8012         Do not modify the right margin.  (Bug#3971)
8014 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
8016         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
8017         nxml-mode instead of xml-mode.
8019 2009-09-21  Kevin Ryde  <user42@zip.com.au>
8021         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
8023 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8025         * net/dig.el (dig-mode): Use define-derived-mode.
8027 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
8029         * vc-dispatcher.el (vc-do-command): Return the process object in
8030         the asynchronous case.  Use when instead of if.  Do not run
8031         vc-exec-after to display a message if not enabled.  (Bug#4463)
8033         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
8034         properties to the stash strings.
8035         (vc-git-stash-list): Return a list of strings.
8036         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
8037         (vc-git-stash-show-at-point): New functions.
8038         (vc-git-stash-map): New keymap.
8040         * register.el (ctl-x-r-map): Define the keys here instead of
8041         using autoload.
8043 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
8045         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
8046         list, to workaround performance problem (bug#4485).
8048 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
8050         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
8052 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
8054         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
8055         Document that this option is not recommended to use.
8057 2009-09-19  Glenn Morris  <rgm@gnu.org>
8059         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
8060         variable `var'.
8062         * calc/calc-alg.el (var):
8063         * calc/calcalg2.el (var): Define for compiler.
8065 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
8067         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
8068         Doc fix (Bug#3932).
8070         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
8072         * time-stamp.el (time-stamp-month-dd-yyyy)
8073         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
8074         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
8075         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
8076         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
8077         Remove functions that have been obsolete since 1995 (Bug#4436).
8079         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
8080         indent buffer only if called interactively (Bug#4452).
8082 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
8083             Eli Zaretskii  <eliz@gnu.org>
8085         This fixes bug#4197 (merged to bug#865, though not identical).
8086         * server.el (server-auth-dir): Add docstring note about FAT32.
8087         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
8088         but warn against using them.
8090 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
8092         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
8093         older GDB where there is no has_more field.
8095 2009-09-19  Glenn Morris  <rgm@gnu.org>
8097         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
8099 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
8101         * files.el (auto-mode-alist): Change default for XML files to nXML
8102         mode (Bug#4169).
8104 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
8106         * server.el (server-ensure-safe-dir): Pass 'integer
8107         to `file-attributes', as suggested.
8109 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8111         * dired-aux.el (dired-query-alist): Remove spurious backslash.
8112         (dired-query): Use read-key.
8114 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
8116         * cus-start.el (ns-use-qd-smoothing): Remove.
8118 2009-09-18  Glenn Morris  <rgm@gnu.org>
8120         * allout.el (top-level): Remove unnecessary progn.
8122         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
8124         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
8125         definition of abbrev table.
8127         * speedbar.el (speedbar-track-mouse):
8128         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
8129         * net/eudc.el (eudc-expand-inline):
8130         * net/newst-backend.el (newsticker--cache-read-feed):
8131         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
8132         condition-case handlers.
8134 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
8136         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
8137         (gdb-var-list): Add an element for has_more field.
8138         (gdb-non-stop-handler): Enable pretty printing for STL containers.
8139         (gdb-var-create-handler, gdb-var-list-children-handler-1)
8140         (gdb-var-update-handler-1): Parse output of dynamic variable
8141         objects (STL containers).
8142         (gdb-var-delete-1): Pass var1 as an explicit second argument.
8143         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
8145         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
8146         gdb-var-list.
8147         (gud-speedbar-buttons): Make node expandable if expression "has more"
8148         children.
8150 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
8152         * startup.el (emacs-quick-startup): Remove variable and all uses.
8153         (command-line): Set `inhibit-x-resources' instead.
8154         (command-line-1): Use `inhibit-x-resources' instead.
8156 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
8158         * subr.el: Fix last change to avoid using the `unless' macro,
8159         which breaks bootstrapping.
8161 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8163         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
8164         extended definitions, in case we reload subr.el after having
8165         loaded CL.
8166         (eval-next-after-load): Mark as obsolete.
8168 2009-09-17  Juri Linkov  <juri@jurta.org>
8170         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
8171         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
8172         (menu-bar-showhide-menu, menu-bar-tools-menu)
8173         (menu-bar-describe-menu, menu-bar-help-menu)
8174         (minibuffer-local-completion-map, minibuffer-local-map):
8175         Fix list quoting.
8177 2009-09-17  Glenn Morris  <rgm@gnu.org>
8179         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
8180         arguments, whether or not it has a handler.
8182         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
8184         * simple.el (hard-newline): Give it a doc-string.
8186         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
8187         (lisp-mode-syntax-table): Give them doc-strings.
8189 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
8191         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
8192         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
8193         (menu-bar-options-menu, menu-bar-showhide-menu)
8194         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
8195         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
8196         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
8197         (menu-bar-options-menu, menu-bar-tools-menu)
8198         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
8199         (menu-bar-help-menu):
8200         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
8201         string arguments.
8203         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
8204         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
8205         calls for the menu names and :help.
8207 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8209         * mouse.el (minor-mode-menu-from-indicator): Pay attention
8210         to :minor-mode-function (bug#4455).
8212 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8214         * startup.el (command-line): Initialize the window-system after
8215         processing the command-line.
8217         * textmodes/page.el (what-page): Make sure we don't inf-loop if
8218         page-delimiter matches the empty string.
8220 2009-09-16  Glenn Morris  <rgm@gnu.org>
8222         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
8223         byte-compile-not-obsolete-var.  It's a list now.
8224         (byte-compile-not-obsolete-funcs): New variable.
8225         (byte-compile-warn-obsolete): Don't warn about functions if they are in
8226         byte-compile-not-obsolete-funcs.
8227         (byte-compile-variable-ref, byte-compile-defvar): Update for
8228         byte-compile-not-obsolete-vars name-change and list nature.
8229         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
8230         and variables behind (f)boundp tests.
8231         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
8233 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
8235         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
8237 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8239         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
8240         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
8241         Don't autoload.
8243 2009-09-15  Stephen Eglen  <stephen@gnu.org>
8245         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
8246         the virtual-buffers, use the name of the buffer specified by
8247         find-file-noselect, as the match may be a symlink.  (This was a
8248         problem if the target and the symlink had different names.)
8250 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8252         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
8254         * desktop.el (desktop-path): Check user-emacs-directory.
8256         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
8258         * loadup.el: Use after-load-functions to GC after loading each file.
8259         Remove the explicit GC calls that used to be sprinkled around.
8261         * subr.el (after-load-functions): New hook.
8262         (do-after-load-evaluation): Run it.  Use string-match-p to detect
8263         `obsolete' packages, rather than painfully extracting the relevant
8264         directory name.
8266 2009-09-15  Glenn Morris  <rgm@gnu.org>
8268         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
8269         free variable `doc'.
8271         * dired.el (dired-mode-map): Add menu entry for async shell command.
8273         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
8274         variables, also consider the .elc files, since the .el files are
8275         normally gzipped (subsequent code locates the .el.gz from the .elc).
8277         * calc/calc-prog.el (arglist): Define for compiler.
8279         * calendar/diary-lib.el (diary-display-function): Change the default to
8280         fancy display.
8281         (body): Define for compiler.
8283         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
8284         (byte-compile-file-form, byte-compile-lambda)
8285         (byte-compile-top-level-body, byte-compile-form)
8286         (byte-compile-variable-ref, byte-compile-setq)
8287         (byte-compile-setq-default, byte-compile-body)
8288         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
8289         (batch-byte-compile): Give some more local variables with common names
8290         a "bytecomp-" prefix to avoid masking warnings about free variables.
8292         * startup.el (command-line-1): Give local variables with common names a
8293         distinguishing prefix, so as not to hide free variable warnings during
8294         bootstrap.
8296         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
8297         clever and add a suffix to make a unique name, just let the user decide
8298         whether or not to overwrite it.  If the input is a directory, write the
8299         default filename to that directory.  (Bug#4388)
8300         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
8301         is a filename-as-a-directory.
8303 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8305         * textmodes/page.el (what-page): Don't move to beginning of line.
8306         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
8308 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
8310         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
8312 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
8314         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
8315         * help.el (help-for-help-internal): Add purecopy calls for text.
8317         * vc.el (top): print-log method now takes an optional SHORTLOG
8318         argument.  Add a new method: root.
8319         (vc-root-diff, vc-print-root-log): New functions.
8320         (vc-log-short-style): New variable.
8321         (vc-print-log-internal): Add support for showing short logs.
8323         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
8324         vc-print-root-log and vc-print-root-diff.
8326         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
8327         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
8328         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
8329         short logs.
8331         * vc-cvs.el (vc-cvs-print-log):
8332         * vc-mtn.el (vc-mtn-print-log):
8333         * vc-rcs.el (vc-rcs-print-log):
8334         * vc-sccs.el (vc-sccs-print-log):
8335         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
8336         that is ignored for now.
8338         * vc-mtn.el (vc-mtn-annotate-command):
8339         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
8341 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8343         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
8344         to function-key-map, and give them ascii-character property.
8345         * term/x-win.el (x-alternatives-map):
8346         * term/ns-win.el (ns-alternatives-map):
8347         * term/internal.el (msdos-key-remapping-map):
8348         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
8350 2009-09-14  Glenn Morris  <rgm@gnu.org>
8352         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
8353         temp-buffers (2009-09-12).
8355 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8357         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
8358         the new read-key function.
8360 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
8362         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
8363         is defined (Bug#4405).
8365 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
8367         * recentf.el (recentf-cleanup): Use a hash table to find
8368         duplicates (Bug#4407).
8370 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
8372         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
8373         kp-0 to ascii equivalents (Bug#4325).
8375 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
8377         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
8379         * eshell/em-hist.el:
8380         * eshell/em-dirs.el (eshell-complete-user-reference):
8381         Declare pcomplete functions and variables to avoid compiler warnings.
8383 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
8385         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
8386         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
8387         * eshell/em-alias.el (eshell-aliases-file):
8388         * eshell/em-hist.el (eshell-history-file-name):
8389         Use expand-file-name instead of concat to make file names (Bug#4308).
8391 2009-09-13  Glenn Morris  <rgm@gnu.org>
8393         * ediff-merg.el (ediff-do-merge):
8394         * filesets.el (filesets-run-cmd):
8395         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
8396         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
8397         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
8398         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
8399         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
8400         Replace empty `let's with `progn'.
8402 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8404         * mail/sendmail.el (send-mail-function):
8405         * tooltip.el (tooltip-mode):
8406         * simple.el (transient-mark-mode):
8407         * rfn-eshadow.el (file-name-shadow-mode):
8408         * frame.el (blink-cursor-mode):
8409         * font-core.el (global-font-lock-mode):
8410         * files.el (temporary-file-directory)
8411         (small-temporary-file-directory, auto-save-file-name-transforms):
8412         * epa-hook.el (auto-encryption-mode):
8413         * composite.el (global-auto-composition-mode):
8414         Use custom-initialize-delay.
8415         * startup.el (command-line): Don't explicitly call
8416         custom-reevaluate-setting for all the above vars.
8417         * custom.el (custom-initialize-safe-set)
8418         (custom-initialize-safe-default): Delete.
8420 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8422         * term/x-win.el (x-initialize-window-system):
8423         * term/w32-win.el (w32-initialize-window-system):
8424         * term/ns-win.el (ns-initialize-window-system): Don't call
8425         mouse-wheel-mode since it's enabled globally by default already.
8427         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
8428         actually define the variable, but only silences the byte-compiler.
8429         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
8430         before looking it up.
8431         (mouse-wheel-scroll-amount): Also reset the bindings if this value
8432         is changed.
8434 2009-09-12  Glenn Morris  <rgm@gnu.org>
8436         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
8437         1000.
8438         (elint-add-required-env): Don't beep on error.
8439         (elint-forms): In case of error, return ENV unchanged.
8440         (elint-init-env): Skip non-list forms.
8441         (elint-log): Handle unknown file positions.
8443 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
8445         * epg.el (epg-make-context): Add autoload cookie.
8446         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
8447         (epg-decrypt-string, epg-start-verify, epg-verify-file)
8448         (epg-verify-string, epg-start-sign, epg-sign-file)
8449         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
8450         (epg-encrypt-string, epg-start-export-keys)
8451         (epg-export-keys-to-file, epg-export-keys-to-string)
8452         (epg-start-import-keys, epg-import-keys-from-file)
8453         (epg-import-keys-from-string, epg-start-receive-keys)
8454         (epg-receive-keys, epg-import-keys-from-server)
8455         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
8456         (epg-sign-keys, epg-start-generate-key)
8457         (epg-generate-key-from-file, epg-generate-key-from-string):
8458         Remove autoload cookie.
8460 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
8462         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
8463         reevaluation of trash-directory.
8465         * mwheel.el: Fix last change.
8466         (mouse-wheel-mode): New defvar.
8467         (mouse-wheel-mode): Remove autoload cookie.
8469 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8471         * mwheel.el (mwheel-installed-bindings): New var.
8472         (mouse-wheel-mode): Use it, so as to make sure we really remove all
8473         the bindings we set last time.  Use custom-initialize-delay.
8474         * loadup.el: Load mwheel after term/*-win.el.
8475         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
8476         and mouse-wheel-up-event now that their first evaluation is done
8477         sufficiently late to be correct.
8479         * startup.el (tutorial-directory): Make it a defcustom.
8480         Use custom-initialize-delay rather than eval-at-startup to set it.
8481         * image.el (image-load-path): Make it a defcustom.
8482         Use custom-initialize-delay rather than eval-at-startup to set it.
8483         * subr.el (eval-at-startup): Remove.
8484         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
8486         * subr.el (do-after-load-evaluation): Warn the user after loading an
8487         obsolete package.
8489 2009-09-12  Glenn Morris  <rgm@gnu.org>
8491         * proced.el (proced-mark-alt): Remove alias.
8492         (proced-mode-map): Remove proced-mark-alt.
8494         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
8495         Elint file and directory.  Remove initialization entry.
8497         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
8498         commands.
8499         (elint-current-buffer): Set mode-line-process.
8500         (elint-init-env): Handle define-derived-mode.
8501         Fix declare-function with unspecified arglist.  Guard against odd
8502         defalias statements (eg iso-insert's 8859-1-map).
8503         (elint-add-required-env): Use a temp buffer.
8504         (elint-form): Just print the function/macro name, not the whole form.
8505         Return env unchanged if we fail to parse a macro.
8506         (elint-forms): Guard against parse errors.
8507         (elint-output): New function, to handle batch mode.
8508         (elint-log-message): Add optional argument.  Use elint-output.
8509         (elint-set-mode-line): New function.
8511 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
8513         * emacs-lisp/elp.el (elp-not-profilable): Add more
8514         functions (Bug#4233).
8516 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
8518         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
8519         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
8521 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
8523         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
8524         (gdb-var-list-children): Use json parsing.
8526 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
8528         * progmodes/js.el (js--proper-indentation): Handle the case where
8529         char-before is null.  Reported by Deniz Dogan.
8531 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
8533         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
8535 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
8537         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
8538         (epg-digest-algorithm-alist): Add SHA224.
8539         (epg-context-set-passphrase-callback)
8540         (epg-context-set-progress-callback): Add description about
8541         callback function.
8543 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8545         * custom.el (custom-delayed-init-variables): New var.
8546         (custom-initialize-delay): New function.
8547         * startup.el (command-line): "Re"evaluate all vars in
8548         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
8549         explicitly any more.
8550         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
8551         to avoid creating a ~/.emacs.d at build-time (bug#4347).
8553         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
8555 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
8557         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
8558         (gdb-var-update-handler): Use json parsing.
8560 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
8562         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
8563         decode annotated text, regardless of language environment.  (Bug#2741)
8565 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8567         * Makefile.in (autoloads): Make rmail.el writable as well.
8569 2009-09-11  Glenn Morris  <rgm@gnu.org>
8571         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
8572         loaddefs.el.
8573         * dired.el: Regenerate with extracted autoloads.
8574         * Makefile.in (autoloads): Make dired.el writable.
8576         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
8577         * ibuffer.el: Regenerate with extracted autoloads.
8578         * Makefile.in (autoloads): Make ibuffer.el writable.
8580         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
8581         * version.el (emacs-copyright, emacs-major-version)
8582         (emacs-minor-version): Reformat doc-strings for make-docfile.
8584         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
8585         functions and variables, since they must be stuff specific to some other
8586         platform.
8587         (apropos-print): Make mouse-click message less specific about button.
8589         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
8590         that records where a macro was defined.
8591         * help-fns.el (describe-function-1): Mention if a function has a
8592         compiler-macro.
8593         * help-mode.el (help-function-cmacro): New button.
8595         * locate.el (top-level): Always require dired.
8596         (locate-mode-map): Initialize inside the defvar.
8598         * net/ange-ftp.el (dired-compress-file): Declare.
8599         (ange-ftp-dired-compress-file): Add doc string.
8601         * term/ns-win.el (x-display-name, x-setup-function-keys):
8602         Unify doc-strings with X versions.
8604 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8606         * emulation/crisp.el (crisp-mode-map): Move initialization
8607         into declaration.
8608         (crisp-mode): Use define-minor-mode.
8610         * progmodes/xscheme.el (xscheme-evaluation-commands):
8611         Put a :advertised-binding property rather than using
8612         advertised-xscheme-send-previous-expression.
8613         (advertised-xscheme-send-previous-expression): Declare obsolete.
8614         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
8615         `advertised-undo'.
8616         (crisp-mode): Add corresponding bindings to
8617         undo's :advertised-binding instead.
8618         * dired.el (dired-mode-map): Put a :advertised-binding property rather
8619         than using dired-advertised-find-file.
8620         (dired-advertised-find-file):
8621         * simple.el (advertised-undo):
8622         * wid-edit.el (advertised-widget-backward): Declare obsolete.
8623         (widget-keymap): Put a :advertised-binding property rather
8624         than using advertised-widget-backward.
8625         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
8626         than using advertised-undo.
8627         * tutorial.el (tutorial--default-keys): Adjust accordingly.
8629 2009-09-10  Simon South  <ssouth@slowcomputing.org>
8631         * progmodes/delphi.el (delphi-tab): Indent region when Transient
8632         Mark mode is enabled and region is active; otherwise indent or
8633         insert TAB as usual.
8634         (delphi-mode): Update description of TAB-key binding.
8636 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8638         * subr.el (define-key-rebound-commands): Mark obsolete.
8639         * startup.el (precompute-menubar-bindings): Remove.
8640         (normal-top-level): Remove obsolete code that tried to precompute
8641         menubar bindings.
8642         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
8643         define-key-rebound-commands and precompute-menubar-bindings.
8645 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
8647         * net/imap.el (imap-interactive-login): Better messages.
8648         (imap-open): Fix bug with renamed buffer on reconnect.
8649         (imap-authenticate): Add buffer-local imap-last-authenticator variable
8650         for easier debugging and cleaner code.  On successful (guessed based on
8651         server capabilities) secondary authentication, set imap-state
8652         correctly.
8653         (imap-last-authenticator): Define imap-last-authenticator as a variable
8654         to avoid warnings.
8656 2009-09-10  Glenn Morris  <rgm@gnu.org>
8658         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
8660         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
8661         (byte-compile-file-form-autoload): Don't warn about unknown functions
8662         where the autoload statement comes after the use.
8663         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
8664         that any handlers inside the body (eg require) are in turn respected.
8666         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
8667         effects.
8669         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
8670         and syntax and abbrev tables basic docs, if they don't have any.
8672         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
8674         * international/mule-cmds.el (top-level): Require cl when compiling.
8675         (view-hello-file): Use default-value rather than
8676         default-enable-multibyte-characters.
8678         * progmodes/fortran.el: Move all safe and risky properties into the
8679         defcustoms.
8681         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
8682         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
8683         * mail/undigest.el:
8684         Put autoloads in rmail.el rather than loaddefs.el.
8685         * mail/rmail.el: Regenerate with extracted autoloads.
8687         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
8688         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
8690 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
8692         Reported in thread for Bug#4375.
8693         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
8694         "-data-evaluate-expression" instead of print.
8695         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
8696         (gdb-tooltip-print): Parse output from above MI command.
8697         (gdb): Revert 2009-08-11 change.  User should detach inferior
8698         manually.
8700         Remove the word "separate" from IO functions as inferior
8701         output is now never displayed in the GUD buffer.
8703 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
8705         * startup.el (command-line-normalize-file-name): On Windows and
8706         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
8708 2009-09-10  Juri Linkov  <juri@jurta.org>
8710         * isearch.el (isearch-text-char-description): Propertize escape
8711         character sequences with the `escape-glyph' face.  (Bug#4344)
8713         * simple.el (shell-command): Set asynchronous process filter to
8714         `comint-output-filter'.  (Bug#4343)
8716         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
8717         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
8718         the list.  Move "asm" to the bottom.
8719         (grep-find-ignored-directories): Add `choice' with nil value
8720         to empty the list easily.
8721         (grep-find-ignored-files): New option.
8722         (grep-files-history): Set to nil by default instead of '("ch" "el").
8723         (grep-compute-defaults): Add "<X>" to `grep-template'.
8724         (grep-read-files): Bind new local variables `default-alias' and
8725         `default-extension'.  Use a list of default values for the file prompt.
8726         (lgrep): Add `--exclude=' command line options composed from
8727         `grep-find-ignored-files'.
8728         (rgrep): Add `-name' command line options composed from
8729         `grep-find-ignored-files'.  (Bug#4301)
8731 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8733         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
8734         (bug#4368).
8736 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8738         * calendar/time-date.el (autoload):
8739         Expand define-obsolete-function-alias into defalias and make-obsolete
8740         for old Emacsen that Gnus supports.
8741         (with-no-warnings): Define it for old Emacsen.
8742         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
8743         is available.
8744         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
8745         float-time is available; suppress compile warning for time-to-seconds.
8747 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
8749         * net/imap.el (imap-message-map): Docstring fix.
8751 2009-09-09  Glenn Morris  <rgm@gnu.org>
8753         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
8754         line numbers too.  (Bug#4374)
8756 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8758         * smerge-mode.el (smerge-remove-props, smerge-refine):
8759         Use with-silent-modifications (bug#4342).
8761         * subr.el (with-silent-modifications): New macro.
8763 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
8765         * files.el (top-level): Require `cl' when compiling.
8767 2009-09-07  Glenn Morris  <rgm@gnu.org>
8769         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
8771         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
8772         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
8774 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
8776         * vc-git.el (vc-git-annotate-command): Use separator to parse
8777         arguments correctly.
8779 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
8781         * proced.el (proced-mode): Doc fix.
8783 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
8785         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
8786         lstat fails.
8787         (tramp-do-file-attributes-with-ls): Check for file existence at
8788         remote end.
8789         (tramp-do-file-attributes-with-stat): Likewise.
8790         (tramp-convert-file-attributes): Return nil when attr is nil.
8792 2009-09-05  Glenn Morris  <rgm@gnu.org>
8794         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
8795         properties to this button.
8796         (diary-fancy-display): Don't extend the button to the final newline.
8797         (diary-fancy-display-mode): Continue to define "q" as a local key.
8799         * calendar/cal-china.el (holiday-chinese): Make it slightly more
8800         efficient.
8802         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
8804         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
8805         (byte-compile-dest-file-function): New option.
8806         (byte-compile-dest-file): Doc fix.
8807         Obey byte-compile-dest-file-function.
8808         (byte-compile-cl-file-p): New function.
8809         (byte-compile-eval): Only suppress noruntime warnings about cl functions
8810         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
8811         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
8812         than for file being previously loaded.
8813         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
8814         (byte-compile-file-form-require): Handle the case where requiring a file
8815         indirectly causes CL to be loaded.
8817 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
8819         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
8820         before killing the old buffer, since by the time `kill-buffer' is
8821         run so many buffer variables have been set to nil that it may not
8822         behave as expected.  (Bug#4061)
8824 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
8826         * files.el (find-alternate-file): If the old buffer is modified
8827         and visiting a file, behave similarly to `kill-buffer' when
8828         killing it, thus reverting to the pre-1.878 behavior; see
8829         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
8830         for discussion.  Also, consult `buffer-file-name' as a variable
8831         not as a function, for consistency with the rest of the code.
8833 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
8835         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
8836         also when adding a new directory.
8838         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
8839         defun.
8841 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8843         * files.el (locate-file-completion-table): Make it provide boundary
8844         information, so partial-completion works better.
8846 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
8848         * mail/footnote.el (Footnote-text-under-cursor):
8849         Check footnote-text-marker-alist before using it (bug#4324).
8851 2009-09-04  Glenn Morris  <rgm@gnu.org>
8853         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
8854         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
8855         * play/solitaire.el, play/tetris.el:
8856         Remove leading * from defcustom and defface docs.
8858         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
8859         necessary.
8860         (diary-fancy-overriding-map): New variable.
8861         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
8862         Use view-mode.
8864         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
8865         goto-line.
8867 2009-09-03  Glenn Morris  <rgm@gnu.org>
8869         * arc-mode.el (archive-mode):
8870         * dos-fns.el (set-default-process-coding-system):
8871         * man.el (Man-getpage-in-background):
8872         * menu-bar.el (menu-bar-describe-menu):
8873         * server.el (server-process-filter):
8874         * startup.el (command-line):
8875         * tar-mode.el (tar-header-block-tokenize, tar-extract):
8876         * w32-fns.el (set-default-process-coding-system):
8877         * x-dnd.el (x-dnd-handle-file-name):
8878         * international/mule-cmds.el (mule-menu-keymap)
8879         (set-default-coding-systems, language-info-alist, set-language-info)
8880         (set-language-environment, standard-display-european-internal)
8881         (set-locale-environment):
8882         * international/mule-diag.el (mule-diag):
8883         * mail/emacsbug.el (report-emacs-bug):
8884         * mail/rmail.el (rmail-mode):
8885         * mail/sendmail.el (mail-setup):
8886         Use default-value rather than default-enable-multibyte-characters.
8888         * progmodes/f90.el: Move all safe properties into the defcustoms.
8889         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
8891         * calendar/appt.el (appt-check):
8892         * calendar/diary-lib.el (diary-set-header, diary-live-p)
8893         (diary-check-diary-file, diary-list-entries)
8894         (diary-include-other-diary-files, diary-simple-display)
8895         (diary-fancy-display, diary-print-entries)
8896         (diary-mark-included-diary-files, diary-make-entry):
8897         Don't call substitute-in-file-name on diary-file.
8899 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
8900             Stefan Monnier  <monnier@iro.umontreal.ca>
8902         * mail/footnote.el (footnote-prefix): Make it a defcustom.
8903         (footnote-mode-map): Move initialization into the declaration.
8904         (footnote-minor-mode-map): Define it rather than changing global-map.
8905         (footnote-mode): Use define-minor-mode.
8907 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
8909         * net/tramp.el (tramp-handle-file-attributes-with-ls)
8910         (tramp-do-file-attributes-with-perl)
8911         (tramp-do-file-attributes-with-stat): Rename from
8912         `tramp-handle-file-attributes-with-*'.
8913         (tramp-handle-file-attributes): Use them.
8914         (tramp-do-directory-files-and-attributes-with-perl)
8915         (tramp-do-directory-files-and-attributes-with-stat): Rename from
8916         `tramp-handle-directory-files-and-attributes-with-*'.
8917         (tramp-handle-directory-files-and-attributes): Use them.
8918         (tramp-method-out-of-band-p): Additional parameter SIZE.
8919         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
8920         (tramp-handle-write-region): Use it.
8921         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
8922         (tramp-handle-vc-registered): Check, whether the first run did
8923         return files to be tested.
8924         (tramp-advice-make-auto-save-file-name): Do not call directly
8925         `tramp-handle-make-auto-save-file-name', because this would bypass
8926         the locking mechanism.
8928         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
8929         (file-remote-p, process-file, start-file-process, set-file-times)
8930         (tramp-compat-file-attributes): Compatibility functions shall not
8931         call directly `tramp-handle-*', because this would bypass the
8932         locking mechanism.
8933         (tramp-compat-number-sequence): New defun.
8935 2009-09-02  Glenn Morris  <rgm@gnu.org>
8937         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
8938         alias for float-time.
8939         (time-to-number-of-days): In Emacs, use float-time.
8940         * net/newst-backend.el (time-add): Suppress warnings from compat
8941         function.
8942         * time.el (emacs-uptime, emacs-init-time):
8943         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
8944         Use float-time rather than time-to-seconds.
8946         * minibuffer.el (completion-initials-expand): Fix typo.
8948         * faces.el (modeline, modeline-inactive, modeline-highlight)
8949         (modeline-buffer-id):
8950         * info.el (info-menu-5): Mark these face aliases as obsolete.
8952 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
8954         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
8955         space ...
8956         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
8957         no "--thread" option.
8958         (gdb-stopped): Don't print "Switched to thread" message when it is
8959         unchanged.
8961 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8963         * minibuffer.el (completion-try-completion)
8964         (completion-all-completions): Remove ill-defined (and
8965         mistakenly installed and luckily never used nor documented)
8966         `completion-styles' property.
8967         (completion-initials-expand, completion-initials-all-completions)
8968         (completion-initials-try-completion): New functions.
8969         (completion-styles-alist): Add doc to each entry.
8970         Add new `initials' entry.
8972 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
8974         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
8975         MI command -var-evaluate-expression.
8976         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
8977         and tweak for case of string child.
8978         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
8980 2009-09-01  Glenn Morris  <rgm@gnu.org>
8982         * add-log.el (change-log-date-face, change-log-name-face)
8983         (change-log-email-face, change-log-file-face, change-log-list-face)
8984         (change-log-conditionals-face, change-log-function-face)
8985         (change-log-acknowledgement-face):
8986         * cus-edit.el (custom-invalid-face, custom-rogue-face)
8987         (custom-modified-face, custom-set-face, custom-changed-face)
8988         (custom-saved-face, custom-button-face, custom-button-pressed-face)
8989         (custom-documentation-face, custom-state-face, custom-comment-face)
8990         (custom-comment-tag-face, custom-variable-tag-face)
8991         (custom-variable-button-face, custom-face-tag-face)
8992         (custom-group-tag-face-1, custom-group-tag-face):
8993         * diff-mode.el (diff-header-face, diff-file-header-face)
8994         (diff-index-face, diff-hunk-header-face, diff-removed-face)
8995         (diff-added-face, diff-changed-face, diff-function-face)
8996         (diff-context-face, diff-nonexistent-face):
8997         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
8998         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
8999         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
9000         (Info-title-4-face):
9001         * isearch.el (isearch-lazy-highlight-face):
9002         * log-view.el (log-view-file-face, log-view-message-face):
9003         * paren.el (show-paren-match-face, show-paren-mismatch-face):
9004         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
9005         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
9006         (cvs-msg-face):
9007         * smerge-mode.el (smerge-mine-face, smerge-other-face)
9008         (smerge-base-face, smerge-markers-face):
9009         * wid-edit.el (widget-documentation-face, widget-button-face)
9010         (widget-field-face, widget-single-line-field-face)
9011         (widget-inactive-face, widget-button-pressed-face):
9012         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
9013         (woman-addition-face):
9014         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
9015         (eshell-ls-executable-face, eshell-ls-readonly-face)
9016         (eshell-ls-unreadable-face, eshell-ls-special-face)
9017         (eshell-ls-missing-face, eshell-ls-archive-face)
9018         (eshell-ls-backup-face, eshell-ls-product-face)
9019         (eshell-ls-clutter-face):
9020         * eshell/em-prompt.el (eshell-prompt-face):
9021         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
9022         * obsolete/old-whitespace.el (whitespace-highlight-face):
9023         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
9024         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
9025         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
9026         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
9027         (antlr-font-lock-literal-face):
9028         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
9029         (ebrowse-root-class-face, ebrowse-file-name-face)
9030         (ebrowse-default-face, ebrowse-member-attribute-face)
9031         (ebrowse-member-class-face, ebrowse-progress-face):
9032         * progmodes/make-mode.el (makefile-space-face):
9033         * progmodes/sh-script.el (sh-heredoc-face):
9034         * textmodes/flyspell.el (flyspell-incorrect-face)
9035         (flyspell-duplicate-face):
9036         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
9037         * textmodes/texinfo.el (texinfo-heading-face):
9038         Mark face aliases with "-face" suffix as obsolete.
9040         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
9041         compiler.
9043         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
9044         (eudc-bob-sound-menu): Use defvar rather than defconst, since
9045         easy-menu-define wants to modify these.
9047         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
9049         * net/browse-url.el (browse-url-file-url):
9050         * term/internal.el (dos-codepage-setup):
9051         Use default-value rather than default-enable-multibyte-characters.
9053         * progmodes/etags.el (etags-goto-tag-location):
9054         * progmodes/flymake.el (flymake-highlight-line)
9055         (flymake-goto-file-and-line, flymake-goto-line):
9056         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
9057         (gdb-goto-breakpoint):
9058         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
9059         * progmodes/python.el (python-find-function)
9060         (python-pdbtrack-track-stack-file):
9061         * progmodes/verilog-mode.el (verilog-surelint-off):
9062         * term/ns-win.el (ns-open-file-select-line):
9063         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
9064         Use forward-line rather than goto-line.
9066         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
9067         * textmodes/reftex-index.el (reftex-display-index):
9068         * textmodes/reftex-ref.el (reftex-offer-label-menu):
9069         * textmodes/reftex-toc.el (reftex-toc):
9070         Remove unnecessary bindings of default-major-mode (all are followed by
9071         major-mode check and possible mode switch).
9073 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
9075         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
9076         Handle watchpoints (bug#4282).
9077         (def-gdb-thread-buffer-command): Enable thread to be selected by
9078         clicking without selecting threads buffer first.
9079         (gdb-current-context-command): Use selected frame so that "up",
9080         "down" etc work in the GUD buffer.
9081         (gdb-update): Find selected frame before rendering stack buffer.
9082         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
9084 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
9086         * progmodes/sym-comp.el (displayed-completions): Remove.
9087         (symbol-complete): Use minibuffer-complete.
9089 2009-08-31  Glenn Morris  <rgm@gnu.org>
9091         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
9093         * apropos.el (apropos-symbols-internal):
9094         Handle (obsolete) face aliases.
9096         * faces.el (describe-face): Adjust the output format to be more like
9097         describe-variable, and to mention (obsolete) face aliases.
9098         Adjust the whitespace so that help-setup-xref works.
9100         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
9101         * calendar/diary-lib.el (diary-button-face):
9102         Mark these face aliases as obsolete.
9104         * calendar/calendar.el (calendar-today): Doc fix.
9106 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
9108         * progmodes/gdb-mi.el (gdb-control-all-threads)
9109         (gdb-control-current-thread): Force tool bar update.
9110         (gdb-non-stop-handler): New function.
9111         (gdb-init-1): Use it to test if non-stop mode is supported.
9112         Remove unused gdbmi buffer type.
9114 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
9116         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
9117         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
9119 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
9121         * comint.el (comint-exec-1): Check command is non-null first.
9122         Part of gdb-mi.el change (2009-08-28).
9124 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9126         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
9128 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
9130         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
9131         instead of `dolist' to avoid a recursive require when bootstrapping.
9133 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9135         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
9137         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
9139         * net/imap.el (imap-send-command): Simplify.
9140         (imap-wait-for-tag): point-max -> buffer-size.
9142         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
9144         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
9145         with constant argument.
9147         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
9149         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
9151         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
9152         Change default, since most of our files don't have a history.
9153         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
9154         the user.
9156         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9157         Add comint-run.
9159         * calc/calc.el: Improve commenting convention.
9160         (calc-digit-map, toplevel): Simplify.
9162         * comint.el (comint-insert-input): Be careful to only set point if we
9163         don't delegate to some other command.
9165         * proced.el (proced-signal-list): Make it an alist.
9166         (proced-grammar-alist): Capitalize names.
9167         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
9168         Disable undo manually and make it read-only.
9169         Use completion-annotate-function.
9171         * minibuffer.el (minibuffer-message): If the current buffer is not
9172         a minibuffer, insert the message in the echo area rather than at the
9173         end of the buffer.
9174         (completion-annotate-function): New variable.
9175         (minibuffer-completion-help): Use it.
9176         (completion--embedded-envvar-table): Environment vars are
9177         always case-sensitive.
9179 2009-08-30  Glenn Morris  <rgm@gnu.org>
9181         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
9182         from fortran-current-defun.
9183         (fortran-beginning-of-subprogram): Be more precise about finding the
9184         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
9185         (fortran-end-of-subprogram): Simplify.
9186         (fortran-current-defun): Use fortran-start-prog-re.
9188 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
9190         * subr.el (do-after-load-evaluation): Simplify.
9192 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
9194         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
9196         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
9197         (vc-rcs-print-log): Use it.
9199         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
9201 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9203         * paths.el (abbrev-file-name): Move to abbrev.el.
9204         * abbrev.el (abbrev-file-name): Move from paths.el.
9205         Obey user-emacs-directory.
9206         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
9207         user-emacs-directory.
9208         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
9209         abbrev-file-name and calc-settings-file any more.
9210         * startup.el (command-line): Recompute abbrev-file-name and
9211         abbreviated-home-dir.
9212         (normal-no-mouse-startup-screen): Improve the generic code and get rid
9213         of the special code for when C-h bindings haven't been changed.
9214         (display-startup-echo-area-message): Use with-current-buffer.
9215         (command-line-1): Use a list of strings, rather than a list of lists
9216         of strings for longopts.
9218         * files.el (get-free-disk-space): Use / for default-directory.
9220         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
9221         Use with-current-buffer.
9223         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
9224         Recognize immutable variables like most-positive-fixnum.
9225         (byte-compile-setq-default): Check and warn if trying to assign
9226         to an immutable variable, or a non-variable.
9228         * progmodes/cc-vars.el (c-comment-continuation-stars):
9229         * progmodes/cc-engine.el (c-looking-at-bos):
9230         * progmodes/cc-cmds.el (c-toggle-auto-state)
9231         (c-forward-into-nomenclature, c-backward-into-nomenclature)
9232         (c-comment-line-break-function): Add version of obsolescence.
9234 2009-08-28  Juri Linkov  <juri@jurta.org>
9236         * files.el (magic-fallback-mode-alist): Add ZIP magic number
9237         associated with `archive-mode'.
9239         * image.el (image-type-header-regexps): Use only JPEG magic number
9240         to determine JPEG images, and don't use `image-jpeg-p' because
9241         Emacs can display non-JFIF non-Exif JPEG images.
9243 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
9245         * arc-mode.el (archive-mode):
9246         * emacs-lisp/re-builder.el (re-builder-unload-function):
9247         Protect against the default value of `major-mode' being nil.
9249 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
9251         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
9252         Fix typos in docstrings.
9254         * progmodes/js.el (js--macro-decl-re): Doc fix.
9255         (js--plain-method-re, js--split-name): Refloc docstring.
9256         (js--class-styles, js--make-merged-item, js--splice-into-items):
9257         Fix typos in docstrings; reflow docstrings.
9258         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
9259         (js--variable-decl-matcher, js--inside-pitem-p)
9260         (js--parse-state-at-point, js--get-all-known-symbols)
9261         (js--symbol-history, js-find-symbol, js--js-references)
9262         (js--moz-interactor, js--js-encode-value, js--read-tab):
9263         Fix typos in docstrings.
9265 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9267         * textmodes/reftex.el (reftex-get-file-buffer-force):
9268         * progmodes/verilog-mode.el (verilog-batch-execute-func):
9269         * emulation/viper.el (viper-go-away, viper-set-hooks):
9270         * emacs-lisp/re-builder.el (re-builder-unload-function):
9271         * emacs-lisp/bytecomp.el (byte-compile-file):
9272         * ses.el (ses-unload-function):
9273         * hexl.el (hexl-find-file):
9274         * files.el (normal-mode):
9275         * ehelp.el (with-electric-help):
9276         * autoinsert.el (auto-insert-alist):
9277         * arc-mode.el (archive-mode):
9278         Use (default-value 'major-mode) instead of default-major-mode.
9280         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
9281         * international/mule.el (load-with-code-conversion):
9282         * emacs-lisp/debug.el (debug):
9283         * ediff-vers.el (ediff-rcs-get-output-buffer):
9284         * dired.el (dired-internal-noselect): Don't let-bind
9285         default-major-mode around code that doesn't use it.
9286         E.g. buffer creation via get-buffer-create doesn't use it.
9288 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
9290         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
9291         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
9292         when writing the temp file.  Otherwise, epa-file gets confused.
9293         (tramp-register-file-name-handlers): Make it a defun.  Move also
9294         `epa-file-handler' to the front of `file-name-handler-alist'.
9296 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9298         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
9299         start right after a ^M.
9300         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
9301         (tramp-completion-file-name-regexp-separate)
9302         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
9303         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
9304         Don't modify last-coding-system-used by accident.
9305         (tramp-completion-file-name-handler): Apply the checks here,
9306         instead during registration.
9307         (tramp-register-file-name-handlers): Renamed from
9308         `tramp-register-file-name-handler'.  Register both
9309         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
9310         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
9312 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
9314         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
9315         Remove variable ...
9316         (gdb-init-1, gdb-display-separate-io-buffer)
9317         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
9318         references to it.
9319         (gdb-inferior-io-mode): Use make-comint-in-buffer.
9320         (gdb-inferior-filter): Use comint-output-filter to stop
9321         echoing and remove ^M characters.
9323 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9325         * emulation/viper-init.el (viper-restore-cursor-type):
9326         * emulation/cua-base.el (cua--update-indications):
9327         Replace default-cursor-type with (default-value 'cursor-type).
9329         * mail/sendmail.el (mail-recover-1):
9330         * international/mule-diag.el (describe-current-coding-system-briefly)
9331         (describe-current-coding-system):
9332         * international/mule-cmds.el (select-safe-coding-system)
9333         (select-message-coding-system)
9334         (set-language-environment-coding-systems, set-locale-environment):
9335         * hexl.el (hexl-insert-multibyte-char):
9336         * dos-w32.el (find-buffer-file-type-coding-system):
9337         * simple.el (what-cursor-position):
9338         Replace uses of default-buffer-file-coding-system
9339         with (default-value 'buffer-file-coding-system).
9341         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
9342         Replace uses of default-cursor-in-non-selected-windows
9343         with (default-value 'cursor-in-non-selected-windows).
9344         Use with-current-buffer.
9346         * mail/feedmail.el: Use CL macros.
9347         (feedmail-run-the-queue, feedmail-send-it-immediately):
9348         * dos-w32.el (find-buffer-file-type): Replace uses of
9349         default-buffer-file-type with (default-value 'buffer-file-type).
9351 2009-08-28  Glenn Morris  <rgm@gnu.org>
9353         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
9354         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
9355         Use default-value of major-mode rather than default-major-mode.
9357 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9359         * Makefile.in (update-elcfiles): Report left over elc files.
9361         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
9362         expand-file-name and with-current-buffer.
9363         (mail-get-names, mail-directory): Use with-current-buffer.
9365         * vc.el (vc-read-revision): New function.
9366         (vc-version-diff, vc-merge): Use it.
9368 2009-08-27  Sam Steingold  <sds@gnu.org>
9370         * simple.el (kill-do-not-save-duplicates): New user option.
9371         (kill-new): When it is non-nil, and the new string is the same as
9372         the latest kill, set replace to t to avoid duplicates in kill-ring.
9374 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
9376         * net/tramp.el (tramp-handle-process-file): Do not flush all
9377         caches when `process-file-side-effects' is set.
9378         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
9379         instead of `tramp-find-file-exists-command'.
9380         Unset `process-file-side-effects'.
9382 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
9384         * net/tramp.el (tramp-methods): New method "rsyncc".
9385         (top): Add completion function for "rsyncc".
9386         (tramp-message-show-message): New defvar.
9387         (tramp-message, tramp-error): Use it.
9388         (tramp-do-copy-or-rename-file-directly): Extend check for direct
9389         remote copying.
9390         (tramp-do-copy-or-rename-file-out-of-band): Handle new
9391         `tramp-methods' entry `copy-env' of "rsyncc".
9392         (tramp-vc-registered-read-file-names): New defconst.
9393         (tramp-vc-registered-file-names): New defvar.
9394         (tramp-handle-vc-registered): Implement optimization strategy.
9395         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
9396         (tramp-vc-file-name-handler): New defun.
9397         (tramp-get-ls-command, tramp-get-test-command)
9398         (tramp-get-file-exists-command, tramp-get-remote-ln)
9399         (tramp-get-remote-perl, tramp-get-remote-stat)
9400         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
9402         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
9403         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
9404         timestamps.
9405         (tramp-get-file-property): Check for timestamps in
9406         `tramp-cache-inhibit-cache'.
9407         (tramp-set-file-property): Write timestamp.
9409 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9411         * language/japan-util.el (japanese-symbol-table): Add entries for
9412         cp932-2-byte.
9414         * international/characters.el: Add category `j' to cp932-2-byte.
9416 2009-08-27  Kenichi Handa  <handa@m17n.org>
9418         * international/fontset.el (build-default-fontset-data): New macro.
9419         (setup-default-fontset): Use build-default-fontset-data for CJK,
9420         tibetan, ethiopic, and ipa.
9422 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9424         * cus-start.el (default-major-mode): Customize `major-mode' instead.
9425         (enable-multibyte-characters): Not customizable any more.
9427         * subr.el (default-mode-line-format, default-header-line-format)
9428         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
9429         (default-direction-reversed, default-truncate-lines)
9430         (default-left-margin, default-tab-width, default-case-fold-search)
9431         (default-left-margin-width, default-right-margin-width)
9432         (default-left-fringe-width, default-right-fringe-width)
9433         (default-fringes-outside-margins, default-scroll-bar-width)
9434         (default-vertical-scroll-bar, default-indicate-empty-lines)
9435         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
9436         (default-fringe-cursor-alist, default-scroll-up-aggressively)
9437         (default-scroll-down-aggressively, default-fill-column)
9438         (default-cursor-type, default-buffer-file-type)
9439         (default-cursor-in-non-selected-windows)
9440         (default-buffer-file-coding-system, default-major-mode)
9441         (default-enable-multibyte-characters): Mark as obsolete.
9443 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
9445         * vc-dir.el (vc-dir-update): Remove debug helper.
9447         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
9449 2009-08-26  Sam Steingold  <sds@gnu.org>
9451         * simple.el (save-interprogram-paste-before-kill): New user option.
9452         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
9453         save the interprogram-paste into kill-ring before overriding it
9454         with the Emacs kill.
9456 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
9458         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
9459         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
9460         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
9461         and move to vc-rcs.el.
9462         (vc-default-next-revision): Rename to vc-rcs-next-revision and
9463         move to vc-rcs.el.
9464         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
9465         (vc-rcs-update-changelog): Remove.
9466         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
9467         and move to vc-rcs.el.
9469         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
9470         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
9471         renaming.
9472         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
9473         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
9474         vc.el, renamed to be RCS specific.
9476         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
9477         New functions.
9478         (vc-cvs-update-changelog): Move here from vc.el.
9480         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
9481         New functions.
9483 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9485         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
9487 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
9489         * vc-git.el (vc-git-register): Use "git add" for directories.
9490         (vc-git-stash, vc-git-stash-show): New functions.
9491         (vc-git-extra-menu-map): Bind them.
9493         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
9494         directory correctly in case the item is a directory itself.
9496         * vc.el: Document the desired behavior for reverted files in the
9497         `added' state.
9498         (vc-default-prettify-state-info): Remove function, unused.
9500         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
9502 2009-08-26  Glenn Morris  <rgm@gnu.org>
9504         * bindings.el (standard-mode-line-format): Reposition dashes in
9505         which-func entry.  (Bug#4217)
9507         * files.el (enable-local-variables, enable-local-eval)
9508         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
9509         the defcustoms.
9510         (auto-mode-alist, ignored-local-variables)
9511         (save-some-buffers-action-alist): Move risky declarations to the
9512         definitions.
9513         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
9514         (font-lock-defaults, format-alist, imenu--index-alist)
9515         (imenu-generic-expression, input-method-alist, minor-mode-alist)
9516         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
9517         (mode-line-modified, mode-line-mule-info, mode-line-position)
9518         (mode-line-process, mode-line-remote, outline-level)
9519         (parse-time-rules, rmail-output-file-alist)
9520         (special-display-buffer-names, vc-mode):
9521         Move risky declarations to the relevant files.
9522         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
9523         (mode-line-modified, mode-line-process, mode-line-position)
9524         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
9525         * font-core.el (font-lock-defaults):
9526         * format.el (format-alist):
9527         * vc-hooks.el (vc-mode):
9528         * window.el (special-display-buffer-names):
9529         * international/mule-cmds.el (input-method-alist):
9530         Define riskiness here (dumped file) rather than in files.el.
9531         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
9532         * imenu.el (imenu-generic-expression, imenu--index-alist):
9533         * outline.el (outline-level):
9534         * time.el (display-time-string):
9535         * calendar/parse-time.el (parse-time-rules):
9536         * mail/rmailout.el (rmail-output-file-alist):
9537         Autoload riskiness here, rather than placing in files.el.
9539 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
9541         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
9543 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
9545         * simple.el (process-file-side-effects): New defvar.
9547         * dired-aux.el (dired-show-file-type):
9548         * vc.el (vc-diff-internal):
9549         * vc-arch.el (vc-arch-diff):
9550         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
9551         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
9552         * vc-git.el (vc-git-registered, vc-git-working-revision)
9553         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
9554         (vc-git--empty-db-p):
9555         * vc-hooks.el (vc-user-login-name):
9556         * vc-svn.el (vc-svn-registered, vc-svn-state)
9557         (vc-svn-dir-extra-headers, vc-svn-find-revision):
9558         * progmodes/grep.el (grep-probe): Let-bind
9559         `process-file-side-effects' with nil.
9561         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
9563         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
9564         daemon.  Replace ping by checking for running service for bluez
9565         and zeroconf.  (Bug#4239)
9567 2009-08-25  Kevin Ryde  <user42@zip.com.au>
9569         * net/dig.el (dig): Add autoload cookie.
9571 2009-08-25  Glenn Morris  <rgm@gnu.org>
9573         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
9574         load-history for absolute file-names.
9575         (byte-compile-file-form-require): Warn about use of the cl package.
9577         * format.el (format-alist): Doc fix.
9579         * play/bubbles.el (top-level): Don't require cl at run-time.
9581         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
9582         run-time cl).
9584 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
9586         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
9587         from cl package.
9588         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
9590 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
9592         * calc/calc-alg.el (math-trig-rewrite)
9593         (math-hyperbolic-trig-rewrite): New functions.
9594         (calc-simplify): Simplify trig functions when asked.
9596 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9598         * diff-mode.el (diff-find-source-location): Avoid goto-line.
9600 2009-08-24  Kenichi Handa  <handa@m17n.org>
9602         * language/ind-util.el (mapthread): Delete it.
9603         (combinatorial): New function.
9604         (indian--puthash-cv): Use combinatorial instead of mapthread.
9606 2009-08-22  Kevin Ryde  <user42@zip.com.au>
9608         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
9609         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
9610         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
9611         Clarify docstring that the value is strings not symbols.
9612         (checkdoc-list-of-strings-p): New function.
9614 2009-08-22  Glenn Morris  <rgm@gnu.org>
9616         * files.el (auto-mode-alist):
9617         * hippie-exp.el (he-concat-directory-file-name):
9618         * lpr.el (lpr-windows-system, printer-name):
9619         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
9620         * ps-print.el (ps-windows-system):
9621         * startup.el (command-line):
9622         * emulation/viper-ex.el (viper-glob-function):
9623         * international/mule-cmds.el (set-language-environment-coding-systems):
9624         * net/ange-ftp.el (ange-ftp-write-region):
9625         * obsolete/fast-lock.el (fast-lock-cache-name):
9626         Remove code for defunct system-types emx, macos, mswindows, next-mach,
9627         unisoft-unix, vax-vms, win32, w32.
9629         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
9630         given name if the pattern is not more specific.
9632         * calendar/lunar.el (lunar-phase-names): New option.
9633         (lunar-phase): Doc fix.
9634         (lunar-cycles-per-year): New constant.
9635         (lunar-index): New function.
9636         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
9637         (lunar-phase-name): Use lunar-phase-names.
9638         (calendar-lunar-phases): Use format.
9639         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
9641         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
9642         Copy imenu-example--name-and-position function here for own use.
9643         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
9645         * bs.el (bs--redisplay):
9646         * cus-edit.el (custom-redraw):
9647         * ibuffer.el (ibuffer-bury-buffer):
9648         * server.el (server-goto-line-column):
9649         * startup.el (command-line-1):
9650         * strokes.el (strokes-xpm-for-stroke):
9651         * term.el (term-display-buffer-line):
9652         * view.el (View-goto-line):
9653         * calc/calc.el (calc-do, calc-trail-buffer):
9654         * play/gamegrid.el (gamegrid-add-score-insecure):
9655         * progmodes/ada-mode.el (ada-compile-goto-error):
9656         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
9657         (ebrowse-select-1st-to-9nth):
9658         * progmodes/cperl-mode.el (cperl-time-fontification):
9659         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
9660         * progmodes/gud.el (gud-display-line):
9661         (idlwave-shell-display-line):
9662         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
9663         * progmodes/make-mode.el (makefile-browser-toggle):
9664         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
9665         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
9666         * textmodes/picture.el (picture-draw-rectangle):
9667         * textmodes/reftex-index.el (reftex-index-goto-letter):
9668         (reftex-select-jump-to-previous):
9669         * textmodes/reftex-sel.el (reftex-find-start-point)
9670         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
9671         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
9672         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
9673         * textmodes/tex-mode.el (tex-compilation-parse-errors):
9674         * textmodes/two-column.el (2C-associated-buffer):
9675         Use forward-line rather than goto-line.
9677         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
9678         goto-line.
9680         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
9681         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
9682         (quick-check-list-to-regexp): Declare.
9684         * progmodes/make-mode.el (makefile-browser-insert-selection):
9685         Use goto-char rather than goto-line.
9687         * progmodes/prolog.el (compilation-error-regexp-alist)
9688         (compilation-forget-errors): Declare.
9690 2009-08-22  Juri Linkov  <juri@jurta.org>
9692         * progmodes/grep.el (lgrep, rgrep): At the beginning
9693         set `dir' to `default-directory' unless `dir' is a non-nil
9694         readable directory.  (Bug#4052)
9695         (lgrep, rgrep): Change a weird way to report an error
9696         from using `read-string' to using `error'.
9697         Instead of using interactive arguments in the function body,
9698         add new argument `confirm'.
9700 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9702         * textmodes/remember.el (remember-buffer):
9703         * progmodes/cperl-mode.el (cperl-vc-header-alist):
9704         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
9705         (icalendar-extract-ical-from-buffer):
9706         * net/newst-treeview.el (newsticker-groups-filename):
9707         * net/newst-backend.el (newsticker-cache-filename):
9708         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
9709         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
9710         (speedbar-add-ignored-path-regexp, speedbar-line-path)
9711         (speedbar-buffers-line-path, speedbar-path-line)
9712         (speedbar-buffers-line-path):
9713         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
9714         (epg-sign-keys):
9715         * epa.el (epa-display-verify-result):
9716         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
9718 2009-08-21  Glenn Morris  <rgm@gnu.org>
9720         * progmodes/js.el (inferior-moz-process): Fix declaration.
9722         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
9724         * obsolete/rnewspost.el (news-mail-reply):
9725         Use goto-char rather than goto-line.
9727         * term/ns-win.el (ns-open-file-select-line):
9728         Use line-beginning-position rather than goto-line.
9730         * apropos.el (apropos-command):
9731         * ehelp.el (electric-helpify):
9732         * printing.el (pr-show-setup):
9733         * strokes.el (strokes-help):
9734         * tutorial.el (tutorial--describe-nonstandard-key)
9735         (tutorial--detailed-help):
9736         * woman.el (woman-mini-help, woman-display-extended-fonts):
9737         * calc/calc-help.el (calc-describe-key):
9738         * emulation/edt.el (edt-electric-helpify):
9739         * international/mule-diag.el (mule-diag):
9740         * play/yow.el (apropos-zippy):
9741         * progmodes/python.el (python-describe-symbol):
9742         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
9743         * textmodes/table.el (*table--cell-describe-mode)
9744         (*table--cell-describe-bindings):
9745         Use help-print-return-message rather than the now obsolete alias.
9747         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
9748         (calendar-cursor-to-visible-date):
9749         * play/5x5.el (5x5-position-cursor):
9750         * play/decipher.el (decipher):
9751         * play/gomoku.el (gomoku-goto-xy):
9752         * play/landmark.el (lm-goto-xy):
9753         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
9754         (mpuz-paint-digit):
9755         Use forward-line, not goto-line.
9757         * mail/rmail.el (rmail-obsolete): Delete custom group.
9758         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
9759         (rmail-remote-password, rmail-remote-password-required):
9760         Remove unneeded :set-after and :set properties.
9762 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
9764         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
9766 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
9768         * loadup.el: Remove leftover macos code.
9770         * vc-git.el (vc-git-annotate-command): Run asynchronously.
9771         Explicitly pass the date format to git blame so that user local
9772         so that the output format can be parsed.
9774 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
9776         * net/dbus.el (top): Don't check for (getenv
9777         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
9779 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
9781         * log-edit.el (log-edit-strip-single-file-name): New var.
9782         (log-edit-insert-changelog): Use it.  Bug#3571
9784 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9786         * subr.el (read-passwd): Use read-key so keypad keys work as well.
9787         Bug#3287
9789         * help.el (help-print-return-message): Rename from
9790         print-help-return-message.
9792         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
9793         cvs-mode-map parent hack.
9794         (log-view-mode): Derive from special-mode.
9796         * linum.el (linum-mode): window-size-change-functions is redundant.
9797         Adapt to new window-configuration-change-hook behavior.
9798         (linum-after-size, linum-after-config): Remove.
9800         * imenu.el (imenu-example--name-and-position)
9801         (imenu-example--lisp-extract-index-name)
9802         (imenu-example--create-lisp-index, imenu-example--create-c-index):
9803         Mark as obsolete.
9805         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
9806         (inferior-prolog-mode): Use it.
9807         (inferior-prolog-load-file): Reset list of errors.
9809 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9811         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
9813         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
9815 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
9817         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
9818         is running already.
9820 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9822         * subr.el (listify-key-sequence-1): Use normal syntax since those
9823         integers are nowadays always represented by the same (positive) number
9824         on all platforms.
9825         (read-key-empty-map): New const.
9826         (read-key-delay): New var.
9827         (read-key): New function.
9828         (force-mode-line-update): Use with-current-buffer.
9829         (locate-user-emacs-file): Don't forget to abbreviate the file name.
9830         (start-process-shell-command, start-file-process-shell-command):
9831         Discourage the use of command-args.
9833 2009-08-19  Glenn Morris  <rgm@gnu.org>
9835         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
9837 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9839         * simple.el (choose-completion-string): Don't rely on
9840         minibuffer-completing-file-name and ad-hoc checks to decide whether
9841         to continue completion or not.
9843         * minibuffer.el (minibuffer-hide-completions): New function.
9844         (completion--do-completion): Use it.
9845         (completions-annotations): New face.
9846         (completion--insert-strings): Use it.
9847         (completion-pcm--delim-wild-regex): Add docstring.
9848         (completion-pcm--string->pattern): Add support for 0-width delimiters
9849         in completion-pcm--delim-wild-regex.
9851 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9853         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
9854         Remove unused var `buffer-modified-p'.
9856         * minibuffer.el (completion--do-completion): Move point for the #b001
9857         case as well (bug#4176).
9858         (minibuffer-complete, minibuffer-complete-word): Don't move point.
9860 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
9862         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
9863         and :session buses.
9865 2009-08-18  Kenichi Handa  <handa@m17n.org>
9867         * international/ucs-normalize.el (ucs-normalize-version):
9868         Change to 1.1.
9869         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
9870         (utf-8-hfs): Make it perform normalization on encoding too.
9872         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
9873         (sentence-end-without-space): Delete duplicated chars.
9874         (sentence-end-base): Likewise.
9876         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
9877         (html-mode): Delete duplicated chars from sentence-end-base.
9879         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
9880         (texinfo-mode): Delete duplicated chars from sentence-end-base.
9882 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
9884         * files.el (hack-one-local-variable): If the mode function is for
9885         a minor mode, pass it an argument (Bug#4148).
9887 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
9889         * net/tramp.el (tramp-register-completion-file-name-handler):
9890         Check also for (member 'partial-completion completion-styles).
9892 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9894         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
9895         abbrev (Bug#3943).
9897 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
9899         * progmodes/cperl-mode.el: Merge upstream 6.2.
9900         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
9901         (cperl-forward-re): Check cperl-brace-recursing.
9902         (cperl-highlight-charclass): New function.
9903         (cperl-find-pods-heres): Use it.
9904         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
9905         (cperl-beautify-regexp-piece): Fix column calculation.
9906         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
9907         (cperl-beautify-level): Don't process entire regexp.
9908         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
9909         calling man.
9910         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
9911         (cperl-init-faces): Build a list in the normal way.
9913 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9915         * calendar/parse-time.el (parse-time-string-chars): Save match
9916         data.
9918 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9920         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
9921         (sql-product): Use it.
9922         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
9923         (sql-set-product): Add completion.
9924         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
9925         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
9926         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
9927         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
9928         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
9929         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
9930         (sql-highlight-db2-keywords): Remove.
9931         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
9932         (sql-highlight-product): Use derived-mode-p.
9933         (sql-set-sqli-buffer): Use with-current-buffer.
9934         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
9935         Simplify.
9937         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
9939         * term.el: Fix commenting convention, turn comments into docstrings.
9941 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
9943         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
9945 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
9947         * calendar/parse-time.el (parse-time-string-chars): Compute using
9948         character classes, to handle non-ascii characters (Bug#3190).
9950 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9952         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
9953         another heredoc if the user adds another < (Bug#3226).
9955         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
9956         Don't initialize based on window-system (Bug#4124).
9958         * facemenu.el (facemenu-read-color): Use a completion function
9959         that accepts any defined color, such as RGB triplets (Bug#3677).
9961         * files.el (get-free-disk-space): Change fallback default
9962         directory to /.  Expand DIR argument before switching to fallback.
9963         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
9965 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
9967         * files.el (load-library): Doc fix.
9969 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
9971         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
9972         (viper-if-string): Redefine C-s in the minibuffer to insert the last
9973         incremental search string.
9975         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
9976         XEmacs.
9978         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
9979         (ediff-merge-region-is-non-clash)
9980         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
9981         Also check if the job is really a merge job.
9983         * ediff.el (ediff-current-file): New function.
9985 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
9987         * progmodes/js.el: Edit docstrings throughout to follow Emacs
9988         conventions.
9989         (js-insert-and-indent): Delete function.
9990         (js-mode-map): Don't bind keys to js-insert-and-indent.
9991         (js-beginning-of-defun): Rename from js--beginning-of-defun.
9992         (js-end-of-defun): Rename from js--end-of-defun.
9993         (js-auto-indent-flag): Delete variable.
9995 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
9997         * progmodes/js.el: Remove proclaim statement.
9998         Defvar which-func-imenu-joiner-function to silence compiler.
10000         * files.el (auto-mode-alist): Use js-mode for .js files.
10002         * progmodes/js2-mode.el: Remove file.
10004         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
10006         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
10008         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
10010 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
10011             Karl Landstrom  <karl.landstrom@brgeight.se>
10013         * progmodes/js.el: New file.
10015 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
10017         * timezone.el (timezone-parse-date): Add ability to understand ISO
10018         basic format (minimal separators) dates in addition to the
10019         already-supported extended format dates.
10021 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
10023         * international/ucs-normalize.el: Add a `coding' file variable.
10025         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
10027 2009-08-14  Sam Steingold  <sds@gnu.org>
10029         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
10031 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
10033         * faces.el (help-argument-name): Define it here instead of
10034         help-fns.el, because in daemon mode help-fns.el may be loaded when
10035         faces are still uninitialized (Bug#1078).
10037         * help-fns.el (help-argument-name): Move defface to faces.el.
10039 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
10041         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
10042         create buffer with a pty but no process so that GDB can make the
10043         inferior the controlling process.
10045 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
10047         * international/ucs-normalize.el: New file.
10049 2009-08-13  Richard Stallman  <rms@gnu.org>
10051         * mail/rmail.el (rmail-get-attr-names):
10052         Accept an attribute header that is too short.
10054         * mail/rmail.el (rmail-forget-messages):
10055         Ignore nil elt in rmail-message-vector.  Use dotimes.
10057         * progmodes/compile.el (compilation-goto-locus):
10058         Use next-error-move-function.
10060         * simple.el (next-error-move-function): New variable.
10062 2009-08-12  Juri Linkov  <juri@jurta.org>
10064         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
10065         always non-nil.  (Bug#4052)
10067         * replace.el (read-regexp): Return empty string when
10068         `default-value' is nil.
10069         (keep-lines-read-args): Don't use empty string as the
10070         default value for `read-regexp'.  (Bug#2495)
10072 2009-08-12  Juri Linkov  <juri@jurta.org>
10074         * international/mule-cmds.el (ucs-insert): Change arguments
10075         from `arg' to `character', `count', `inherit' to be the same
10076         as in `insert-char'.  Doc fix.  (Bug#4039)
10078         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
10080 2009-08-12  Juri Linkov  <juri@jurta.org>
10082         * files-x.el: New file.
10084         * files.el: Move code that deals with adding/deleting
10085         file/directory-local variables to files-x.el.
10087         * Makefile.in (ELCFILES): Add files-x.elc.
10089 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
10091         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
10092         to use `goto-line'.
10093         (gdb-place-breakpoints, gdb-get-location): Rewritten without
10094         `goto-line'.
10095         (gdb-invalidate-disassembly): Do not refresh upon receiving
10096         'update signal.  Instead, update all disassembly buffers only after
10097         threads list.
10098         (gdb): Send -target-detach when buffer is killed (Bug#3794).
10099         (gdb-starting): Moved -data-list-register-names...
10100         (gdb-stopped): ...here so it's sent when first thread stops.
10101         (gdb-registers-handler-custom): Do nothing if register names are
10102         unknown yet.
10104         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
10105         from `gdb-mi.el' to avoid extra tangling.
10107         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
10108         change which breaks `gud-def' definitions used in `gdb'.
10109         (gdb-update-gud-running): No extra fuss for updating frame number.
10111 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10113         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
10114         (describe-language-environment-map, setup-language-environment-map)
10115         (set-coding-system-map): Move initialization into declaration.
10116         (set-language-info-alist): Last arg to define-key-after can be skipped.
10118         * international/quail.el (quail-completion-1): Simplify.
10119         (quail-define-rules): Use slightly more compact code.
10120         (quail-insert-decode-map): Propertize keys, compact columns.
10122         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10123         Add goto-line.
10125 2009-08-10  Miles Bader  <miles@gnu.org>
10127         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
10128         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
10129         (js2-instance-member, js2-private-member, js2-private-function-call)
10130         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
10131         (js2-magic-paren, js2-external-variable):
10132         Remove "-face" suffix from face names.
10133         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
10134         (js2-highlight-undeclared-vars, js2-peek-token)
10135         (js2-parse-function-params, js2-mode-show-errors)
10136         (js2-mode-show-warnings, js2-make-magic-delimiter)
10137         (js2-mode-highlight-magic-parens): Update to use new face names.
10139 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
10141         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
10142         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
10144 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
10146         * subr.el: Provide hashtable-print-readable.
10148         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
10149         hs-c-like-adjust-block-beginning.
10150         (hs-hide-block-at-point): Stop hiding at the beginning of
10151         hs-block-end-regexp (Bug#700).
10153 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
10155         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
10156         a macro.
10157         (gdb-registers-handler-custom): Do not fail when register names
10158         are unavailable.
10160 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
10162         * progmodes/gdb-mi.el (gdb-control-all-threads)
10163         (gdb-control-current-thread): Interactive setters for
10164         `gdb-gud-control-all-threads' to use in menu.
10165         (gdb-show-run-p): Show «Go» when process is not active.
10166         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
10167         gud/thread.xpm and gud/all.xpm.
10169 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
10171         * net/net-utils.el (net-utils-font-lock-keywords): New var.
10172         (nslookup-font-lock-keywords): Make it a variable.
10173         (net-utils-mode): New mode for viewing diagnostic network output.
10174         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
10175         (net-utils-run-simple): New function.
10176         (ifconfig, iwconfig, netstat, arp, route): Use it.
10178 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
10180         * progmodes/gdb-mi.el (gdb-read-memory-custom)
10181         (gdb-memory-set-address, def-gdb-set-positive-number)
10182         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
10183         after changing settings.
10184         (gdb-invalidate-disassembly): Update when first shown.
10185         (gdb-edit-locals-value): Fixed.
10186         (gdb-registers-handler-custom): Print registers in right order and
10187         allow changing register values (only for current thread yet).
10188         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
10189         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
10190         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
10191         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
10192         info in mode name.
10193         (gdb-registers-mode-map): TAB to switch to locals.
10195 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
10197         * mail/rmail.el (rmail-add-mbox-headers)
10198         (rmail-set-message-counters-counter): Search for
10199         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
10201 2009-08-08  Glenn Morris  <rgm@gnu.org>
10203         * Makefile.in (ELCFILES): Update.
10205 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
10207         * mail/sendmail.el (mail-yank-original): Set
10208         buffer-file-coding-system from the one used by the message whose
10209         text is yanked.
10211         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
10212         to "windows" when "pgnuplot" is used.
10213         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
10214         call accept-process-output if "pgnuplot" is used.
10215         (calc-graph-init): Don't send -display and -geometry to
10216         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
10217         running "pgnuplot -V" with shell-command-to-string.
10219         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
10220         the default.
10222 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
10224         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
10225         org/org-latex.elc.
10227 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
10229         * vc-dispatcher.el (vc-resynch-window): Update comment.
10231         * term.el (term-handle-ansi-escape): Add comments with the
10232         terminfo capabilities implemented.
10234 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
10236         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
10237         (gdb-var-create-handler): Rewritten using JSON parser.
10238         (gdb-propertize-header): Moved earlier.
10239         (gdb-set-header): Removed to avoid duplication.
10240         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
10241         Refresh disassembly buffers only after threads list have been
10242         update.
10243         (gdb-threads-header, gdb-registers-header): Per-buffer header line
10244         variables.
10246 2009-08-04  Juri Linkov  <juri@jurta.org>
10248         * files.el: Commands to add/delete file/directory-local variables.
10249         (read-file-local-variable, read-file-local-variable-value)
10250         (read-file-local-variable-mode, modify-file-local-variable)
10251         (modify-file-local-variable-prop-line)
10252         (modify-dir-local-variable): New functions.
10253         (add-file-local-variable, delete-file-local-variable)
10254         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
10255         (add-dir-local-variable, delete-dir-local-variable)
10256         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
10257         (copy-dir-locals-to-file-locals-prop-line): New commands.
10259 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
10261         * abbrev.el (insert-abbrev-table-description): Prettify output.
10262         Suggested by Karl Chen.
10264 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
10266         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
10267         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
10268         (gdb-overlay-arrow-position, gdb-thread-position)
10269         (gdb-disassembly-position): Declare variables.
10270         (gdb-wait-for-pending): Function now.
10271         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
10272         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
10273         compilation goes smoothly.
10274         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
10275         (gdb-non-stop-setting): New customization setting which replaces
10276         `gdb-non-stop' so changing it doesn't break active GDB session.
10277         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
10278         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
10279         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
10280         (gdb-show-threads-by-default): New customization options.
10281         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
10282         routines.
10283         (gdb-get-buffer-create): Send buffers update signal when they are
10284         created.
10285         (gdb-invalidate-locals, gdb-invalidate-registers)
10286         (gdb-invalidate-breakpoints)
10287         (gdb-invalidate-threads, gdb-invalidate-disassembly)
10288         (gdb-invalidate-memory): Accept update signal.
10289         (gdb-current-context-command): Use --frame option.
10290         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
10291         Implement `gdb-frame-number' selection logic.
10292         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
10293         whether to show GUD toolbar buttons.
10294         (gdb-thread-exited): Unselect current thread when it exits.
10295         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
10296         (gdb-mark-line): Routine which sets overlay arrow or inverses
10297         video on fringeless displays.
10298         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
10299         to build aligned columns of data in GDB buffers and set text
10300         properties line-by-line.
10301         (gdb-invalidate-breakpoints)
10302         (gdb-breakpoints-list-handler-custom)
10303         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
10304         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
10305         (gdb-registers-handler-custom): Align data columns.
10306         (gdb-locals-handler-custom): Now prints data like in variable
10307         declarations.
10308         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
10309         Removed confusing buttons.
10310         (gdb-invalidate-threads): Append --frame.
10311         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
10312         between breakpoints/threads buffers.
10313         (gdb-set-window-buffer): Now can ignore dedicated windows.
10314         (gdb-propertize-header): Use `gdb-set-window-buffer'.
10315         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
10316         (def-gdb-thread-buffer-gud-command): Replaces
10317         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
10318         for fine thread control.
10319         (gdb-preempt-existing-or-display-buffer): New function used to
10320         display bound buffers without breaking window layout.
10321         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
10322         (gdb-select-frame): New version of `gdb-frames-select' which now
10323         sets `gdb-frame-number' so commands may use --frame option instead
10324         of inner debugger state.
10325         (gdb-frame-handler): Do not set `gdb-frame-number'.
10326         (gdb-threads-mode-map): Select threads with mouse.
10328         * progmodes/gud.el (gdb-gud-context-call): Declare function to
10329         avoid compilation warning.
10330         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
10331         `gdb-show-stop-p`.
10333         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
10334         Argument `key' renamed to `buffer-type'.
10335         (gdb-current-context-buffer-name): Do not add thread info to
10336         buffer name when no thread is selected.
10337         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
10338         command (bug 3794).
10339         (gdb-thread-selected): Handle `=thread-selected' notification.
10340         (gdb-wait-for-pending): New macro to deal with congestion problems.
10341         (gdb-breakpoints-list-handler-custom): Don't fail on pending
10342         breakpoints.
10343         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
10344         This fixes problem similar to one described in bug 3947.
10345         (gud-menu-map): More menu items.
10346         (gdb-init-1): Reset `gdb-thread-number' to nil.
10348         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
10349         non-stop settings.
10351         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
10352         (gdb-current-context-command): Do not append --thread if
10353         `gdb-thread-number' is nil.
10354         (gdb-running-threads-count, gdb-stopped-threads-count): New
10355         variables.
10356         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
10357         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
10358         customization options.
10359         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
10360         GUD commands.
10361         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
10362         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
10363         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
10364         set `gdb-thread-number' and update `gud-running' properly.
10365         (gdb-running): Update threads list when new threads appear.
10366         (gdb-stopped): Support non-stop operation and new thread switching
10367         logic.
10368         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
10369         (gdb-json-partial-output): New set of JSON routines.
10370         (def-gdb-auto-update-trigger): New `signal-list' optional
10371         argument.
10372         (gdb-thread-list-handler-custom): Update `gud-running',
10373         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
10374         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
10375         (gdb-continue-thread, gdb-step-thread): New commands for fine
10376         thread execution control.
10377         (gud-menu-map): New menu items to switch non-stop options.
10378         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
10379         (gdb-send): Mimic RET properly (bug 3794).
10381         * progmodes/gdb-mi.el (gdb-rules-name-maker)
10382         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
10383         gdb-buffer-rules.
10384         (def-gdb-auto-update-handler): New nopreserve optional argument.
10385         (gdb-stack-list-frames-custom): Print stack from top to bottom.
10387         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
10388         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
10389         (gdb-parent-mode): New mode to derive other GDB modes from.
10390         (gdb-display-disassembly-for-thread)
10391         (gdb-frame-disassembly-for-thread): New commands for threads
10392         buffer.
10394         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
10395         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
10396         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
10397         (gdb-update): We now store all GDB buffers in a list so that they
10398         can be updated by traversing a list instead of calling invalidate
10399         triggers explicitly.
10400         (def-gdb-trigger-and-handler): New macro to define trigger-handler
10401         pair for GDB buffer.
10402         (gdb-stack-buffer-name): Add thread information.
10403         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
10404         handle pending triggers.
10405         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
10406         (def-gdb-thread-buffer-simple-command)
10407         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
10408         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
10409         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
10410         New commands which show buffers bound to thread.
10411         (gdb-stack-list-locals-regexp): Removed unused regexp.
10413         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
10414         (gdb-locals-buffer-name, gdb-registers-buffer-name)
10415         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
10416         to (gud-comint-buffer) in *-buffer-name functions
10417         because (gdb-get-target-string) already does that.
10418         (gdb-locals-handler-custom, gdb-registers-handler-custom)
10419         (gdb-changed-registers-handler): Rewritten without regexps.
10421         * progmodes/gdb-mi.el: Basic thread selection support.
10422         (gdb-thread-number): New variable.
10423         (gdb-current-context-command): New macro which adds --thread
10424         option to command.
10425         (gdb-threads-mode-map): Select thread with SPC.
10426         (gdb-thread-list-handler-custom): Mark current thread with overlay
10427         arrow.  Synchronize GDB thread and Emacs thread.
10428         (gdb-select-thread): New command which selects current thread.
10429         (gdb-invalidate-frames, gdb-invalidate-locals)
10430         (gdb-invalidate-registers): Use --thread option.
10432 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
10434         * net/tramp.el (top): Make check for tramp-gvfs loading more
10435         robust.  (Bug#3977)
10436         (tramp-handle-insert-file-contents): `unwind-protect' must be
10437         inside `with-parsed-tramp-file-name'.
10439         * net/tramp-gvfs.el (top): Remove superfluous message when loading
10440         fails.
10442 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
10444         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
10445         directory if CLASSPATH is not set.
10447 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
10449         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
10450         New defconst.
10451         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
10453 2009-08-02  Kevin Ryde  <user42@zip.com.au>
10455         * net/newst-backend.el (newsticker--raw-url-list-defaults):
10456         Update freshmeat link.  Delete newsforge.com as it seems gone.
10458 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
10460         * select.el (x-set-selection): Doc fix (Bug#4021).
10462         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
10464         * help-fns.el (describe-variable): Treat list return values from
10465         dir-locals-find-file properly (Bug#4005).
10467 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
10469         * net/tramp.el (tramp-debug-message): Print also microseconds.
10471 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
10473         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
10474         or END is non-nil.
10475         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
10476         (tramp-get-debug-buffer): Change `outline-regexp' according to new
10477         format.
10479         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
10480         (tramp-get-file-property): Use it.
10482         * autorevert.el (auto-revert-handler): Allow
10483         `auto-revert-tail-mode' for remote files.
10485 2009-08-02  Jason Rumney  <jasonr@gnu.org>
10487         * minibuffer.el (read-file-name): Treat confirm options to
10488         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
10490 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
10492         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
10493         (font-lock-variable-name-face, font-lock-constant-face): Darken
10494         the colors for light backgrounds.
10496 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
10498         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
10499         month names.  (Bug#3987)
10501 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
10503         * simple.el (line-move-finish): Pass whole number to
10504         line-move-to-column.
10505         (line-move-visual): Perform hscroll to the recorded position.
10507 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
10509         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
10511 2009-07-29  Alan Mackenzie  <acm@muc.de>
10513         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
10515 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
10517         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
10518         (gdb-place-breakpoints): Use full path when setting breakpoints.
10520 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
10522         * calc/calc.el (calc-mode-map): Add keybinding for
10523         `calc-transpose-lines'.
10525 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
10527         * calc/calc-misc.el (calc-transpose-lines): New function.
10529 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
10531         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
10532         Simplify check for out-of-band methods.
10533         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
10534         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
10536 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
10538         * vc-git.el (vc-git-checkin): Fix typo.
10540 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
10542         * progmodes/js2-mode.el: New file.
10544 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
10546         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
10547         (gud-menu-map): Adjust tooltip accordingly.
10549 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
10551         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
10552         (vc-bzr-log-view-mode): Adjust log-view-file-re.
10554         * add-log.el (change-log-mode-map): Add a menu.
10556 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
10558         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
10559         function returns nil.
10560         (dbus-handle-event): Handle special return value :ignore.
10561         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
10563 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
10565         * view.el (view-mode-enable): Don't define Helper-return-blurb if
10566         it's not needed.
10568 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
10570         Fix Bug#3888:
10572         * w32-vars.el (x-select-enable-clipboard): Doc fix.
10574         * term/pc-win.el (x-display-name, x-colors)
10575         (x-select-enable-clipboard, x-select-text): Doc fix.
10577         * term/common-win.el (x-display-name, x-colors): Doc fix.
10579         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
10580         (xw-defined-colors): Doc fix.
10582         * w32-fns.el (x-select-text, x-setup-function-keys)
10583         (x-get-selection, x-set-selection): Doc fix.
10585         * term/x-win.el (x-select-text, x-setup-function-keys)
10586         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
10588         * select.el (x-set-selection): Doc fix.
10590 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
10592         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
10593         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
10594         "IsNSSSupportAvailable" method is not available.  Reported by
10595         Steve Youngs <steve@sxemacs.org>.
10597 2009-07-24  Kenichi Handa  <handa@m17n.org>
10599         * international/characters.el: Fix setting of category ?C, ?|, ?K,
10600         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
10601         (build-unicode-category-table): Fix range checks.
10603 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
10605         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
10606         the buffer we try to sync is current when calling
10607         vc-resynch-buffer.
10609         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
10610         not show up to date files.
10612 2009-07-24  Glenn Morris  <rgm@gnu.org>
10614         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
10615         Add autoload cookies.  If necessary, initialize.
10616         (elint-log): Handle non-file buffers.
10617         (elint-initialize): Add optional argument to reinitialize.
10618         (elint-find-builtin-variables): Save excursion.
10620 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
10622         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
10623         for Lint.
10625 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
10627         * vc.el (vc-print-log-internal): New function, split out from ...
10628         (vc-print-log): ... here.
10629         (vc-dir-move-to-goal-column): Declare.
10631         * vc-git.el (vc-git-add-signoff): New variable.
10632         (vc-git-checkin): Use it.
10633         (vc-git-toggle-signoff): New function.
10634         (vc-git-extra-menu-map): Bind it to menu.
10635         (vc-git--run-command-string): Accept a nil FILE argument.
10636         (vc-git-stash-list): New function.
10637         (vc-git-dir-extra-headers): Use it.
10639 2009-07-23  Glenn Morris  <rgm@gnu.org>
10641         * help-fns.el (describe-variable): Describe ignored and risky local
10642         variables in a similar way to that in which we describe safe ones.
10644         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
10645         (byte-compile-output-file-form, byte-compile-output-docform)
10646         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
10647         Give some more local variables with common names a "bytecomp-" prefix,
10648         so as not to shadow things during compilation.
10649         * emacs-lisp/cl-macs.el (load-time-value)
10650         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
10651         `outbuffer' to `bytecomp-outbuffer'.
10653         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
10654         since the next two variables cover them automatically now.
10655         (elint-builtin-variables, elint-autoloaded-variables): New.
10656         (elint-unknown-builtin-args): Remove all members, since they can be
10657         parsed automatically now.
10658         (elint-extra-errors): New.
10659         (elint-env-add-env, elint-env-add-macro): Use cadr.
10660         (elint-current-buffer): Use or.  Change final message.
10661         (elint-get-top-forms): Use line-end-position.
10662         (elint-init-env): Use cadr.  Handle autoload, declare-function,
10663         and defalias.
10664         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
10665         (regexp-assoc): Remove unused function.
10666         (elint-top-form): Set elint-current-pos, to record the start of the
10667         top-level form, for compilation-mode.
10668         (elint-form): Trap errors in macro expansion.  Use dolist.
10669         (elint-unbound-variable): Use elint-builtin-variables and
10670         elint-autoloaded-variables.
10671         (elint-get-args): Use cadr, or.
10672         (elint-check-cond-form): Use dolist, cadr.
10673         (elint-check-condition-case-form): Doc fix.  Use cadr.
10674         Use elint-extra-errors.
10675         (elint-log): New function.
10676         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
10677         Distinguish errors and warnings.
10678         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
10679         Use a bytecomp-style format.
10680         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
10681         (elint-get-log-buffer): Use compilation mode.  Disable undo.
10682         Don't truncate lines.
10683         (elint-initialize): Set builtin and autoloaded variable lists.
10684         Only process elint-unknown-builtin-args if non-nil.
10685         (elint-find-builtin-variables, elint-find-autoloaded-variables):
10686         New functions.
10687         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
10689 2009-07-22  Kevin Ryde  <user42@zip.com.au>
10691         * net/newst-backend.el (newsticker--parse-atom-1.0)
10692         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
10693         (newsticker--parse-rss-1.0):
10694         * progmodes/idlwave.el (idlwave-mode):
10695         * progmodes/idlw-shell.el (idlwave-shell-mode):
10696         * progmodes/vera-mode.el (vera-mode):
10697         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
10698         * progmodes/vhdl-mode.el (vhdl-mode):
10699         * textmodes/table.el (table-generate-source)
10700         (table--warn-incompatibility):
10701         Hyperlink urls in docstrings with URL `...'.
10703 2009-07-22  Glenn Morris  <rgm@gnu.org>
10705         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
10706         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
10707         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
10708         Remove leading * from defcustom docs.
10710         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
10712         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
10713         defcustom doc.
10714         (list-load-path-shadows): Optionally, just return shadows as a string.
10716         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
10718 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
10720         * mail/rmailedit.el (rmail-edit-mode): Use
10721         auto-save-include-big-deletions.
10723         * mail/rmail.el (rmail-variables): Use
10724         auto-save-include-big-deletions.
10726         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
10727         changes.
10729 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
10731         * calc/calc.el (calc-undo-length): New variable.
10732         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
10734 2009-07-21  Richard Stallman  <rms@gnu.org>
10736         * files.el (auto-save-mode): Handle buffer-save-size = -2
10737         for toggling mode.
10739 2009-07-21  Glenn Morris  <rgm@gnu.org>
10741         * textmodes/ispell.el (ispell-looking-back): Update declaration.
10743         * calendar/todo-mode.el (calendar-current-date): Update declaration.
10745         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
10746         silence compiler.  Instead...
10747         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
10748         (ps-print-ensure-fontified): Update for above function name changes.
10750         * printing.el (pr-mh-get-msg-num, pr-mh-show)
10751         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
10752         silence compiler.  Instead...
10753         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
10754         (mh-show-buffer): Only define for compiler.
10755         (pr-mh-current-message): Update for above function name changes.
10757         * files.el (abort-if-file-too-large): Explicitly pass `filename'
10758         as an argument.
10759         (find-file-noselect, insert-file-1): Update for above change.
10761         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
10763         * mail/mailclient.el (mailclient-send-it): Fix message.
10765         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
10766         (edebug-eval): Check cl-debug-env is bound.
10767         (print-level, print-circle): Don't redefine built-in variables.
10769         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
10770         (custom-print-vectors): Remove old comments from doc.
10772         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
10773         (emerge-version): Make the variable an obsolete alias for the
10774         emacs-version variable.  Make the function obsolete.
10775         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
10776         Emerge options, rather than merging in into the main Options menu.
10777         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
10778         and auto advance modes.  Disable edit/fast items when not relevant.
10780 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
10782         * term/vt420.el (terminal-init-vt420): Fix typo.
10784 2009-07-20  Sam Steingold  <sds@gnu.org>
10786         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
10787         variable (removed from compile.el on 2004-03-11).
10789 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
10791         * files.el (hack-local-variables-filter): Fix last change.
10793 2009-07-19  Juri Linkov  <juri@jurta.org>
10795         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
10796         (dir-local-variables-alist): New buffer-local variable.
10797         (hack-local-variables-filter): If variable is not dir-local,
10798         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
10799         because file-local overrides dir-local.
10800         (c-postprocess-file-styles) <declare-function>:
10801         Remove obsolete declaration.
10802         (hack-dir-local-variables): Add dir-local variable/value pair to
10803         `dir-local-variables-alist' and remove duplicates.  Doc fix.
10805         * help-fns.el (describe-variable): Add information about
10806         file-local and dir-local variables.
10808 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
10810         * files.el (hack-local-variables-filter): Rewrite.
10812 2009-07-19  Glenn Morris  <rgm@gnu.org>
10814         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
10815         Silence compiler by only defining on XEmacs.
10817         * international/mule.el (auto-coding-regexp-alist): Only match
10818         BABYL... at the start of buffer, not of lines.  (Bug#3790)
10820         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
10821         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
10822         (cal-menu-context-mouse-menu): Doc fix.
10824         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
10826         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
10828 2009-07-18  Juri Linkov  <juri@jurta.org>
10830         * info.el: Virtual Info keyword finder.
10831         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
10832         (Info-finder-file): New variable.
10833         (Info-finder-find-file): New function.
10834         (finder-known-keywords, finder-package-info)
10835         (find-library-name, lm-commentary): Use defvar and
10836         declare-function to silence compiler warnings.
10837         (Info-finder-find-node): New function.
10838         (info-finder): New command.
10840         * subr.el (process-kill-buffer-query-function): New function.
10841         (add-hook)<kill-buffer-query-functions>: Add hook
10842         `process-kill-buffer-query-function'.
10844 2009-07-18  Alan Mackenzie  <acm@muc.de>
10846         * progmodes/cc-mode.el (c-before-hack-hook)
10847         (c-postprocess-file-styles): Give invocation of `c-set-style'
10848         DONT-OVERRIDE parameter of t.  Already set style variables will
10849         thus not be overridden by style settings given by `c-file-syle'.
10851         * files.el (hack-local-variables-filter): Remove entries with
10852         duplicate keys from `file-local-variables-alist'.
10854 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
10856         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
10857         x-set-selection if display-selections-p returns nil for the
10858         current frame.
10860 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
10862         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
10864 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
10866         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
10867         Accept nil in addition to a regexp.
10868         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
10869         Accept nil in addition to a regexp.
10870         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
10871         buffers that have an associated file.  Handle nil values of
10872         desktop-buffers-not-to-save and desktop-files-not-to-save.
10873         (Bug#3833)
10875         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10876         (x-disown-selection-internal): New functions.
10878 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
10880         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
10881         warning.
10882         (gdb-breakpoints-header): Move forward to avoid compiler warning.
10883         (gdb-make-header-line-mouse-map): Remove duplicate definition.
10885 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
10887         * simple.el (set-mark): Revert last change.
10889 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
10891         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
10892         rendering of pngs is not possible instead of messaging a long
10893         description.
10895 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
10897         * w32-fns.el (x-selection-owner-p): New function.
10899         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
10900         (mouse-yank-at-click, mouse-yank-primary): If
10901         select-active-regions is non-nil, deactivate the mark before
10902         insertion.
10904         * simple.el (deactivate-mark, set-mark): Only save selection if we
10905         own it.
10907 2009-07-17  Kenichi Handa  <handa@m17n.org>
10909         * case-table.el (describe-buffer-case-table): Fix for the case
10910         that KEY is a cons.
10912 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
10914         * vc-rcs.el (vc-rcs-find-file-hook):
10915         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
10917 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
10919         * net/tramp.el (tramp-wait-for-output): Handle the case when
10920         commands do not return a newline but a null byte before the shell
10921         prompt.  (Bug#3858)
10923 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10925         * term/ns-win.el (ns-set-alpha): Don't declare.
10926         (ns-set-background-alpha): Remove function.
10928 2009-07-16  Kevin Ryde  <user42@zip.com.au>
10930         * emacs-lisp/copyright.el (copyright-update): Save match-data across
10931         y-or-n-p, for safety.
10933 2009-07-16  Richard Stallman  <rms@gnu.org>
10935         * files.el (auto-save-mode): If buffer-saved-size is -2,
10936         don't clobber it.
10938         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
10939         (rmail-retry-ignored-headers): Add more uninteresting fields.
10941 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
10943         * net/rcirc.el (rcirc): Use history variables.
10944         (rcirc-server-name-history, rcirc-nick-name-history)
10945         (rcirc-server-port-history): New variables.
10947 2009-07-15  Kenichi Handa  <handa@m17n.org>
10949         * international/mule-cmds.el (set-language-environment-charset):
10950         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
10951         ignore them.
10953         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
10954         Delete unibyte-display.
10956 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
10958         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
10960 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
10962         * simple.el (deactivate-mark): Optional argument FORCE.
10963         (set-mark): Use deactivate-mark.
10965         * info.el (Info-search): No need to check transient-mark-mode
10966         before calling deactivate-mark.
10968         * select.el (x-set-selection): Doc fix.
10969         (x-valid-simple-selection-p): Allow buffer values.
10970         (xselect--selection-bounds): Handle buffer values.  Suggested by
10971         David De La Harpe Golden.
10973         * mouse.el (mouse-set-region, mouse-drag-track): Call
10974         copy-region-as-kill before setting the mark, to let
10975         select-active-regions work.
10977 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
10979         * simple.el (deactivate-mark): If select-active-regions is
10980         non-nil, copy the selection data into a string.
10981         (activate-mark): If select-active-regions is non-nil, set the
10982         selection to the current buffer.
10983         (set-mark): Update selection if select-active-regions is non-nil.
10985         * select.el (x-valid-simple-selection-p): Allow buffer values.
10987 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10989         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
10990         and more featureful message-mode.
10992 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
10994         * select.el (x-set-selection): Doc fix.
10995         (x-valid-simple-selection-p): Disallow selection data consisting
10996         of a list or cons of integers, since that is not used.
10997         (xselect--selection-bounds, xselect--int-to-cons): New functions.
10998         (xselect-convert-to-string, xselect-convert-to-length)
10999         (xselect-convert-to-filename, xselect-convert-to-charpos)
11000         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
11002 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
11004         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
11005         output in -break-info command (Emacs bug #3794).
11007 2009-07-14  Glenn Morris  <rgm@gnu.org>
11009         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
11010         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
11011         (edebug-print-length, edebug-print-level, edebug-print-circle)
11012         (edebug-sit-for-seconds, edebug-view-outside)
11013         (edebug-bounce-point, edebug-set-global-break-condition)
11014         (edebug-Go-nonstop-mode, edebug-trace-mode)
11015         (edebug-Trace-fast-mode, edebug-continue-mode)
11016         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
11017         (edebug-visit-eval-list): Doc fixes.
11019         * subr.el (def-edebug-spec): Doc fix.
11021 2009-07-14  Kenichi Handa  <handa@m17n.org>
11023         * international/characters.el: Fix setting of category ?C.
11025 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
11027         * term/ns-win.el (x-select-font): defalias x-select-font to
11028         ns-popup-font-panel instead of generate-fontset-menu.
11030 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
11032         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
11034 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
11036         * arc-mode.el (archive-find-type): Allow for a PK00 string before
11037         the PK\003\004 header (Bug#3770).
11039 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
11041         * pcomplete.el (pcomplete-comint-setup): Check for
11042         shell-dynamic-complete-filename too.
11044 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
11046         * simple.el (temporary-goal-column): Change the value for
11047         line-move-visual to a cons cell.
11048         (line-move-visual): Record or set the window hscroll, if
11049         necessary (Bug#3494).
11050         (line-move-1): Handle cons value of temporary-goal-column.
11052 2009-07-11  Kenichi Handa  <handa@m17n.org>
11054         * international/mule-diag.el (describe-character-set): Don't show
11055         width.
11057 2009-07-10  Sam Steingold  <sds@gnu.org>
11059         * progmodes/compile.el (compilation-mode-font-lock-keywords):
11060         Omake sometimes indents the errors it prints, so allow all
11061         regexps to start with spaces.
11063 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
11065         * cus-edit.el (customize-changed-options-previous-release):
11066         Bump value to 22.1.  (Bug#3804)
11068 2009-07-08  Sam Steingold  <sds@gnu.org>
11070         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
11071         to be a cons cell (test . ignored-directory) to selectively ignore
11072         some directories depending on the location of the search.
11074 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
11076         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
11077         remote user is root, on the local host.
11078         (tramp-local-host-p): Either the local user or the remote user
11079         must be root.  (Bug#3771)
11081 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
11083         * progmodes/gdb-mi.el (gdb): Remove description of
11084         gdb-use-separate-io-buffer.
11085         (menu): Don't allow toggling of or enable
11086         gdb-use-separate-io-buffer from menubar.
11088 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
11090         * mail/unrmail.el (unrmail): Make sure the message ends with two
11091         newlines (Bug#3769).
11093 2009-07-08  Glenn Morris  <rgm@gnu.org>
11095         * calendar/calendar.el (calendar-current-date): Rework previous change.
11097 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
11099         * calendar/calendar.el (calendar-current-date):
11100         Add an optional argument giving an offset from today.
11102 2009-07-08  Glenn Morris  <rgm@gnu.org>
11104         * tutorial.el (tutorial--describe-nonstandard-key):
11105         Adjust the message for when a key has been unbound.
11106         (help-with-tutorial): Hide the arch-tag.
11108 2009-07-08  Kenichi Handa  <handa@m17n.org>
11110         * international/fontset.el (setup-default-fontset): For each
11111         script, append (not set) font-specs.
11113         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
11114         docstring.
11116 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
11118         * progmodes/gdb-mi.el (gdb-init-1): Move sending
11119         -data-list-register-names to ...
11120         (gdb-starting): ... here because GDB 7.0 requires execution to
11121         have started when using this MI command.
11122         (gdb-set-header): New function to distinguish select and
11123         unselected tabs in gdb buffers.
11124         (gdb-propertize-header): New macro that uses gdb-set-header.
11125         (gdb-breakpoints-header, gdb-locals-header): Use it.
11126         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
11128 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
11130         * Makefile.in (ELCFILES): Remove fadr.elc.
11132 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
11134         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
11135         may contain frame information, so `string-match' should be used.
11136         (gdb-update): Disassembly is invalidated through
11137         `gdb-get-selected-frame'.
11138         (gdb-pad-string): New function to pad string with spaces.
11139         (gdb-invalidate-disassembly): Invalidate only if the buffer
11140         exists.
11141         (gdb-disassembly-handler-custom): Column alignment.
11142         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
11143         placing new ones.
11144         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
11145         end of line, too.
11146         (gdb-frame-handler): Match convention to for disassembly buffer
11147         mode name.
11148         (gdb-stack-list-frames-handler): Rewritten without regexps.
11149         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
11150         not highlight breakpoints without line information.
11151         (gdb-input): Add trailing newline to command.
11153         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
11154         buffer properly.
11155         (gdb-breakpoints-list-handler-custom): Replacement for
11156         `gdb-break-list-handler'.  Using real parser instead of regexps
11157         now.
11158         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
11159         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
11160         to place breakpoints.
11161         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
11162         functions.
11163         (gdb-disassembly-handler-custom): Show overlay arrow.
11164         (gdb-disassembly-place-breakpoints): Show breakpoints in
11165         disassembly buffer.
11166         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
11167         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
11168         instead of parsing breakpoints buffer.  Fixed old menu references
11169         in `gud-menu-map'.
11171         * fadr.el: Remove.
11173         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
11174         (gdb-memory-address): New variable which holds top address of
11175         memory page shown in memory buffer.
11176         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
11177         customization variables.
11178         New functions:
11179         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
11180         display the memory buffer.
11181         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
11182         buffer display parameters.
11183         (def-gdb-memory-format, gdb-memory-format-binary)
11184         (gdb-memory-format-octal, gdb-memory-format-unsigned)
11185         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
11186         Functions for setting memory buffer format.
11187         (gdb-memory-unit-word, gdb-memory-unit-halfword)
11188         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
11189         unit size used in memory buffer.
11190         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
11191         to next/previous page of memory buffer.
11192         Now using (bindat-get-field) instead of fadr functions.
11194 2009-07-07  Sam Steingold  <sds@gnu.org>
11196         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
11197         non-top-level files.
11199 2009-07-07  Kenichi Handa  <handa@m17n.org>
11201         * international/mule-cmds.el (reset-language-environment): Put
11202         the highset priority to the charset iso-8859-1.
11204 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
11206         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
11207         to the end of the line when locating the block (Bug#700).
11209 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
11211         * net/tramp.el (tramp-handle-write-region): Flush file properties
11212         in case of short track.
11214 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
11216         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
11217         Coded custom representation of verilog error regular expressions
11218         to work with Emacs-22's new format.
11219         (verilog-error-regexp-xemacs-alist): Coded custom representation
11220         of verilog error regular expressions to work with XEmacs format.
11221         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
11222         error recognition into XEmacs.
11223         (verilog-error-regexp-add-emacs): Hook routine to install verilog
11224         error recognition into Emacs-22.
11226 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
11228         * woman.el: Remove stand-alone closing parentheses.
11229         (woman-file-name, woman2-format-paragraphs)
11230         (woman-leave-blank-lines): Code cleanup.
11231         (woman-use-own-frame): Change default to nil.
11232         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
11233         defaults to inherit from default faces.
11234         (woman2-process-escapes): Consume the newline after a stand-alone
11235         filler character (Bug#3651).
11237 2009-07-06  Glenn Morris  <rgm@gnu.org>
11239         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
11240         (top-level): Move provide to the end.
11241         (ffap): Remove defunct URL from custom group.
11243         * subr.el (eval-after-load): Doc fix.
11245 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
11247         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
11248         `calc-embedded-word' is called twice.
11250 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11252         * files.el (find-alternate-file-other-window, find-alternate-file):
11253         Obey confirm-nonexistent-file-or-buffer.
11255 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
11257         * dired-aux.el (dired-show-file-type): Handle remote files.
11259 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
11261         * desktop.el (desktop-globals-to-save):
11262         Add file-name-history (Bug#2750).
11264 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
11266         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
11268 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
11270         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
11271         property on entire argument since this is what eshell-lisp-command
11272         expects.
11274 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
11276         * net/tramp-gvfs.el (tramp-gvfs-methods)
11277         (tramp-gvfs-zeroconf-domain)
11278         (tramp-bluez-discover-devices-timeout): Add version flag.
11279         (tramp-gvfs-handler-mounted-unmounted)
11280         (tramp-gvfs-connection-mounted-p): Polish handling of
11281         incompatibilities between GVFS 0.2 and 1.0.
11283 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
11285         * cus-start.el (all): Add make-pointer-invisible.
11287 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
11289         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
11290         formatted correctly.
11292 2009-07-02  Juri Linkov  <juri@jurta.org>
11294         * info.el: Virtual Info files and nodes.
11295         (Info-virtual-files, Info-virtual-nodes): New variables.
11296         (Info-current-node-virtual): New variable.
11297         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
11298         New functions.
11299         (Info-file-supports-index-cookies): Use Info-virtual-file-p
11300         to check for a virtual file instead of checking a fixed list
11301         of node names.
11302         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
11303         instead of ad-hoc processing of "dir" and (apropos history toc).
11304         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
11305         instead of ad-hoc processing of "dir" and (apropos history toc).
11306         Reread a file when moving from a virtual node.
11307         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
11308         (Info-directory-toc-nodes, Info-directory-find-file)
11309         (Info-directory-find-node): New functions.
11310         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
11311         (Info-history): Move part of code to
11312         `Info-history-find-node'.
11313         (Info-history-toc-nodes, Info-history-find-file)
11314         (Info-history-find-node): New functions.
11315         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
11316         (Info-toc): Move part of code to `Info-toc-find-node'.
11317         (Info-toc-find-node): New function.
11318         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
11319         the current Info file name to references because now the node
11320         "*TOC*" belongs to the same Info manual.
11321         (Info-toc-build): Rename from `Info-build-toc'.
11322         (Info-toc-nodes): Rename input argument `file' to `filename'.
11323         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
11324         instead of ad-hoc processing of ("dir" apropos history toc).
11325         (Info-index-nodes): Use Info-virtual-file-p
11326         to check for a virtual file instead of checking a fixed list
11327         of node names.
11328         (Info-index-node): Add check for `Info-current-node-virtual'.
11329         Raise `save-match-data' higher up the tree to contain
11330         `search-forward' too (bug fix).
11331         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
11332         (Info-virtual-index-nodes): New variable.
11333         (Info-virtual-index-find-node, Info-virtual-index): New functions.
11334         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
11335         (Info-apropos-file, Info-apropos-nodes): New variables.
11336         (Info-apropos-toc-nodes, Info-apropos-find-file)
11337         (Info-apropos-find-node, Info-apropos-matches): New functions.
11338         (info-apropos): Move part of code to `Info-apropos-find-node' and
11339         `Info-apropos-matches'.
11340         (Info-mode-map): Bind "I" to `Info-virtual-index'.
11341         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
11342         for a virtual file instead of checking a fixed list of node names.
11344         * simple.el (async-shell-command): New command.
11346         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
11348         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
11349         instead of `mount-info'.
11351 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
11353         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
11354         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
11356 2009-07-02  Kenichi Handa  <handa@m17n.org>
11358         * international/mule.el (set-keyboard-coding-system): Force *-unix
11359         coding-system to avoid eol conversion.
11361 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
11363         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11364         Add handler for `process-file', `shell-command' and
11365         `start-file-process'.
11366         (tramp-gvfs-handle-shell-command)
11367         (tramp-gvfs-handle-start-file-process)
11368         (tramp-gvfs-handle-process-file): New defuns.
11369         (tramp-synce-list-devices): Simplify check for existence of property.
11371 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
11373         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
11375 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
11377         * language/korean.el (set-language-info-alist): Add korean-cp949,
11378         cp949 to spec.
11380 2009-07-01  Kenichi Handa  <handa@m17n.org>
11382         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
11384         * international/encoded-kb.el: Deleted.
11386         * international/mule.el (set-keyboard-coding-system): Perform the
11387         necessary setup here instead of calling encoded-kbd-setup-display.
11389 2009-07-01  Glenn Morris  <rgm@gnu.org>
11391         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
11393 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
11395         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
11397 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
11399         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
11400         Handle also the 'rename case, when setting file modes.  (Bug#3712)
11401         (tramp-default-file-modes): Remove execute permissions.
11403         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
11404         (top): Add a default for "synce" in `tramp-default-user-alist'.
11405         Add completion function for "synce" method.
11406         (tramp-hal-service, tramp-hal-path-manager)
11407         (tramp-hal-interface-manager, tramp-hal-interface-device):
11408         New defconst.
11409         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
11410         (tramp-synce-list-devices, tramp-synce-parse-device-names):
11411         New defuns.
11413         * net/trampver.el: Update release number.
11415 2009-06-30  Kenichi Handa  <handa@m17n.org>
11417         * international/fontset.el (setup-default-fontset): Add CJK fonts
11418         for symbols and the other miscellaneous characters.
11420         * language/korea-util.el (setup-korean-environment-internal):
11421         Make char-width-table suitable for Korean environments.
11422         (exit-korean-environment): Cancel above.
11424         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
11425         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
11426         setup-function to make char-width-table suitable for respective
11427         environments, and an exit-function to cancel that.
11429         * language/japan-util.el (setup-japanese-environment-internal):
11430         Call use-cjk-char-width-table with arg `ja_JP'.
11432         * international/characters.el (cjk-char-width-table): Delete it.
11433         (cjk-char-width-table-list): New variable.
11434         (use-cjk-char-width-table): New arg local-name.
11435         (use-default-char-width-table): Fix for the case that Emacs is
11436         already using the default char-width-table.
11438 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
11440         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
11441         modes mandatory.  (Bug#3712)
11443 2009-06-29  Alan Mackenzie  <acm@muc.de>
11445         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
11446         correction between the visible width of TABs and their number of bytes.
11448 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
11450         * server.el (server-buffer-done): Prevent kill-buffer from
11451         prompting by clearing the buffer modification flag (Bug#3696).
11453 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
11455         * progmodes/verilog-mode.el (verilog-beg-of-statement)
11456         (verilog-endcomment-reason-re): Support unique case and priority case.
11457         (verilog-basic-complete-re): Support localparam lineup.
11458         (verilog-beg-of-statement-1): Fix for robustness, unique case.
11459         (verilog-set-auto-endcomments): Fix for unique case, always_comb
11460         commenting.
11461         (verilog-leap-to-case-head): Now support *nested* unique &
11462         priority case statements.
11463         (verilog-auto-lineup): Make just declarations the default (as it
11464         had been).
11465         (verilog-leap-to-case-head): Support priority/unique case statements.
11466         (verilog-auto-lineup): Rework to give users radio buttons to
11467         select the various styles of automatic lineup.
11468         (verilog-error-regexp-alist): Rework to support the XEmacs style
11469         of error regular expressions from compilers, lint tools &
11470         simulators.  Note that GNU Emacs has made it impossible for a mode
11471         to load such things.
11472         (electric-verilog-terminate-line, verilog-indent-declaration)
11473         (verilog-auto-wiure): Rework for radio button selection of
11474         auto-lineup selection of specification of auto lineup.
11475         (verilog-beg-of-statement-1): Redesign to support proper operation
11476         in additional code, based on testing with auto-lineup.
11477         (verilog-calculate-indent, assignments & declarations)
11478         (verilog-backward-token): Enhance to support auto-lineup of
11479         assignments & declarations.
11480         (verilog-in-directive-p, verilog-at-struct-p): New function for
11481         easy test of whether we are.
11482         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
11483         to support safe execution at almost anyline.
11484         (verilog-calc-1): Properly support indenting deep inside generate
11485         blocks.
11486         (verilog-init-font): Remove definition & use of verilog-init-font,
11487         as it is redundant with font-lock-defaults.
11488         (verilog-mode): Alter the definition of verilog-font-lock-defaults
11489         to avoid circular calls if syntax-ppss is a function (as is the
11490         case now in 22.x GNU Emacs) as that function would sometimes call
11491         itself, leading to (nearly) infinite recursion.
11492         (verilog-ovm-begin-re, verilog-ovm-end-re)
11493         (verilog-ovm-statement-re, verilog-leap-to-head)
11494         (verilog-backward-token): Add support for OVM macros.  Some are
11495         complete statements, and others open and close scopes like begin
11496         and end.
11497         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
11498         (verilog-defun-level-generate-only-re): Really fix the defun-list
11499         compilation issue.
11500         (verilog-calc-1, verilog-beg-of-statement): Enhance support for
11501         coverpoint, constraint and cross statements.
11502         (verilog-defun-level-list, verilog-generate-defun-level-list)
11503         (verilog-all-defun-level-list): Redo these specifications - it is
11504         too hard to support eval-when compile aggregation of lists also
11505         built at when-compile time.
11506         (verilog-defun-level-list): Place defconsts of variables used in
11507         building regular expressions which are built in eval-when-compile
11508         bodies in the same eval-when-compile body to facilitate compile
11509         without load.
11510         (verilog-beg-block-re-ordered): Support indenting
11511         virtual/protected tasks and functions.
11512         (verilog-defun-level-list, verilog-in-generate-region-p)
11513         (verilog-backward-ws&directives, verilog-calc-1): Speed up
11514         indentation of some module items (generate items).
11515         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
11516         across virtual/protected tasks and functions.
11518 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
11520         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
11521         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
11522         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
11523         in concatenations.  Reported by Yishay Belkind.
11524         (verilog-auto-ascii-enum): Support one-hot state machines in
11525         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
11526         (verilog-auto-inst, verilog-auto-inst-port): Include interface
11527         modport in AUTOINST and add vl-modport for users.  Reported by
11528         David Rogoff.
11529         (verilog-auto-inout-module, verilog-auto-inst)
11530         (verilog-decls-get-interfaces, verilog-insert-definition)
11531         (verilog-insert-one-definition, verilog-read-decls)
11532         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
11533         (verilog-sig-modport, verilog-signals-combine-bus)
11534         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
11535         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
11536         Suggested by David Rogoff.
11537         (verilog-repair-open-comma): Fix non-insertion of comma when
11538         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
11539         (verilog-make-width-expression): Simplify [A-1:0] expression
11540         widths to just {A{1'b0}}.
11541         (verilog-mode): Cleanup checkdoc warnings.
11542         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
11543         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
11544         inputs/outputs or data type.  Suggested by Vasu Kandadi.
11545         (next-error-last-buffer): Fix byte-compiler warning.
11546         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
11547         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
11548         or shell command text during AUTO expansion.  Suggested by Tad Truex.
11549         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
11550         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
11551         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
11552         in AUTOINOUT.  Reported by Matthew Lovell.
11553         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
11554         causing use of <= assignments.  Reported by Alex Reed.
11555         (verilog-read-decls): Fix triand, trior, wand, wor to be
11556         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
11557         (verilog-extended-complete-re): Support import "DPI-C" functions.
11558         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
11559         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
11560         (verilog-insert-date, verilog-insert-year)
11561         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
11562         Windows systems.  Reported by Michael Potts.
11563         (verilog-read-module-name): Fix AUTOINST when the child module
11564         declaration's name is a tick define.  Reported by Elliot Mednick.
11565         (verilog-read-decls): Fix V2K parameter bit subscripts getting
11566         passed to next parameter's definition.  Reported by Bruce T.
11567         (verilog-read-decls): Fix detecting "parameter int" when using
11568         AUTOINSTPARAM.  Reported by Bruce T.
11569         (verilog-goto-defun): Fix goto not finding modules unless first
11570         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
11571         (verilog-mode): Expand -f flag arguments on entry to mode so
11572         verilog-goto-defun will work.  Reported by Lawrence Butcher.
11573         (verilog-getopt): Expand environment variables in -f file
11574         arguments.  Suggested by Lawrence Butcher.
11575         (verilog-set-define): Fix "Symbol's value as variable is void"
11576         when reading enumerations.
11577         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
11578         Suggested by Stephen Peltan.
11579         (verilog-read-defines): Fix reading of enumerations in include
11580         files.  Reported by Steve Peltan.
11582 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
11584         * files.el (trash-directory): Fix defcustom type.
11586 2009-06-28  Juri Linkov  <juri@jurta.org>
11588         * help-fns.el (describe-function-1): Correctly locate adviced
11589         functions in hyperlink (Bug#2438).
11591 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
11593         * files.el (trash-directory): Change default to nil.
11594         (move-file-to-trash): If trash-directory is nil and
11595         system-move-file-to-trash is unbound, perform freedesktop-style
11596         trashing.
11598 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
11600         * files.el (move-file-to-trash): Add freedesktop trash
11601         support (Bug#973).
11603 2009-06-28  Glenn Morris  <rgm@gnu.org>
11605         * autorevert.el (global-auto-revert-non-file-buffers)
11606         (global-auto-revert-mode): Doc fixes.
11608 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
11610         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
11612 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
11614         * faces.el (x-handle-named-frame-geometry): Ensure that we have
11615         opened an X connection before calling x-get-resource (Bug#3194).
11617         * play/doctor.el: Remove reference to obsolete website.
11618         (make-doctor-variables): Correct grammar mistake (Bug#2633).
11620 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
11622         Remove find-file-not-found-hook VC method.  (Bug#2757)
11623         * vc-hooks.el (vc-file-not-found-hook)
11624         (vc-default-find-file-not-found-hook): Remove functions.
11625         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
11626         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
11627         * vc.el:
11628         * vc-hg.el:
11629         * vc-git.el: Do not mention find-file-not-found-hook VC method.
11631 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
11633         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
11634         compatibility function for `looking-back'.
11636         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11637         Use `ispell-looking-back'.
11639 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
11641         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
11642         rather than `filename'.
11644 2009-06-23  Miles Bader  <miles@gnu.org>
11646         * face-remap.el (text-scale-set): New function.
11648 2009-06-23  Glenn Morris  <rgm@gnu.org>
11650         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
11652         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
11654         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
11656         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
11658         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
11659         Simplify Persian conditionals.
11661         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
11662         variable `filename'.
11664         * comint.el (comint-insert-input): Doc fix.
11666         * Makefile.in (ELCFILES): Fix typo in previous change.
11668 2009-06-23  Miles Bader  <miles@gnu.org>
11670         * cus-start.el: Add entry for `recenter-redisplay'.
11672 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
11674         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
11675         Add an optional argument for the backend, use it instead of
11676         calling vc-backend.
11677         (vc-mode-line): Add an optional argument for the backend.
11678         Pass the backend to vc-state and vc-working-revision.  Move code for
11679         special handling for vc-state being a buffer to ...
11681         * vc-rcs.el (vc-rcs-find-file-hook):
11682         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
11684         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
11685         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
11686         vc-stay-local-p and vc-mode-line calls.
11688         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
11689         (vc-cvs-diff, vc-cvs-annotate-command)
11690         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
11691         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
11692         vc-mode-line calls.
11694         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
11695         direct comparison.
11696         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
11697         backend when calling vc-mode-line.
11698         (vc-register): Do not create a closure for calling the vc register
11699         function, call it directly.
11701 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
11703         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
11704         to make it obvious item can be clicked.
11706         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
11708 2009-06-23  Kenichi Handa  <handa@m17n.org>
11710         * language/korea-util.el (korean-key-bindings): Change the binding
11711         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
11712         same command.
11714 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
11716         Sync with Tramp 2.1.16.
11718         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
11720         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
11721         when a loading of a package fails.  Completion function for rsync
11722         is `tramp-completion-function-alist-ssh'.
11723         (all): Replace all calls of `split-string' and
11724         `tramp-split-string' by `tramp-compat-split-string'.
11725         (tramp-default-method): Use `tramp-compat-process-running-p'.
11726         (tramp-default-proxies-alist): Allow also Lisp forms.
11727         (tramp-remote-path): Add choice "Private Directories".
11728         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
11729         (tramp-domain-regexp): Allow also "-", "_" and ".".
11730         (tramp-end-of-output): Remove newlines, and add "$" at the end.
11731         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
11732         (tramp-debug-message): Insert header line in debug buffer.
11733         (tramp-handle-directory-files-and-attributes-with-stat):
11734         Care about filenames with spaces, or starting with "-".
11735         (tramp-handle-dired-uncache): New defun.
11736         (tramp-handle-insert-directory): Don't flush the directory from
11737         cache, this is handled by `dired-uncache' now.
11738         (tramp-handle-insert-file-contents): Improve error handling.
11739         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11740         Quote `tramp-end-of-output'.
11741         (tramp-action-password): Improve trace message.
11742         (tramp-check-for-regexp): Both echoes must be present, before removing.
11743         (tramp-open-connection-setup-interactive-shell): Trace coding system.
11744         (tramp-compute-multi-hops): Eval cons cells of
11745         `tramp-default-proxies-alist'.
11746         (tramp-maybe-open-connection): Use the same command pattern for
11747         first hop and further hops.
11748         (tramp-wait-for-output): Remove handling of newlines.
11749         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
11750         (tramp-split-string): Remove function.  It is handled in
11751         tramp-compat now.
11753         * net/tramp-cmds.el (tramp-bug):
11754         Recommend `tramp-cleanup-all-connections' in the bug mail.
11756         * net/tramp-compat.el (tramp-compat-split-string)
11757         (tramp-compat-process-running-p): New defuns.
11759         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
11760         for `dired-uncache'.
11762         * net/tramp-gvfs.el: New package.
11764         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11765         Add handler for `dired-uncache'.
11766         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
11768         * net/trampver.el: Update release number.  Make version check fit
11769         for SXEmacs 22.
11771 2009-06-22  Jim Meyering  <meyering@redhat.com>
11773         Automatically handle .xz suffix (XZ-compressed files), too.
11774         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
11775         XZ is the successor to LZMA: <http://tukaani.org/xz/>
11777 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
11778             Nick Roberts  <nickrob@snap.net.nz>
11780         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
11781         repository (http://sphinx.net.ru/hg/gdb-mi/).
11783 2009-06-22  Glenn Morris  <rgm@gnu.org>
11785         * files.el (dir-locals-collect-mode-variables): Allow for any number of
11786         `mode' and `eval' entries.  (Bug#3430)
11788         * Makefile.in (ELCFILES): Add fadr.elc.
11790         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
11791         differing behavior of \n and ^ in strings.  (Bug#3385)
11793         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
11795         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
11796         property.
11797         (lisp-indent-function): Make it a defcustom.
11799 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
11801         * progmodes/gdb-ui.el: Replace with ...
11802         * progmodes/gdb-mi.el: ... this file.
11803         * progmodes/gud.el: Modify for gdb-mi.el.
11805 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
11807         * fadr.el: New file.
11809 See ChangeLog.14 for earlier changes.
11811 ;; Local Variables:
11812 ;; coding: utf-8
11813 ;; End:
11815     Copyright (C) 2009, 2010  Free Software Foundation, Inc.
11817   This file is part of GNU Emacs.
11819   GNU Emacs is free software: you can redistribute it and/or modify
11820   it under the terms of the GNU General Public License as published by
11821   the Free Software Foundation, either version 3 of the License, or
11822   (at your option) any later version.
11824   GNU Emacs is distributed in the hope that it will be useful,
11825   but WITHOUT ANY WARRANTY; without even the implied warranty of
11826   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11827   GNU General Public License for more details.
11829   You should have received a copy of the GNU General Public License
11830   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
11832 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1