(compilation-save-buffers-predicate): New custom variable.
[emacs.git] / lisp / ChangeLog
blob6cdaaf2255b85391ded791ee7a1cf023862dffac
1 2010-04-07  Sam Steingold  <sds@gnu.org>
3         * progmodes/compile.el (compilation-save-buffers-predicate): New
4         custom variable.
5         (compile, recompile): Pass it to `save-some-buffers'.
7 2010-04-07  Jan Djärv  <jan.h.d@swipnet.se>
9         * wid-edit.el (widget-choose): Move cursor to the second line of
10         the buffer (Bug#5695).
12 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
14         Add new VC methods: vc-log-incoming and vc-log-outgoing.
15         * vc.el (vc-print-log-setup-buttons): New function split out from
16         vc-print-log-internal.
17         (vc-log-internal-common): New function, a parametrized version of
18         vc-print-log-internal.
19         (vc-print-log-internal): Just call vc-log-internal-common with the
20         right arguments.
21         (vc-incoming-outgoing-internal):
22         (vc-log-incoming, vc-log-outgoing): New functions.
23         (vc-log-view-type): New permanent local variable.
25         * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
27         * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
28         of the dynamic bound vc-short-log.
29         (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
31         * vc-git.el (vc-git-log-outgoing): New function.
32         (vc-git-log-view-mode): Use vc-log-view-type instead
33         of the dynamic bound vc-short-log.
35         * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
36         of the dynamic bound vc-short-log.  Highlight the tag.
37         (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
38         (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
39         (vc-hg-incoming-mode): Remove.
40         (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
42 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
44         Fix default-directory for vc-root-diff.
45         * vc.el (vc-root-diff): Bind default-directory to the root
46         directory for the diff command.
48 2010-04-07  Michael McNamara  <mac@mail.brushroad.com>
50         * progmodes/verilog-mode.el (verilog-forward-sexp):
51         (verilog-calc-1): Support "disable fork" and "fork wait" multi
52         word keywords, suggested by Steve Pearlmutter.
53         (verilog-pretty-declarations): Support lineup of declarations in
54         port lists.
55         (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
56         fix bug for /* / comments
57         (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
58         Speed up and simplfy as this is never called with a bound.
59         (verilog-pretty-declarations): Enhance to line up declarations
60         inside a parameter list, suggested by Alan Morgan.
61         (verilog-pretty-expr): Tune assignment regular expression match
62         string for corner cases; also use markers instead of character
63         number as indent changes the later.
65 2010-04-07  Wilson Snyder  <wsnyder@wsnyder.org>
67         * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown as missing
68         keyword.
69         (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
70         causing truncation of AUTOWIRE signals.  Reported by Bruce
71         Tennant.
72         (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
73         AUTO_TEMPLATEs needing multiple array bits.  Suggested by Bruce
74         Tennant.
75         (verilog-keywords):
76         (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
77         1800-2009 keywords, including "global.".
79 2010-04-06  John Wiegley  <jwiegley@gmail.com>
81         * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
82         appearing in buffer list (if a live buffer name matched a recentf
83         file basename).  Should use uniquify to offer a real solution.
85 2010-04-06  John Wiegley  <jwiegley@gmail.com>
87         * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
88         comment to code, and add a :version tag.
89         (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
91 2010-04-06  Juanma Barranquero  <lekktu@gmail.com>
93         Enable recentf-mode if using virtual buffers.
94         * ido.el (recentf-list): Declare for byte-compiler.
95         (ido-virtual-buffers): Move up to silence byte-compiler.  Add docstring.
96         (ido-make-buffer-list): Simplify.
97         (ido-add-virtual-buffers-to-list): Simplify.  Enable recentf-mode.
99 2010-04-05  Juri Linkov  <juri@jurta.org>
101         Scrolling commands which scroll a line instead of full screen.
102         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
104         * simple.el (scroll-up-line, scroll-down-line): New commands.
105         Put property isearch-scroll=t on them.
107         * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
108         Remove commands.
110 2010-04-05  Juri Linkov  <juri@jurta.org>
112         Scrolling commands which do not signal errors at top/bottom.
113         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
115         * simple.el (scroll-up-command, scroll-down-command): New commands.
116         Put property isearch-scroll=t on them.
118         * bindings.el (global-map): Rebind [prior] from `scroll-down' to
119         `scroll-down-command' and [next] from `scroll-up' to
120         `scroll-up-command'.
122         * emulation/cua-base.el: Put property CUA=move on
123         `scroll-up-command' and `scroll-down-command'.
124         (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
125         and `scroll-down-command' to `cua-scroll-down'.
127 2010-04-05  Juanma Barranquero  <lekktu@gmail.com>
129         * help.el (describe-mode): Return nil.
131 2010-04-04  John Wiegley  <jwiegley@gmail.com>
133         * ido.el (ido-use-virtual-buffers): New variable to indicate
134         whether "virtual buffer" support is enabled for IDO.
135         (ido-virtual): Face used to indicate virtual buffers in the list.
136         (ido-buffer-internal): If a buffer is chosen, and no such buffer
137         exists, but a virtual buffer of that name does (which would be why
138         it was in the list), recreate the buffer by reopening the file.
139         (ido-make-buffer-list): If virtual buffers are being used, call
140         `ido-add-virtual-buffers-to-list' before the make list hook.
141         (ido-virtual-buffers): New variable which contains a copy of the
142         current contents of the `recentf-list', albeit pared down for the
143         sake of speed, and with proper faces applied.
144         (ido-add-virtual-buffers-to-list): Using the `recentf-list',
145         create a list of "virtual buffers" to present to the user in
146         addition to the currently open set.  Note that this logic could
147         get rather slow if that list is too large.  With the default
148         `recentf-max-saved-items' of 200, there is little speed penalty.
150 2010-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
152         * font-lock.el: Require CL when compiling.
153         (font-lock-turn-on-thing-lock): Use `case'.
155 2010-04-03  Eli Zaretskii  <eliz@gnu.org>
157         * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
158         Zaretskii.
160 2010-04-02  Juanma Barranquero  <lekktu@gmail.com>
162         * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
163         (semantic-create-imenu-directory-index): Fix typos in docstrings.
164         (semantic-imenu-goto-function): Reflow docstring.
166 2010-04-02  Juri Linkov  <juri@jurta.org>
168         * ehelp.el (electric-help-orig-major-mode):
169         New buffer-local variable.
170         (electric-help-mode): Set it to original major-mode.  Doc fix.
171         (with-electric-help): Use `electric-help-orig-major-mode' instead
172         of (default-value 'major-mode).  Doc fix.
173         http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
175 2010-04-02  Sam Steingold  <sds@gnu.org>
177         * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
178         `vc-hg-command' with a list of flags.
180         * progmodes/bug-reference.el (bug-reference-bug-regexp):
181         Also accept "patch" and "RFE".
182         (bug-reference-fontify): `bug-reference-url-format' can also be a
183         function to be able to handle the bug kind.
184         (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
186 2010-04-02  Jan Djärv  <jan.h.d@swipnet.se>
188         * tmm.el (tmm-get-keymap): Check with symbolp before passing
189         value to fboundp, it may not be a symbol.
191 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
193         * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
195 2010-03-31  Juri Linkov  <juri@jurta.org>
197         * simple.el (next-line, previous-line): Re-throw a signal
198         with `signal' instead of using `ding'.
199         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
201 2010-03-31  Juri Linkov  <juri@jurta.org>
203         * simple.el (keyboard-escape-quit): Raise deselecting the active
204         region higher than exiting the minibuffer.
205         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
207 2010-03-31  Juri Linkov  <juri@jurta.org>
209         * image.el (image-animated-p): Use `image-metadata' instead of
210         `image-extension-data'.  Get GIF extenstion data from metadata
211         property `extension-data'.
213 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
215         * simple.el (append-to-buffer): Simplify.
217 2010-03-31  Tomas Abrahamsson  <tab@lysator.liu.se>
219         * textmodes/artist.el (artist-mode): Fix typo in docstring.
220         Reported by Alex Schröder <kensanata@gmail.com>.  (Bug#5807)
222 2010-03-31  Kenichi Handa  <handa@m17n.org>
224         * language/sinhala.el (composition-function-table): Fix regexp for
225         the new Unicode specification.
227         * language/indian.el (devanagari-composable-pattern)
228         (tamil-composable-pattern, kannada-composable-pattern)
229         (malayalam-composable-pattern): Adjust for the new Unicode
230         specification.
231         (bengali-composable-pattern, gurmukhi-composable-pattern)
232         (gujarati-composable-pattern, oriya-composable-pattern)
233         (telugu-composable-pattern): New variables to cope with the new
234         Unicode specification.  Use them in composition-function-table.
236 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
238         Make tmm-menubar work for the Buffers menu again.
239         * tmm.el (tmm-prompt): Also handle keymap entries in the form of
240         vectors rather than cons cells, as used in menu-bar-update-buffers.
242 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
244         * progmodes/js.el (js-auto-indent-flag, js-mode-map)
245         (js-insert-and-indent): Revert 2009-08-15 change, restoring
246         electric punctuation for "{}();,:" (Bug#5586).
248         * mail/sendmail.el (mail-default-directory): Doc fix.
250 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
252         * mail/sendmail.el (mail-default-directory): Doc fix.
254 2010-03-31  Eli Zaretskii  <eliz@gnu.org>
256         * subr.el (version-regexp-alist, version-to-list)
257         (version-list-<, version-list-=, version-list-<=)
258         (version-list-not-zero, version<, version<=, version=): Doc fix.
259         (Bug#5744).
261 2010-02-31  Dan Nicolaescu  <dann@ics.uci.edu>
263         * vc.el (vc-root-diff): Doc fix.
265 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
267         * vc.el (vc-print-log, vc-print-root-log): Doc fix.
269         * simple.el (append-to-buffer): Fix last change.
271 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
273         * simple.el (append-to-buffer): Ensure that point is preserved if
274         BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
275         (Bug#5749)
277 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
279         * files.el (auto-mode-case-fold): Change default to t.
281 2010-03-30  Juri Linkov  <juri@jurta.org>
283         * dired-x.el (dired-omit-mode): Doc fix.
285 2010-03-30  Juri Linkov  <juri@jurta.org>
287         * replace.el (occur-accumulate-lines): Move occur-engine related
288         functions `occur-accumulate-lines' and `occur-engine-add-prefix'
289         to be located after `occur-engine'.
291 2010-03-30  Juri Linkov  <juri@jurta.org>
293         Make occur handle multi-line matches cleanly with context.
294         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
296         * replace.el (occur-accumulate-lines): Add optional arg `pt'.
297         (occur-engine): Add local variables `ret', `prev-after-lines',
298         `prev-lines'.  Use more arguments for `occur-context-lines'.
299         Set first elem of its returned list to `data', and the second elem
300         to `prev-after-lines'.  Don't print the separator line.
301         In the end, print remaining context after-lines.
302         (occur-context-lines): Add new arguments `begpt', `endpt',
303         `lines', `prev-lines', `prev-after-lines'.  Rewrite to combine
304         after-lines of the previous match with before-lines of the
305         current match and not overlap them.  Return a list with two
306         values: the output line and the list of context after-lines.
308 2010-03-30  Juri Linkov  <juri@jurta.org>
310         * replace.el (occur-accumulate-lines): Fix a bug where the first
311         context line at the beginning of the buffer was missing.
313 2010-03-30  Eli Zaretskii  <eliz@gnu.org>
315         * files.el: Make bidi-display-reordering safe variable for boolean
316         values.
318 2010-03-29  Phil Hagelberg  <phil@evri.com>
319             Chong Yidong  <cyd@stupidchicken.com>
321         * subr.el: Extend progress reporters to perform "spinning".
322         (progress-reporter-update, progress-reporter-do-update):
323         Handle non-numeric value arguments.
324         (progress-reporter--pulse-characters): New var.
326 2010-03-28  Chong Yidong  <cyd@stupidchicken.com>
328         * progmodes/compile.el (compilation-start): Fix regexp detection
329         of initial cd command (Bug#5771).
331 2010-03-28  Stefan Guath  <stefan@automata.se>  (tiny change)
333         * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
335 2010-03-27  Nick Roberts  <nickrob@snap.net.nz>
337         Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
338         * lisp/progmodes/gdb-mi.el: Restore.
339         * lisp/progmodes/gdb-ui.el: Remove.
340         * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
342 2010-03-25  Glenn Morris  <rgm@gnu.org>
344         * desktop.el (desktop-save-buffer-p): Don't mistakenly include
345         all dired buffers, even tramp ones.  (Bug#5755)
347 2010-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
349         Add "union tags" in mpc.el.
350         * mpc.el: Remove backward compatibility code.
351         (mpc-browser-tags): Change default.
352         (mpc--find-memoize-union-tags): New var.
353         (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
354         (mpc-cmd-find): Handle the case where the playlist does not exist.
355         Handle union-tags.
356         (mpc-cmd-list): Use mpc-cmd-special-tag-p.  Handle union-tags.
357         (mpc-cmd-add): Use mpc-cmd-flush.
358         (mpc-tagbrowser-tag-name): New fun.
359         (mpc-tagbrowser-buf): Use it.
360         (mpc-songs-refresh): Use cond.  Move to point-min as a fallback.
362 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
364         Misc cleanup.
365         * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
366         Use replace-regexp-in-string.
367         (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
368         (makefile-imake-mode-syntax-table): Move init into defvar.
369         (makefile-mode): Use define-derived-mode.
371         * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
372         (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
373         not be present any more.
375 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
377         * faces.el (set-face-attribute): Fix typo in docstring.
378         (face-valid-attribute-values): Reflow docstring.
380         * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
382 2010-03-24  Glenn Morris  <rgm@gnu.org>
384         * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
386 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
388         * indent.el (indent-for-tab-command): Doc fix.
390 2010-03-24  Alan Mackenzie  <acm@muc.de>
392         * progmodes/cc-engine.el (c-remove-stale-state-cache):
393         Fix off-by-one error.  Fixes bug #5747.
395 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
397         * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
398         (image-dired-read-comment): Doc fix.
400         * json.el (json-object-type, json-array-type, json-key-type)
401         (json-false, json-null, json-read-number):
402         * minibuffer.el (completion-in-region-functions):
403         * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
404         (cal-tex-cursor-week):
405         * emacs-lisp/trace.el (trace-function):
406         * eshell/em-basic.el (eshell/printnl):
407         * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
408         (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
409         * obsolete/levents.el (allocate-event, event-key, event-object)
410         (event-point, event-process, event-timestamp, event-to-character)
411         (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
412         * textmodes/reftex-vars.el (reftex-index-macros-builtin)
413         (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
414         (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
415         (reftex-highlight-selection): Fix typos in docstrings.
417 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
419         * minibuffer.el (completion-in-region-functions): Fix docstring typos.
421 2010-03-24  Glenn Morris  <rgm@gnu.org>
423         * mail/rmail.el (rmail-highlight-face): Restore option deleted
424         2008-02-13 without comment; mark it obsolete.
425         (rmail-highlight-headers): Use rmail-highlight-face once more.
427 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
429         * woman.el (woman2-process-escapes): Only consume the newline if
430         the filler character is on a line by itself (Bug#5729).
432 2010-03-24  Kenichi Handa  <handa@m17n.org>
434         * language/indian.el (devanagari-composable-pattern): Add more
435         consonants.
437 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
439         * net/trampver.el: Update release number.
441 2010-03-24  Glenn Morris  <rgm@gnu.org>
443         * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
445 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
447         * net/tramp.el (tramp-find-executable):
448         Use `tramp-get-connection-buffer'.  Make the regexp for checking
449         output of "wc -l" more robust.
450         (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
451         (tramp-open-connection-setup-interactive-shell): Remove workaround
452         for OpenSolaris bug, it is not needed anymore.
454 2010-03-24  Eric M. Ludlam  <zappo@gnu.org>
456         * cedet/semantic/imenu.el: New file, from the CEDET repository
457         (Bug#5412).
459 2010-03-24  Glenn Morris  <rgm@gnu.org>
461         * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie.  (Bug#4427)
463 2010-03-24  Wilson Snyder  <wsnyder@wsnyder.org>
465         * files.el (auto-mode-alist): Accept more verilog file patterns.
467 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
469         * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
471 2010-03-24  Glenn Morris  <rgm@gnu.org>
473         * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
474         log-edit-before-checkin-process.
476         * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
478         * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
480         * vc-dispatcher.el (vc-start-logentry): Doc fix.
481         (log-view-process-buffer, log-edit-extra-flags): Declare.
483         * log-edit.el (log-edit-before-checkin-process): Doc fix.
485         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
486         Consistently check ede-object is bound throughout.
488         * cedet/ede/project-am.el (ede-shell-run-something): Declare.
490 2010-03-23  Sam Steingold  <sds@gnu.org>
492         Fix bug#5620: recalculate all markers on compilation buffer
493         modifications, not on file modifications.
494         * progmodes/compile.el (buffer-modtime): New buffer-local variable:
495         the buffer modification time, for buffers not associated with files.
496         (compilation-mode): Create it.
497         (compilation-filter): Update it.
498         (compilation-next-error-function): Use it instead of
499         `visited-file-modtime' for timestamp.
501 2010-03-23  Juri Linkov  <juri@jurta.org>
503         Implement Occur multi-line matches.
504         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
506         * replace.el (occur): Doc fix.
507         (occur-engine): Set `begpt' to the beginning of the first line.
508         Set `endpt' to the end of the last match line.  At first, count
509         line numbers between `origpt' and `begpt'.  Split out code from
510         `out-line' variable to new let-bindings `match-prefix' and
511         `match-str'.  In `out-line' add non-numeric prefix to all
512         non-first lines of multi-line matches.  Finally, count lines
513         between `begpt' and `endpt' and add to `lines'.
515 2010-03-23  Juri Linkov  <juri@jurta.org>
517         * replace.el (occur-accumulate-lines, occur-engine):
518         Use `occur-engine-line' instead of duplicate code.
519         (occur-engine-line): New function created from duplicate code
520         in `occur-accumulate-lines' and `occur-engine'.
522         * replace.el (occur-engine-line): Add optional arg `keep-props'.
523         (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
525 2010-03-23  Juri Linkov  <juri@jurta.org>
527         * finder.el: Remove TODO tasks.
529         * info.el (Info-finder-find-node): Add node "all"
530         with all package info.  Handle a list of multiple keywords
531         separated by comma.
532         (info-finder): In interactive use with a prefix argument,
533         use `completing-read-multiple' to read a list of keywords
534         separated by comma.
536 2010-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
538         Add a new completion style `substring'.
539         * minibuffer.el (completion-basic--pattern): New function.
540         (completion-basic-try-completion, completion-basic-all-completions):
541         Use it.
542         (completion-substring--all-completions)
543         (completion-substring-try-completion)
544         (completion-substring-all-completions): New functions.
545         (completion-styles-alist): New style `substring'.
547 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
549         Get rid of .elc files after removal of the corresponding .el.
550         * Makefile.in (compile-clean): New target.
551         (compile-main): Use it.
553 2010-03-22  Jan Djärv  <jan.h.d@swipnet.se>
555         * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
556         don't do make there.  When compiling with separate object dir, there
557         is no Makefile there.
559 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
561         Get rid of the ELCFILES abomination, again.
562         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
563         (all, compile): Don't call compile-last.
564         (compile-main): Build the "elcfiles" list dynamically.
565         (compile-targets): New (internal) target.
567 2010-03-21  Andreas Schwab  <schwab@linux-m68k.org>
569         * Makefile.in (top_srcdir): Define.
570         (abs_top_builddir): Define.
571         (srcdir): Don't append `/..'.
572         (EMACS): Use ${abs_top_builddir}.
573         (all, compile, compile-always, compile-last): Don't set emacswd.
574         (update-subdirs, update-authors): Use $(top_srcdir) instead of
575         $(srcdir).
576         (lisp): Use $(srcdir) instead of @srcdir@.
578 2010-03-21  Juri Linkov  <juri@jurta.org>
580         Fix message of multi-line occur regexps and multi-buffer header lines.
581         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
583         * replace.el (occur-1): Don't display regexp if it is longer
584         than window-width.  Use `query-replace-descr' to display regexp.
585         (occur-engine): Don't display regexp in the buffer header for
586         multi-buffer occur.  Display a separate header line with total
587         match count and regexp for multi-buffer occur.
588         Use `query-replace-descr' to display regexp.
590 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
592         * net/secrets.el: Fix parenthesis.
593         (secrets-enabled): Fix parenthesis.
595 2010-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
597         Use more relative file and directory names.
598         * Makefile.in (EMACS): Arrange for it to work when we chdir.
599         (setwins, setwins_almost, setwins_for_subdirs):
600         Don't `cd'; output relative names.
601         (all, compile, compile-always, compile-last): Set emacswd.
602         (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
603         Just cd to the lisp source dir so we can use relative file names.
605         * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
607 2010-03-20  Glenn Morris  <rgm@gnu.org>
609         * textmodes/rst.el: Use faces for font-lock customization, and make the
610         old -face variables obsolete.
611         (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
612         (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
613         (rst-block-face, rst-external-face, rst-definition-face)
614         (rst-directive-face, rst-comment-face, rst-emphasis1-face)
615         (rst-emphasis2-face, rst-literal-face, rst-reference-face):
616         Make obsolete.
617         (rst-font-lock-keywords-function): Update for above changes.
619 2010-03-20  Juri Linkov  <juri@jurta.org>
621         * s-region.el:
622         * obsolete/s-region.el: Move to obsolete.
624 2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
626         * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
628 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
630         * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
632 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
634         Add special markup processing for commit logs.
635         * log-edit.el (log-edit-extra-flags): New variable.
636         (log-edit): Add new argument MODE.  Use that mode when non-nil
637         instead of the log-view-mode.
638         (log-view-process-buffer): New function.
640         * vc.el: Document that the checkin method takes optional
641         arguments.  Document new backend specific method: log-view-mode.
642         (vc-default-log-edit-mode): New function.
643         (vc-checkin): Use a backend specific log-view-mode.
644         Pass extra arguments to the checkin method.
645         (vc-modify-change-comment): Pass a dummy extra argument.
647         * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
648         log-edit.
649         (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
650         (vc-finish-logentry): Process the log buffer before passing it
651         down.  Pass log-edit-extra-flags.
653         * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
654         command.
655         (log-edit-extra-flags, log-edit-before-checkin-process):
656         New declarations.
658         * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
659         command.
660         (log-edit-extra-flags, log-edit-before-checkin-process):
661         New declarations.
662         (vc-hg-log-edit-mode): New derived mode.
664         * vc-arch.el (vc-arch-checkin):
665         * vc-cvs.el (vc-cvs-checkin):
666         * vc-git.el (vc-git-checkin):
667         * vc-mtn.el (vc-mtn-checkin):
668         * vc-rcs.el (vc-rcs-checkin):
669         * vc-sccs.el (vc-sccs-checkin):
670         * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
672 2010-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
674         * outline.el (hide-sublevels): Don't hide trailing newline (and fix
675         parent typo).
677 2010-03-19  Glenn Morris  <rgm@gnu.org>
679         * password-cache.el (password-cache, password-cache-expiry): Autoload.
681 2010-03-18  Glenn Morris  <rgm@gnu.org>
683         * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
685         * replace.el (query-replace-history): Give it a doc string.
686         (map-query-replace-regexp): Use query-replace-from-history-variable
687         and query-replace-to-history-variable.
689         * mail/hashcash.el (declare-function): Remove duplicate definition.
691         * mail/emacsbug.el (report-emacs-bug-pretest-address):
692         Make it an obsolete alias for report-emacs-bug-address.
693         (message-strip-special-text-properties): Declare.
694         (report-emacs-bug): Remove test for a pretest bug address.
695         Combine message-mode-specific code.
697         * mail/supercite.el: Don't require sendmail.
698         (mh-in-header-p): Declare rather than using with-no-warnings.
699         (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
700         mail-header-end.  Don't bind mysterious variable `kill-lines-magic'.
702         * calendar/cal-french.el: Convert to utf-8.
704         * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
705         Emacs scripts.
707 2010-03-16  Michael Albinus  <michael.albinus@gmx.de>
709         * net/secrets.el (secrets-enabled): New variable.  Use it instead
710         of a subfeature.
712 2010-03-15  Michael Albinus  <michael.albinus@gmx.de>
714         * net/secrets.el (top): Register the D-Bus signals only when the
715         service "org.freedesktop.secrets" can be pinged.
716         Provide subfeature `enabled'.
718 2010-03-14  Juri Linkov  <juri@jurta.org>
720         Add finder unknown keywords.
722         * finder.el (finder-unknown-keywords): New function.
724         * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
725         to create a Finder node with unknown keywords.
727 2010-03-14  Juri Linkov  <juri@jurta.org>
729         * finder.el (finder-compile-keywords): Replace `princ' with
730         `prin1' on a list of symbols interned from keyword strings.
732         * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
733         a comma, then split keywords using a comma and optional whitespace.
734         Otherwise, split by whitespace.
736         * complete.el:
737         * face-remap.el:
738         * log-view.el:
739         * net/hmac-def.el:
740         * net/hmac-md5.el:
741         * net/netrc.el:
742         * progmodes/mixal-mode.el: Fix keywords.
744 2010-03-13  Michael Albinus  <michael.albinus@gmx.de>
746         * Makefile.in (ELCFILES): Add net/secrets.elc.
748         * net/secrets.el: New file.
750 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
752         * facemenu.el (list-colors-display, list-colors-print): New arg
753         callback.  Use it to allow selecting colors.
755         * wid-edit.el (widget-image-insert): Insert image prop even if the
756         current display is non-graphic.
757         (widget-field-value-set): New fun.
758         (editable-field): Use it.
759         (widget-field-value-get): Clean up unused var.
760         (widget-color-value-create, widget-color--choose-action):
761         New funs.  Allow using list-colors-display to choose color.
763 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
765         * cus-edit.el: Resort topmost custom groups.
766         (custom-buffer-sort-alphabetically): Default to t.
767         (customize-apropos): Use apropos-parse-pattern.
768         (custom-search-field): New var.
769         (custom-buffer-create-internal): Add custom-apropos search field.
770         (custom-add-parent-links): Don't display parent doc.
771         (custom-group-value-create): Don't sort top-level custom group.
772         (custom-magic-value-create): Show visibility button before option name.
774         (custom-variable-state): New fun, from custom-variable-state-set.
775         (custom-variable-state-set): Use it.
776         (custom-group-value-create): Hide options with standard values
777         using the :hidden-states property.  Use progress reporter.
779         (custom-show): Simplify.
780         (custom-visibility): Disable images by default.
781         (custom-variable): New property :hidden-states.
782         (custom-variable-value-create): Enable images for
783         custom-visibility widgets.  Use :hidden-states property to
784         determine initial visibility.
786         * wid-edit.el (widget-image-find): Give images center ascent.
787         (visibility): Add :on-image and :off-image properties.
788         (widget-visibility-value-create): Use them.
790 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
792         * cus-edit.el (processes): Remove from development group.
793         (oop, hypermedia): Delete group.
794         (comm): Promote to top-level group.
796         * net/browse-url.el (browse-url):
797         * net/xesam.el (xesam):
798         * net/tramp.el (tramp):
799         * net/goto-addr.el (goto-address):
800         * net/ange-ftp.el (ange-ftp): Put in comm group.
802         * view.el (view): Remove from editing group.
804         * uniquify.el (uniquify): Put in files group.
806         * net/browse-url.el (browse-url):
807         * ps-print.el (postscript): Put in external group.
809         * cus-edit.el (outlines):
810         * textmodes/text-mode.el (text-mode-hook):
811         * textmodes/table.el (table):
812         * textmodes/picture.el (picture):
813         * outline.el (outlines): Put in wp group.
815         * nxml/nxml-mode.el (nxml): Remove from wp group.
817         * net/tramp-imap.el (tramp-imap): Put in tramp group.
819         * mail/metamail.el (metamail): Remove from hypermedia group.
821         * cus-edit.el (abbrev):
822         * whitespace.el (whitespace):
823         * vcursor.el (vcursor):
824         * reveal.el (reveal):
825         * hl-line.el (hl-line): Put in convenience group.
827         * epg-config.el (epg): Put in data group.
829         * emulation/pc-select.el (pc-select): Put in emulations group.
831         * calculator.el (calculator): Put in applications group.
833 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
835         Add .dir-locals.el support for file-less buffers.
836         * files.el (hack-local-variables): Split out code to apply local
837         variable settings ...
838         (hack-local-variables-apply): ... here.  New function.
839         (hack-dir-local-variables): Use the default directory for when the
840         buffer does not have an associated file.
841         (hack-dir-local-variables-non-file-buffer): New function.
842         * diff-mode.el (diff-mode):
843         * vc-annotate.el (vc-annotate-mode):
844         * vc-dir.el (vc-dir-mode):
845         * log-edit.el (log-edit-mode):
846         * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
848 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
850         Add support for shelving snapshots and for showing shelves.
851         * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
852         (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
853         New functions.
854         (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
855         (vc-bzr-extra-menu-map): Map them.
857 2010-03-11  Glenn Morris  <rgm@gnu.org>
859         * cus-edit.el (customize-changed-options-previous-release):
860         Bump to 23.1.
862         * image.el (image-animate-max-time): Fix :version tag.
864 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
866         * Branch for 23.2.
868 2010-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
870         * vc-git.el (vc-git-revision-table): Include remote branches.
872 2010-03-10  Kim F. Storm  <storm@cua.dk>
874         Animated image API.
875         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
877         * image.el (image-animate-max-time): New defcustom.
878         (image-animated-types): New defconst.
879         (create-animated-image, image-animate-timer)
880         (image-animate-start, image-animate-stop, image-animate-timeout)
881         (image-animated-p): New functions.
883         * image-mode.el (image-toggle-display-image):
884         Replace `create-image' with `create-animated-image'.
886 2010-03-09  Miles Bader  <Miles Bader <miles@gnu.org>>
888         * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
889         instead of "format:"; this ensures that the output is
890         newline-terminated.
892 2010-03-08  Chong Yidong  <cyd@stupidchicken.com>
894         * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
895         that all errors are caught, and that the return value is always a
896         list (Bug#5692).
898 2010-03-08  Kenichi Handa  <handa@m17n.org>
900         * language/misc-lang.el (windows-1256): New coding system.
901         (cp1256): New alias of windows-1256 (bug#5690).
903 2010-03-07  Andreas Schwab  <schwab@linux-m68k.org>
905         * mail/rfc822.el (rfc822-addresses): Move catch clause down around
906         call to rfc822-bad-address.  (Bug#5692)
908 2010-03-07  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
910         * vc-git.el (vc-git-annotate-extract-revision-at-line):
911         Use vc-git-root as default directory for revision path (Bug#5657).
913 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
915         * calculator.el (calculator): Don't bind split-window-keep-point
916         (Bug#5674).
918 2010-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
920         * vc-git.el: Re-flow to fit into 80 columns.
921         (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
922         Remove spurious `quote' element in each case alternative.
923         (vc-git-show-log-entry): Use prog1.
924         (vc-git-after-dir-status-stage): Remove unused var `remaining'.
926 2010-03-06  Glenn Morris  <rgm@gnu.org>
928         * cedet/semantic/grammar.el (semantic-grammar-header-template):
929         Update template copyright to GPLv3+.
931 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
933         * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
935 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
937         * macros.el (insert-kbd-macro): Look up keyboard macro using the
938         definition, not the name (Bug#5481).
940 2010-03-03  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
942         * subr.el (momentary-string-display): Don't overwrite the MESSAGE
943         argument with a local variable.  (Bug#5670)
945 2010-03-02  Juri Linkov  <juri@jurta.org>
947         * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
949 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
951         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
952         error when FILENAME and NEWNAME are existing remote directories.
954         * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
955         parameter DIR-FLAG.
957 2010-03-02  Glenn Morris  <rgm@gnu.org>
959         * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
960         of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
962 2010-03-01  Alan Mackenzie  <acm@muc.de>
964         * progmodes/cc-engine.el (c-remove-stale-state-cache):
965         Correct previous patch.
967 2010-03-01  Kenichi Handa  <handa@m17n.org>
969         * language/burmese.el (burmese-composable-pattern): Rename from
970         myanmar-composable-pattern.
972         * international/characters.el (script-list):
973         * international/fontset.el (script-representative-chars):
974         Change myanmar to burmese.
975         (otf-script-alist): Likewise.
976         (setup-default-fontset): Likewise.  Re-fix :otf spec.
978 2010-03-01  Alan Mackenzie  <bug-cc-mode@gnu.org>
980         * cc-engine.el (c-remove-stale-state-cache): Take account of when
981         `good-pos' is in the same macro as `here'.  Fixes bug#5649.
983 2010-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
985         * menu-bar.el (menu-bar-manuals-menu): Fix typo.
987 2010-02-28  Jan Djärv  <jan.h.d@swipnet.se>
989         * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
991 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
993         * net/tramp.el (tramp-handle-write-region): START can be a string.
994         Take care in the checks.  Reported by Dan Davison
995         <davison@stats.ox.ac.uk>.
997 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
999         * net/dbus.el (dbus-introspect, dbus-get-property)
1000         (dbus-set-property, dbus-get-all-properties):
1001         Use `dbus-call-method' when noninteractive.  (Bug#5645)
1003 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
1005         * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
1006         * emacs-lisp/elint.el (elint-add-required-env):
1007         * cedet/semantic/db-find.el
1008         (semanticdb-find-translate-path-brutish-default):
1009         * cedet/ede/make.el (ede-make-check-version):
1010         * calendar/icalendar.el (icalendar--add-diary-entry):
1011         * calc/calcalg2.el (math-tracing-integral):
1012         * files.el (recover-session-finish): Use with-current-buffer
1013         instead of save-excursion.
1015 2010-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1017         Fix in-buffer completion when after-change-functions modify the buffer.
1018         * minibuffer.el (completion--replace): New function.
1019         (completion--do-completion): Use it and use relative movement.
1021 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
1023         * international/fontset.el (setup-default-fontset): Fix :otf spec.
1025 2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
1027         * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
1028         Allow the characters _<> in the stack entry (Bug#5653).
1030 2010-02-26  Kenichi Handa  <handa@m17n.org>
1032         * language/burmese.el: Fix entries in composition-function-table.
1033         (myanmar-composable-pattern): New variable.
1035         * international/fontset.el (setup-default-fontset): Add an entry
1036         for myanmar.
1038         * international/characters.el (script-list): Add Myanmar
1039         Extended-A.
1041 2010-02-26  Glenn Morris  <rgm@gnu.org>
1043         * custom.el (custom-initialize-delay): Doc fix.
1045         * mail/sendmail.el (send-mail-function): Autoload the call
1046         to custom-initialize-delay, not otherwise preserved in loaddefs.el.
1048 2010-02-25  Alan Mackenzie  <acm@muc.de>
1050         * progmodes/cc-engine.el (c-clear-<-pair-props)
1051         (c-clear->-pair-props): Correct to wipe category text props, not
1052         syntax-table ones.
1054         * progmodes/cc-mode.el (c-after-change): Remove any hard
1055         syntax-table properties for <, > which, e.g., C-y has
1056         inopportunely converted from category properties.
1058 2010-02-24  Chong Yidong  <cyd@stupidchicken.com>
1060         * files.el (hack-local-variables-filter): For eval forms, also
1061         check safe-local-variable-p (Bug#5636).
1063 2010-02-24  Eduard Wiebe  <usenet@pusto.de>
1065         * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
1066         and use c(ad)r of cddr (Bug#5640).
1068 2010-02-22  Michael Albinus  <michael.albinus@gmx.de>
1070         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
1071         setting the modes by `ignore-errors'.  It might fail, for example
1072         if the file is not owned by the user but the group.
1073         (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
1075 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
1077         * files.el (directory-listing-before-filename-regexp): Use
1078         stricter matching for iso-style dates, to avoid false matches with
1079         date-like filenames (Bug#5597).
1081         * htmlfontify.el (htmlfontify): Doc fix.
1083         * eshell/eshell.el (eshell): Doc fix.
1085         * startup.el (fancy-about-screen): In mode-line, apply
1086         mode-line-buffer-id face only to the buffer name (Bug#5613).
1088 2010-02-20  Kevin Ryde  <user42@zip.com.au>
1090         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1091         In `watcom' anchor regexp to start of line, to avoid slowness
1092         (Bug#5599).
1094 2010-02-20  Eli Zaretskii  <eliz@gnu.org>
1096         * subr.el (remove-yank-excluded-properties): Explain in a comment
1097         why `category' property is removed.
1099 2010-02-19  Chong Yidong  <cyd@stupidchicken.com>
1101         * isearch.el (isearch-update-post-hook, isearch-update): Revert
1102         2010-02-17 change.
1104 2010-02-19  Ulf Jasper  <ulf.jasper@web.de>
1106         * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
1107         (icalendar--convert-weekly-to-ical)
1108         (icalendar--convert-yearly-to-ical)
1109         (icalendar--convert-block-to-ical)
1110         (icalendar--convert-cyclic-to-ical)
1111         (icalendar--convert-anniversary-to-ical): Take care of time
1112         specifications where hour has 1-digit only (Bug#5549).
1114 2010-02-19  Nick Roberts  <nickrob@snap.net.nz>
1116         * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
1117         of disassemble output in GDB 7.1.
1119 2010-02-19  Glenn Morris  <rgm@gnu.org>
1121         * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
1122         property.  (Bug#5593)
1124 2010-02-18  Sam Steingold  <sds@gnu.org>
1126         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
1128 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1130         Use abbreviated file names in bookmarks (bug#5591).
1131         * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
1132         calls to expand-file-name.
1133         (bookmark-relocate): Use abbreviated file names in bookmarks.
1134         (bookmark-load): Use abbreviated file names in messages.
1136 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
1138         * net/tramp.el (tramp-handle-directory-files): When FULL, do not
1139         expand "." and "..".  Reported by Thierry Volpiatto
1140         <thierry.volpiatto@gmail.com>.
1142 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
1144         * net/tramp.el (tramp-handle-insert-file-contents): Set always the
1145         permissions of the temporary file to "0600".  In case the remote
1146         file has no read permissions for the owner, there might be
1147         problems otherwise.  Reported by Ole Laursen <olau@iola.dk>.
1149 22010-02-18  Glenn Morris  <rgm@gnu.org>
1151         * emacs-lisp/authors.el (authors-renamed-files-alist):
1152         Add entries for INSTALL.CVS.
1154 2010-02-17  Mark A. Hershberger  <mah@everybody.org>
1156         * vc-bzr.el: Fix typo in Known Bugs section.
1158         * isearch.el (isearch-update-post-hook): New hook.
1159         (isearch-update): Use the new hook.
1161 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
1163         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
1164         Fix errors in copying directories.
1165         (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
1166         (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
1167         (tramp-handle-delete-file)
1168         (tramp-handle-dired-recursive-delete-directory)
1169         (tramp-handle-write-region): Flush also the cache for the upper
1170         directory.
1172 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
1174         * simple.el (save-interprogram-paste-before-kill): Doc fix.
1176         * cus-edit.el (hardware): Doc fix.
1178         * man.el (man): Add to external custom group.
1180         * delim-col.el (columns): Move to wp custom group.
1182         * doc-view.el (doc-view): Add to data custom group.
1184         * cedet/data-debug.el (data-debug): Move to extensions group.
1186         * cedet/ede.el (ede):
1187         * cedet/srecode.el (srecode):
1188         * cedet/semantic.el (semantic): Put in tools and extensions group.
1190         * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
1192         * textmodes/flyspell.el (flyspell-word): Obey the offset specified
1193         by ispell-parse-output (Bug#5575).
1195 2010-02-16  Kenichi Handa  <handa@m17n.org>
1197         * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
1198         (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
1199         (skkdic-convert): Use `euc-japan' coding system for writing.
1201 2010-02-16  Glenn Morris  <rgm@gnu.org>
1203         * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
1204         tex-main-file before using it.  (Bug#5562)
1206 2010-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1208         * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
1209         warnings, since it is annoying for the user to see them each time he
1210         runs the code.
1212 2010-02-15  Michael Albinus  <michael.albinus@gmx.de>
1214         * net/tramp.el (tramp-process-actions, tramp-read-passwd):
1215         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
1216         instead of PROC for caching "first-password-request".  Otherwise,
1217         new processes would not profit from passwords already entered.
1219         * net/tramp-cache.el (tramp-dump-connection-properties):
1220         Don't save "first-password-request" property.
1222 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
1224         * outline.el (outline-head-from-level):
1225         * simple.el (with-wrapper-hook):
1226         * cedet/ede.el (ede-run-target, project-delete-target)
1227         (project-dist-files, ede-name, ede-documentation, ede-parent-project)
1228         (ede-adebug-project, ede-adebug-project-parent)
1229         (ede-adebug-project-root):
1230         * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
1231         (elint-defun, elint-buffer-env, elint-top-form-logged)
1232         (elint-unbound-variable):
1233         * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
1234         Fix typos in docstrings.
1236 2010-02-14  Michael Albinus  <michael.albinus@gmx.de>
1238         * files.el (insert-directory): When WILDCARD-REGEXP and
1239         FULL-DIRECTORY-P are nil, insert the file entry instead of the
1240         whole directory.  (Bug#5551)
1242         * net/ange-ftp.el (ange-ftp-insert-directory): Insert "  " for
1243         dired's alignment sanity.  (Bug#5516)
1245 2010-02-14  Juri Linkov  <juri@jurta.org>
1247         * man.el (Man-fontify-manpage, Man-cleanup-manpage):
1248         Remove remaining ^H with their preceding chars.  (Bug#5566)
1250 2010-02-13  Glenn Morris  <rgm@gnu.org>
1252         * simple.el (transpose-subr): Give it a doc-string.
1254         * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
1255         Doc fixes.
1257 2010-02-12  Juri Linkov  <juri@jurta.org>
1259         * arc-mode.el (archive-unique-fname): Make directories for nested
1260         archives.  (Bug#5540)
1262 2010-02-12  Juri Linkov  <juri@jurta.org>
1264         * ffap.el (dired-at-point): Fix docstring.  (Bug#5565)
1266 2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1268         * subr.el (copy-overlay): Handle deleted overlays.
1270         * man.el (Man-completion-table): Don't signal an error if we can't run
1271         manual-program (bug#4056).
1273 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
1275         * textmodes/artist.el (artist-mt): Fix typos in docstring.
1277 2010-02-10  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1279         * info.el (Info-bookmark-jump): Simplify.
1281         * bookmark.el (bookmark-handle-bookmark): Catch the right error.
1282         (bookmark-default-handler): Accept new bookmark field `buffer'.
1284 2010-02-10  Chong Yidong  <cyd@stupidchicken.com>
1286         * iswitchb.el (iswitchb-completions): Revert last change.
1288 2010-02-10  Michael Albinus  <michael.albinus@gmx.de>
1290         * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
1291         FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
1292         This prevents file names like "~/" being listed literally.
1294 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
1296         * term/xterm.el (xterm-maybe-set-dark-background-mode):
1297         Remove dead code.  (Bug#5546)
1299 2010-02-09  Chong Yidong  <cyd@stupidchicken.com>
1301         * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
1302         correctly (Bug#5548).
1304 2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
1306         * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
1307         (ada-adjust-case): Don't adjust case in hexadecimal number literals.
1309 2010-02-08  Kenichi Handa  <handa@m17n.org>
1311         * international/mule-util.el (with-coding-priority): Add autoload
1312         cookie for putting `lisp-indent-function'.
1314 2010-02-07  Glenn Morris  <rgm@gnu.org>
1316         * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
1317         Move F2003 named interfaces from keywords-2 to keywords-1, and
1318         use function-name-face rather than constant-face.
1319         Simplify "abstract interface" regexp.
1321 2010-02-07  Chong Yidong  <cyd@stupidchicken.com>
1323         * eshell/esh-util.el (eshell-file-attributes): New optional arg
1324         ID-FORMAT.  Pass it to `file-attributes'.
1326         * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
1328 2010-02-07  sj  <prime.wizard+emacs@gmail.com>  (tiny change)
1330         * faces.el (set-face-attribute): Allow calling
1331         internal-set-lisp-face-attribute with 'unspecified family and
1332         foundry argument (Bug#5536).
1334 2010-02-07  Glenn Morris  <rgm@gnu.org>
1336         * progmodes/f90.el (f90-font-lock-keywords-2)
1337         (f90-looking-at-type-like, f90-looking-at-program-block-end):
1338         Handle F2003 named interfaces.
1340 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
1342         * progmodes/cc-mode.el (c-common-init): Bind temporary variables
1343         beg and end before calling c-get-state-before-change-functions.
1345 2010-02-06  Dan Nicolaescu  <dann@ics.uci.edu>
1347         * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
1349 2010-02-05  Juri Linkov  <juri@jurta.org>
1351         * doc-view.el (doc-view-mode):
1352         * image-mode.el (image-mode): Put property mode-class=special.
1353         (Bug#4896)
1355 2010-02-05  Mark A. Hershberger  <mah@everybody.org>
1357         * vc-svn.el (vc-svn-revision-table): New function.
1359 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
1361         * net/ange-ftp.el (ange-ftp-insert-directory):
1362         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
1363         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
1364         Handle also directories.  (Bug#5478)
1366 2010-02-05  Glenn Morris  <rgm@gnu.org>
1368         * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
1370 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
1372         * startup.el (command-line-1): Convert options beginning with a
1373         single dash as well (Bug#5519).
1375 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1377         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
1378         * minibuffer.el (completion-initials-expand): Only check the presence
1379         of delims *within* the boundaries, since otherwise the / delim is
1380         always found for files.
1382         Fix up various corner case problems.
1383         * doc-view.el (doc-view-last-page-number): New function.
1384         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
1385         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
1386         (doc-view-kill-proc): Avoid inf-loop in freak cases.
1387         (doc-view-reconvert-doc): Use the new recursive delete-directory.
1388         (doc-view-convert-current-doc): Don't create the resolution.el file
1389         here any more.
1390         (doc-view-pdf/ps->png): Do it here instead.
1391         (doc-view-already-converted-p): Check that resolution.el is present.
1392         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
1393         windows that are not yet showing images.
1395 2010-02-04  Alan Mackenzie  <acm@muc.de>
1397         Change strategy for marking < and > as template delimiters: mark
1398         them strictly in matching pairs.
1400         * cc-mode.el (c-before-change):
1401         Use c-get-state-before-change-functions.
1402         (c-common-init): Adapt to use
1403         c-get-state-before-change-functions (note plural).
1405         * cc-langs.el (c-no-parens-syntax-table): New syntax table, used
1406         for searching syntactically for matching <s and >s.
1407         (c-get-state-before-change-functions): New language variable (note
1408         the plural) which supersedes c-get-state-before-change-function.
1410         * cc-engine.el (c-clear-<-pair-props, c-clear->-pair-props)
1411         (c-clear-<>-pair-props, c-clear-<-pair-props-if-match-after)
1412         (c-clear->-pair-props-if-match-before)
1413         (c-before-change-check-<>-operators): New functions.
1414         (c-after-change-check-<>-operators): Use macro
1415         c-unmark-<->-as-paren.
1417         * cc-defs.el (c-search-backward-char-property): New macro.
1419         * cc-cmds.el (c-electric-lt-gt): Do not set text properties on <
1420         and > any more.  (These will be handled by font locking.)
1422 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
1424         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
1425         `dired-uncache' for every elemnt which is an absolute file name.
1427         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
1428         directory, handle its directory component.
1429         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
1430         function is called permanently and creates noise, otherwise.
1432         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
1433         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
1434         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
1436 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
1438         * macros.el (apply-macro-to-region-lines):
1439         Minor simplification.  (Bug#5485)
1441 2010-02-04  Glenn Morris  <rgm@gnu.org>
1443         * mail/rmail.el (rmail-show-message-1): Handle malformed
1444         quoted-printable text.  (Bug#5441)
1446         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
1448         * simple.el (visual-line-mode): Capitalize lighter.
1450 2010-02-03  John Wiegley  <jwiegley@gmail.com>
1452         * iswitchb.el (iswitchb-completions): Add bookmark files to the
1453         list of files considered for "virtual buffer" completions.
1455 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
1457         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
1458         also in case of (and (not full) (not wildcard)). This is needed,
1459         when dired is called with a list of files, which are not in
1460         `default-directory'.  (Bug#5478)
1462 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1464         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
1466 2010-02-02  Juri Linkov  <juri@jurta.org>
1468         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
1469         from unidiff to allow function-line after @@.
1471 2010-02-02  Juri Linkov  <juri@jurta.org>
1473         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
1474         '(RCS SCCS) with inverted condition.
1476 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
1478         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
1479         messages.
1481 2010-02-01  Juri Linkov  <juri@jurta.org>
1483         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
1484         compare with "pkunzip" and "pkzip" instead of only "pkzip".
1485         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
1486         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
1488 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1490         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
1491         (doc-view-revert-buffer): New command.
1492         (doc-view-mode-map): Use it.
1494 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
1496         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
1497         pending merge is detected.
1499 2010-01-31  Juri Linkov  <juri@jurta.org>
1501         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
1502         beginning of interactive spec like all other grep commands do.
1503         Put "all" in front of "gz".  (Bug#5260)
1505 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
1507         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
1509 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
1511         * dirtrack.el (dirtrack): Warn instead of signalling error if the
1512         regexp is incorrect (Bug#5476).
1514 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
1516         * net/tramp.el (tramp-handle-insert-directory): Handle also
1517         symlinks, when FILENAME is not in `default-directory'.
1519 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
1521         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
1522         FILE is not in `default-directory'.  (Bug#5478)
1524         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
1525         of SWITCHES.  Handle the case, FILENAME is not in
1526         `default-directory'.  (Bug#5478)
1527         (tramp-register-file-name-handlers): Add safe-magic property.
1529 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
1531         * arc-mode.el (archive-zip-extract): Quote the argument passed to
1532         unzip (Bug#5475).
1534 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
1536         * progmodes/flymake.el (flymake-allowed-file-name-masks)
1537         (flymake-master-make-header-init): Add other C++ filename masks.
1538         (flymake-find-possible-master-files)
1539         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
1541 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
1543         Fix some busybox annoyances.
1545         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
1546         not responding." string.
1547         (tramp-open-connection-setup-interactive-shell): Dump stty
1548         settings.  Enable "neveropen" arg for all `tramp-send-command'
1549         calls.  Handle "=" in variable values properly.
1550         (tramp-find-inline-encoding): Raise an error, when no encoding is
1551         found.
1552         (tramp-wait-for-output): Check, whether PROC buffer is available.
1553         Remove spurious " ^H" sequences, sent by busybox.
1554         (tramp-get-ls-command): Suppress coloring, if possible.
1556 2010-01-28  Glenn Morris  <rgm@gnu.org>
1558         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
1560         * log-edit.el (log-edit-strip-single-file-name): Add missing
1561         :safe, :group, and :version tags.
1563 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
1565         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
1566         buffers.  (Bug#5477)
1568 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
1570         * files.el (delete-directory): Handle moving to trash without
1571         first doing recursion (Bug#5436).
1573 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
1575         * vc-hooks.el (vc-path): Mark as obsolete.
1577 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
1579         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
1580         names too.
1582         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
1583         for the short log.
1584         (vc-bzr-log-view-mode): Adjust regexp for the above change.
1586 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
1588         * progmodes/python.el: Replace reference to obsolete c-subword-mode.
1590         * vc-bzr.el (vc-bzr-revision-table): New function.
1592 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
1594         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
1595         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
1597 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
1599         Remove support for adding --signoff on commit.
1600         Future support will use an incompatible generic mechanism.
1601         * vc-git.el (vc-git-add-signoff): Remove variable.
1602         (vc-git-toggle-signoff): Remove function.
1603         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
1605         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
1606         from xterm-set-background-mode.  Return t if the background mode
1607         was set.
1608         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
1609         earlier, call it again in case the background mode has changed.
1611 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
1613         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
1614         (Bug#3541).
1616 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
1618         * emacs-lisp/assoc.el (aelement): Doc fix.
1619         (aput, adelete, amake): Use lexical-let (Bug#5450).
1621 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
1623         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
1624         is the same as subprogram call, not declaration.  (Bug#5435).
1626 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
1628         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
1629         (tramp-smb-maybe-open-connection): Use it.
1631 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
1633         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
1635 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1637         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
1638         just because we see "encoding: 8bit".
1639         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
1641 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
1643         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
1645 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
1647         * jka-compr.el (jka-compr-load): If load-file is not in
1648         load-history, try its file-truename version.  (bug#5447)
1650 2010-01-21  Alan Mackenzie  <acm@muc.de>
1652         Fix a situation where deletion of a cpp construct throws an error.
1653         * progmodes/cc-engine.el (c-invalidate-state-cache): Before
1654         invoking c-with-all-but-one-cpps-commented-out, check that the
1655         special cpp construct is still in the buffer.
1656         (c-parse-state): Record the special cpp with markers, not numbers.
1658 2010-01-21  Kenichi Handa  <handa@m17n.org>
1660         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
1661         process last-command-event, as it is now decoded first (Bug#5380).
1663 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
1665         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
1667 2010-01-20  Glenn Morris  <rgm@gnu.org>
1669         * indent.el (tab-always-indent): Fix custom-type.
1671 2010-01-19  Alan Mackenzie  <acm@muc.de>
1673         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
1674         buffer throws "args out of range".
1675         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
1676         playing the role of delimiter.
1678 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
1680         * progmodes/ada-mode.el: Fix bug#5400.
1681         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
1682         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
1683         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
1684         Improve comments in "is" portion.  Handle null procedure declaration.
1685         (ada-move-to-end): Improve doc string.
1687 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
1689         * ido.el (ido-cur-list): Initialize to nil.
1690         Remove obsolete information from commentary.
1691         (ido-choice-list): Initialize to nil.
1692         (ido-get-bufname): Reject minibuffers.
1693         (ido-make-buffer-list): If "default" is a nonexistent
1694         buffer, ignore it, as per the function's comment.
1695         (ido-kill-buffer-internal): New function.
1696         (ido-kill-buffer-at-head): Use it.
1697         (ido-visit-buffer): Likewise.
1699 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1701         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
1703 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
1705         * cedet/ede/locate.el (ede-locate-file-in-project)
1706         (ede-locate-file-in-project-impl): Fix typos in docstrings.
1707         (ede-enable-locate-on-project): Fix typos in error messages.
1709         * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
1710         (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
1711         (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
1712         (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
1713         (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
1714         Fix typos in menu help.
1716         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
1717         Fix typos in chart titles.
1719         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
1720         * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
1721         (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
1722         (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
1723         (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
1724         (semantic-parse-stream, semantic-parse-region)
1725         (semantic-parse-region-default, semantic--set-buffer-cache)
1726         (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
1727         (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
1728         (semantic-default-submodes):
1729         * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
1730         (semanticdb-create-ebrowse-database)
1731         (semanticdb-find-tags-for-completion-method)
1732         (semanticdb-find-tags-by-class-method)
1733         (semanticdb-deep-find-tags-by-name-method)
1734         (semanticdb-deep-find-tags-for-completion-method):
1735         * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
1736         (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
1737         (semanticdb-find-tags-for-completion-method)
1738         (semanticdb-find-tags-by-class-method)
1739         (semanticdb-deep-find-tags-for-completion-method):
1740         * cedet/semantic/db-find.el (semanticdb-find-translate-path)
1741         (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
1742         (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
1743         (semanticdb-find-tags-by-name-method)
1744         (semanticdb-find-tags-by-name-regexp-method)
1745         (semanticdb-find-tags-for-completion-method)
1746         (semanticdb-find-tags-by-class-method)
1747         (semanticdb-find-tags-external-children-of-type-method)
1748         (semanticdb-find-tags-subclasses-of-type-method)
1749         (semanticdb-deep-find-tags-by-name-method)
1750         (semanticdb-deep-find-tags-by-name-regexp-method)
1751         (semanticdb-deep-find-tags-for-completion-method):
1752         * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
1753         (semanticdb-enable-gnu-global-in-buffer)
1754         (semanticdb-find-tags-for-completion-method)
1755         (semanticdb-deep-find-tags-by-name-method)
1756         (semanticdb-deep-find-tags-for-completion-method):
1757         * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
1758         (javascript-mode, semanticdb-find-translate-path)
1759         (semanticdb-find-tags-for-completion-method)
1760         (semanticdb-find-tags-by-class-method)
1761         (semanticdb-deep-find-tags-by-name-method)
1762         (semanticdb-deep-find-tags-for-completion-method)
1763         (semanticdb-find-tags-external-children-of-type-method):
1764         * cedet/semantic/idle.el (semantic-idle-work-core-handler)
1765         (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
1766         (global-semantic-idle-scheduler-mode):
1767         * cedet/srecode/dictionary.el (srecode-field-value)
1768         (srecode-dictionary-add-section-dictionary):
1769         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
1770         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
1771         (describe-class, eieio-describe-generic, describe-generic):
1772         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
1773         (eieio-speedbar-expand):
1774         * emulation/viper-cmd.el (viper-exec-form-in-vi)
1775         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
1776         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
1777         (viper-del-backward-char-in-replace, viper-backward-indent)
1778         (viper-brac-function, viper-register-to-point, viper-submit-report):
1779         * net/tramp.el (tramp-remote-coding-commands):
1780         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
1781         Fix typos in docstrings.
1783 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1785         * mail/sendmail.el (mail-yank-original): Set the mark if the
1786         specified function for yanking does not do it.
1788 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
1790         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
1792         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
1793         resyncing a directory.
1795 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
1797         * progmodes/ada-mode.el: Fix bug#1920.
1798         (ada-ident-re): Delete ., allow multibyte characters.
1799         (ada-goto-label-re): New; matches goto labels.
1800         (ada-block-label-re): New; matches block labels.
1801         (ada-label-re): New; matches both.
1802         (ada-named-block-re): Deleted; callers changed to use
1803         `ada-block-label-re' instead.
1804         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
1805         Use `ada-block-label-re'.
1806         (ada-indent-on-previous-lines): Improve handling of goto labels.
1807         (ada-get-indent-block-start): Special-case block label.
1808         (ada-get-indent-label): Split into `ada-indent-block-label' and
1809         `ada-indent-goto-label'.
1810         (ada-goto-stmt-start, ada-goto-next-non-ws):
1811         Optionally ignore goto labels.
1812         (ada-goto-next-word): Simplify.
1813         (ada-indent-newline-indent-conditional): Insert newline before
1814         trying to fix indentation; doc fix.
1816 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
1818         * calc/calc.el (calc-command-flags): Give it an initial value.
1820 2010-01-17  Glenn Morris  <rgm@gnu.org>
1822         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
1824 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1826         * cedet/semantic.el (semantic-mode):
1827         * files.el (minibuffer-with-setup-hook):
1828         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
1829         (artist-key-draw-continously, artist-key-do-continously-continously)
1830         (artist-key-set-point-continously, artist-mouse-draw-continously):
1831         Fix typos in docstrings.
1833 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
1835         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
1836         return t (Bug#3898).
1838 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
1840         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
1841         can parse the output of the external commands (Bug#5279).
1843 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
1845         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
1847 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
1849         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
1851         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
1853         * startup.el (command-line): Remove unused --icon-type arg.
1854         Handle --display arg, passing it to command-line-1 (Bug#5392).
1856 2010-01-16  Mario Lang  <mlang@delysid.org>
1858         * cedet/ede/cpp-root.el (ede-cpp-root-project):
1859         * cedet/ede/files.el (ede-expand-filename):
1860         * cedet/ede/simple.el (ede-simple-project):
1861         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
1862         (semantic-complete-inline-tag-engine):
1863         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
1864         * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
1865         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
1866         * cedet/semantic/db.el (semanticdb-equivalent-mode):
1867         * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
1868         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
1869         * emacs-lisp/chart.el (chart-translate-namezone):
1870         * textmodes/artist.el (artist-compute-popup-menu-table):
1871         Remove duplicated words in doc-strings.
1873 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
1875         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
1876         to mairix-search to suppress threading (Bug#5342).
1878 2010-01-15  Kenichi Handa  <handa@m17n.org>
1880         * international/mule-cmds.el (canonicalize-coding-system-name):
1881         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
1883 2010-01-15  Glenn Morris  <rgm@gnu.org>
1885         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
1887         * wid-edit.el (widget-keymap): Doc fix.
1889         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
1890         former seems to be more widely accepted by various svn versions.
1892 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
1894         * find-cmd.el (find-constituents):
1895         * vc-arch.el (vc-arch-root):
1896         * window.el (window-body-height, pop-up-frames):
1897         * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
1898         (semantic-no-reparse-needed-change-hook):
1899         * cedet/srecode/insert.el (srecode-resolve-argument-list)
1900         (srecode-template-inserter-blank, srecode-template-inserter-variable)
1901         (srecode-template-inserter-ask, srecode-template-inserter-width)
1902         (srecode-template-inserter-section-start)
1903         (srecode-template-inserter-section-end, srecode-insert-method):
1904         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
1905         * progmodes/ada-stmt.el (ada-if):
1906         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
1907         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
1908         (ispell-encoding8-command, ispell-aspell-supports-utf8)
1909         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
1911         * progmodes/flymake.el (flymake-post-syntax-check):
1912         Fix typo in error message.
1914 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
1916         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
1917         which is always a string.  (Bug#5313)
1919 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
1921         * progmodes/ada-xref.el (ada-default-prj-properties):
1922         Simplify previous change.
1924 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
1926         * progmodes/ada-xref.el (ada-default-prj-properties):
1927         Default ada_project_path to $ADA_PROJECT_PATH.
1929 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
1931         * progmodes/ada-mode.el (ada-create-keymap):
1932         Override `narrow-to-defun' with `ada-narrow-to-defun'.
1934 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
1936         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
1937         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
1938         (ada-get-current-indent, ada-imenu-generic-expression)
1939         (ada-which-function): Check for it.
1941 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
1943         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
1944         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
1946 2010-01-14  Glenn Morris  <rgm@gnu.org>
1948         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
1950 2010-01-14  Kenichi Handa  <handa@m17n.org>
1952         * composite.el (auto-composition-mode): Make it a buffer local
1953         variable (permanent-local).
1954         (auto-composition-function): Set the default value to
1955         auto-compose-chars.
1956         (auto-composition-mode): Make it a simple function, not a minor mode.
1957         (global-auto-composition-mode): Likewise.
1958         (turn-on-auto-composition-if-enabled): Delete it.
1960 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
1962         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
1964 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
1966         * files.el (copy-directory): Compute target for recursive
1967         directories with identical names.  (Bug#5343)
1969 2010-01-12  Glenn Morris  <rgm@gnu.org>
1971         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
1972         it to bug-gnu-emacs rather than emacs-pretest-bug.
1974 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
1976         * cedet/data-debug.el (data-debug): Fix customization group reference.
1978 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
1980         * cedet/semantic/analyze.el (semantic-analyze-push-error)
1981         (semantic-analyze-context, semantic-analyze-context-assignment)
1982         (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
1983         * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
1984         (semantic-java-doc-keywords-map):
1985         * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
1986         (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
1987         (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
1988         (semantic-c-classname, semantic-format-tag-uml-prototype)
1989         (semantic-c-dereference-namespace, semantic-analyze-type-constants):
1990         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
1991         (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
1992         (semantic-get-local-variables, semantic-end-of-command)
1993         (semantic-beginning-of-command, semantic-ctxt-current-class-list)
1994         (lisp-mode):
1995         * cedet/semantic/bovine/make.el (makefile-mode):
1996         * cedet/semantic/wisent/python.el (wisent-python-string-re)
1997         (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
1998         (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
1999         (semantic-lex, semantic-get-local-variables, python-mode):
2000         * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
2001         * cedet/srecode/extract.el (srecode-extract-state-set)
2002         (srecode-extract-method): Fix typos in docstrings.
2004 2010-01-11  Sam Steingold  <sds@gnu.org>
2006         * imenu.el (imenu-default-create-index-function): Detect infinite
2007         loops caused by imenu-prev-index-position-function.
2009 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
2011         * htmlfontify.el (htmlfontify-load-rgb-file)
2012         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
2013         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
2014         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
2015         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
2016         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
2017         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
2018         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
2019         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
2020         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
2021         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
2022         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
2023         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
2024         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
2025         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
2026         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
2027         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
2028         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
2029         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
2030         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
2031         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
2032         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
2033         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
2034         backslash-quoting from parentheses, etc.
2036 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
2038         * progmodes/js.el: Autoload javascript-mode alias.
2040 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
2042         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
2043         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
2044         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
2045         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
2046         Fix typos in docstrings.
2047         (ffap-url-regexp): Doc fix.
2048         (ffap-at-mouse): Fix typo in message.
2050 2010-01-11  Glenn Morris  <rgm@gnu.org>
2052         * version.el (emacs-copyright): Set copyright year to 2010.
2054 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2056         * format.el (format-annotate-function): Only set
2057         write-region-post-annotation-function after running to-fn so as not to
2058         affect nested write-region calls (bug#5273).
2060 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
2062         * cedet/semantic.el (semantic-new-buffer-setup-functions):
2063         Add python parser.
2065         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
2066         wisent/python.el.
2068 2010-01-10  Richard Kim  <emacs18@gmail.com>
2070         * cedet/semantic/wisent/python-wy.el:
2071         * cedet/semantic/wisent/python.el: New files.
2073 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
2075         * man.el (Man-goto-section): Signal error if the section is not
2076         found (Bug#5317).
2078 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
2080         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
2081         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
2083 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
2085         * progmodes/compile.el: Don't treat compile-command as safe if
2086         compilation-read-command might be nil (Bug#4218).
2088 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
2090         * startup.el (command-line-1): Use orig-argi to check for ignored X and
2091         NS options.
2093 2010-01-08  Kenichi Handa  <handa@m17n.org>
2095         * international/fontset.el (build-default-fontset-data):
2096         Exclude characters in scripts kana, hangul, han, or cjk-misc.
2098 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
2100         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
2101         to `create-file-buffer' as it expects, not just a buffer name.
2102         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
2103         to help uniquify.  (Bug#3224)
2105 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
2107         * font-setting.el (font-setting-change-default-font): Use user-spec
2108         instead of name.
2110 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
2112         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
2114 2010-01-05  Tom Tromey  <tromey@redhat.com>
2116         * progmodes/python.el (python-font-lock-keywords):
2117         Handle qualified decorators (Bug#881).
2119 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2121         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
2122         in a lightweight checkout.
2124 2010-01-05  Kenichi Handa  <handa@m17n.org>
2126         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
2128 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2130         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
2132 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
2134         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
2135         checkouts.  (Bug#618)
2136         (vc-bzr-log-view-mode): Also highlight the author.
2137         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
2138         (vc-bzr-shelve-menu-map):
2139         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
2140         (vc-bzr-shelve-apply): Make prompt more explicit.
2142 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
2144         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
2145         They are valid characters in URL paths (rfc3986), and at least
2146         Firefox does not understand the encoded version (Bug#3166).
2148 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
2150         * progmodes/octave-mod.el (octave-end-keywords)
2151         (octave-block-begin-or-end-regexp, octave-block-match-alist):
2152         Add "end" keyword (Bug#3061).
2153         (octave-end-as-array-index-p): New function.
2154         (calculate-octave-indent): Use it.
2156 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2158         * bookmark.el: Consistently put the text property on the bookmark name.
2159         (bookmark-bmenu-marks-width): Bump back to 2, to include
2160         annotation marks.
2161         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
2162         property on the bookmark name, instead of not putting it at all.
2163         (bookmark-bmenu-list): Fix where we put the text property.
2165 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2167         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
2168         for showing buffer modified state (as added in the previous change).
2170 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2172         * bookmark.el: Show modified state of bookmark buffer more accurately.
2173         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
2174         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
2175         (with-buffer-modified-unmodified): New macro.
2176         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
2177         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
2178         Use new macro to preserve the buffer modified state.
2180 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2182         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
2183         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
2184         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
2185         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
2186         (bookmark-bmenu-rename, bookmark-bmenu-locate)
2187         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
2188         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
2190 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
2192         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
2193         Make the lines in the generated doc string shorter.  (Bug#4668)
2195 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
2197         * net/rcirc.el: Add follow-link binding (Bug#4738).
2199 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
2201         * Makefile.in (bzr-update): Rename from cvs-update.
2202         (cvs-update): New target for backward compatibility.
2204         * makefile.w32-in (bzr-update): Rename from cvs-update.
2205         (cvs-update): New target for backward compatibility.
2207 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2209         * bookmark.el: Remove gratuitous gratitude.
2211 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2213         * bookmark.el (bookmark-bmenu-any-marks): New function
2214         (bookmark-bmenu-save): Clear buffer modification if no marks.
2216 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2218         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
2219         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
2220         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
2221         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
2223         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
2224         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
2225         To: emacs-devel {_AT_} gnu.org
2226         Subject: bookmark.el bug report
2227         Date: Mon, 28 Dec 2009 14:19:16 +0800
2228         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
2230 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2232         * bookmark.el: Improvements suggested by Drew Adams:
2233         (bookmark-bmenu-ensure-position): New name for
2234         `bookmark-bmenu-check-position'.  Just ensure the position,
2235         don't return any meaningful value.
2236         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
2237         New constants.
2239 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
2241         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
2242         (bookmark-yank-point, bookmark-bmenu-check-position):
2243         Fix typos in docstrings.
2244         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
2245         (bookmark-name-from-full-record, bookmark-get-position)
2246         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
2247         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
2248         Remove useless quoting of parenthesis, etc. in docstrings.
2250         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
2251         (ediff-append-custom-diff): Fix typo in error message.
2252         (ediff-meta-mark-equal-files): Fix typos in messages.
2254         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
2256         * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
2257         Fix typo in docstring.
2259         * net/imap-hash.el (imap-hash-make): Doc fix.
2260         (imap-hash-test): Fix typo in error message; reflow docstring.
2261         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
2262         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
2263         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
2264         Fix typos in docstrings.
2265         (imap-hash-open-connection): Fix typo in error message.
2267         * play/gomoku.el (gomoku): Fix typos in docstring.
2269         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
2270         (gdb-jsonify-buffer): Fix typos in docstring.
2271         (gdb-goto-breakpoint): Fix typo in error message.
2272         ("Display Other Windows"): Fix typo in help message.
2273         (gdb-speedbar-expand-node): Fix typo in question.
2275         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
2276         (idlwave-html-system-help-location, idlwave-html-help-location)
2277         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
2278         (idlwave-help-browser-generic-args, idlwave-help-directory)
2279         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
2280         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
2281         (idlwave-online-help, idlwave-help-html-link)
2282         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
2283         Fix typos in docstrings.
2284         (idlwave-help-with-source, idlwave-help-find-routine-definition):
2285         Reflow docstrings.
2286         (idlwave-help-assistant-start): Fix typo in error message.
2288         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
2289         (octave-electric-space): Fix typos in docstrings.
2291 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
2293         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
2295 2010-01-01  Juri Linkov  <juri@jurta.org>
2297         * comint.el (comint-input-ring-size): Make it a defcustom and
2298         increase the default to 500 (Bug#5148).
2300 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
2302         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
2303         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
2304         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
2306 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
2308         Show working revision correctly for mercurial.
2309         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
2310         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
2312 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
2314         Declare some functions for the byte-compiler.
2315         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
2316         (speedbar-timer-fn, speedbar-change-expand-button-char)
2317         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
2319 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
2321         This changeset reverts GDB Graphical Interface to use annotations.
2322         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
2324 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
2326         Make vc-dir work on subdirectories of the bzr root.
2327         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
2328         file names relative to it.
2329         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
2330         relative directory to vc-bzr-after-dir-status.
2332 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
2334         * font-lock.el (font-lock-refresh-defaults): New function, which
2335         can be used to let font-lock react to external changes in
2336         variables like font-lock-defaults and keywords.
2337         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
2339 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
2341         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
2343         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
2345 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
2347         Supersede color.diff settings in git log (bug#5211).
2349         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
2350         escape chars in its output when the user has color.diff set to `always'.
2351         This fix works on git 1.4.2 and newer (released on 2006-08-13).
2353 2009-12-26  Kevin Ryde  <user42@zip.com.au>
2355         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
2356         node.  Keep previous "Index" name to work with past coreutils too.
2358         * man.el (man): Revise docstring a bit to show -a and -l as
2359         examples.  Add -k description since support for it has otherwise
2360         been a secret.  (Further to bug#3717.)
2361         (Man-bgproc-sentinel): When "-k foo" produces no output show error
2362         "no matches" rather than "Can't find manpage", as the latter reads
2363         like -k was interpreted as a page name, which is not so.  (Bug#5431)
2365 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
2367         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
2368         switches.  Check also for //SUBDIRED// line.
2370 2009-12-25  Kenichi Handa  <handa@m17n.org>
2372         * language/indian.el (devanagari-composable-pattern): Fixed to
2373         handle ZWNJ and ZWJ.  Use it in composition-function-table for
2374         Devanagari.
2375         (malayalam-composable-pattern): Fix previous change.
2377 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2379         * ps-print.el (ps-face-attributes): It was not returning the
2380         attribute face for faces specified as string.  Reported by harven
2381         <harven@free.fr>.
2382         (ps-print-version): New version 7.3.5.
2384 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
2386         * calendar/icalendar.el (icalendar--convert-tz-offset):
2387         Fix timezone names.
2388         (icalendar--convert-tz-offset): Fix the "last-day-problem".
2389         (icalendar--add-diary-entry): Remove the trailing blank that
2390         diary-make-entry inserts.
2392 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
2394         Make `file-expand-wildcards' work for remote files.
2396         * files.el (file-expand-wildcards): In case of remote files, check
2397         only local file name part for wildcards.  Provide feature 'files
2398         and subfeature 'remote-wildcards.  (Bug#5198)
2400         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
2401         if there is already an established connection.
2402         (tramp-advice-file-expand-wildcards): Remove it.
2404         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
2405         (tramp-advice-file-expand-wildcards): Move from tramp.el.
2406         Activate advice for older GNU Emacs versions.  (Bug#5237)
2408 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
2410         Some doc fixes (more needed).
2412         * find-cmd.el (find-constituents): Reflow docstring.
2413         (find-cmd, find-prune, find-command): Fix typos in docstrings.
2414         (find-generic): Doc fix.
2416 2009-12-17  Juri Linkov  <juri@jurta.org>
2418         Fix regression from 23.1 to allow multiple modes in Local Variables.
2420         * files.el (hack-local-variables-filter): While ignoring duplicates,
2421         don't take `mode' into account.
2422         (hack-local-variables-filter, hack-dir-local-variables):
2423         Don't remove duplicate `mode' from local-variables-alist (like `eval').
2425 2009-12-17  Juri Linkov  <juri@jurta.org>
2427         Make `dired-diff' safer.  (Bug#5225)
2429         * dired-aux.el (dired-diff): Signal an error when `file' equals to
2430         `current' or when `file' is a directory of the `current' file.
2432 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
2434         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
2435         unconditionally preloaded files.
2437 2009-12-16  Juri Linkov  <juri@jurta.org>
2439         Revert to old 23.1 logic of using the file at the mark as default.
2440         * dired-aux.el (dired-diff): Use the file at the mark as default
2441         if it's not the same as the current file, and the target dir is
2442         the current dir or the mark is active.  Add the current file
2443         as the arg of `dired-dwim-target-defaults'.  Use the default file
2444         in the prompt.  (Bug#5225)
2446 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
2448         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
2449         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
2450         (tramp-check-for-regexp): Check also, when an echoing shell stops
2451         to echo sent commands.
2453 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
2455         * Makefile.in: Revert last change (Bug#5191).
2457 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
2459         * vc-hg.el (vc-hg-print-log): Fix argument order.
2460         (vc-hg-working-revision): Make sure the command is executed in a
2461         known environment so that we can parse the output.  (Bug#4417)
2463 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
2465         * progmodes/python.el (python-symbol-completions): Remove text
2466         properties from symbol string before calling python-send-receive.
2468 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
2470         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
2471         when there are values for both file and line.  (Bug#5060)
2473 2009-12-14  Juri Linkov  <juri@jurta.org>
2475         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
2476         whitespace after the file name of the first line of unified format,
2477         because git-diff doesn't output whitespace and file modification time
2478         after the file name.
2480 2009-12-14  David Kastrup  <dak@gnu.org>
2482         * info.el (Info-hide-cookies-node): Before hiding a cookie,
2483         check if it already has the `display' property added by
2484         `Info-display-images-node', and not put the `invisible' property
2485         in this case.
2487 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
2489         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
2490         (semantic-mru-bookmark-mode): Doc fixes.
2492         * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
2493         of assert.
2495 2009-12-13  Glenn Morris  <rgm@gnu.org>
2497         * mail/emacsbug.el (message-sort-headers): Define for compiler.
2498         (report-emacs-bug): In message-mode, sort manually before storing
2499         original report text.  (Bug#5178)
2500         Remove superfluous save-excursion.
2502 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
2504         * net/dbus.el (dbus-property-handler): Filter lambda forms out
2505         when responding to "GetAll" properties.
2507 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
2509         * simple.el (compose-mail): Remove mail-setup-with-from from
2510         customization checks.
2512 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
2514         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
2515         RAR archives created on Unix systems.
2517 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2519         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
2520         the varalias that was accidentally removed by the 2009-11-19 change
2521         (bug#5186).
2523 2009-12-12  Kenichi Handa  <handa@m17n.org>
2525         * language/indian.el (indian-compose-regexp): New function.
2526         (malayalam-composable-pattern): Fix the pattern.
2527         (composition-function-table): Set malayalam-composable-pattern for
2528         Malayalam characters.
2530 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
2532         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
2533         rather than down-mouse-1, based on follow-link conventions.
2535         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
2536         are compiled.
2538 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
2540         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
2541         (verilog-vmm-statement-re, verilog-ovm-statement-re)
2542         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
2543         (verilog-leap-to-head, verilog-backward-token):
2544         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
2546 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
2548         * progmodes/verilog-mode.el (verilog-auto-lineup)
2549         (verilog-nameable-item-re): Cleanup user-visible spelling and
2550         documentation errors.  One reported by Gary Delp.
2551         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
2552         (verilog-read-decls): Fix AUTOWIRE with types declared in a
2553         package, bug195.  Reported by Pierre-David Pfister.
2555 2009-12-11  Glenn Morris  <rgm@gnu.org>
2557         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
2559         * mail/emacsbug.el: No longer require sendmail.
2560         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
2561         (report-emacs-bug-orig-text): Doc fix.
2562         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
2563         New local variables, to adapt to different mail-user-agents.
2564         (report-emacs-bug): Fix test for a gnu.org address.
2565         Use overlays for emphasis, since font-lock defeats 'face property.
2566         Pretest bugs also end up at the newsgroup these days.
2567         Stop message-mode stripping text properties.
2568         Set and use the new buffer-local variables.
2569         (report-emacs-bug-hook): Add doc-string.
2570         Remove some unnecessary save-excursions and simplify.
2571         Use the appropriate hook and send-command.
2573         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
2574         capitalization of some menu entries.
2576 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2578         * whitespace.el (whitespace-display-char-on): Ensure
2579         `buffer-display-table' is unique when two or more windows are
2580         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
2581         New version 12.1.
2583 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
2585         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
2586         characters in the Attribute field.
2588 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
2590         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
2592 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2594         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
2595         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
2596         Disregard autoload-excludes.
2597         (update-directory-autoloads): Obey autoload-excludes here instead.
2598         But don't store its contents in no-autoloads and remove entries that
2599         refer to excludes files.
2601 2009-12-10  Glenn Morris  <rgm@gnu.org>
2603         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
2604         (expand-mail-aliases): Define for compiler.
2606         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
2607         Define for compiler.
2609         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
2610         appropriate for the mail-user-agent in use.
2612 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
2614         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
2616 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
2618         Fix short log parsing and fontification.
2619         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
2620         Fix fontification for the [merge] label.
2622 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
2624         Drop some properties to avoid surprises (bug#5002).
2625         * htmlfontify.el (hfy-ignored-properties): New defcustom.
2626         (hfy-fontify-buffer): Use it.
2628 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2630         Minor cleanup.
2631         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
2632         Adjust all callers.
2633         (ffap-locate-file): Remove unused arg `dir-ok' and make other
2634         args compulsory.  Adjust callers.
2635         (ffap-gopher-at-point): Remove unused var `name'.
2637         Get rid of the ELCFILES abomination.
2638         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
2639         (compile-elcfiles): New phony target.
2640         (compile-main): Compute ELCFILES dynamically.
2641         (compile-clean): New target to remove left-over elc files.
2642         (compile, all): Use it.
2644 2009-12-09  Kenichi Handa  <handa@etlken>
2646         * international/mule-diag.el: Require help-mode instead of help-fns.
2648 2009-12-09  Kenichi Handa  <handa@m17n.org>
2650         * international/mule-cmds.el (ucs-names): Supply sufficiently
2651         fine ranges instead of pre-calculating accurate ranges.
2652         Iterate with bigger gc-cons-threshold.
2654 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
2656         Add support for stashing a snapshot of the current tree.
2657         * vc-git.el (vc-git-stash-snapshot): New function.
2658         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
2660 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
2662         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
2663         instead of `(beginning|end)-of-line'.
2665 2009-12-08  Glenn Morris  <rgm@gnu.org>
2667         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
2669         * Makefile.in (ELCFILES): Regenerate.
2671 2009-12-07  Juri Linkov  <juri@jurta.org>
2673         Don't lazy-highlight the comint output in history Isearch mode.
2675         * comint.el (comint-history-isearch-search): Instead of
2676         `comint-line-beginning-position', use `comint-after-pmark-p'
2677         to check if point if before the process mark, and go to
2678         `process-mark' in this case.
2680 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2682         * textmodes/tex-mode.el (latex-complete)
2683         (latex-indent-or-complete): Remove.
2684         (latex-mode): Set completion-at-point-functions instead.
2686         Provide a standard completion command and hook it into TAB.
2687         * minibuffer.el (completion-at-point-functions): New var.
2688         (completion-at-point): New command.
2689         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
2690         * progmodes/python.el (python-mode-map): Use completion-at-point.
2691         (python-completion-at-point): Rename from python-partial-symbol and
2692         adjust for use in completion-at-point-functions.
2693         (python-mode): Setup completion-at-point for Python completion.
2694         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
2695         extracted from lisp-complete-symbol.
2696         (lisp-complete-symbol): Use it.
2697         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
2698         setup completion-at-point for Elisp completion.
2699         (emacs-lisp-mode-map, lisp-interaction-mode-map):
2700         Use completion-at-point.
2701         * ielm.el (ielm-map): Use completion-at-point.
2702         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
2703         * progmodes/sym-comp.el: Move to...
2704         * obsolete/sym-comp.el: Move from progmodes.
2706 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
2708         Prevent save-buffer in Rmail buffers from using the coding-system
2709         of the current message, and from clobbering the encoding mnemonics
2710         in the mode line (Bug#4623).
2712         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
2713         flag, too.
2714         (rmail-message-encoding): New variable.
2715         (rmail-write-region-annotate): Record the encoding of the current
2716         message in rmail-message-encoding.
2717         (rmail-after-save-hook): New function, restores the encoding of
2718         the current message after the message collection is saved.
2720 2009-12-07  Juri Linkov  <juri@jurta.org>
2722         * progmodes/grep.el (grep-read-files): Use `completing-read'
2723         instead of `read-string'.  Set its `collection' arg to
2724         `read-file-name-internal'.  (Bug#4301)
2726 2009-12-07  Juri Linkov  <juri@jurta.org>
2728         Correctly restore original Isearch point.  (Bug#4994)
2730         * isearch.el (isearch-mode): Move `isearch-push-state' after
2731         `(run-hooks 'isearch-mode-hook)'.
2732         (isearch-cancel): When `isearch-push-state-function' is defined,
2733         let-bind `isearch-cmds' to the first state (the last element of
2734         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
2735         function and restores the original point).  Otherwise, move point
2736         to `isearch-opoint'.
2738 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2740         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
2741         chars that don't have names, so the table can be built much faster at
2742         run-time.
2744 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
2746         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
2747         change.  Suggested by David Kastrup.
2749         * simple.el (compose-mail): Check for incompatibilities and warn.
2750         (compose-mail-user-agent-warnings): New option.
2752 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
2754         Support showing a single log entry from vc-annotate.
2755         * vc.el (print-log): Add a new argument: START-REVISION.
2756         (vc-print-log-internal): Add a new optional argument and
2757         pass it to the backend.
2758         (vc-print-log, vc-print-root-log): Adjust callers.
2759         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
2760         buffer already displays the requested log entry, use it.
2761         Otherwise display only the log entry in question.
2762         * vc-svn.el (vc-svn-print-log):
2763         * vc-mtn.el (vc-mtn-print-log):
2764         * vc-hg.el (vc-hg-state):
2765         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
2766         (vc-git-show-log-entry): Return t on success.
2767         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
2768         (vc-bzr-show-log-entry): Return t on success.
2769         * vc-rcs.el (vc-rcs-print-log):
2770         * vc-sccs.el (vc-sccs-print-log):
2771         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
2773 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
2775         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
2776         Add menus to the meta mode.  (Bug#5043)
2778 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
2780         * ediff-init.el (ediff-event-key): Use event-to-character instead of
2781         event-key.
2783         * ediff.el (ediff-buffers-internal): Add unwind-protect.
2785 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
2787         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
2788         Berbain <raphael.berbain@gmail.com>.
2790         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
2791         characters.
2792         (tramp-initial-end-of-output): New defconst.
2793         (tramp-methods, tramp-find-shell)
2794         (tramp-open-connection-setup-interactive-shell)
2795         (tramp-maybe-open-connection): Use it.
2796         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
2797         existence of `#' and `$'.
2799         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
2800         `tramp-initial-end-of-output'.
2802 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
2804         Get the background mode from the terminal for xterm, and set
2805         faces accordingly.
2806         * term/xterm.el (xterm-set-background-mode): New function.
2807         (terminal-init-xterm): Use it in case xterm supports background
2808         color queries.  Recompute faces after getting the background
2809         color.
2811 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
2813         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
2814         number comment back on its own line, for easier parsing.
2816 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2818         Make it work for non-file buffers (bug#5102).
2819         * doc-view.el (doc-view-current-cache-dir):
2820         Use doc-view-buffer-file-name rather than buffer-file-name.
2821         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
2823 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
2825         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
2826         author field is too short.
2828 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
2830         * vc-git.el (vc-git-print-log): Handle a limit argument.
2831         Display the short log in graph form and with labels.
2832         (vc-git-log-view-mode): Handle labels.
2834         Make vc-revert change VC state from 'added to 'unregistered.
2835         * vc-git.el (vc-git-revert): Call git reset first.
2837 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
2839         * net/newst-backend.el, net/newst-plainview.el:
2840         * net/newst-reader.el, net/newst-ticker.el:
2841         * net/newst-treeview.el, net/newsticker.el:
2842         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
2844 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
2846         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
2848         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
2849         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
2850         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
2851         Update annotation regexp.
2853         * simple.el (beginning-of-visual-line): Constrain to field
2854         boundaries (Bug#5106).
2856 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
2858         * xml.el (xml-substitute-numeric-entities): Move
2859         newsticker--decode-numeric-entities in newst-backend.el to
2860         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
2861         * net/newst-backend.el (newsticker--parse-generic-feed)
2862         (newsticker--parse-generic-items)
2863         (newsticker--decode-numeric-entities): Move
2864         newsticker--decode-numeric-entities in newst-backend.el to
2865         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
2867 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
2869         * progmodes/js.el (js--js-not): Add null to the list of values.
2871 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
2873         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
2875 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2877         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
2878         delimiter if it is at the end of the current line.
2879         (bibtex-generate-url-list): Fix docstring.
2881 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2883         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
2884         minibuffer's content with itself.
2885         Fold the confirm-after-completion case into the `confirm' case.
2886         (completion-pcm-word-delimiters): Add : and / to the delimiters.
2888 2009-12-06  Kevin Ryde  <user42@zip.com.au>
2890         * ffap.el (ffap-rfc-path): Make this a defcustom since
2891         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
2893         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
2894         manuals, similar to existing setup for help-mode.  (Bug#3913.)
2896 2009-12-05  Juri Linkov  <juri@jurta.org>
2898         Save and restore dired buffer's point positions too.  (Bug#4880)
2900         * dired.el (dired-save-positions): Return in the first element
2901         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
2902         Doc fix.
2903         (dired-restore-positions): First restore buffer's position.
2904         While restoring window's positions, check if window still displays
2905         the original buffer.
2907 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
2909         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
2910         if possible.
2912         * cedet/semantic/ia.el (semantic-ia-complete-symbol):
2913         Make argument optional.
2915         * shell.el (shell): Require ansi-color (Bug#5113).
2917         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
2919         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
2921 2009-12-05  Alan Mackenzie  <acm@muc.de>
2923         * progmodes/cc-mode.el (c-before-hack-hook)
2924         (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
2925         `c-file-style' to work again.  This reversion restores the current
2926         software to its state in Emacs 23.1.  (Bug#4146)
2928 2009-12-05  Kevin Ryde  <user42@zip.com.au>
2930         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
2931         comment-start-skip to comment-end-skip as comment (Bug#4781).
2933 2009-12-05  Juri Linkov  <juri@jurta.org>
2935         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
2936         for virtual nodes.  (Bug#4147)
2937         (Info-find-node-2): Set `Info-current-node-virtual' to nil
2938         when moving from a virtual node.
2939         (Info-mode-menu): Add `Info-virtual-index' to the menu.
2940         (Info-mode): Add `Info-virtual-index' to the docstring.
2942 2009-12-05  Eric Ludlam  <zappo@gnu.org>
2944         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
2945         Describe project macro symbols.
2947         * cedet/semantic/complete.el (semantic-complete-do-completion):
2948         Don't call semantic-collector-current-exact-match.
2950         * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
2951         ede-objects as targets.
2953         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
2954         a target's object list even if compiler vars are already in the
2955         Makefile.
2957         * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
2958         list of headers producing necessary macros.
2960 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2962         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
2963         track of the buffer position of the end of a BibTeX entry as this
2964         position may change during reformatting.
2965         (bibtex-format-entry): Remove whitespace before processing
2966         numerical fields so that we recognize the latter properly.
2967         (bibtex-reformat): Do not use push which changes the global value
2968         of bibtex-entry-format.
2969         (bibtex-field-braces-alist, bibtex-field-strings-alist)
2970         (bibtex-field-re-init): Replace only space characters by regexp
2971         for whitespace.
2972         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
2973         (bibtex-initialize): Also update bibtex-strings.
2974         (bibtex-kill-field): Preserve white space at end of entry.
2975         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
2976         Update bibtex-reference-keys.
2978 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2980         * minibuffer.el (completion-pcm--merge-try): Also consider placing
2981         point after a star, if that's the only place where modifications can
2982         make progress.
2984 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
2986         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
2987         in docstrings.
2989 2009-12-04  Juri Linkov  <juri@jurta.org>
2991         * proced.el (proced): Call `(proced-update t)' to update process
2992         information instead of only running proced-post-display-hook.
2993         (proced-send-signal): Add a leading space to the buffer name
2994         " *Marked Processes*" to make this buffer ephemeral.
2996 2009-12-04  Juri Linkov  <juri@jurta.org>
2998         * dired.el (dired-auto-revert-buffer): New defcustom.
2999         (dired-internal-noselect): Use it.
3001 2009-12-04  Juri Linkov  <juri@jurta.org>
3003         Change roles of modes and functions in image-mode.el (Bug#5062).
3005         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
3006         in `auto-mode-alist'.
3007         (image-mode-previous-major-mode): New variable.
3008         (image-minor-mode-map): Rename from `image-mode-text-map'.
3009         (image-mode): Move graceful error-handling code from
3010         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
3011         (image-minor-mode): Remove all image-handling code.
3012         Replace `image-mode-text-map' with `image-minor-mode-map'.
3013         Check for `image-type' in mode-line format string.
3014         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
3015         (image-mode-as-text): New function with most code from
3016         `image-mode-maybe'.
3017         (image-toggle-display-text): Move code that removes image
3018         properties from `image-toggle-display' to here.
3019         (image-toggle-display-image): New function with code that adds
3020         image properties copied from `image-toggle-display'.
3021         (image-toggle-display): Remove most code with leaving only code
3022         that toggles between `image-mode-as-text' and `image-mode'.
3024 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
3026         * net/newst-treeview.el
3027         (newsticker--treeview-list-highlight-start): Restored call to
3028         save-excursion: Selected item was stuck.
3029         (newsticker--treeview-list-select): New.
3030         (newsticker--treeview-item-show-text)
3031         (newsticker--treeview-item-show)
3032         (newsticker--treeview-item-update): Use new
3033         newsticker-treeview-item-mode.
3034         (newsticker-treeview-update): Keep current item.
3035         (newsticker-treeview-next-new-or-immortal-item): Doc change.
3036         (newsticker--treeview-first-feed): Doc change.
3037         (newsticker-treeview-list-menu)
3038         (newsticker-treeview-item-menu): Added menu entries.
3039         (newsticker-treeview-item-mode): New.
3041         * net/newst-backend.el (newsticker-customize): Delete other
3042         windows.
3044 2009-12-04  Sam Steingold  <sds@gnu.org>
3046         * log-view.el (log-view-mode-map): "q" calls quit-window,
3047         like in all the other non-self-insert buffers.
3049 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3051         Minor cleanup.
3052         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
3053         key decoding rather than do it manually via last-input-event +
3054         ascii-character.
3055         (term-exec): Use delete-and-extract-region.
3056         (term-handle-ansi-terminal-messages): Remove unused var `end'.
3057         (term-process-pager): Remove unused var `i'.
3058         (term-dynamic-simple-complete): Make obsolete.
3059         (serial-update-config-menu): Remove unused vars `y' and `str'.
3060         (term-update-mode-line): Remove unused var `temp'.
3062 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3064         Limit the number of log entries displayed by default.
3065         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
3066         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
3067         using a prefix argument.
3069 2009-12-03  Glenn Morris  <rgm@gnu.org>
3071         * progmodes/idlwave.el (class): Restore still useful declaration.
3073 2009-12-03  Alan Mackenzie  <acm@muc.de>
3075         Enhance `c-parse-state' to run efficiently in "brace deserts".
3077         * progmodes/cc-mode.el (c-basic-common-init):
3078         Call c-state-cache-init.
3079         (c-neutralize-syntax-in-and-mark-CPP): Rename from
3080         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
3081         placing `category' properties value 'c-cpp-delimiter at its boundaries.
3083         * progmodes/cc-langs.el (c-before-font-lock-function):
3084         c-extend-and-neutralize-syntax-in-CPP has been renamed
3085         c-neutralize-syntax-in-and-mark-CPP.
3087         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
3088         with `category' properties now, not `syntax-table' ones.
3090         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
3091         enhanced (but slower) version of c-end-of-macro that won't land
3092         inside a literal or on another awkward character.
3093         (c-state-cache-too-far, c-state-cache-start)
3094         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
3095         (c-state-nonlit-pos-cache-limit, c-state-point-min)
3096         (c-state-point-min-lit-type, c-state-point-min-lit-start)
3097         (c-state-min-scan-pos, c-state-brace-pair-desert)
3098         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
3099         buffer local variables.
3100         (c-state-literal-at, c-state-lit-beg)
3101         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
3102         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
3103         (c-state-cache-top-paren, c-state-cache-after-top-paren)
3104         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
3105         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
3106         (c-renarrow-state-cache)
3107         (c-append-lower-brace-pair-to-state-cache)
3108         (c-state-push-any-brace-pair, c-append-to-state-cache)
3109         (c-remove-stale-state-cache)
3110         (c-remove-stale-state-cache-backwards, c-state-cache-init)
3111         (c-invalidate-state-cache-1, c-parse-state-1)
3112         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
3113         (c-parse-state): Enhance and refactor.
3114         (c-debug-parse-state): Amend to deal with all the new variables.
3116         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
3117         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
3118         modify to use category text properties rather than syntax-table ones.
3119         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
3120         to switch off/on the syntactic paren property of C++ template
3121         delimiters using the category property.
3122         (c-with-<->-as-parens-suppressed): Macro to invoke code with
3123         template delims suppressed.
3124         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
3125         New constant/macros which apply category properties to the start
3126         and end of preprocessor constructs.
3127         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
3128         "comment out" the syntactic value of characters in preprocessor
3129         constructs.
3130         (c-with-cpps-commented-out)
3131         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
3132         with characters in all or all but one preprocessor constructs
3133         "commented out".
3135 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3137         * proced.el (proced-filter-alist): Use regexp-quote.
3139 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
3141         Cleanup.
3142         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
3143         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
3144         arguments.  Expand `default-directory'.
3146         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
3147         the benefit of returning an expanded localname.
3148         (tramp-tramp-file-p): Handle the case NAME is not a string.
3150 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3152         Add support for bzr shelve/unshelve.
3153         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
3154         (vc-bzr-extra-menu-map): New variables.
3155         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
3156         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
3157         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
3158         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
3159         (vc-bzr-dir-extra-headers): Display shelves.
3161         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
3163 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3165         * textmodes/bibtex.el (bibtex-complete-internal):
3166         Use completion-in-region.
3167         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
3169 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3171         Support applying stashes.  Improve UI.
3172         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
3173         (vc-git-stash-apply, vc-git-stash-pop)
3174         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
3175         (vc-git-stash-menu): New functions.
3176         (vc-git-stash-menu-map): New variable.
3177         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
3179 2009-12-03  Glenn Morris  <rgm@gnu.org>
3181         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
3182         (vc-print-log-internal): Fix previous change.
3183         (vc-revert): Correct pluralization.
3185 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3187         * progmodes/make-mode.el (makefile-special-targets-list): No need for
3188         it to be an alist any more.
3189         (makefile-complete): Use completion-in-region.
3191         * progmodes/octave-mod.el (octave-complete-symbol):
3192         Use completion-in-region.
3194         Misc cleanup.
3195         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
3196         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
3197         (idlwave-complete-class): Don't quote lambda.
3198         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
3199         (idlwave-mode-map): Move initialization into declaration.
3200         (idlwave-action-and-binding): Use backquotes.
3201         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
3202         Simplify.
3203         (idlwave-is-pointer-dereference): Remove unused var `pos'.
3204         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
3205         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
3206         `parts', and `all-parts'.
3207         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
3208         (idlwave-convert-xml-system-routine-info): Remove unused string
3209         `version-string'.
3210         (idlwave-display-user-catalog-widget): Use dolist.
3211         (idlwave-scanning-lib): Declare dynamically-scoped var.
3212         (idlwave-scan-library-catalogs): Remove unused var `flags'.
3213         (completion-highlight-first-word-only): Declare to silence bytecomp.
3214         (idlwave-popup-select): Tighten scope of `resp'.
3215         (idlwave-find-struct-tag): Remove unused var `beg'.
3216         (idlwave-after-load-rinfo-hook): Declare.
3217         (idlwave-sintern-class-info): Remove unused var `taglist'.
3218         (idlwave-find-class-definition): Remove unused var `list'.
3219         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
3220         (idlwave-what-module-find-class): Remove unused var `classes'.
3222 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
3224         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
3226 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3228         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
3229         buffers visited.  Remove redundant current-buffer-saving.
3231 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3233         Use completion-in-buffer and remove uses of dynamic scoping.
3234         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
3235         (pascal-buffer-to-use, pascal-flag): Don't declare.
3236         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
3237         (pascal-get-completion-decl, pascal-keyword-completion):
3238         Add `pascal-str' argument, save-excursion,
3239         return the found completions, and don't filter with pascal-pred.
3240         (pascal-completion-cache): New var.
3241         (pascal-completion): Don't switch buffer any more (it was never
3242         necessary).  Don't save-excursion any more (it's done by the called
3243         subroutines).  Use a cache to avoid redundant computations.
3244         Use complete-with-action rather than pascal-completion-response and
3245         let it apply the predicate as well.
3246         (pascal-complete-word): Use completion-in-buffer when
3247         pascal-toggle-completions is nil.
3248         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
3249         not used any more.
3250         (pascal-comp-defun): Don't change buffer any more.
3251         Use complete-with-action rather than pascal-completion-response and
3252         let it apply the predicate as well.
3253         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
3254         when neded.
3256 2009-12-02  Kenichi Handa  <handa@m17n.org>
3258         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
3259         shape for all Indic scripts.
3261 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3263         Use completion-in-buffer.
3264         * wid-edit.el (widget-field-text-end): New function.
3265         (widget-field-value-get): Use it.
3266         (widget-string-complete, widget-file-complete)
3267         (widget-color-complete): Use it and completion-in-region.
3268         (widget-complete): Don't narrow the buffer.
3270 2009-12-02  Glenn Morris  <rgm@gnu.org>
3272         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
3273         (rmail-select-summary): Use rmail-pop-to-buffer.
3274         * mail/rmailsum.el: Replace all pop-to-buffer calls with
3275         rmail-pop-to-buffer, to prevent horizontal splits.
3277         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
3278         save-excursion with save-current-buffer.
3279         Widen before searching.  (Bug#5093)
3280         (diary-list-sexp-entries): Remove superfluous save-excursion.
3282 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
3284         * woman.el (woman-make-bufname): Handle man-pages with "." in the
3285         name.  (Bug#5038)
3287 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
3289         * ido.el (ido-file-internal): Handle filenames at point that do
3290         not have a directory part.  (Bug#5049)
3292 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
3294         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
3295         (mpc-songs-jump-to, mpc-resume): Doc fixes.
3297 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
3299         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
3300         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
3301         any more.
3303 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3305         * comint.el (comint-insert-input): Ignore clicks to the right of
3306         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
3308         * vc.el (vc-print-log-internal): Don't wait for the process to
3309         terminate before setting up the major mode.
3311         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
3312         in case.
3314         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
3315         the last element.
3317         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
3319 2009-12-01  Glenn Morris  <rgm@gnu.org>
3321         * window.el (window--display-buffer-2): Fix previous changes.
3323 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
3325         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
3327 2009-12-01  Glenn Morris  <rgm@gnu.org>
3329         * Makefile.in (ELCFILES): Add mpc.elc.
3331 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3333         * mpc.el: New file.
3335 2009-12-01  Glenn Morris  <rgm@gnu.org>
3337         * window.el (window-to-use): Define for compiler.
3339         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
3340         consistent with others (no final period).
3342         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
3343         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
3345 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
3347         Make vc-print-log buttons work.
3348         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
3350 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
3352         * savehist.el (savehist-autosave-interval): Allow setting to nil
3353         through customize.  (Bug#5056)
3355 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
3357         Fix references to jit-lock properties.
3358         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
3359         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
3360         (perl-font-lock-special-syntactic-constructs):
3361         Quote jit-lock-defer-multiline property.
3363 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
3365         * vc-git.el (vc-git-registered): Call vc-git-root only once.
3367 2009-11-30  Juri Linkov  <juri@jurta.org>
3369         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
3370         value `buffer' of `multi-isearch-next-buffer-current-function'.
3371         Use `(current-buffer)' when `buffer' is nil.
3372         (multi-isearch-next-buffer-from-list): Don't fallback to
3373         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
3375 2009-11-30  Juri Linkov  <juri@jurta.org>
3377         * misearch.el (multi-isearch-read-buffers): Move canonicalization
3378         of buffers with `get-buffer' to `multi-isearch-buffers'.
3379         (multi-isearch-buffers, multi-isearch-buffers-regexp):
3380         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
3381         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
3382         FILES with `expand-file-name' converting relative file names
3383         to absolute.  Doc fix.  (Bug#4727)
3385 2009-11-30  Juri Linkov  <juri@jurta.org>
3387         * misearch.el (multi-isearch-read-buffers)
3388         (multi-isearch-read-matching-buffers): New functions.
3389         (multi-isearch-buffers, multi-isearch-buffers-regexp):
3390         Use them in the `interactive' spec.  Doc fix.
3391         (multi-isearch-read-files, multi-isearch-read-matching-files):
3392         New functions.
3393         (multi-isearch-files, multi-isearch-files-regexp):
3394         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
3396 2009-11-30  Juri Linkov  <juri@jurta.org>
3398         * doc-view.el (doc-view-continuous):
3399         Rename from `doc-view-continuous-mode'.
3400         (doc-view-menu): Move "Toggle display" to the top.
3401         Add submenu "Continuous" with radio buttons "Off"/"On"
3402         and "Save as Default".
3403         (doc-view-scroll-up-or-next-page)
3404         (doc-view-scroll-down-or-previous-page)
3405         (doc-view-next-line-or-next-page)
3406         (doc-view-previous-line-or-previous-page): Rename
3407         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
3409 2009-11-30  Juri Linkov  <juri@jurta.org>
3411         * comint.el (comint-mode-map): Rebind `M-r' from
3412         `comint-previous-matching-input' to
3413         `comint-history-isearch-backward-regexp'.
3414         Unbind `M-s' to allow global key binding `M-s'.
3415         Add menu items for `comint-history-isearch-backward' and
3416         `comint-history-isearch-backward-regexp'.  (Bug#3746)
3418 2009-11-30  Juri Linkov  <juri@jurta.org>
3420         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
3421         For def=recenter, replace `recenter' with `recenter-top-bottom'
3422         that is called with `this-command' and `last-command' let-bound
3423         to `recenter-top-bottom'.  When the last `def' was not `recenter',
3424         set `recenter-last-op' to nil.  (Bug#4981)
3426 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3428         Minor cleanup and simplification.
3429         * filecache.el (file-cache-add-directory)
3430         (file-cache-add-directory-recursively)
3431         (file-cache-add-from-file-cache-buffer)
3432         (file-cache-delete-file-regexp, file-cache-delete-directory)
3433         (file-cache-files-matching-internal, file-cache-display): Use dolist.
3434         (file-cache-temp-minibuffer-message): Delete function.
3435         (file-cache-minibuffer-complete): Use minibuffer-message instead.
3437         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
3438         Don't signal an error when bumping into EOB in tr, s, or y.
3440 2009-11-29  Juri Linkov  <juri@jurta.org>
3442         * startup.el (fancy-about-text): Fix wording of Guided Tour.
3443         (Bug#4960)
3445         * descr-text.el (describe-char-unidata-list): Use lowercase name
3446         for "Unicode name" like in other tags.
3448 2009-11-29  Juri Linkov  <juri@jurta.org>
3450         * ediff-util.el (ediff-minibuffer-with-setup-hook):
3451         New compatibility macro.
3452         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
3454 2009-11-29  Juri Linkov  <juri@jurta.org>
3456         Add defcustom to define the cycling order of `recenter-top-bottom'.
3457         (Bug#4981)
3459         * window.el (recenter-last-op): Doc fix.
3460         (recenter-positions): New defcustom.
3461         (recenter-top-bottom): Rewrite to use `recenter-positions'.
3462         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
3464 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
3466         Improve integration of Tramp and ange-ftp in eshell.
3468         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
3469         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
3470         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
3472         * eshell/esh-util.el (top): Require also Tramp when compiling.
3473         (eshell-directory-files-and-attributes): Check for FTP remote
3474         connection.
3475         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
3476         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
3477         (eshell-file-attributes): Handle ".".  Return `entry'.
3479         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
3480         (ange-ftp-directory-files-and-attributes)
3481         (ange-ftp-real-directory-files-and-attributes): New defuns.
3483         * net/tramp.el (tramp-maybe-open-connection): Open the remote
3484         shell with "exec" when possible.  This prevents trailing prompts
3485         in `start-file-process'.
3487 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3489         Try and remove assumptions about point-min==1.
3490         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
3491         (rng-compute-mode-line-string): Show the validation percentage in
3492         terms of the narrowed text, not the widened text.
3493         (rng-do-some-validation): Don't catch internal errors when debugging.
3494         (rng-first-error): Simplify.
3495         (rng-after-change-function): Remove work around.  AFAIK the bug has
3496         been fixed a while ago.
3498         * image-mode.el (image-minor-mode): Exit more gracefully when the image
3499         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
3501         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
3503         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
3504         `cd' doesn't always do it for us (bug#5067).
3506         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
3507         on 2009-10-25 as part of some other change (bug#5067).
3509 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3511         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
3512         `suspicious'.
3513         (byte-compile-warnings): Use byte-compile-warning-types.
3514         (byte-compile-save-excursion): Warn about use of set-buffer right
3515         after save-excursion.
3517         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
3518         the excursion as well.
3520 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
3522         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
3523         providing a Tramp related implementation of "su" and "sudo".
3524         (eshell-unix-initialize): Add "su" and "sudo".
3526 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
3528         * net/socks.el (socks-send-command): Convert binary request to
3529         unibyte before sending.  This fixes mishandling of some port
3530         numbers such as 129.
3532 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3534         * help.el (describe-bindings-internal): Remove `interactive'.
3536         * man.el (Man-completion-table): Trim a terminating "(".
3537         Remove the space between name page a section.
3538         Add the command's description on the `help-echo' property.
3539         Remove `process-connection-type' binding since it's unused by
3540         call-process.
3541         Provide completion for the "<section> <name>" format as well.
3542         (Man-default-man-entry): Remove spurious var shadowing the argument.
3544 2009-11-26  Kevin Ryde  <user42@zip.com.au>
3546         * log-view.el: Add "Keywords: tools", since its other keywords
3547         aren't in finder-known-keywords, and following vc.el.
3549         * sha1.el (sha1-string-external): default-directory "/" in case
3550         otherwise non-existent.  process-connection-type pipe for touch of
3551         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
3553 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3555         Misc coding convention cleanups.
3556         * htmlfontify.el (hfy-init-kludge-hook): Rename from
3557         hfy-init-kludge-hooks.
3558         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
3559         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
3560         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
3561         and push.
3562         (hfy-slant, hfy-weight): Use tables rather than code.
3563         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
3564         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
3565         (hfy-face-attr-for-class): Initialize `face-spec' directly.
3566         (hfy-face-to-css): Remove `nconc' with single arg.
3567         (hfy-p-to-face-lennart): Use `or'.
3568         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
3569         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
3570         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
3571         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
3572         (hfy-force-fontification): Use run-hooks.
3574 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
3576         Various minor fixes.
3577         * htmlfontify.el (hfy-default-header): Add toggle_invis since
3578         Javascript belongs in the header, not the body.
3579         (hfy-javascript): Remove.
3580         (hfy-fontify-buffer): Don't insert it any more.
3581         (hfy-face-at): Handle (face0 face1 face2) style face properties.
3582         Fix bug in invis handling when there were no invis props in a chunk.
3584 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3586         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
3588 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
3590         * finder.el (finder-mode-map): Add a menu.
3592 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
3594         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
3595         "unsigned" structs.
3597         (verilog-leap-to-head, verilog-backward-token): Handle "disable
3598         fork" statement better.
3600 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
3602         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
3603         (verilog-delete-auto, verilog-delete-empty-auto-pair)
3604         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
3605         Reported by Clay Douglass.
3607         (verilog-auto-inst, verilog-auto-star-safe)
3608         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
3609         Fix removing "// Interfaces" when saving .* expansions.  Reported by
3610         Pierre-David Pfister.
3612 2009-11-26  Glenn Morris  <rgm@gnu.org>
3614         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
3615         the scope.
3617 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
3619         * vc-annotate.el (vc-annotate-revision-previous-to-line):
3620         Really use previous revision.
3622 2009-11-25  Kevin Ryde  <user42@zip.com.au>
3624         * man.el (Man-completion-table): default-directory "/" in case
3625         doesn't otherwise exist.  process-environment COLUMNS=999 so as
3626         not to truncate long names.  process-connection-type pipe to avoid
3627         any chance of hitting the pseudo-tty TIOCGWINSZ.
3628         (man): completion-ignore-case t for friendliness and since man
3629         itself is case-insensitive on the command line.
3630         Further to Bug#3717.
3632         * arc-mode.el: Add "Keywords: files", so the details in its
3633         commentary can be reached from finder-by-keyword.
3634         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
3635         editing mode, but it's comms related and sgml-mode.el has "comm"
3636         on that basis too.
3637         * textmodes/bibtex-style.el: Add "Keywords: tex".
3638         * international/isearch-x.el, international/ja-dic-cnv.el:
3639         * international/ja-dic-utl.el, international/kkc.el:
3640         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
3642 2009-11-25  Juri Linkov  <juri@jurta.org>
3644         * man.el (Man-completion-table): Modify regexp to include
3645         section names to completion strings.  (Bug#3717)
3647 2009-11-25  Juri Linkov  <juri@jurta.org>
3649         Search recursively in gzipped files.  (Bug#4982)
3651         * progmodes/grep.el (grep-highlight-matches): Add new options
3652         `always' and `auto'.  Doc fix.
3653         (grep-process-setup): Check `grep-highlight-matches' for
3654         `auto-detect' to determine the need to compute grep defaults.
3655         Move Windows/DOS specific --colors settings handling
3656         to `grep-compute-defaults'.  Check `grep-highlight-matches'
3657         to get the value of "--color=".
3658         (grep-compute-defaults): Compute `grep-highlight-matches' when it
3659         has the value `auto-detect'.  Move Windows/DOS specific settings
3660         from `grep-process-setup'.
3661         (zrgrep): New command with alias `rzgrep'.
3663 2009-11-25  Juri Linkov  <juri@jurta.org>
3665         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
3666         to nil instead of switching off view-mode.  (Bug#4896)
3668 2009-11-25  Juri Linkov  <juri@jurta.org>
3670         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
3672         * mwheel.el (mwheel-scroll-up-function)
3673         (mwheel-scroll-down-function): New defvars.
3674         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
3675         `scroll-up', and `mwheel-scroll-down-function' instead of
3676         `scroll-down'.
3678         * doc-view.el (doc-view-scroll-up-or-next-page)
3679         (doc-view-scroll-down-or-previous-page): Add optional ARG.
3680         Use this ARG in the call to image-scroll-up/image-scroll-down.
3681         Change `interactive' spec to "P".  Goto next/previous page only
3682         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
3683         SPC/DEL case).  Doc fix.
3684         (doc-view-next-line-or-next-page)
3685         (doc-view-previous-line-or-previous-page): Rename arg to ARG
3686         for consistency.
3687         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
3688         `doc-view-scroll-up-or-next-page', and buffer-local
3689         `mwheel-scroll-down-function' to
3690         `doc-view-scroll-down-or-previous-page'.
3692 2009-11-25  Juri Linkov  <juri@jurta.org>
3694         Provide additional default values (directories at other Dired
3695         windows) via M-n in the minibuffer of some Dired commands.
3697         * dired-aux.el (dired-diff, dired-compare-directories)
3698         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
3699         `minibuffer-default' in `minibuffer-with-setup-hook'.
3700         (dired-dwim-target-directory): Find a window that displays Dired
3701         buffer instead of failing when the next window is not Dired.
3702         Use `get-window-with-predicate' to find for the next Dired window.
3703         (dired-dwim-target-defaults): New function.
3705         * ediff-util.el (ediff-read-file-name):
3706         Use `dired-dwim-target-defaults' to set `minibuffer-default'
3707         in `minibuffer-with-setup-hook'.
3709 2009-11-25  Juri Linkov  <juri@jurta.org>
3711         Provide additional default values (file name at point or at the
3712         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
3714         * minibuffer.el (read-file-name-defaults): New function.
3715         (read-file-name): Reset `minibuffer-default' to nil when
3716         it duplicates initial input `insdef'.
3717         Bind `minibuffer-default-add-function' to lambda that
3718         calls `read-file-name-defaults' in `minibuffer-selected-window'.
3719         (minibuffer-insert-file-name-at-point): New command.
3721         * files.el (file-name-at-point-functions): New defcustom.
3722         (find-file-default): Remove defvar.
3723         (find-file-read-args): Don't use `find-file-default'.
3724         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
3725         to `read-file-name'.
3726         (find-file-literally): Use `read-file-name' with
3727         `confirm-nonexistent-file-or-buffer'.
3729         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
3731         * dired.el (dired-read-dir-and-switches):
3732         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
3733         to `read-file-name'.
3734         (dired-file-name-at-point): New function.
3735         (dired-mode): Add hook `dired-file-name-at-point' to
3736         `file-name-at-point-functions'.
3738 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3740         Really make the *Completions* window soft-dedicated (bug#5030).
3741         * window.el (window--display-buffer-2): Add `dedicated' argument.
3742         (display-buffer): Pass it when needed so the dedicated flag is set
3743         after calling set-window-buffer, which would otherwise reset it.
3745 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3747         * progmodes/meta-mode.el (meta-complete-symbol):
3748         * progmodes/etags.el (complete-tag):
3749         * mail/mailabbrev.el (mail-abbrev-complete-alias):
3750         Use completion-in-region.
3752         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
3753         (dabbrev-completion): Use completion-in-region.
3754         (dabbrev--abbrev-at-point): Simplify regexp.
3756         * abbrev.el (abbrev--before-point): Use word-motion functions
3757         if :regexp is not specified (bug#5031).
3759         * subr.el (string-prefix-p): New function.
3761         * man.el (Man-completion-cache): New var.
3762         (Man-completion-table): Use it.
3764         * vc.el (vc-print-log-internal): Make `limit' optional for better
3765         compatibility (e.g. with vc-annotate.el).
3767 2009-11-24  Kevin Ryde  <user42@zip.com.au>
3769         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
3770         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
3772         * emacs-lisp/elint.el (elint-add-required-env): Better error message
3773         when .el source file not found or other error.
3775 2009-11-24  Markus Triska  <markus.triska@gmx.at>
3777         * linum.el (linum-update-window): Ignore intangible (bug#4996).
3779 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3781         Handle the [back] button properly (bug#4979).
3782         * descr-text.el (describe-text-properties): Add a `buffer' argument.
3783         Use help-setup-xref, help-buffer, and with-help-window.
3784         (describe-char): Add `buffer' argument.
3785         Pass proper command to help-setup-xref.  Don't meddle with
3786         help-xref-stack-item directly.
3787         (describe-text-category): Use with-help-window and help-buffer.
3789         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
3790         for the displayed buffer (bug#4887).
3792         * man.el (Man-completion-table): New function.
3793         (man): Use it.
3795 2009-11-24  David Reitter  <david.reitter@gmail.com>
3797         * vc-git.el (vc-git-registered): Use checkout directory (where
3798         .git is) rather than the file's directory and a relative path spec
3799         to work around a bug in git.
3801 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
3803         Improve handling of processes on remote hosts.
3805         * eshell/esh-util.el (eshell-path-env): New defvar.
3806         (eshell-parse-colon-path): New defun.
3807         (eshell-file-attributes): Use `eshell-parse-colon-path'.
3809         * eshell/esh-ext.el (eshell-search-path):
3810         Use `eshell-parse-colon-path'.
3811         (eshell-remote-command): Remove argument HANDLER.
3812         (eshell-external-command): Check for FTP remote connection.
3814         * eshell/esh-proc.el (eshell-gather-process-output):
3815         Use `file-truename', in order to start also symlinked files.
3816         Apply `start-file-process' instead of `start-process'.
3817         Shorten `command' to the local file name part.
3819         * eshell/em-cmpl.el (eshell-complete-commands-list):
3820         Use `eshell-parse-colon-path'.
3822         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
3824         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
3825         to `eshell-directory-change-hook'.
3827 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
3829         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
3830         because it could be enabled automatically if view-read-only is non-nil.
3832 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
3834         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
3835         made on 2009-11-22.
3837 2009-11-24  Glenn Morris  <rgm@gnu.org>
3839         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
3840         deleted variable bookmark-bmenu-bookmark-column.
3842         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
3843         Move after definition of global-semantic-idle-tag-highlight-mode.
3845 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3847         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
3849 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
3851         * net/browse-url.el (browse-url-filename-alist): On Windows, add
3852         two slashes to the "file:" prefix.
3853         (browse-url-file-url): De-munge Cygwin filenames before passing
3854         them to Windows browser.
3855         (browse-url-default-windows-browser): Use call-process.
3857 2009-11-23  Juri Linkov  <juri@jurta.org>
3859         Implement DocView Continuous mode.  (Bug#4896)
3860         * doc-view.el (doc-view-continuous-mode): New defcustom.
3861         (doc-view-mode-map): Bind C-n/<down> to
3862         `doc-view-next-line-or-next-page', C-p/<up> to
3863         `doc-view-previous-line-or-previous-page'.
3864         (doc-view-next-line-or-next-page)
3865         (doc-view-previous-line-or-previous-page): New commands.
3867 2009-11-23  Juri Linkov  <juri@jurta.org>
3869         Implement Isearch in comint input history.  (Bug#3746)
3870         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
3871         `isearch-mode-hook'.
3872         (comint-history-isearch): New defcustom.
3873         (comint-history-isearch-backward)
3874         (comint-history-isearch-backward-regexp): New commands.
3875         (comint-history-isearch-message-overlay): New buffer-local variable.
3876         (comint-history-isearch-setup, comint-history-isearch-end)
3877         (comint-goto-input, comint-history-isearch-search)
3878         (comint-history-isearch-message, comint-history-isearch-wrap)
3879         (comint-history-isearch-push-state)
3880         (comint-history-isearch-pop-state): New functions.
3882 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
3884         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
3885         return.
3886         (tramp-handle-make-symbolic-link)
3887         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
3888         Quote file names.
3889         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
3890         (tramp-handle-process-file): Use it.
3892 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3894         * window.el (move-to-window-line-last-op): Remove.
3895         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
3897 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
3899         Make M-r mirror the new cycling behavior of C-l.
3900         * window.el (move-to-window-line-last-op): New var.
3901         (move-to-window-line-top-bottom): New command.
3902         (global-map): Bind M-r move-to-window-line-top-bottom.
3904 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
3906         * dired-x.el (dired-guess-shell-alist-default):
3907         Support xz format.  (Bug#4953)
3909 2009-11-22  Chong Yidong  <cyd@stupidchicken.com>
3911         * cedet/srecode/map.el (srecode-get-maps):
3912         * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
3913         * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
3914         * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
3915         (semantic-toggle-decoration-style):
3916         * cedet/semantic/decorate/include.el
3917         (semantic-decoration-include-describe)
3918         (semantic-decoration-unknown-include-describe)
3919         (semantic-decoration-unparsed-include-describe)
3920         (semantic-decoration-all-include-summary):
3921         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
3922         * cedet/semantic/analyze/complete.el
3923         (semantic-analyze-possible-completions):
3924         * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
3925         (semantic-show-unmatched-syntax-mode)
3926         (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
3927         (semantic-highlight-func-mode):
3928         * cedet/semantic/util.el (semantic-describe-buffer):
3929         * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
3930         (semantic-symref-find-tags-by-name)
3931         (semantic-symref-find-tags-by-regexp)
3932         (semantic-symref-find-tags-by-completion)
3933         (semantic-symref-find-file-references-by-name)
3934         (semantic-symref-find-text):
3935         * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
3936         (senator-yank-tag):
3937         * cedet/semantic/scope.el (semantic-calculate-scope):
3938         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
3939         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
3940         (define-semantic-idle-service):
3941         * cedet/semantic/complete.el (semantic-complete-analyze-inline)
3942         (semantic-complete-analyze-inline-idle):
3943         * cedet/semantic/analyze.el (semantic-analyze-current-context):
3944         * cedet/mode-local.el (describe-mode-local-bindings)
3945         (describe-mode-local-bindings-in-mode):
3946         * cedet/ede/make.el (ede-make-check-version):
3947         * cedet/ede/locate.el (ede-enable-locate-on-project):
3948         * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
3949         (cedet-idutils-version-check):
3950         * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
3951         (cedet-gnu-global-version-check):
3952         * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
3953         (cedet-cscope-version-check): Use called-interactively-p instead
3954         of interactive-p.
3956         * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
3957         Use semantic-format-tag-prototype.
3959 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
3961         * emulation/viper-cmd.el: Use viper-last-command-char instead of
3962         last-command-char/last-command-event.
3963         (viper-prefix-arg-value): Do correct conversion of event-char for
3964         XEmacs.
3966         * emulation/viper-util.el, emulation/viper.el:
3967         Use viper-last-command-char instead of
3968         last-command-char/last-command-event.
3970         * ediff-init.el, ediff-mult.el, ediff-util.el:
3971         Replace last-command-char and last-command-event
3972         with (ediff-last-command-char) everywhere.
3974         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
3975         created in fundamental mode.
3977         * ediff.el (ediff-version): Revert the change of interactive-p to
3978         called-interactively-p.
3980 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
3982         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
3983         generation from word-movement command names.
3985 2009-11-21  Chong Yidong  <cyd@stupidchicken.com>
3987         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
3988         (semantic-complete-jump-local, semantic-complete-jump):
3989         Improve prompt string.
3991 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
3993         * cus-start.el (all): Add native condition for font-use-system-font.
3995 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
3997         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
3998         Correct the patch from 2009-11-18.  (Bug#3910)
4000 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
4002         * progmodes/subword.el: Rename from lisp/subword.el.
4004         * subword.el: Rename to progmodes/subword.el.
4006         * Makefile.in (ELCFILES): Adapt to subword.el move.
4008 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4009             Stefan Monnier  <monnier@iro.umontreal.ca>
4011         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
4012         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
4013         (bookmark-bmenu-show-filenames): Use push.
4014         (bookmark-bmenu-hide-filenames): Use local var instead of
4015         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
4016         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
4017         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
4018         filenames now that the bookmark names are always available.
4020 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4022         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
4023         (bookmark-search-pattern): Move and leave unbound.
4024         (bookmark-bmenu-mode-map): Change binding.
4025         (bookmark-read-search-input): Simplify.
4026         Don't use text-char-description.  Don't error on non-char events.
4027         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
4028         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
4029         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
4030         Use a local var for the timer.
4031         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
4032         (i.e. bookmark-bmenu-search).
4034 2009-11-21  Glenn Morris  <rgm@gnu.org>
4036         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
4038 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
4040         * net/browse-url.el (browse-url-default-windows-browser):
4041         Use cygstart for cygwin.
4043 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
4045         * bookmark.el: Formatting and doc fixes only:
4046         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
4047         (bookmark-bmenu-search): Wrap to fit within 80 columns.
4048         Minor grammar and punctuation fixes in doc string.
4049         (bookmark-read-search-input): Adjust to fit within 80 columns.
4051 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
4053         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
4054         (c-backward-into-nomenclature): Adapt to subword renaming.
4056         * subword.el (subword-forward, subword-backward, subword-mark)
4057         (subword-kill, subword-backward-kill, subword-transpose)
4058         (subword-downcase, subword-upcase, subword-capitalize)
4059         (subword-forward-internal, subword-backward-internal):
4060         Rename from forward-subword, backward-subword, mark-subword,
4061         kill-subword, backward-kill-subword, transpose-subwords,
4062         downcase-subword, upcase-subword, capitalize-subword,
4063         forward-subword-internal, backward-subword-internal.
4065 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4067         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
4068         New options.
4069         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
4070         New vars.
4071         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
4072         (bookmark-bmenu-filter-alist-by-regexp)
4073         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
4074         (bookmark-bmenu-search): New command.
4075         (bookmark-bmenu-mode-map): Bind it.
4077 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
4079         * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
4081         * cedet/semantic/idle.el (define-semantic-idle-service)
4082         (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
4084 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
4086         * progmodes/cc-cmds.el: declare-functioned forward-subword and
4087         backward-subword to quit the byte-compiler.
4089         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
4091         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
4093         * progmodes/cc-cmds.el (c-update-modeline)
4094         (c-forward-into-nomenclature, c-backward-into-nomenclature):
4095         Refer to subword.el functions instead of cc-subword.el.
4097         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
4098         subword.el functions instead of cc-subword.el.
4100         * progmodes/cc-subword.el: Rename to subword.el.
4101         * subword.el: Rename from progmodes/cc-subword.el.
4102         (subword-mode-map): Rename from c-subword-mode-map.
4103         (subword-mode): Rename from c-subword-mode.
4104         (global-subword-mode): New global minor mode.
4105         (forward-subword): Rename from c-forward-subword.
4106         (backward-subword): Rename from c-backward-subword.
4107         (mark-subword): Rename from c-mark-subword.
4108         (kill-subword): Rename from c-kill-subword.
4109         (backward-kill-subword): Rename from c-backward-kill-subword.
4110         (transpose-subwords): Rename from c-tranpose-subword.
4111         (downcase-subword): Rename from c-downcase-subword.
4112         (capitalize-subword): Rename from c-capitalize-subword.
4113         (forward-subword-internal): Rename from c-forward-subword-internal.
4114         (backward-subword-internal): Rename from c-backward-subword-internal.
4116 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
4118         * vc.el (vc-deduce-fileset): Allow non-state changing operations
4119         from a dired buffer.
4120         (vc-dired-deduce-fileset): New function.
4121         (vc-root-diff, vc-print-root-log): Use it.
4123         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
4124         nil LIMIT argument to vc-print-log-internal.
4126 2009-11-20  Glenn Morris  <rgm@gnu.org>
4128         * Makefile.in (ELCFILES): Regenerate.
4130 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
4132         * cedet/cedet.el (cedet-menu-map): Re-order menu items.
4134         * cedet/semantic.el: Enable idle-mode menu items only if
4135         global-semantic-idle-scheduler-mode is enabled.
4136         (semantic-default-submodes): Doc fix.
4138         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
4139         When turning off, disable other idle modes.
4141 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
4143         * calc/calc.el (calc-set-mode-line):
4144         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4145         (math-format-number): Rename `math-format-complement-signed' to
4146         `math-format-twos-complement'.
4148         * calc/calc-bin.el (math-format-twos-complement): Rename from
4149         math-format-complement-signed.
4150         (calc-radix): Rename `calc-complement-signed-mode' to
4151         `calc-twos-complement-mode'.
4152         (calc-octal-radix, calc-hex-radix): Add an argument for
4153         two's complement.
4155         * calc/calc-embed.el (calc-embedded-mode-vars):
4156         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4158         * calc/calc-ext.el (calc-init-extensions):
4159         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4160         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
4162         * calc/calc-units.el (math-build-units-table-buffer):
4163         Let `calc-twos-complement-mode' be nil.
4165         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
4166         entries.
4168         * calc/calc-vec.el (calcFunc-vunpack):
4169         * calc/calc-aent.el (calc-do-calc-eval):
4170         * calc/calc-forms.el (math-format-date):
4171         * calc/calc-graph.el (calc-graph-plot):
4172         * calc/calc-math.el (math-use-emacs-fn):
4173         * calc/calccomp.el (math-compose-expr):
4174         Let `calc-twos-complement-mode' be nil.
4176 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4178         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
4179         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
4180         * minibuffer.el (completion-in-region-functions): New hook.
4181         (completion-in-region): New function.
4182         * emacs-lisp/lisp.el (lisp-complete-symbol):
4183         * pcomplete.el (pcomplete-std-complete): Use it.
4185 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4187         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
4188         (latex-complete-alist): New vars.
4189         (latex-string-prefix-p, latex-complete-bibtex-keys)
4190         (latex-complete-envnames, latex-complete-refkeys)
4191         (latex-complete-data): New functions.
4192         (latex-complete, latex-indent-or-complete): New commands.
4194         * window.el (display-buffer-mark-dedicated): New var.
4195         (display-buffer): Obey it.
4196         * minibuffer.el (minibuffer-completion-help): Use it.
4198         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
4200         * filecache.el (file-cache-add-file): Use push and cons.
4201         (file-cache-delete-file-regexp): Use push.
4202         (file-cache-complete): Use completion-in-region.
4204         * simple.el (with-wrapper-hook): Fix thinko.
4206         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
4207         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
4208         Use with-current-buffer and string-to-number.
4209         (hfy-fallback-colour-values): Use assoc-string.
4210         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
4211         (hfy-face-at): Remove unused var `found-face'.
4212         (hfy-compile-stylesheet): Remove unused var `css'.
4213         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
4214         and `orig-buffer'.
4215         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
4216         Use with-current-buffer.
4217         (hfy-text-p): Use expand-file-name and fewer setq.
4219 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
4221         * htmlfontify.el, hfy-cmap.el: New files.
4223 2009-11-19  Juri Linkov  <juri@jurta.org>
4225         * minibuffer.el (completions-format): New defcustom.
4226         (completion--insert-strings): Implement vertical format.
4228         * simple.el (switch-to-completions): Move point to the first
4229         completion when point was at the beginning of the buffer.
4231 2009-11-19  Juri Linkov  <juri@jurta.org>
4233         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
4235         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
4237 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
4239         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
4240         (mail-signature): Change default to t.
4241         (mail-from-style): Deprecate `system-default' value.
4242         (mail-insert-from-field): For default value of mail-from-style,
4243         default to `angles' unless `angles' needs quoting and `parens'
4244         does not.
4245         (mail-citation-prefix-regexp): Use citation regexp from
4246         message-mode.
4248 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
4250         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
4251         Set variables for computing the prompt for reading password.
4253 2009-11-19  Glenn Morris  <rgm@gnu.org>
4255         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
4257         * textmodes/flyspell.el (sgml-lexical-context): Declare.
4259         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
4260         (newsticker-treeview-listwindow-height): Fix custom type.
4262 2009-11-19  Kenichi Handa  <handa@m17n.org>
4264         * descr-text.el (describe-char-padded-string): Compose with TAB
4265         only if there's a font for CH.
4266         (describe-char): Fix the condition for detecting a trivial composition.
4268 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
4270         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
4271         more accurate version of the regexp.  (Bug#3910)
4273 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
4275         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
4277 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
4279         * font-setting.el (font-use-system-font): Declare for byte-compiler.
4280         (font-setting-change-default-font): Fix typo in docstring.
4282 2009-11-18  Alan Mackenzie  <acm@muc.de>
4284         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
4286 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
4288         * font-setting.el (font-use-system-font): Move ...
4290         * cus-start.el (all): ... to here.
4292 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
4294         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
4295         Don't set `ad-return-value' if `ad-do-it' doesn't.
4297         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
4298         modification time.
4300 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
4302         * menu-bar.el: Put "Use system font" in Option-menu.
4303         (menu-bar-options-save): Add font-use-system-font.
4305         * loadup.el: If feature system-font-setting or font-render-setting is
4306         there, load font-setting.
4308         * Makefile.in (ELCFILES): Add font-settings.el.
4309         * font-setting.el: New file.
4311 2009-11-17  Glenn Morris  <rgm@gnu.org>
4313         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
4315         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
4316         Preserve point in the list buffer.  (Bug#4939)
4317         Use point-at-eol.
4318         (newsticker--treeview-list-update-highlight)
4319         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
4321 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
4323         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
4324         Remove.
4326         * calc/calc-ext.el (calc-init-extensions): Remove references to
4327         symclip.
4329         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
4331         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
4332         * calc/calc-help.el (calc-b-prefix-help): Remove references to
4333         `calc-symclip'.
4335 2009-11-16  Kevin Ryde  <user42@zip.com.au>
4337         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
4338         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
4340         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
4341         (lm-keywords-list): Allow comma-only separator like "foo,bar".
4342         Ignore trailing spaces by omit-nulls to split-string (fixing
4343         regression from Emacs 21 due to the incompatible split-string
4344         change).  (Bug #4928.)
4346 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4348         * vc.el (vc-log-show-limit): Default to 2000.
4349         (vc-print-log-internal): Insert buttons to request more entries
4350         when limiting the output.
4352         * vc-sccs.el (vc-sccs-print-log):
4353         * vc-rcs.el (vc-rcs-print-log):
4354         * vc-cvs.el (vc-cvs-print-log):
4355         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
4356         LIMIT is non-nil.
4358 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
4360         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
4361         error when `tramp-gvfs-dbus-event-vector' is set.
4362         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
4364 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4366         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
4368 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
4370         * net/dbus.el (dbus-unregister-service): New defun.
4371         (dbus-register-property): Register the handlers of
4372         "org.freedesktop.DBus.Properties" for SERVICE.
4373         (dbus-property-handler): Fix docstring.
4375 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4377         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
4378         Quote doc string reference in defvaralias as it is not in special form.
4379         (byte-compile-output-docform): Doc fix.
4381 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
4383         * calc/calc.el (math-2-word-size, math-half-2-word-size)
4384         (calc-complement-signed-mode): New variables.
4385         (calc-set-mode-line): Add indicator for twos-complements.
4386         (math-format-number): Format twos-complement notation.
4388         * calc/calc-bin.el (calc-word-size): Reset the variables
4389         `math-2-word-size' and `math-half-2-word-size'.
4390         (math-format-complement-signed, math-symclip, calcFunc-symclip)
4391         (calc-symclip): New functions.
4393         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
4395         * calc/calc-embed.el (calc-embedded-mode-vars):
4396         Add `calc-complement-signed-mode' to the list of modes.
4398         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
4399         (calc-b-oper-keys): Add `calc-symclip' to list.
4401         * calc/calc-ext.el (math-read-number-fancy): Read complement
4402         signed numbers.
4403         (calc-init-extensions): Add binding for `calc-symclip'.
4404         Add autoload for `calcFunc-symclip' and `calc-symclip'.
4406         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
4407         `calc-symclip'.
4408         (calc-modes-menu): Add item for twos complement mode.
4410         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
4412 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
4414         * register.el (jump-to-register, insert-register): Handle Semantic
4415         tags.  From commented-out advice in semantic/senator.el.
4417 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
4419         * vc.el (vc-log-show-limit): New variable.
4420         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
4421         when using a prefix argument.
4422         (vc-print-log-internal): Add new argument LIMIT.
4424         * vc-svn.el (vc-svn-print-log):
4425         * vc-mtn.el (vc-mtn-print-log):
4426         * vc-hg.el (vc-hg-print-log):
4427         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
4428         pass it to the log command when set.  Make the BUFFER argument
4429         non-optional.
4431         * vc-sccs.el (vc-sccs-print-log):
4432         * vc-rcs.el (vc-rcs-print-log):
4433         * vc-git.el (vc-git-print-log):
4434         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
4435         ignore it.  Make the BUFFER argument non-optional
4437         * bindings.el (mode-line-buffer-identification): Do not purecopy.
4439 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
4441         * dired.el (dired-mode-map): Move encryption items to "Operate"
4442         menu (Bug#4703).
4444         * strokes.el (strokes-update-window-configuration): Make strokes
4445         buffer current before erasing (Bug#4906).
4447         * cedet/semantic/idle.el (semantic-idle-summary-mode)
4448         (semantic-idle-summary-mode): Define using define-minor-mode
4449         instead of define-semantic-idle-service.
4450         (semantic-idle-summary-mode): New function.
4451         (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
4452         that mouse motion does not reset the echo area.
4454 2009-11-15  Juri Linkov  <juri@jurta.org>
4456         * simple.el (set-mark-default-inactive): Add :type, :group
4457         and :version.  (Bug#4876)
4459 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
4461         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
4462         (archive-unique-fname): ... here.  (Bug#4929)
4464 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4466         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
4467         with a real fix.
4469         * novice.el (disabled-command-function): Add useful args.
4470         Setup the help buffer so that [back] works.
4471         Remove redundant call to help-mode.
4472         (disabled-command-function): Use `case'.
4473         (en/disable-command): New function extracted from enable-command.
4474         (enable-command, disable-command): Use it.
4476 2009-11-14  Glenn Morris  <rgm@gnu.org>
4478         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
4479         constants.  (Bug#4913)
4481         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
4483 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
4485         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
4486         defined in C that have no doc-strings.  (Bug#1063)
4488 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
4490         * cus-edit.el (data, files):
4491         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
4493 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
4495         * simple.el (shell-command): Doc fix (Bug#4891).
4497         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
4499 2009-11-14  Glenn Morris  <rgm@gnu.org>
4501         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
4502         statements for vc-diff, emerge-quit, and rmail-cease-edit.
4503         If they are already loaded, eval-after-load will do the right thing.
4505         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
4506         compiling.
4508         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
4510         * simple.el (x-selection-owner-p): Declare.
4511         (read-mail-command): Use custom radio type rather than choice.
4512         (completion-no-auto-exit): Doc fix.
4514         * custom.el (defgroup):
4515         * epg-config.el (epg): Doc fixes.
4517 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
4519         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
4520         * international/ccl.el (define-ccl-program): Do not purecopy the
4521         docstring, defconst does it anyway.
4523 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4525         * add-log.el (add-change-log-entry): Avoid displaying the changelog
4526         a second time.
4528         * x-dnd.el (x-dnd-maybe-call-test-function):
4529         * window.el (split-window-vertically):
4530         * whitespace.el (whitespace-help-on):
4531         * vc-rcs.el (vc-rcs-consult-headers):
4532         * userlock.el (ask-user-about-lock-help)
4533         (ask-user-about-supersession-help):
4534         * type-break.el (type-break-force-mode-line-update):
4535         * time-stamp.el (time-stamp-conv-warn):
4536         * terminal.el (te-set-output-log, te-more-break, te-filter)
4537         (te-sentinel, terminal-emulator):
4538         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
4539         (term-write-input-ring, term-check-source, term-start-output-log):
4540         (term-display-buffer-line, term-dynamic-list-completions):
4541         (term-ansi-make-term, serial-term):
4542         * subr.el (selective-display):
4543         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
4544         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
4545         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
4546         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
4547         (speedbar-remove-localized-speedbar-support)
4548         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
4549         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
4550         (speedbar-buffers-line-directory):
4551         * simple.el (shell-command-on-region, append-to-buffer)
4552         (prepend-to-buffer):
4553         * shadowfile.el (shadow-save-todo-file):
4554         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
4555         (scroll-bar-maybe-set-window-start):
4556         * sb-image.el (speedbar-image-dump):
4557         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
4558         (load-save-place-alist-from-file):
4559         * ps-samp.el (ps-print-message-from-summary):
4560         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
4561         (ps-background-image, ps-begin-job, ps-do-despool):
4562         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
4563         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
4564         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
4565         (pr-call-process, pr-file-list, pr-interface-save):
4566         * novice.el (disabled-command-function)
4567         (enable-command, disable-command):
4568         * mouse.el (mouse-buffer-menu-alist):
4569         * mouse-copy.el (mouse-kill-preserving-secondary):
4570         * macros.el (kbd-macro-query):
4571         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
4572         * informat.el (batch-info-validate):
4573         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
4574         * hippie-exp.el (try-expand-dabbrev-visible):
4575         * help-mode.el (help-make-xrefs):
4576         * help-fns.el (describe-variable):
4577         * generic-x.el (bat-generic-mode-run-as-comint):
4578         * finder.el (finder-mouse-select):
4579         * find-dired.el (find-dired-sentinel):
4580         * filesets.el (filesets-file-close):
4581         * files.el (list-directory):
4582         * faces.el (list-faces-display, describe-face):
4583         * facemenu.el (list-colors-display):
4584         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
4585         * epg.el (epg--process-filter, epg-cancel):
4586         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
4587         (epa--read-signature-type):
4588         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
4589         (emerge-file-names):
4590         * ehelp.el (electric-helpify):
4591         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
4592         * ediff-vers.el (rcs-ediff-view-revision):
4593         * ediff-util.el (ediff-setup):
4594         * ediff-mult.el (ediff-append-custom-diff):
4595         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
4596         (ediff-wordify):
4597         * echistory.el (Electric-command-history-redo-expression):
4598         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
4599         * disp-table.el (describe-display-table):
4600         * dired.el (dired-find-buffer-nocreate):
4601         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
4602         * dabbrev.el (dabbrev--same-major-mode-p):
4603         * chistory.el (list-command-history):
4604         * apropos.el (apropos-documentation):
4605         * allout.el (allout-obtain-passphrase):
4606         (allout-copy-exposed-to-buffer):
4607         (allout-verify-passphrase): Use with-current-buffer.
4609 2009-11-13  Glenn Morris  <rgm@gnu.org>
4611         * Makefile.in (ELCFILES): Regenerate.
4613 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
4615         * net/dbus.el (dbus-registered-objects-table): Rename from
4616         `dbus-registered-functions-table', because it contains also properties.
4617         (dbus-unregister-object): Unregister also properties.
4618         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
4619         Use a timeout of 500 msec, in order to not block.
4620         (dbus-register-property, dbus-property-handler): New defuns.
4622 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4624         * simple.el (minibuffer-default-add-completions): Drop deprecated
4625         4th arg.
4627 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
4629         * textmodes/artist.el (artist-mouse-choose-operation):
4630         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
4631         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
4632         (artist-compute-up-event-key): New function.
4633         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
4635 2009-11-13  Kenichi Handa  <handa@m17n.org>
4637         * language/japan-util.el: Make sure that the value of jisx0208
4638         property is jisx0208 character.
4640 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
4642         * international/mule.el (auto-coding-regexp-alist): Only purecopy
4643         car or each item, not the whole list.
4645 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4647         * minibuffer.el (minibuffer-completion-help):
4648         Use minibuffer-hide-completions.
4650 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
4652         * dired.el (dired-save-positions, dired-restore-positions): New funs.
4653         (dired-revert): Use them (bug#4880).
4655 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
4657         * tooltip.el (tooltip-frame-parameters): Undo previous change.
4659 2009-11-12  Juri Linkov  <juri@jurta.org>
4661         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
4662         New functions.
4663         (find-file-literally-at-point): Alias of `ffap-literally'.
4665 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
4667         * textmodes/ispell.el (ispell-skip-region-alist):
4668         * textmodes/css-mode.el (auto-mode-alist):
4669         * progmodes/compile.el (auto-mode-alist):
4670         * international/mule.el (ctext-non-standard-encodings-alist)
4671         (ctext-non-standard-encodings-regexp):
4672         * simple.el (shell-command-switch, text-read-only):
4673         * replace.el (occur-mode-map):
4674         * paths.el (rmail-file-name):
4675         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
4676         * find-file.el (ff-special-constructs):
4677         * files.el (file-name-handler-alist):
4678         * composite.el: Purecopy strings.
4680         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
4682 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
4684         * widget.el (define-widget): Purecopy the docstring.
4685         * international/mule-cmds.el (charset): Do not purecopy the
4686         docstring here, define-widget does it.
4688         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
4689         * textmodes/bibtex-style.el (auto-mode-alist):
4690         * progmodes/inf-lisp.el (inferior-lisp-prompt):
4691         * progmodes/compile.el (compile-command):
4692         * language/korea-util.el (default-korean-keyboard):
4693         * international/mule-conf.el (file-coding-system-alist):
4694         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
4695         * tooltip.el (tooltip-frame-parameters):
4696         * newcomment.el (comment-end, comment-padding):
4697         * dired.el (dired-trivial-filenames):
4698         * comint.el (comint-file-name-prefix): Purecopy initial values.
4700 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
4702         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
4703         (tramp-advice-minibuffer-electric-tilde): Unload advices via
4704         `tramp-unload'.
4705         (tramp-advice-make-auto-save-file-name)
4706         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
4707         after removing the advice.
4709 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
4711         * progmodes/grep.el (grep-regexp-alist):
4712         * international/mule-cmds.el (iso-2022-control-alist):
4713         * emacs-lisp/timer.el (timer-duration-words):
4714         * subr.el (version-separator, version-regexp-alist):
4715         * minibuffer.el (completion-styles-alist):
4716         * faces.el (face-attribute-name-alist, list-faces-sample-text):
4717         Change defvars to defconsts.
4719         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
4720         * loadup.el ("international/mule-conf"): Load the byte compiled version.
4721         * international/mule-conf.el: Allow to be byte compiled.
4723         * international/mule.el (define-charset): Purecopy props.
4724         (load-with-code-conversion): Purecopy doc string and file name.
4725         (put-charset-property): Purecopy strings.
4726         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
4728         * international/mule-cmds.el (register-input-method): Purecopy arguments.
4729         (define-char-code-property): Correctly purecopy the table.
4731         * international/ccl.el (define-ccl-program): Purecopy the docstring.
4733         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
4735         * subr.el (add-hook): Purecopy strings.
4736         (eval-after-load): Purecopy load-history-regexp and the form.
4738         * custom.el (custom-declare-group): Purecopy load-file-name.
4740         * subr.el (menu-bar-separator): New defconst.
4741         * net/eudc.el (eudc-tools-menu):
4742         * international/mule-cmds.el (set-coding-system-map)
4743         (mule-menu-keymap):
4744         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
4745         * vc-hooks.el (vc-menu-map):
4746         * replace.el (occur-mode-map):
4747         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
4748         (menu-bar-edit-menu, menu-bar-goto-menu)
4749         (menu-bar-custom-menu, menu-bar-showhide-menu)
4750         (menu-bar-options-menu, menu-bar-tools-menu)
4751         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
4752         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
4753         (menu-bar-help-menu):
4754         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
4755         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
4757         * term/x-win.el (x-gtk-stock-map):
4758         * progmodes/vera-mode.el (auto-mode-alist):
4759         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
4760         (inferior-lisp-program, inferior-lisp-load-command):
4761         * progmodes/hideshow.el (hs-special-modes-alist):
4762         * progmodes/gud.el (same-window-regexps):
4763         * progmodes/grep.el (grep-program, find-program, xargs-program):
4764         * net/telnet.el (same-window-regexps):
4765         * net/rlogin.el (same-window-regexps):
4766         * language/ethiopic.el (font-ccl-encoder-alist):
4767         * vc-sccs.el (vc-sccs-master-templates):
4768         * vc-rcs.el (vc-rcs-master-templates):
4769         * subr.el (cl-assertion-failed):
4770         * simple.el (next-error-overlay-arrow-position):
4771         * lpr.el (lpr-command):
4772         * locate.el (locate-ls-subdir-switches):
4773         * info.el (same-window-regexps, info)
4774         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
4775         * image-mode.el (image-mode, auto-mode-alist):
4776         * hippie-exp.el (hippie-expand-ignore-buffers):
4777         * format.el (format-alist):
4778         * find-dired.el (find-ls-subdir-switches, find-grep-options)
4779         (find-name-arg):
4780         * facemenu.el (facemenu-keybindings):
4781         * dired.el (dired-listing-switches, dired-chown-program):
4782         * diff.el (diff-switches, diff-command):
4783         * cus-edit.el (same-window-regexps):
4784         * bindings.el (mode-line-mule-info)
4785         (mode-line-buffer-identification): Purecopy strings.
4787 2009-11-11  Juri Linkov  <juri@jurta.org>
4789         * simple.el (dired-get-filename) <declare-function>:
4790         Tell the byte-compiler about dired-get-filename.
4791         (shell-command): In Dired mode, get filename from the current line
4792         as the default value.
4794 2009-11-10  Glenn Morris  <rgm@gnu.org>
4796         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
4797         * calendar/holidays.el, progmodes/cperl-mode.el:
4798         Update x-popup-menu declarations.
4800         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
4801         (list-load-path-shadows): Use dolist.
4802         (list-load-path-shadows): Use with-current-buffer.
4804 2009-11-10  Juri Linkov  <juri@jurta.org>
4806         * minibuffer.el (read-file-name): Support a list of default values
4807         in `default-filename'.  Use the first file name where only one
4808         element is required.  Doc fix.
4810 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
4812         * net/dbus.el (dbus-unregister-object): Release service, if no
4813         other method is registered for it.
4815 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
4817         * bookmark.el (bookmark-completing-read): Sort bookmark names if
4818         bookmark-sort-flag is non-nil (Bug#4653).
4820 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
4822         * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
4823         the progress reporter entirely.
4825         * emulation/cua-base.el: Add CUA property to some CC mode commands
4826         (Bug#4100).
4828 2009-11-08  Kevin Ryde  <user42@zip.com.au>
4830         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
4831         at end of sentence (Bug#4818).
4833 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
4835         * progmodes/compile.el (compilation-error-regexp-alist-alist):
4836         Handle "see declaration of" MSFT statements (Bug#4100).
4838 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
4840         * net/tramp.el (tramp-advice-make-auto-save-file-name)
4841         (tramp-advice-file-expand-wildcards): Unload via
4842         `ad-remove-advice'.
4844         * net/trampver.el: Update release number.
4846 2009-11-08  Kevin Ryde  <user42@zip.com.au>
4848         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
4849         `ad-do-it'.
4851 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
4853         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
4854         in order to keep context in SELinux.
4856 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
4858         * dired-aux.el (dired-query): Place cursor in echo area and allow
4859         C-g.
4861         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
4862         menu item if not on a directory (Bug#4701).
4864 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
4866         Sync with Tramp 2.1.17.
4868         * net/tramp.el (tramp-handle-copy-directory): Don't use
4869         `file-remote-p' (due to compatibility).
4871         * net/tramp-compat.el (tramp-compat-copy-directory)
4872         (tramp-compat-delete-directory): New defuns.
4874         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
4875         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
4876         `tramp-compat-delete-directory'.
4878         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
4879         (tramp-smb-handle-delete-directory): Use
4880         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
4882         * net/trampver.el: Update release number.
4884 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
4886         * tar-mode.el (tar-copy): Call write-region on the right buffer
4887         (Bug#4857).
4889         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
4890         by hand, if necessary (Bug#4878).
4892 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
4894         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
4895         align size column (Bug#4839).
4897         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
4898         statement.
4900 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
4902         * progmodes/ld-script.el (auto-mode-alist):
4903         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
4905         * cus-face.el (custom-declare-face): Purecopy face spec.
4907 2009-11-06  Kenichi Handa  <handa@m17n.org>
4909         * international/uni-bidi.el: Re-generated.
4910         * international/uni-category.el: Re-generated.
4911         * international/uni-combining.el: Re-generated.
4912         * international/uni-mirrored.el: Re-generated.
4914 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
4916         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
4917         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
4918         (tex-start-options, slitex-run-command, latex-run-command)
4919         (tex-run-command, tex-directory):
4920         * textmodes/ispell.el (ispell-html-skip-alists)
4921         (ispell-tex-skip-alists, ispell-tex-skip-alists):
4922         * textmodes/fill.el (adaptive-fill-first-line-regexp):
4923         (adaptive-fill-regexp):
4924         * textmodes/dns-mode.el (auto-mode-alist):
4925         * progmodes/python.el (interpreter-mode-alist):
4926         * progmodes/etags.el (tags-compression-info-list):
4927         * progmodes/etags.el (tags-file-name):
4928         * net/browse-url.el (browse-url-galeon-program)
4929         (browse-url-firefox-program):
4930         * mail/sendmail.el (mail-signature-file)
4931         (mail-citation-prefix-regexp):
4932         * international/mule-conf.el (eight-bit):
4933         * international/latexenc.el (latex-inputenc-coding-alist):
4934         * international/fontset.el (x-pixel-size-width-font-regexp):
4935         * emacs-lisp/warnings.el (warning-type-format):
4936         * emacs-lisp/trace.el (trace-buffer):
4937         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
4938         (emacs-lisp-mode-map):
4939         * calendar/holidays.el (holiday-solar-holidays)
4940         (holiday-bahai-holidays, holiday-islamic-holidays)
4941         (holiday-christian-holidays, holiday-hebrew-holidays)
4942         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
4943         (hebrew-holidays-1, holiday-oriental-holidays)
4944         (holiday-general-holidays):
4945         * x-dnd.el (x-dnd-known-types):
4946         * tool-bar.el (tool-bar):
4947         * startup.el (site-run-file):
4948         * shell.el (shell-dumb-shell-regexp):
4949         * rfn-eshadow.el (file-name-shadow-tty-properties)
4950         (file-name-shadow-properties):
4951         * paths.el (remote-shell-program, news-directory):
4952         * mouse.el ([C-down-mouse-3]):
4953         * menu-bar.el (menu-bar-tools-menu):
4954         * jka-cmpr-hook.el (jka-compr-load-suffixes)
4955         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
4956         (jka-compr-compression-info-list):
4957         * isearch.el (search-whitespace-regexp):
4958         * image-file.el (image-file-name-extensions):
4959         * find-dired.el (find-ls-option):
4960         * files.el (directory-listing-before-filename-regexp)
4961         (directory-free-space-args, insert-directory-program)
4962         (list-directory-brief-switches, magic-fallback-mode-alist)
4963         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
4964         (automount-dir-prefix):
4965         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
4966         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
4967         (face-font-registry-alternatives, face-font-registry-alternatives)
4968         (face-font-family-alternatives):
4969         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
4970         (facemenu-foreground-menu, facemenu-face-menu):
4971         * epa-hook.el (epa-file-name-regexp):
4972         * dnd.el (dnd-protocol-alist):
4973         * textmodes/rst.el (auto-mode-alist):
4974         * button.el (default-button): Purecopy strings.
4976 2009-11-06  Glenn Morris  <rgm@gnu.org>
4978         * Makefile.in (ELCFILES): Update.
4980 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4982         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
4983         * emacs-lisp/levents.el: Move to obsolete/levents.el.
4985         * nxml/xsd-regexp.el (xsdre-gen-categories):
4986         * nxml/xmltok.el (xmltok-parse-entity):
4987         * nxml/rng-parse.el (rng-parse-validate-file):
4988         * nxml/rng-maint.el (rng-format-manual)
4989         (rng-manual-output-force-new-line):
4990         * nxml/rng-loc.el (rng-save-schema-location-1):
4991         * nxml/rng-cmpct.el (rng-c-parse-file):
4992         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
4993         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
4995 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
4997         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
4998         Remove extra save-excursions and make-variable-buffer-local's.
4999         Suggested by Stefan Monnier.
5001         (verilog-getopt-file, verilog-module-inside-filename-p)
5002         (verilog-set-define): Merge GNU 1.35 and repair changes from
5003         switching to using with-current-buffer.
5005         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
5006         being treated as a number and confusing AUTORESET.
5007         Reported by Dan Dever.
5009         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
5010         Add verilog-auto-ignore-concat to fix backward compatibility with
5011         older verilog-modes.  Reported by Dan Katz.
5013         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
5014         containing closing anchors "...$".
5016         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
5017         Reported by Wade Smith.
5019         (verilog-batch-execute-func): Comment on function usage.
5021 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
5023         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
5024         for labels.
5026         (verilog-label-re, verilog-calc-1): Support proper indent of named
5027         asserts.
5029         (verilog-backward-token, verilog-basic-complete-re)
5030         (verilog-beg-of-statement, verilog-indent-re): Support proper
5031         indent of the assert statement at the beginning of a block of text.
5033         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
5034         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
5035         tokens as begins.
5037 2009-11-05  Glenn Morris  <rgm@gnu.org>
5039         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
5040         Emacs 19.  (Bug#1531)
5041         (byte-compile-fix-header): Update for the above change.
5042         Drop test for epoch::version.
5044         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
5045         * cus-dep.el (custom-make-dependencies):
5046         * finder.el (finder-compile-keywords):
5047         Use autoload-rubric's feature argument.
5049         * calendar/diary-lib.el (top-level): Make load behave more like require.
5051         * vc-git.el (vc-git-stash-map): Move definition before use.
5053 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
5055         * custom.el (custom-declare-group): Purecopy standard-value.
5056         (custom-declare-group): Purecopy custom-prefix.
5058         * international/mule.el (load-with-code-conversion):
5059         Call do-after-load-evaluation unconditionally.
5061         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
5063 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5065         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
5067 2009-11-04  Glenn Morris  <rgm@gnu.org>
5069         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
5070         (byte-compile-compatibility): Remove option.
5071         (byte-compile-close-variables, byte-compile-fix-header)
5072         (byte-compile-insert-header, byte-compile-output-docform)
5073         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
5074         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
5075         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
5076         (byte-compile-insert, byte-compile-defun):
5077         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
5078         (byte-defop-compiler19): Remove.
5079         Without byte-compile-compatibility, the 'emacs19-opcode property is not
5080         used by anything.  Replace all calls with byte-defop-compiler.
5082 2009-11-04  Juri Linkov  <juri@jurta.org>
5084         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
5085         (menu-bar-options-menu): Don't quote the `prop' arg of
5086         `menu-bar-make-mm-toggle'.
5088 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
5090         * calendar/calendar.el (cal-loaddefs):
5091         * calendar/diary-lib.el (diary-loaddefs):
5092         * calendar/holidays.el (hol-loaddefs):
5093         * eshell/esh-module.el (esh-groups): Load rather than require.
5095 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5097         * calendar/todo-mode.el (todo-add-category): Don't hardcode
5098         point-min==1.
5099         (todo-top-priorities): Only display-buffer when called interactively.
5100         (todo-item-start): Don't save excursion point.
5101         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
5102         (todo-insert-item-here, todo-file-item, todo-remove-item):
5103         Adjust uses of todo-item-start and todo-item-end.
5105         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
5106         (autoload-rubric): Don't use any more.
5107         * cedet/semantic/fw.el (semantic/loaddefs):
5108         * cedet/srecode.el (srecode/loaddefs):
5109         * cedet/ede.el (ede/loaddefs): Load rather than require.
5110         * cedet/ede/cpp-root.el:
5111         * cedet/ede/emacs.el:
5112         * cedet/ede/files.el:
5113         * cedet/ede/linux.el:
5114         * cedet/ede/locate.el:
5115         * cedet/ede/make.el:
5116         * cedet/ede/shell.el:
5117         * cedet/ede/speedbar.el:
5118         * cedet/ede/system.el:
5119         * cedet/ede/util.el:
5120         * cedet/semantic/analyze.el:
5121         * cedet/semantic/bovine.el:
5122         * cedet/semantic/complete.el:
5123         * cedet/semantic/ctxt.el:
5124         * cedet/semantic/db-file.el:
5125         * cedet/semantic/db-find.el:
5126         * cedet/semantic/db-global.el:
5127         * cedet/semantic/db-mode.el:
5128         * cedet/semantic/db-typecache.el:
5129         * cedet/semantic/db.el:
5130         * cedet/semantic/debug.el:
5131         * cedet/semantic/dep.el:
5132         * cedet/semantic/doc.el:
5133         * cedet/semantic/edit.el:
5134         * cedet/semantic/find.el:
5135         * cedet/semantic/format.el:
5136         * cedet/semantic/html.el:
5137         * cedet/semantic/ia-sb.el:
5138         * cedet/semantic/ia.el:
5139         * cedet/semantic/idle.el:
5140         * cedet/semantic/lex-spp.el:
5141         * cedet/semantic/lex.el:
5142         * cedet/semantic/mru-bookmark.el:
5143         * cedet/semantic/scope.el:
5144         * cedet/semantic/senator.el:
5145         * cedet/semantic/sort.el:
5146         * cedet/semantic/symref.el:
5147         * cedet/semantic/tag-file.el:
5148         * cedet/semantic/tag-ls.el:
5149         * cedet/semantic/tag-write.el:
5150         * cedet/semantic/tag.el:
5151         * cedet/semantic/util-modes.el:
5152         * cedet/semantic/analyze/complete.el:
5153         * cedet/semantic/analyze/refs.el:
5154         * cedet/semantic/bovine/c.el:
5155         * cedet/semantic/bovine/gcc.el:
5156         * cedet/semantic/bovine/make.el:
5157         * cedet/semantic/bovine/scm.el:
5158         * cedet/semantic/decorate/include.el:
5159         * cedet/semantic/decorate/mode.el:
5160         * cedet/semantic/symref/cscope.el:
5161         * cedet/semantic/symref/global.el:
5162         * cedet/semantic/symref/grep.el:
5163         * cedet/semantic/symref/idutils.el:
5164         * cedet/semantic/symref/list.el:
5165         * cedet/semantic/wisent/java-tags.el:
5166         * cedet/semantic/wisent/javascript.el:
5167         * cedet/srecode/compile.el:
5168         * cedet/srecode/cpp.el:
5169         * cedet/srecode/document.el:
5170         * cedet/srecode/el.el:
5171         * cedet/srecode/expandproto.el:
5172         * cedet/srecode/getset.el:
5173         * cedet/srecode/insert.el:
5174         * cedet/srecode/java.el:
5175         * cedet/srecode/map.el:
5176         * cedet/srecode/mode.el:
5177         * cedet/srecode/template.el:
5178         * cedet/srecode/texi.el: Remove the file-local setting of
5179         generated-autoload-feature.
5181         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
5182         and only put a prop if it is non-nil.
5184 2009-11-03  Juri Linkov  <juri@jurta.org>
5186         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
5187         (menu-bar-options-menu): Fix list quoting (Bug#4429).
5189         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
5190         and "Menu" to make top-level menu item visually one unit (like
5191         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
5192         multi-word menu items).  Fix :help string for quit-window.
5194 2009-11-03  Glenn Morris  <rgm@gnu.org>
5196         * cedet/mode-local.el (with-mode-local): Doc fix.
5198         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
5199         (byte-compile-file-form-define-abbrev-table)
5200         (byte-compile-file-form-custom-declare-variable)
5201         (byte-compile-variable-ref, byte-compile-defvar):
5202         Whether or not a warning is enabled should only affect whether we issue
5203         the warning, not whether or not we collect the relevant data.
5204         Eg warnings can be turned on and off throughout the course of a file.
5206         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
5207         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
5209 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5211         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
5212         * play/mpuz.el (mpuz-create-buffer):
5213         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
5214         (lm-print-y,s,noise, lm-print-w0, lm-init):
5215         * play/gomoku.el (gomoku-prompt-for-move):
5216         * play/fortune.el (fortune-in-buffer):
5217         * play/dissociate.el (dissociated-press):
5218         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
5219         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
5220         * mail/supercite.el (sc-eref-show):
5221         * mail/smtpmail.el (smtpmail-send-it):
5222         * mail/rmailsum.el (rmail-summary-next-labeled-message)
5223         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
5224         (rmail-summary-undelete-many, rmail-summary-rmail-update)
5225         (rmail-summary-goto-msg, rmail-summary-expunge)
5226         (rmail-summary-get-new-mail, rmail-summary-search-backward)
5227         (rmail-summary-add-label, rmail-summary-output-menu)
5228         (rmail-summary-output-body):
5229         * mail/rfc822.el (rfc822-addresses):
5230         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
5231         * mail/mailpost.el (post-mail-send-it):
5232         * mail/hashcash.el (hashcash-generate-payment):
5233         * mail/feedmail.el (feedmail-run-the-queue)
5234         (feedmail-queue-send-edit-prompt-help-first)
5235         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
5236         (feedmail-deduce-address-list):
5237         * eshell/esh-ext.el (eshell-remote-command):
5238         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
5239         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
5240         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
5241         (viper-save-string-in-file, viper-valid-marker):
5242         * emulation/viper-keym.el (viper-toggle-key):
5243         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
5244         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
5245         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
5246         * emulation/viper-cmd.el (viper-exec-form-in-vi)
5247         (viper-exec-form-in-emacs, viper-brac-function):
5248         * emulation/viper.el (viper-delocalize-var):
5249         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
5250         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
5251         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
5252         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
5253         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
5254         * emulation/edt.el (edt-electric-helpify):
5255         * emulation/cua-rect.el (cua--rectangle-aux-replace):
5256         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
5257         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
5258         (cua-indent-to-global-mark-column):
5259         * calendar/diary-lib.el (calendar-mark-1):
5260         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
5261         Use with-current-buffer.
5262         * emulation/viper.el (viper-delocalize-var): Use dolist.
5264 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
5266         * comint.el (comint-replace-by-expanded-history-before-point):
5267         Replace !! with the previous input string literally (Bug#1795).
5269 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
5271         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
5272         to be made up of whitespace.
5274 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
5276         * minibuffer.el (read-file-name): Don't use file dialogs for
5277         remote directories (Bug#99).
5279 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
5281         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
5283 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
5285         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
5286         instead of deleting the window or frame.
5288 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
5290         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
5291         Support face colors.
5293         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
5294         New function.  Support face colors (Bug#1168).
5295         (tex-common-initialization): Use it.
5297         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
5298         mode allows it (Bug#1168).
5300 2009-10-31  Juri Linkov  <juri@jurta.org>
5302         * facemenu.el (list-colors-display): Don't mark buffer as
5303         modified (Bug#3948).
5305 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
5307         * international/mule-diag.el (list-character-sets-1): Minor
5308         message fix (Bug#3526).
5310         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
5311         face property (Bug#4834).
5312         (etags-list-tags, etags-tags-apropos-additional)
5313         (etags-tags-apropos, tags-select-tags-table): Add follow-link
5314         property.
5316         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
5317         items.
5319         * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
5320         items.
5322         * cedet/ede.el (ede-minor-mode):
5323         * cedet/semantic.el (semantic-mode): Toggle menu separators.
5325 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5327         * textmodes/two-column.el (2C-split):
5328         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
5329         * textmodes/tex-mode.el (tex-set-buffer-directory):
5330         * textmodes/spell.el (spell-region, spell-string):
5331         * textmodes/reftex.el (reftex-erase-buffer):
5332         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
5333         * textmodes/reftex-toc.el (reftex-toc-promote-action):
5334         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
5335         (reftex-select-item):
5336         * textmodes/reftex-ref.el (reftex-label-info-update)
5337         (reftex-offer-label-menu):
5338         * textmodes/reftex-index.el (reftex-index-change-entry)
5339         (reftex-index-phrases-info):
5340         * textmodes/reftex-global.el (reftex-create-tags-file)
5341         (reftex-save-all-document-buffers, reftex-ensure-write-access):
5342         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
5343         (reftex-view-crossref-from-bibtex):
5344         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
5345         (reftex-extract-bib-entries-from-thebibliography)
5346         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
5347         * textmodes/refbib.el (r2b-capitalize-title):
5348         (r2b-convert-buffer, r2b-help):
5349         * textmodes/page-ext.el (pages-directory)
5350         (pages-directory-goto-with-mouse):
5351         * textmodes/bibtex.el (bibtex-validate-globally):
5352         * textmodes/bib-mode.el (bib-capitalize-title):
5353         * textmodes/artist.el (artist-clear-buffer, artist-system):
5354         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
5355         (local-set-scheme-interaction-buffer, xscheme-process-filter)
5356         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
5357         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
5358         (xscheme-send-control-g-interrupt, xscheme-start-process)
5359         (xscheme-process-sentinel, xscheme-cd):
5360         * progmodes/verilog-mode.el (verilog-read-always-signals)
5361         (verilog-set-define, verilog-getopt-file)
5362         (verilog-module-inside-filename-p):
5363         * progmodes/sh-script.el:
5364         * progmodes/python.el (python-pdbtrack-get-source-buffer)
5365         (python-pdbtrack-grub-for-buffer, python-execute-file):
5366         * progmodes/octave-inf.el (inferior-octave):
5367         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
5368         (idlwave-shell-compile-helper-routines, idlwave-set-local)
5369         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
5370         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
5371         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
5372         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
5373         (idlwave-shell-filter, idlwave-shell-examine-highlight)
5374         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
5375         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
5376         (idlwave-shell-examine-display, idlwave-shell-run-region)
5377         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
5378         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
5379         * progmodes/idlw-help.el (idlwave-help-get-special-help)
5380         (idlwave-help-get-help-buffer):
5381         * progmodes/gud.el (gud-basic-call, gud-find-class)
5382         (gud-tooltip-activate-mouse-motions-if-enabled):
5383         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
5384         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
5385         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
5386         (ebrowse-tags-next-file):
5387         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
5388         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
5389         (ebnf-eps-finish-and-write):
5390         * progmodes/cpp.el (cpp-edit-save):
5391         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
5392         * progmodes/cc-defs.el (c-emacs-features):
5393         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
5394         (antlr-directory-dependencies):
5395         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
5396         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
5397         (ada-find-any-references, ada-make-filename-from-adaname)
5398         (ada-make-body-gnatstub):
5399         * obsolete/rnews.el (news-list-news-groups):
5400         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
5401         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
5402         * net/rcirc.el (rcirc-debug):
5403         * net/newst-treeview.el (newsticker--treeview-list-add-item)
5404         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
5405         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
5406         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
5407         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
5408         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
5409         (newsticker--treeview-list-clear-highlight)
5410         (newsticker--treeview-list-update-highlight)
5411         (newsticker--treeview-list-highlight-start)
5412         (newsticker--treeview-tree-update-highlight)
5413         (newsticker--treeview-get-selected-item)
5414         (newsticker-treeview-mark-list-items-old)
5415         (newsticker--treeview-set-current-node):
5416         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
5417         * net/newst-backend.el (newsticker--get-news-by-funcall)
5418         (newsticker--get-news-by-wget, newsticker--image-get)
5419         (newsticker--image-sentinel):
5420         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
5421         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
5422         (eudc-ph-close-session):
5423         * net/eudc.el (eudc-save-options):
5424         * language/thai-word.el (thai-update-word-table):
5425         * language/japan-util.el (japanese-string-conversion):
5426         * international/titdic-cnv.el (tsang-quick-converter)
5427         (ziranma-converter, ctlau-converter):
5428         * international/mule-cmds.el (describe-language-environment):
5429         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
5430         (skkdic-convert-postfix, skkdic-convert-prefix):
5431         (skkdic-convert-okuri-nasi, skkdic-convert):
5432         * emacs-lisp/re-builder.el (reb-update-overlays):
5433         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
5434         * emacs-lisp/gulp.el (gulp-send-requests):
5435         * emacs-lisp/find-gc.el (trace-call-tree):
5436         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
5437         (eieio-describe-generic):
5438         * emacs-lisp/eieio-base.el (eieio-persistent-read):
5439         * emacs-lisp/edebug.el (edebug-outside-excursion):
5440         * emacs-lisp/debug.el (debugger-make-xrefs):
5441         * emacs-lisp/cust-print.el (custom-prin1-to-string):
5442         * emacs-lisp/chart.el (chart-new-buffer):
5443         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
5444         Use with-current-buffer.
5445         * textmodes/artist.el (artist-system): Don't call
5446         copy-sequence on a fresh string.
5447         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
5449 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
5451         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
5452         is no item to edit.  (Bug#4820)
5453         (todo-top-priorities): Restore point and restore narrowing in Todo
5454         buffer.  (Bug#4820)
5456 2009-10-31  Glenn Morris  <rgm@gnu.org>
5458         * net/ange-ftp.el (top-level): Don't require dired when compiling.
5459         (comint-last-output-start, comint-last-input-start)
5460         (comint-last-input-end): Don't defvar when compiling.
5461         (ange-ftp-process-file): Use bound-and-true-p.
5463         * pcmpl-rpm.el (top-level): Move provide statement to end.
5464         (pcmpl-rpm): Remove unused custom group.
5466         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
5468         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
5470         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
5471         (byte-compile-warnings): Add `constants' as an option.
5472         (byte-compile-callargs-warn, byte-compile-arglist-warn)
5473         (display-call-tree): Update for byte-compile-fdefinition possibly
5474         returning `(macro lambda ...)'.  (Bug#4778)
5475         (byte-compile-variable-ref, byte-compile-setq-default):
5476         Respect `constants' member of byte-compile-warnings.
5478         * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
5479         Use mapc rather than mapcar because the return value is never used.
5481         * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
5482         * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
5483         * cedet/semantic/html.el:
5484         Suppress harmless warnings about setting up semantic-imenu (not
5485         part of Emacs) variables.
5487 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5489         * vc-bzr.el (vc-bzr-revision-keywords): New var.
5490         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
5491         to "submit:".
5493         * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
5494         * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
5495         * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
5496         * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
5497         * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
5498         * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
5499         (semantic-analyzer-debug-global-symbol)
5500         (semantic-analyzer-debug-missing-innertype)
5501         (semantic-analyzer-debug-insert-include-summary):
5502         * cedet/semantic/util.el (semantic-file-tag-table):
5503         (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
5504         (semantic-recursive-find-nonterminal-by-name):
5505         * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
5506         * cedet/semantic/tag-file.el (semantic-prototype-file):
5507         * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
5508         * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
5509         * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
5510         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
5511         (semantic-idle-summary-maybe-highlight):
5512         * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
5513         (semantic-ia-sb-tag-info):
5514         * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
5515         * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
5516         * cedet/semantic/ede-grammar.el (project-compile-target):
5517         (ede-proj-makefile-insert-variables):
5518         * cedet/semantic/debug.el (semantic-debug-set-parser-location):
5519         (semantic-debug-set-source-location, semantic-debug-interface-layout)
5520         (semantic-debug-mode, semantic-debug):
5521         * cedet/semantic/db.el (semanticdb-needs-refresh-p):
5522         * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
5523         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
5524         * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
5525         (semanticdb-find-translate-path-includes--internal)
5526         (semanticdb-reset-log, semanticdb-find-log-activity):
5527         * cedet/semantic/db-file.el (object-write):
5528         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
5529         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
5530         (semanticdb-create-ebrowse-database):
5531         * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
5532         * cedet/semantic/complete.el (semantic-displayor-focus-request)
5533         (semantic-collector-calculate-completions-raw)
5534         (semantic-complete-read-tag-analyzer):
5535         * cedet/semantic/analyze.el (semantic-analyze-pulse):
5536         * cedet/ede/util.el (ede-update-version-in-source):
5537         * cedet/ede/proj.el (project-delete-target):
5538         * cedet/ede/proj-elisp.el (ede-update-version-in-source)
5539         (ede-proj-flush-autoconf):
5540         * cedet/ede/pconf.el (ede-proj-configure-synchronize)
5541         (ede-proj-configure-synchronize):
5542         * cedet/ede/locate.el (ede-locate-file-in-project-impl):
5543         * cedet/ede/linux.el (ede-linux-version):
5544         * cedet/ede/emacs.el (ede-emacs-version):
5545         * cedet/ede/dired.el (ede-dired-add-to-target):
5546         * cedet/ede.el (ede-buffer-header-file, ede-find-target)
5547         (ede-buffer-documentation-files, ede-project-buffers, ede-set)
5548         (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
5549         * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
5550         (cedet-idutils-lid-call, cedet-idutils-expand-filename)
5551         (cedet-idutils-version-check):
5552         * cedet/cedet-global.el (cedet-gnu-global-call):
5553         (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
5554         (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
5555         * cedet/cedet-cscope.el (cedet-cscope-call)
5556         (cedet-cscope-expand-filename, cedet-cscope-version-check):
5557         Use with-current-buffer.
5558         * cedet/ede.el (ede-make-project-local-variable)
5559         (ede-set-project-variables, ede-set): Use dolist.
5561 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
5563         * textmodes/ispell.el (ispell-skip-region-alist):
5564         * international/mule-conf.el (eight-bit):
5565         * international/fontset.el (font-encoding-alist):
5566         * startup.el (pure-space-overflow-message):
5567         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
5568         * paths.el (gnus-nntp-service, rmail-spool-directory)
5569         (term-file-prefix):
5570         * files.el (save-some-buffers-action-alist):
5571         * cmuscheme.el (same-window-buffer-names):
5572         * ielm.el (same-window-buffer-names):
5573         * shell.el (same-window-buffer-names):
5574         * mail/sendmail.el (same-window-buffer-names):
5575         * progmodes/inf-lisp.el (same-window-buffer-names):
5576         * bindings.el (mode-line-client)
5577         (mode-line-column-line-number-mode-map):
5578         * language/tibetan.el (tibetan-precomposition-rule-regexp)
5579         (tibetan-precomposed-regexp): Purecopy string arguments.
5581 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5583         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
5584         (calcDigit-nondigit):
5585         * calc/calc-yank.el (calc-copy-to-buffer):
5586         * calc/calc-units.el (calc-invalidate-units-table):
5587         * calc/calc-trail.el (calc-trail-yank):
5588         * calc/calc-store.el (calc-insert-variables):
5589         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
5590         * calc/calc-prog.el (calc-read-parse-table):
5591         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
5592         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
5593         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
5594         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
5595         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
5596         (calc-graph-name, calc-graph-find-command, calc-graph-view)
5597         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
5598         * calc/calc-ext.el (calc-realign):
5599         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
5600         (calc-embedded-finish-edit, calc-embedded-make-info)
5601         (calc-embedded-finish-command, calc-embedded-stack-change):
5602         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
5604         * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
5605         (overload-docstring-extension): Use that info.
5606         * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
5607         * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
5608         * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
5609         (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
5610         (semantic-nonterminal-full-name): Add the new `when' info.
5611         * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
5612         `assert'.
5614         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
5615         shell-dynamic-complete-filename in preference to
5616         comint-dynamic-complete-filename.
5618         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
5619         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
5620         Don't consider whether the display supports colors.
5621         (bookmark-import-new-list): Use dolist.
5622         (bookmark-bmenu-mode-map): Move initialization into declaration.
5623         (bookmark-bmenu-list): Use dolist, simplify.
5624         (bookmark-show-all-annotations): Use save-selected-window and dolist.
5625         (menu-bar-final-items): Use push.
5627 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
5629         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
5630         it works on remote files.
5631         (vc-hg-diff): Don't pass any `--cwd' argument.
5633 2009-10-27  Kevin Ryde  <user42@zip.com.au>
5635         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
5636         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
5637         (Further to Bug#3921).
5639 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
5641         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
5642         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
5643         calling `tramp-imap-put-file'.  Add file size to the call.
5644         (tramp-imap-get-file-entries): Compute also user name, file size,
5645         and date.
5646         (tramp-imap-handle-insert-directory): Insert uid and gid.
5647         (tramp-imap-handle-file-attributes): Transform uid and gid
5648         according to `id-format'.
5649         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
5650         size in header X-Size.
5652 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
5654         * simple.el (transpose-subr): Give clearer error when the mark
5655         is not set.  (Bug#4807)
5657 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
5659         * net/tramp.el (tramp-perl-file-truename): New defconst.
5660         Perl code contributed by yary <not.com@gmail.com> (tiny change).
5661         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
5662         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
5663         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
5665         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
5666         Ignore `dired-call-process'.
5667         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
5669 2009-10-26  Julian Scheid  <julians37@gmail.com>
5671         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
5672         (tramp-get-remote-readlink): New defun.
5673         (tramp-handle-file-truename): Use it.
5674         (tramp-handle-file-exists-p): Check file-attributes cache, assume
5675         file exists if cache value present.
5676         (tramp-check-cached-permissions): New defun.
5677         (tramp-handle-file-readable-p): Use it.
5678         (tramp-handle-file-writable-p): Likewise.
5679         (tramp-handle-file-executable-p): Likewise.
5680         (tramp-handle-file-name-all-completions): Try using Perl to get
5681         partial completions.  When perl not available, combine `cd' and
5682         `ls' into single remote operation and use shell expansion to get
5683         partial remote directory contents.  Set `file-exists-p' cache for
5684         directory and any files returned by ls.  Change cache handling to
5685         support partial directory contents.  Use error message emitted by
5686         remote `cd' or Perl code for local tramp-error.
5687         (tramp-do-copy-or-rename-file-directly): Avoid separate
5688         tramp-send-command-and-check call.
5689         (tramp-handle-process-file): Merge three remote ops into one.
5690         Do not flush all caches when `process-file-side-effects' is set.
5691         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
5692         file-attributes shows uid/gid to be set already.
5694 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
5696         * textmodes/tex-mode.el (tex-dvi-view-command)
5697         (tex-show-queue-command, tex-open-quote):
5698         * progmodes/ruby-mode.el (auto-mode-alist)
5699         (interpreter-mode-alist): Purecopy strings.
5701         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
5703         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
5704         string for the hook, keymap and abbrev table.
5706         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
5708         * x-dnd.el (x-dnd-xdnd-to-action):
5709         * startup.el (fancy-startup-text, fancy-about-text): Change to
5710         defconst from defvar.
5712         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
5714         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
5715         Purecopy initialization strings.
5717         * mail/sendmail.el (mail-header-separator)
5718         (mail-personal-alias-file):
5719         * mail/rmail.el (rmail-default-dont-reply-to-names)
5720         (rmail-ignored-headers, rmail-retry-ignored-headers)
5721         (rmail-highlighted-headers, rmail-secondary-file-directory)
5722         (rmail-secondary-file-regexp):
5723         * files.el (null-device, file-name-invalid-regexp)
5724         (locate-dominating-stop-dir-regexp)
5725         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
5726         (interpreter-mode-alist): Use mapcar instead of mapc.
5728         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
5730         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
5731         (completion-ignored-extensions):
5732         (debug-ignored-errors): Purecopy strings.
5734 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5736         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
5737         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
5738         (pcomplete--here): Use push.
5740         * subr.el (all-completions): Declare the 4th arg obsolete.
5742 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5744         * pcomplete.el (pcomplete-unquote-argument-function): New var.
5745         (pcomplete-unquote-argument): New function.
5746         (pcomplete--common-suffix): Always pay attention to case.
5747         (pcomplete--table-subvert): Quote and unquote the text.
5748         (pcomplete--common-quoted-suffix): New function.
5749         (pcomplete-std-complete): Use it and pcomplete-begin.
5751         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
5752         we're inside a dedicated or minibuffer window.
5754 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5756         * cedet/semantic/fw.el (semantic-alias-obsolete)
5757         (semantic-varalias-obsolete): Make the `when' arg mandatory.
5758         (define-mode-overload-implementation):
5759         * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
5760         * cedet/semantic/wisent.el (wisent-lex-make-token-table):
5761         * cedet/semantic/util.el (semantic-file-token-stream)
5762         (semantic-something-to-stream):
5763         * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
5764         (semantic-expand-nonterminal):
5765         * cedet/semantic/tag-file.el (semantic-find-nonterminal)
5766         (semantic-find-dependency, semantic-find-nonterminal)
5767         (semantic-find-dependency):
5768         * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
5769         (semantic-flex-text, semantic-flex-make-keyword-table)
5770         (semantic-flex-keyword-p, semantic-flex-keyword-put)
5771         (semantic-flex-keyword-get, semantic-flex-map-keywords)
5772         (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
5773         * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
5774         * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
5775         (semantic-after-idle-scheduler-reparse-hooks):
5776         * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
5777         * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
5778         * cedet/semantic.el (semantic-toplevel-bovine-table)
5779         (semantic-toplevel-bovine-cache)
5780         (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
5781         (semantic-init-mode-hooks, semantic-init-db-hooks)
5782         (semantic-bovination-working-type): Provide the `when' arg.
5784 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
5786         * bookmark.el: Update documentation, especially documentation
5787         of `bookmark-alist' and of the bookmark file format.
5788         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
5790 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
5792         * mail/emacsbug.el (report-emacs-bug): Clarify that the
5793         keybindings apply to the mail buffer (Bug#4003).  Shrink help
5794         window to buffer.
5796         * whitespace.el (whitespace-mode, whitespace-newline-mode)
5797         (global-whitespace-mode, global-whitespace-newline-mode)
5798         (whitespace-toggle-options, global-whitespace-toggle-options):
5799         Doc fix (Bug#3660).
5801         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
5802         of xmltok-start before the end tag was inserted (Bug#2840).
5804         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
5805         patterns that are preceded by an open-paren (Bug#1320).
5807 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
5809         * files.el (delete-directory): Delete symlinks to directories with
5810         delete-file (Bug#4739).
5812 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
5814         * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
5815         * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
5816         argument to make-obsolete.
5818         * cedet/semantic/fw.el (semantic-alias-obsolete)
5819         (semantic-varalias-obsolete): Add optional WHEN argument.
5821 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
5823         * vc.el (vc-backend-for-registration): Rename from
5824         vc-get-backend-for-registration.  Update callers.
5826         * international/mule-cmds.el (set-language-info-alist):
5827         Purecopy lang-env.
5828         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
5829         (charset): Purecopy the name.
5830         (define-char-code-property): Purecopy string arguments.
5832         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
5833         Purecopy string arguments.
5835         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5836         * ediff-hook.el (menu-bar-ediff-menu):
5837         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
5838         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
5840 2009-10-24  Glenn Morris  <rgm@gnu.org>
5842         * comint.el (comint-dynamic-list-completions):
5843         * term.el (term-dynamic-list-completions): Use choose-completion rather
5844         than obsolete alias mouse-choose-completion.
5846         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
5847         file-cache-choose-completion.
5848         (file-cache-choose-completion): Handle an optional event argument.
5849         (file-cache-mouse-choose-completion): Make it an obsolete alias.
5851         * progmodes/octave-mod.el (octave-complete-symbol):
5852         Use choose-completion if mouse-choose-completion is ever removed.
5854         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
5855         use.
5857         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
5858         compiler.
5860         * vc-hooks.el (vc-responsible-backend): Fix declaration.
5862 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5864         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
5865         Ignore `pred' now that we receive one.
5866         Handle test-completion specially.
5868 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
5870         * vc.el (vc-responsible-backend): Throw an error if not backend is
5871         found.  Remove the REGISTER argument.  Move the code dealing with
5872         REGISTER ...
5873         (vc-get-backend-for-registration): ... here.  New function.
5874         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
5875         of vc-responsible-backend, pass the file name instead of the
5876         directory name.
5878 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5880         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
5881         New funs.
5882         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
5883         (pcomplete-comint-setup): Don't modify a global var via
5884         accidental side-effects.
5885         (pcomplete-shell-setup): Adjust call accordingly.
5886         (pcomplete-parse-comint-arguments): Use push.
5888 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
5890         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
5891         Allow uncapitalized info node names (Bug#3921).
5893         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
5894         to the DEBUG file (Bug#3781).
5896 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
5898         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
5899         dictionary entry (Bug#4579).
5901 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
5903         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
5904         from `rfn-eshadow-update-overlay-hook' when unloading.
5905         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
5906         "rsyncc".  Adjust doc string.
5907         (tramp-temp-buffer-file-name): New buffer-local defvar.
5908         (tramp-handle-insert-file-contents, tramp-handle-write-region):
5909         Keep temporary file when indicated by method ("rsync" and
5910         "rsyncc").
5911         (tramp-handle-write-region): Handle APPEND.
5912         (tramp-delete-temp-file-function): New defun.  Added to
5913         `kill-buffer-hook'.
5915 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
5917         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
5919 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
5921         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
5922         (color-name-rgb-alist, tty-standard-colors)
5923         (tty-color-mode-alist): Change to defconst.
5925         * simple.el (mark-inactive): Purecopy message.
5927         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
5928         (global-map, yank-menu):
5929         * textmodes/ispell.el (ispell-menu-map):
5930         * net/eudc.el (eudc-tools-menu):
5931         * international/mule-cmds.el (describe-language-environment-map)
5932         (setup-language-environment-map, set-coding-system-map)
5933         (mule-menu-keymap):
5934         * vc-hooks.el (vc-menu-entry, vc-menu-map):
5935         * replace.el (occur-mode-map):
5936         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
5938 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
5940         * calc/calc.el (math-read-number, math-read-number-simple): Use
5941         `save-match-data'.
5943 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5945         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
5946         rather than fiddling with global-map bindings, since it should only
5947         affect per-terminal settings.
5948         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
5950         * minibuffer.el (completion-table-with-terminator): Allow to specify
5951         the terminator-regexp.
5953         * simple.el (switch-to-completions): Look for *Completions* in other
5954         frames as well.
5956         * pcomplete.el: Allow the use of completion-tables.
5957         (pcomplete-std-complete): New command.
5958         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
5959         (pcomplete--here): Use a function for `form' rather than an expression,
5960         so it can be byte-compiled.
5961         (pcomplete-here, pcomplete-here*): Adjust accordingly.
5962         Add edebug declaration.
5963         (pcomplete-show-completions): Remove unused var `curbuf'.
5964         (pcomplete-do-complete, pcomplete-stub):
5965         Don't assume `completions' is a list of strings any more.
5967 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
5969         * find-dired.el (find-name-arg): Fix typo in docstring.
5971 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5973         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
5974         (pcmpl-linux-fs-types): Same, and update to new modules layout.
5976         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
5977         pcomplete-entries.
5979         * comint.el (comint-read-input-ring, comint-write-input-ring)
5980         (comint-substitute-in-file-name)
5981         (comint-dynamic-complete-as-filename)
5982         (comint-dynamic-simple-complete)
5983         (comint-dynamic-list-filename-completions)
5984         (comint-dynamic-list-completions)
5985         (comint-redirect-results-list-from-process): Minor simplifications.
5987 2009-10-21  Kevin Ryde  <user42@zip.com.au>
5989         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
5990         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
5991         the first form.  And insert a blank line after ";;; Code" since
5992         that's usual style.  (Bug#4612)
5994         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
5996 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5998         * minibuffer.el (completion-table-with-terminator): Properly implement
5999         boundaries, in case `terminator' appears in the suffix.
6000         (completion--embedded-envvar-table): Don't return boundaries if
6001         there's no valid completion.  Simplify.
6002         (completion-file-name-table): New completion table extracted from
6003         completion--file-name-table.
6004         (completion--file-name-table): Use it.
6005         (read-file-name-predicate): Declare obsolete.
6006         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
6007         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
6008         completion-file-name-table, and use the `pred' argument.
6009         * files.el (locate-file-completion-table): Use the `pred' arg rather
6010         than read-file-name-predicate.
6011         (abbreviate-file-name): Use \` rather than ^ for BOS.
6013 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
6015         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
6016         vc-responsible-backend to register, it causes problems.
6018 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6020         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
6022 2009-10-21  Eric Ludlam  <zappo@gnu.org>
6024         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
6025         (semantic-c-debug-mode-init-pch): New functions.
6026         (semantic-c-debug-mode-init-last-mode): New var.
6027         (semantic-c-parse-lexical-token): Use them.
6029         * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
6030         When extracting the argument list, limit only by point-max.
6032 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
6034         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
6035         (tramp-smb-handle-file-attributes): Use it.
6036         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
6037         (tramp-smb-handle-insert-directory): Use `mapc' rather than
6038         `mapcar'.  Use `tramp-smb-get-stat-capability'.
6039         Add `dired-filename' text properties.
6040         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
6041         (tramp-smb-maybe-open-connection): Simplify check for smbclient
6042         version.
6044 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6046         * subr.el (read-key-delay): Reduce to 0.01.
6047         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
6048         (bug#4751).
6050 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6052         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
6054         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
6055         (Info-menu): Remove unused vars `last' and `completions'.
6056         (Info-index-nodes): Remove unused var `node'.
6058         * info.el (Info-complete-menu-item): Use complete-with-action.
6060 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
6062         Make vc-annotate work through copies and renames.
6063         * vc-annotate.el (vc-annotate-extract-revision-at-line):
6064         Return the file name too.
6065         (vc-annotate-revision-at-line)
6066         (vc-annotate-find-revision-at-line)
6067         (vc-annotate-revision-previous-to-line)
6068         (vc-annotate-show-log-revision-at-line): Update to get the file
6069         name from vc-annotate-extract-revision-at-line.
6070         (vc-annotate-show-diff-revision-at-line-internal): Change the
6071         argument to mean whether to show a file diff or not.  Get the file
6072         name from vc-annotate-extract-revision-at-line.
6073         (vc-annotate-show-diff-revision-at-line):
6074         Update vc-annotate-show-diff-revision-at-line call.
6075         (vc-annotate-warp-revision): Add an optional file argument.
6077         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
6078         (vc-git-annotate-extract-revision-at-line): Also return the file
6079         name if found.
6081         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
6082         command.  Remove unused code.
6083         (vc-hg-annotate-re): Update to match --follow output.
6084         (vc-hg-annotate-extract-revision-at-line): Also return the file
6085         name if found.
6087         * vc.el: Update annotate-extract-revision-at-line documentation.
6089 2009-10-18  Kevin Ryde  <user42@zip.com.au>
6091         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
6092         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
6094         * net/browse-url.el (browse-url): Identify alist with "consp and
6095         not functionp" and let all other things go down the `apply' leg,
6096         as suggested by Stefan.  (Further to bug#4531.)
6098 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
6100         * minibuffer.el (read-file-name): Check for repeat before putting
6101         a default argument in file-name-history (Bug#4657).
6103         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
6104         read syntax (Bug#4737).
6106         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
6108 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
6110         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
6111         (html-tag-alist, html-tag-help): Add descriptions for undocumented
6112         entries and make note of obsolete tags.
6114 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6116         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
6118 2009-10-18  Glenn Morris  <rgm@gnu.org>
6120         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
6121         grep, so that binary files (eg international/uni-bidi.el) can match.
6122         Remove test for "UnicodeData" files, since it is hopefully unnecessary
6123         now, and in any case the file header format has changed.
6125 2009-10-17  Glenn Morris  <rgm@gnu.org>
6127         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
6128         (flyspell-get-word, flyspell-large-region)
6129         (flyspell-auto-correct-previous-word): Doc/error message fixes.
6131 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
6133         * Makefile.in (ELCFILES): Add ede/shell.
6135 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
6137         * term/common-win.el (x-colors): Purecopy it.
6139 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6141         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
6142         permissive for when the buffer is empty.
6143         (tar-header-block-tokenize): Decode the username and groupname.
6144         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
6146 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
6148         * cedet/srecode/srt.el:
6149         * cedet/srecode/compile.el:
6150         * cedet/semantic/mru-bookmark.el:
6151         * cedet/semantic/debug.el:
6152         * cedet/semantic/complete.el:
6153         * cedet/semantic/analyze.el: Require CL when compiling.
6155 2009-10-17  Eric Ludlam  <zappo@gnu.org>
6157         * cedet/semantic/scope.el
6158         (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
6159         tmpscope so that the regular scope will continue to work.
6161         * cedet/semantic/idle.el (semantic-idle-tag-highlight):
6162         Use semantic-idle-summary-highlight-face as the highlighting.
6164         * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
6165         contains multibyte characters, choose first applicable coding
6166         system automatically.
6168         * cedet/ede/project-am.el (project-run-target): New method.
6169         (project-run-target): New method.
6171         * cedet/ede.el (ede-target): Add run target menu item.
6172         (ede-project, ede-minor-keymap): Add ede-run-target binding.
6173         (ede-run-target): New function.
6174         (ede-target::project-run-target): New method.
6176         * cedet/ede/proj.el (project-run-target): New method.
6178         * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
6179         (ede-g++-libtool-shared-compiler): Remove SHELL.  Remove COMMANDS.
6180         Add :rules.
6181         (ede-proj-target-makefile-shared-object): Only libtool compilers
6182         now available.  Add linkers for libtool.
6183         (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
6184         (ede-proj-makefile-target-name): Always use .la extension.
6186         * cedet/ede/proj-prog.el (project-run-target): New method.
6188         * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
6189         (ede-g++-linker): Change Change link lines.
6191         * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
6192         When searching for old variables, go to the end of the buffer and
6193         search backward from there.
6194         (ede-proj-makefile-automake-insert-subdirs)
6195         (ede-proj-makefile-automake-insert-extradist): New methods.
6196         (ede-proj-makefile-create): Use them.
6198         * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
6199         Force FILE to expand to the current target.  Use file-exists-p to
6200         check that it exists.
6202         * cedet/ede/linux.el (ede-linux-version): Don't call "head".
6203         (ede-linux-load): Wrap dir in file-name-as-directory.
6204         Set :version slot.
6206         * cedet/ede/files.el (ede-get-locator-object): When enabling
6207         locate, do so on "top".
6209         * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
6210         file-name-as-directory during compare.
6211         (ede-emacs-version): Return Emacs/XEmacs differentiator.
6212         Get version number from different places.  Don't call egrep.
6213         (ede-emacs-load): Set :version slot.  Call file-name-as-directory
6214         to set the directory.
6216         * cedet/ede/shell.el: New file.
6218         * cedet/inversion.el (inversion-decoders): Allow for stray . in
6219         alpha/beta variants.
6221 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6223         * international/mule-cmds.el (select-safe-coding-system): If the file
6224         has a coding cookie, use it regardless of any other setting (bug#4712).
6226 2009-10-17  Glenn Morris  <rgm@gnu.org>
6228         * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
6229         All errors should have messages.
6231         * foldout.el (foldout-mouse-swallow-events):
6232         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
6234         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
6235         (dired-keep-marker-copy, dired-keep-marker-hardlink)
6236         (dired-keep-marker-symlink, dired-dwim-target)
6237         (dired-copy-preserve-time): Do not autoload these defcustoms.
6239         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
6240         messages from messing up the file coding.  (Bug#4623)
6242 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
6244         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
6245         if no match is found for the current dictionary.  (Bug#4578)
6247         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
6248         optional, since that is how it is documented, and this is often called
6249         with a nil argument.  (Bug#4577)
6250         (flyspell-external-point-words, flyspell-auto-correct-word)
6251         (flyspell-correct-word-before-point, flyspell-word-search-forward)
6252         (flyspell-word-search-backward): Remove nil argument in calls to
6253         flyspell-get-word, since it is not needed now.
6255 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
6257         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
6259 2009-10-16  Glenn Morris  <rgm@gnu.org>
6261         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
6263 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
6265         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
6266         (ange-ftp-file-size): New function.
6267         (ange-ftp-file-attributes): Use it.
6269 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
6271         * net/tramp-smb.el (tramp-smb-version): New defvar.
6272         (tramp-smb-maybe-open-connection): Use it, in order to avoid
6273         repeated checks.
6275 2009-10-16  Glenn Morris  <rgm@gnu.org>
6277         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
6278         Maybe copy some custom properties from old to new name.  (Bug#4706)
6280 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
6282         * subr.el (error, sit-for, start-process-shell-command)
6283         (start-file-process-shell-command): Set the calling convention
6284         after the function definition.
6286 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6288         * subr.el (error, sit-for, start-process-shell-command)
6289         (start-file-process-shell-command): Use the new
6290         set-advertised-calling-convention feature.
6292 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
6294         * international/ucs-normalize.el (ucs-normalize-version):
6295         Change to 1.2.
6296         (check-range): Adjust for Unicode 5.2.
6298 2009-10-15  Juri Linkov  <juri@jurta.org>
6300         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
6301         to the `menu-item' format.
6303 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
6305         * net/tramp.el (tramp-replace-environment-variables): Do not fail
6306         if the environment variable does not exist.
6308         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6309         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
6310         parameter.
6311         (tramp-smb-handle-add-name-to-file)
6312         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6313         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6314         (tramp-smb-handle-file-attributes)
6315         (tramp-smb-do-file-attributes-with-stat)
6316         (tramp-smb-handle-file-local-copy)
6317         (tramp-smb-handle-insert-directory)
6318         (tramp-smb-handle-make-directory)
6319         (tramp-smb-handle-make-directory-internal)
6320         (tramp-smb-handle-make-symbolic-link)
6321         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
6322         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
6323         (tramp-smb-maybe-open-connection): Apply the changed parameters.
6324         (tramp-smb-read-file-entry): Read Disk names in compressed format.
6325         Handle long file names.
6326         (tramp-smb-get-cifs-capabilities): Check, whether the connection
6327         process is running.
6328         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
6329         Read share names with "-g" option.
6331 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
6333         * net/rcirc.el (rcirc-view-log-file): New command.
6334         (rcirc-track-minor-mode-map): Remove C-c ` binding.
6335         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
6336         specified.
6338 2009-10-15  Glenn Morris  <rgm@gnu.org>
6340         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
6341         from the second command-line argument.
6342         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
6343         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
6344         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
6345         w32-batch-update-autoloads.
6346         * emacs-lisp/autoload.el (autoload-make-program): New variable.
6347         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
6349         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
6350         the headers cannot be located.  Simplify, subtracting superflous
6351         save-excursions.
6353 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6355         Replace completion-base-size by completion-base-position to fix bugs
6356         such as (bug#4699).
6357         * simple.el (completion-base-position): New var.
6358         (completion-base-size): Mark as obsolete.
6359         (choose-completion): Make it work for mouse events as well.
6360         Pass the new base-position to choose-completion-string.
6361         (choose-completion-guess-base-position): New function, extracted from
6362         choose-completion-delete-max-match.
6363         (choose-completion-delete-max-match): Use it.  Make obsolete.
6364         (choose-completion-string): Use the new base-position info.
6365         (completion-root-regexp): Delete.
6366         (completion-setup-function): Preserve completion-base-position.
6367         Eliminate obsolete base-size manipulation.
6368         * minibuffer.el (display-completion-list): Don't mess with base-size.
6369         (minibuffer-completion-help): Set completion-base-position instead.
6370         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
6371         choose-completion.
6372         * textmodes/bibtex.el (bibtex-complete):
6373         * emacs-lisp/crm.el (crm--choose-completion-string):
6374         Adjust to new calling convention.
6375         * complete.el (partial-completion-mode): Use minibufferp to avoid
6376         bumping into incompatible change to choose-completion-string-functions.
6377         * ido.el (ido-choose-completion-string): Make its calling convention
6378         more permissive.
6379         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
6380         base-size manipulation.
6381         (comint-dynamic-list-input-ring): Use dotimes and push.
6382         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
6383         fundamental-mode.  Use `or'.
6385 2009-10-14  Juri Linkov  <juri@jurta.org>
6387         * misearch.el (multi-isearch-next-buffer-from-list)
6388         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
6390 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6392         * Makefile.in (compile-onefile): Load `bytecomp' rather than
6393         `bytecomp.el'.
6395         * minibuffer.el (completion-pcm--merge-completions): Make sure the
6396         string we return is all made up of text from the completions rather
6397         than part from the completions and part from the input (bug#4219).
6399         * ido.el (ido-everywhere): Use define-minor-mode.
6401         * buff-menu.el (list-buffers, ctl-x-map):
6402         Mark the entry points with ;;;###autoload cookies.
6404 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
6406         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
6407         correctly in the detached head case.
6408         (vc-git-print-log): Remove unused binding.
6410         * vc.el (vc-responsible-backend): When a directory is passed for
6411         for registration create a VC repository if no backend is
6412         responsible for the directory argument.
6413         (vc-deduce-fileset): Tell vc-responsible-backend to register.
6415         * vc.el: Move comments about RCS and SCCS ...
6416         * vc-rcs.el:
6417         * vc-sccs.el: ... here, respectively.
6419 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6421         * minibuffer.el (completion--file-name-table): Return nil if there's
6422         no file completion, even if substitute-in-file-name changed
6423         the string (bug#4708).
6425 2009-10-13  Juri Linkov  <juri@jurta.org>
6427         * files-x.el (read-file-local-variable-value): Don't filter out
6428         minor modes from mode name completion (bug#4664).
6430 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
6432         * international/mule-cmds.el (ucs-names): Remove exclusion of
6433         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
6435 2009-10-13  Kenichi Handa  <handa@m17n.org>
6437         * international/uni-name.el: Regenerated.
6439 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
6441         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
6442         should be automatically buffer-local, but isn't.)
6444 2009-10-12  Sam Steingold  <sds@gnu.org>
6446         * progmodes/compile.el (compilation-next-error-function): Fix the
6447         timestamps if the buffer has been visited before.
6448         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
6449         non-anchored patterns, like the perl one (bug#3928).
6451 2009-10-12  Glenn Morris  <rgm@gnu.org>
6453         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
6454         Let-bind `size'.
6456 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
6458         * proced.el (proced-unload-function): New function.
6460         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
6461         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
6462         Doc fix.
6464         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
6466 2009-10-11  Juri Linkov  <juri@jurta.org>
6468         * files-x.el (read-file-local-variable-value):
6469         Provide default value only for bound variables (bug#4664).
6471 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
6473         * net/tramp.el (tramp-local-host-p): Function shall return nil for
6474         connection methods like smb.
6476         * net/tramp-cache.el (tramp-flush-connection-property): The hash
6477         can be empty.
6479         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6480         (tramp-smb-file-name-handler-alist): Add handlers for
6481         `add-name-to-file', `make-symbolic-link'.
6482         (tramp-smb-handle-add-name-to-file)
6483         (tramp-smb-do-file-attributes-with-stat)
6484         (tramp-smb-handle-make-symbolic-link)
6485         (tramp-smb-get-cifs-capabilities): New defuns.
6486         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6487         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6488         (tramp-smb-handle-file-local-copy)
6489         (tramp-smb-handle-make-directory-internal)
6490         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
6491         The file name syntax depends on cifs capabilities.
6492         (tramp-smb-handle-file-attributes):
6493         Call `tramp-smb-do-file-attributes-with-stat' if possible.
6494         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
6495         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
6497 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
6499         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
6500         (eieio-defclass): Apply deftype handler and setf-method properties
6501         directly.
6502         (eieio-add-new-slot): Avoid union function from cl library.
6503         (eieio--typep): New function.
6504         (eieio-perform-slot-validation): Use it.
6506 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
6508         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
6509         Update documentation to refer to the variables documented in r1.135.
6510         (Bug#4188)
6512 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
6514         * bookmark.el (Info-suffix-list): Remove this unused variable.
6515         (bookmark-current-point): Remove this obsolete variable.
6516         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
6517         Adjust for removal of bookmark-current-point.
6519         (bookmarks-already-loaded, bookmark-current-buffer)
6520         (bookmark-yank-point): Document.  (Bug#4188)
6522 2009-10-10  Glenn Morris  <rgm@gnu.org>
6524         * frame.el (frame-height): Doc fix.
6526         * calendar/calendar.el (calendar-split-width-threshold): New option.
6527         (calendar-basic-setup): Use calendar-split-width-threshold.
6529 2009-10-10  Sascha Wilde  <wilde@sha-bang.de>
6531         * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
6532         Use .la for Automake.
6534 2009-10-09  Chong Yidong  <cyd@stupidchicken.com>
6536         * cedet/ede/pconf.el (ede-proj-configure-synchronize):
6537         Use "autoreconf -i".  Suggested by Andreas Schwab.
6539 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
6541         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
6542         Ideographic Supplement" range (U+1F200..U+1F2FF).
6544 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6546         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
6547         since the list will have been rebuilt anyway.  (Bug#4349)
6549 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6551         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
6552         (bookmark-bmenu-execute-deletions): Don't save here, as
6553         bookmark-delete will now do so if necessary.
6554         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
6555         (Bug#4348)
6557 2009-10-09  Glenn Morris  <rgm@gnu.org>
6559         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
6561 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6563         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
6564         (bookmark-jump-other-window): Just invoke bookmark-jump with new
6565         argument now, so the two function's behaviors will match.  (Bug#3645)
6567 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
6569         * cedet/ede/proj.el (project-make-dist, project-compile-project):
6570         Fix filename test.
6571         (ede-proj-dist-makefile): Use expand-file-name instead of concat
6572         to expand file names.
6574 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
6576         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
6577         (tramp-file-name-real-host, tramp-file-name-port):
6578         Apply `save-match-data'.
6580         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
6581         case both directories are remote.
6582         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
6583         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
6585 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
6587         * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
6588         (ede-proj-target-makefile-objectcode): Use it.
6590         * cedet/ede/source.el (ede-want-any-source-files-p)
6591         (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
6592         Return search result.  This error was introduced while merging.
6594 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
6596         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
6598 2009-10-07  Glenn Morris  <rgm@gnu.org>
6600         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
6601         of concat.
6603 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6605         * files-x.el (read-file-local-variable): Include some
6606         non-user-variables in the completion table (bug#4664).
6608 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
6610         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
6611         message.
6613         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6614         (tramp-smb-file-name-handler-alist): Add handler for
6615         `copy-directory', `expand-file-name', `set-file-modes'.
6616         (tramp-smb-handle-copy-directory)
6617         (tramp-smb-handle-expand-file-name)
6618         (tramp-smb-handle-set-file-modes): New defuns.
6619         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
6620         (tramp-smb-handle-file-attributes): Simplify check for retrieving
6621         entry.
6622         (tramp-smb-handle-insert-directory): Don't flush the cache.
6623         (tramp-smb-maybe-open-connection): Check for samba client and
6624         server versions.
6626 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
6628         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
6629         to not error out of search for "^lisp=" fails.
6631 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
6633         * makefile.w32-in (WINS_UPDATES): New macro.
6634         (custom-deps, finder-data, autoloads): Use it.
6636 2009-10-07  Glenn Morris  <rgm@gnu.org>
6638         * Makefile.in (autoloads): Revert previous change.
6639         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
6640         the list of preloaded files passed on the command-line, get
6641         it from src/Makefile.
6643         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
6644         show the original buffer rather than a random one.
6646 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
6648         * help.el (describe-no-warranty): Place point in a slightly better
6649         position in the GPLv3 text.
6651 2009-10-06  Sam Steingold  <sds@gnu.org>
6653         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
6654         the comm attribute is present before calling regexp-quote.
6656 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
6658         * play/animate.el (animate-string): For good effect, make sure
6659         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
6661         * play/animate.el (animate-sequence, animate-birthday-present):
6662         * misc.el (butterfly): Don't set `indent-tabs-mode'.
6664 2009-10-06  Glenn Morris  <rgm@gnu.org>
6666         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
6668         * emacs-lisp/autoload.el (autoload-excludes): New variable.
6669         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
6670         (batch-update-autoloads): Process a string value of autoload-excludes,
6671         set during the build process.
6672         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
6674         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
6675         inside with-parsed...  macro so that `v' is defined.
6677         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
6678         * progmodes/fortran.el (fortran-end-of-block)
6679         (fortran-beginning-of-block):
6680         Also push mark in the macro case.
6682         * emerge.el (emerge-show-file-name):
6683         * calc/calc.el (calc-quit):
6684         * calc/calc-misc.el (calc-big-or-small):
6685         * calc/calc-graph.el (calc-graph-view):
6686         * calc/calc-ext.el (calc-reset):
6687         * calendar/calendar.el (calendar-basic-setup):
6688         Use window-full-height-p.
6690         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
6691         header we don't understand, don't insert another.  (Bug#4624)
6692         If changing mime charset, insert the new one in the right place.
6694 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
6696         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
6697         (cal-tex-cursor-month): Correctly increment the end date for diary and
6698         holiday listing.  (Bug#4626)
6700 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6702         * help-fns.el (describe-function-1): Don't burp if the function is not
6703         a symbol.
6705 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
6707         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
6708         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
6709         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
6710         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
6712         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
6713         (eieio-default-superclass): Reflow docstrings.
6714         (this, class-option-assoc, defclass, eieio-class-un-autoload)
6715         (eieio-unbind-method-implementations, defmethod)
6716         (eieio-validate-slot-value, eieio-validate-class-slot-value)
6717         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
6718         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
6719         (eieio-slot-originating-class-p, eieio-slot-name-index)
6720         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
6721         (constructor, initialize-instance, no-next-method, object-print)
6722         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
6723         Fix typos in docstrings.
6724         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
6725         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
6726         (next-method-p): Doc fixes.
6727         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
6728         Fix typos in error messages.
6729         (eieio-defmethod): Fix typo in description of generic method.
6731         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
6732         (eieio-persistent-save-interactive, slot-missing):
6733         Fix typos in docstrings.
6734         (eieio-instance-inheritor-slot-boundp): Doc fix.
6736         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
6737         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
6739         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
6740         (eieio-custom-object-apply-reset):
6741         Fix typos in docstrings and error messages.
6743         * emacs-lisp/eieio-datadebug.el (data-debug-show):
6744         Fix typo in docstring.
6746         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
6747         (eieio-browse-tree): Doc fix.
6748         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
6749         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
6750         Fix typos in docstrings.
6752         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
6753         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
6754         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
6755         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
6756         Reflow docstrings.
6758 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
6760         * vc-hg.el (log-view-vc-backend): Declare for compiler.
6761         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
6762         Set log-view-vc-backend so that diff can work.
6764         * log-view.el (log-view-diff): Use vc-diff-internal instead of
6765         vc-version-diff.
6766         (vc-diff-internal): Autoload this instead of vc-version-diff.
6768 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
6770         * simple.el (eval-expression): Doc fix.
6772         * progmodes/cwarn.el (cwarn-mode): Doc fix.
6774 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
6776         * files.el (directory-files-no-dot-files-regexp): New defconst.
6777         (delete-directory): Use it.
6778         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
6780         * net/tramp.el (tramp-verbose): Fix docstring.
6781         (tramp-methods): Add recursive option to `tramp-copy-args'.
6782         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
6783         "scp1_old", "scp2_old", "rsync", "rsyncc".
6784         (tramp-default-method): Check also for `auth-source-user-or-password'.
6785         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
6786         Add handler for `copy-directory'.
6787         (tramp-handle-copy-directory): New defun.
6788         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
6789         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
6790         Optimize sent command.
6792 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6794         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
6795         window if necessary.
6797         * calendar/calendar.el (calendar-basic-setup): Don't call
6798         switch-to-buffer in a dedicated window.
6800 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
6802         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
6803         don't do anything related to relocating, just return nil.
6804         (bookmark-error-no-filename): New error.
6805         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
6806         bookmark has no file.  Don't even attempt to handle things that
6807         are not files; the whole point of custom handlers is to keep that
6808         knowledge elsewhere anyway.  Tighten some comments.
6809         (bookmark-file-or-variation-thereof): Remove now-unused function.
6810         (bookmark-location): Doc string fix.
6811         (Bug#4250)
6813 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6815         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
6816         don't use a file dialog, because they usually don't know how to read
6817         a directory target from the user.  (Bug#4230)
6818         Also, make sure the prompt can display directories as well as files.
6820 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6822         * bookmark.el (bookmark-set, bookmark-buffer-name):
6823         Improve doc strings.  (Bug#1193)
6825 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6827         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
6828         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
6829         (bookmark-get-annotation, bookmark-set-annotation)
6830         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
6831         (bookmark-set-position, bookmark-get-front-context-string)
6832         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
6833         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
6834         (bookmark-jump-other-window, bookmark-handle-bookmark)
6835         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
6836         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
6837         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
6838         Improve doc strings to say whether bookmark can be a string or
6839         a record or both, and make other consistency and clarity fixes.
6840         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
6841         (bookmark-default-annotation-text, bookmark-yank-word)
6842         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
6843         (bookmark-import-new-list, bookmark-maybe-rename)
6844         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
6845         (bookmark-bmenu-bookmark): Give these doc strings.
6846         (bookmark-bmenu-check-position): Give this a doc string, but also
6847         add a FIXME comment about how the function may be pointless.
6848         (bookmark-default-handler): Rework doc string and change a
6849         parameter name, to clarify that this takes a bookmark record
6850         not a bookmark name.
6851         (bookmark-set): Change a parameter name to indicate its meaning,
6852         and improve the doc string a bit.
6853         (Bug#4188)
6855 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6857         * bookmark.el (bookmark-alist): Document the new `handler' element
6858         in the param alist.
6859         (bookmark-make-record-function): Adjust documentation for above.
6860         (Bug#4193)
6862 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6864         * info.el (Info-bookmark-make-record): Document this function.
6865         (Info-bookmark-jump): Document with a doc string, not just a comment.
6866         (Bug#4203)
6868 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
6870         * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
6871         (semantic-new-buffer-fcn): Call parser setup functions here.
6872         (semantic-mode): Don't call parser setup functions here, it's done
6873         in semantic-new-buffer-fcn now.
6874         (semantic-mode): Parse all existing buffers when enabled.
6876         * cedet/srecode/compile.el (srecode-compile-file):
6877         Call semantic-new-buffer-fcn if the buffer has not been parsed.
6879 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
6881         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
6883         * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
6884         (proj-comp-insert-variable-once): New macro, renamed from
6885         ede-pmake-insert-variable-once in ede/pmake.edl.
6886         (ede-proj-makefile-insert-variables): Use it.
6888 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
6890         * files.el (copy-directory): New defun.
6892         * dired-aux.el (dired-copy-file-recursive): Use it.
6894 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
6896         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
6897         (makefile-end-of-command):
6898         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
6899         (semantic-end-of-context): Fix previous change.  Doc fixes.
6901 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
6903         * files-x.el (modify-dir-local-variable)
6904         (copy-dir-locals-to-file-locals-prop-line):
6905         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
6906         (makefile-end-of-command):
6907         * cedet/semantic/lex.el (semantic-lex-token):
6908         * cedet/semantic/analyze/fcn.el
6909         (semantic-analyze-dereference-metatype-1):
6910         * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
6911         (semantic-lex-cpp-undef):
6912         * cedet/semantic/wisent/wisent.el (wisent-skip-block):
6913         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
6914         (semantic-end-of-context): Fix typos in docstrings.
6916         * recentf.el (recentf-unload-function): New function.
6918 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
6920         * cedet/ede.el (ede-project-placeholder-cache-file):
6921         * cedet/semantic/db-file.el (semanticdb-default-save-directory):
6922         * cedet/srecode/map.el (srecode-map-save-file):
6923         Use locate-user-emacs-file.  Suggested by Juanma Barranquero.
6925 2009-10-04  Glenn Morris  <rgm@gnu.org>
6927         * window.el (window-full-height-p): Add doc string.
6929 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
6931         * window.el (window-full-height-p): New function.  (Bug#4543)
6933 2009-10-03  Chong Yidong  <cyd@stupidchicken.com>
6935         * cedet/srecode/insert.el: Require srecode/args.
6937         * cedet/srecode/args.el: Require srecode/dictionary instead of
6938         srecode/insert.
6940         * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
6942         * files.el (auto-mode-alist): Add .srt and Project.ede.
6944         * cedet/semantic.el (semantic-mode):
6945         Handle srecode-template-mode-hook as well.
6946         (semantic-mode): Use js-mode-hook for Javascript hook.
6948         * cedet/srecode/template.el: Remove hook variable.
6950         * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
6952         * cedet/ede.el (ede-target-forms-menu): Don't enable if no
6953         projects exist.
6954         (ede-project-placeholder-cache-file): Default to a file in
6955         user-emacs-directory.
6957         * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
6958         templates in data-directory.
6959         (srecode-map-save-file): Default to a file in user-emacs-directory.
6961         * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
6962         directory.
6964 2009-09-30  Eric Ludlam  <zappo@gnu.org>
6966         * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
6967         Doc fix.
6969         * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
6970         Only insert each variable once.
6972         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
6973         (ede-pmake-insert-variable-shared): Use it.
6975         * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
6976         for lexical table iff table is nil.
6978 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
6980         * vc.el: Remove commented out code.
6981         (vc-derived-from-dir-mode): Remove, unused.
6982         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
6984 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
6986         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
6987         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
6988         there could be recursive loading when `default-directory' is a
6989         remote file name.  (Bug#4614)
6991 2009-10-03  Glenn Morris  <rgm@gnu.org>
6993         * calendar/calendar.el (calendar-basic-setup): Handle the case where
6994         the frame is wide.
6995         (calendar-generate-window): Test for shrinkability rather than width.
6997         * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
6998         declaration, currently false.
7000         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
7001         reusing existing buffers, in case we happen to visit two files with the
7002         same basename.  (Bug#4593)
7004 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
7006         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
7007         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
7008         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
7009         subdirs of cedet as well.
7010         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
7012 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7014         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
7015         Obey advertised-signature-table.
7017         * help-fns.el (help-function-arglist): Don't check
7018         advertised-signature-table.
7019         (describe-function-1): Do it here instead so it also applies to subrs.
7021 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
7023         * simple.el (start-file-process): Say in the doc-string, that file
7024         handlers might not support pty association, if PROGRAM is nil.
7026         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
7027         HOST and USER are strings.  They are nil, when there are
7028         incomplete entries in ~/.netrc, for example.
7029         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
7030         root directory ("device busy" error otherwise).
7032         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
7033         Flush file properties of created directory.
7035 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
7037         * makefile.w32-in (WINS_BASIC): Remove cedet.
7038         (WINS_CEDET): Add cedet.
7039         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
7041 2009-10-02  Kevin Ryde  <user42@zip.com.au>
7043         * net/browse-url.el (browse-url): Pass any symbol in
7044         browse-url-browser-function to `apply', since if you've mistakenly put
7045         an unbound symbol then the error is clearer.  (Bug#4531)
7047 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
7049         * allout.el (allout-init, allout-back-to-current-heading)
7050         (allout-beginning-of-current-entry, allout-ascend-to-depth)
7051         (allout-ascend, allout-up-current-level, allout-end-of-level)
7052         (allout-previous-visible-heading, allout-forward-current-level)
7053         (allout-backward-current-level, allout-show-children):
7054         * apropos.el (apropos-describe-plist):
7055         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
7056         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
7057         * completion.el (add-completion, add-permanent-completion):
7058         * descr-text.el (describe-text-category, describe-char):
7059         * desktop.el (desktop-lazy-abort):
7060         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
7061         * dired.el (dired-build-subdir-alist):
7062         * ediff.el (ediff-version):
7063         * elide-head.el (elide-head, elide-head-show):
7064         * emerge.el (emerge-version):
7065         * env.el (getenv):
7066         * face-remap.el (variable-pitch-mode):
7067         * faces.el (describe-face):
7068         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
7069         (dired-at-point):
7070         * files.el (find-file-existing, auto-save-mode):
7071         * font-lock.el (font-lock-fontify-buffer):
7072         * help-fns.el (describe-function, describe-variable)
7073         (describe-syntax, describe-categories):
7074         * help.el (view-lossage, describe-bindings, describe-key)
7075         (describe-mode):
7076         * hexl.el (hexl-current-address):
7077         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
7078         * info.el (Info-goto-emacs-key-command-node):
7079         * log-edit.el (log-edit-insert-cvs-template)
7080         (log-edit-insert-cvs-rcstemplate):
7081         * menu-bar.el (menu-bar-mode):
7082         * mouse.el (mouse-appearance-menu):
7083         * newcomment.el (comment-indent-new-line):
7084         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
7085         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
7086         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
7087         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
7088         * recentf.el (recentf-mode):
7089         * savehist.el (savehist-mode, savehist-save):
7090         * shadowfile.el (shadow-copy-files):
7091         * simple.el (kill-ring-save, next-line, previous-line)
7092         (normal-erase-is-backspace-mode):
7093         * strokes.el (strokes-update-window-configuration)
7094         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
7095         (strokes-xpm-for-stroke):
7096         * time.el (emacs-uptime, emacs-init-time):
7097         * tutorial.el (tutorial--describe-nonstandard-key)
7098         (tutorial--detailed-help):
7099         * type-break.el (type-break-mode)
7100         (type-break-mode-line-message-mode, type-break-query-mode)
7101         (type-break-guesstimate-keystroke-threshold):
7102         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
7103         * version.el (emacs-version):
7104         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
7105         * winner.el (winner-mode):
7106         * calendar/timeclock.el (timeclock-in, timeclock-out)
7107         (timeclock-status-string, timeclock-change)
7108         (timeclock-workday-remaining-string)
7109         (timeclock-workday-elapsed-string)
7110         (timeclock-when-to-leave-string):
7111         * calendar/todo-mode.el (todo-add-category):
7112         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
7113         * emacs-lisp/autoload.el (update-file-autoloads):
7114         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
7115         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
7116         (checkdoc-message-text, checkdoc-defun):
7117         * emacs-lisp/debug.el (debugger-list-functions):
7118         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7119         * emacs-lisp/eieio-opt.el (eieio-describe-class)
7120         (eieio-describe-generic):
7121         * emacs-lisp/lisp-mnt.el (lm-synopsis):
7122         * emacs-lisp/shadow.el (list-load-path-shadows):
7123         * emulation/cua-base.el (cua-mode):
7124         * emulation/edt.el (edt-set-scroll-margins):
7125         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
7126         (tpu-toggle-regexp, tpu-toggle-search-direction)
7127         (tpu-toggle-rectangle, tpu-toggle-control-keys):
7128         * emulation/tpu-extras.el (tpu-set-scroll-margins):
7129         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7130         (viper-set-parsing-style-toggling-macro)
7131         (viper-set-emacs-state-searchstyle-macros):
7132         * emulation/viper.el (viper-set-hooks):
7133         * eshell/esh-mode.el (eshell-truncate-buffer):
7134         * international/mule-cmds.el (prefer-coding-system)
7135         (describe-input-method, describe-language-environment):
7136         * international/mule-diag.el (list-character-sets)
7137         (describe-character-set, describe-coding-system)
7138         (describe-fontset, list-fontsets, list-input-methods):
7139         * mail/sendmail.el (mail-signature):
7140         * net/ange-ftp.el (ange-ftp-copy-file):
7141         * net/browse-url.el (browse-url):
7142         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
7143         * net/quickurl.el (quickurl-add-url):
7144         * net/rcirc.el (names, topic):
7145         * net/xesam.el (xesam-mode):
7146         * play/5x5.el (5x5-new-game):
7147         * play/yow.el (apropos-zippy):
7148         * progmodes/ada-mode.el (ada-mode-version):
7149         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
7150         (f90-end-of-block)
7151         (f90-beginning-of-block):
7152         * progmodes/fortran.el (fortran-end-of-block)
7153         (fortran-beginning-of-block):
7154         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
7155         * progmodes/python.el (python-describe-symbol, python-shell):
7156         * term/ns-win.el (ns-print-buffer):
7157         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
7158         * textmodes/flyspell.el (flyspell-mode-on):
7159         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
7160         (pages-directory-for-addresses):
7161         * textmodes/table.el (table-recognize-cell)
7162         (table-query-dimension, table-generate-source)
7163         (table-insert-sequence, table--warn-incompatibility):
7164         * textmodes/tex-mode.el (tex-validate-buffer):
7165         * textmodes/texinfmt.el (texinfmt-version)
7166         (texinfo-format-buffer):
7167         Use `called-interactively-p' instead of `interactive-p'.
7169 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
7171         * image-mode.el (image-toggle-display):
7172         * emacs-lisp/elp.el (elp-instrument-function):
7173         * emacs-lisp/advice.el (ad-make-advised-definition):
7174         * emacs-lisp/easy-mmode.el (define-minor-mode):
7175         * net/browse-url.el (browse-url-maybe-new-window):
7176         * progmodes/sh-script.el (sh-learn-buffer-indent):
7177         Pass new argument 'any to `called-interactively-p'.
7179 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
7181         * international/uni-bidi.el:
7182         * international/uni-category.el:
7183         * international/uni-combining.el:
7184         * international/uni-comment.el:
7185         * international/uni-decimal.el:
7186         * international/uni-decomposition.el:
7187         * international/uni-digit.el:
7188         * international/uni-lowercase.el:
7189         * international/uni-mirrored.el:
7190         * international/uni-name.el:
7191         * international/uni-numeric.el:
7192         * international/uni-old-name.el:
7193         * international/uni-titlecase.el:
7194         * international/uni-uppercase.el:
7195         Regenerate from Unicode 5.2.0 data.
7197 2009-10-01  Glenn Morris  <rgm@gnu.org>
7199         * Makefile.in (ELCFILES): Regenerate.
7201 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7203         * subr.el (interactive-p): Mark obsolete.
7204         (called-interactively-p): Make the optional-ness of `kind' obsolete.
7205         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
7206         advertised-signature-table for subroutines as well.
7208         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
7209         (set-advertised-calling-convention): New function.
7210         (make-obsolete, define-obsolete-function-alias)
7211         (make-obsolete-variable, define-obsolete-variable-alias):
7212         Make the optional-ness of `when' obsolete.
7213         (define-obsolete-face-alias): Make `when' non-optional.
7214         * help-fns.el (help-function-arglist):
7215         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
7216         Use advertised-signature-table.
7218 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
7220         * files.el (delete-directory): New defun.  The original function
7221         in fileio.c has been renamed to `delete-directory-internal'.
7223         * dired.el (dired-delete-file): Call `delete-directory' with
7224         RECURSIVE parameter.
7226         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
7227         parameter RECURSIVE.  Implementation is missing.
7229         * net/tramp.el (tramp-handle-make-directory): Flush upper
7230         directory's file properties.
7231         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
7232         (tramp-handle-dired-recursive-delete-directory): Flush directory
7233         properties after the remove command only.
7235         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
7236         Handle optional parameter RECURSIVE.
7238         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
7239         Handle optional parameter RECURSIVE.
7241         * net/tramp-smb.el (tramp-smb-errors): Add error message for
7242         connection timeout.
7243         (tramp-smb-handle-delete-directory): Handle optional parameter
7244         RECURSIVE.
7246 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7248         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
7249         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
7250         (byte-compile-defmacro): Use backquotes.
7252         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
7254         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
7255         has no associated file.
7256         (vc-resynch-buffer): Use vc-dir-buffers.
7258 2009-10-01  Glenn Morris  <rgm@gnu.org>
7260         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
7261         (chart-file-count):
7262         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
7263         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
7264         * emacs-lisp/eieio-opt.el (eieio-describe-class):
7265         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
7266         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
7267         (eieio-copy-parents-into-subclass, make-instance, class-children)
7268         (eieio-generic-form):
7269         * cedet/cedet-files.el (cedet-directory-name-to-file-name):
7270         * cedet/cedet-idutils.el (cedet-idutils-search)
7271         (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
7272         (cedet-idutils-version-check):
7273         * cedet/cedet.el (cedet-version):
7274         * cedet/data-debug.el (data-debug-insert-overlay-button)
7275         (data-debug-insert-overlay-list-button)
7276         (data-debug-insert-buffer-button)
7277         (data-debug-insert-buffer-list-button)
7278         (data-debug-insert-process-button, data-debug-insert-ring-button)
7279         (data-debug-insert-widget, data-debug-insert-stuff-list-button)
7280         (data-debug-insert-stuff-vector-button)
7281         (data-debug-insert-symbol-button, data-debug-insert-string)
7282         (data-debug-insert-number, data-debug-insert-lambda-expression)
7283         (data-debug-insert-nil, data-debug-insert-simple-thing)
7284         (data-debug-insert-custom, data-debug-edebug-expr):
7285         * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
7286         (global-ede-mode-map, ede-new, ede-debug-target)
7287         (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
7288         * cedet/semantic.el (semantic-minimum-working-buffer-size)
7289         (semantic-fetch-tags, semantic-submode-list)
7290         (semantic-default-submodes):
7291         * cedet/ede/source.el (ede-source-match):
7292         * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
7293         (project-am-package-info):
7294         * cedet/ede/proj.el (ede-proj-target, project-new-target):
7295         * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
7296         * cedet/ede/proj-comp.el (ede-current-build-list):
7297         * cedet/ede/makefile-edit.el (makefile-move-to-macro):
7298         * cedet/ede/files.el (ede-toplevel-project-or-nil):
7299         * cedet/ede/cpp-root.el (initialize-instance):
7300         * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
7301         (autoconf-parameter-strip, autoconf-insert-new-macro):
7302         * cedet/semantic/wisent.el (wisent-lex-eoi):
7303         * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
7304         (semantic-show-parser-state-mode):
7305         * cedet/semantic/texi.el (semantic-texi-environment-regexp):
7306         * cedet/semantic/tag.el (semantic-tag-new-variable)
7307         (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
7308         (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
7309         (semantic--tag-deep-copy-tag-list)
7310         (semantic-tag-components-with-overlays-default):
7311         * cedet/semantic/symref.el (semantic-symref-find-text):
7312         * cedet/semantic/senator.el (senator-yank-tag)
7313         (senator-transpose-tags-up):
7314         * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
7315         (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
7316         * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
7317         * cedet/semantic/lex.el (semantic-lex-comment-regex)
7318         (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
7319         (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
7320         * cedet/semantic/lex-spp.el
7321         (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
7322         (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
7323         * cedet/semantic/idle.el
7324         (semantic-idle-summary-current-symbol-info-brutish)
7325         (semantic-idle-summary-current-symbol-info-default):
7326         * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
7327         (semantic--grammar-macro-compl-dict):
7328         * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
7329         * cedet/semantic/format.el (semantic-format-tag-custom-list)
7330         (semantic-format-tag-canonical-name-default):
7331         * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
7332         (semantic-find-tags-for-completion)
7333         (semantic-find-tags-by-scope-protection-default)
7334         (semantic-deep-find-tags-for-completion):
7335         * cedet/semantic/edit.el
7336         (semantic-edits-incremental-reparse-failed-hook)
7337         (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
7338         (semantic-edits-splice-remove, semantic-edits-splice-replace):
7339         * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
7340         * cedet/semantic/dep.el (semantic-dependency-include-path):
7341         * cedet/semantic/db.el (semanticdb-default-find-index-class)
7342         (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
7343         (semanticdb-project-roots):
7344         * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
7345         (semanticdb-find-adebug-insert-scanned-tag-cons)
7346         (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
7347         (semanticdb-brute-deep-find-tags-for-completion):
7348         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
7349         * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
7350         (semantic-end-of-context-default)
7351         (semantic-ctxt-current-function-default)
7352         (semantic-ctxt-scoped-types-default):
7353         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
7354         (semantic-complete-inline-tag-engine)
7355         (semantic-complete-inline-custom-type)
7356         (semantic-complete-read-tag-analyzer):
7357         * cedet/semantic/chart.el (semantic-chart-tags-by-class)
7358         (semantic-chart-database-size):
7359         * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
7360         (semantic-analyze-current-context):
7361         * cedet/semantic/symref/list.el (semantic-symref)
7362         (semantic-symref-hide-buffer, semantic-symref-symbol):
7363         * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
7364         * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
7365         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
7366         * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
7367         (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
7368         (semantic-c-dereference-template):
7369         * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
7370         (semantic--analyze-refs-full-lookup-with-parents)
7371         (semantic--analyze-refs-full-lookup-simple):
7372         * cedet/semantic/analyze/complete.el
7373         (semantic-analyze-possible-completions):
7374         * cedet/srecode/table.el (srecode-mode-table-new):
7375         * cedet/srecode/srt.el (srecode-read-variable-name):
7376         * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
7377         * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
7378         (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
7379         * cedet/srecode/map.el (srecode-current-map):
7380         * cedet/srecode/insert.el (srecode-insert)
7381         (srecode-insert-variable-secondname-handler, srecode-insert-method)
7382         (srecode-template-inserter-point-override)
7383         (srecode-insert-include-lookup):
7384         * cedet/srecode/getset.el (srecode-auto-choose-class):
7385         * cedet/srecode/extract.el (srecode-inserter-extract):
7386         * cedet/srecode/document.el
7387         (srecode-document-autocomment-return-last-alist)
7388         (srecode-document-autocomment-param-type-alist)
7389         (srecode-document-insert-function-comment)
7390         (srecode-document-insert-variable-one-line-comment)
7391         (srecode-document-function-name-comment):
7392         * cedet/srecode/dictionary.el (srecode-create-dictionary)
7393         (srecode-compound-toString):
7394         * cedet/srecode/compile.el (srecode-flush-active-templates):
7395         * cedet/srecode/args.el (srecode-semantic-handle-:blank):
7396         Doc/message fixes.
7398         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
7399         match-data.  (Bug#4555).
7401         * cedet/semantic/bovine/gcc.el
7402         (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
7403         (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
7405         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
7406         rather than parsing it as a regexp.  This relaxes the layout
7407         requirements and makes errors easier to detect.
7408         (check-declare-verify): Check file is regular.
7409         (check-declare-directory): Doc fix.
7410         * subr.el (declare-function): Doc fix.
7412         * ibuffer.el (ibuffer-format-qualifier):
7413         * isearch.el (hi-lock-regexp-okay):
7414         * calc/calc.el (math-zerop):
7415         * mail/uce.el (rmail-msgbeg, rmail-msgend):
7416         * term/w32-win.el (setup-default-fontset, set-fontset-font):
7417         Remove unused declarations.
7419 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
7421         * cedet/semantic/wisent/javat-wy.el
7422         (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
7424 2009-09-30  Juanma Barranquero  <lekktu@gmail.com>
7426         * cedet/srecode/expandproto.el: Fix provide statement.
7428 2009-09-30  Eric Ludlam  <zappo@gnu.org>
7430         * emacs-lisp/eieio.el (boolean-p): Delete.
7432 2009-09-30  Sascha Wilde  <wilde@sha-bang.de>
7434         * cedet/ede/srecode.el: Fix provide statement.
7436 2009-09-30  Glenn Morris  <rgm@gnu.org>
7438         * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
7439         * cedet/ede/proj-aux.el (ede-aux-source):
7440         * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
7441         (ede-misc-source):
7442         * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
7443         (semantic-mrub-switch-tags): Fix doc typos.
7445         * cedet/semantic/db-global.el (data-debug-new-buffer)
7446         (data-debug-insert-thing): Remove unneeded declarations (one broken).
7447         (semanticdb-enable-gnu-global-databases): Fix prompt typo.
7449         * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
7451         * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
7452         use of CL function `remove-if-not'.
7454         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
7456         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
7457         filename is not a string.
7459 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
7461         * files.el (safe-local-eval-forms): Fix typo.
7463 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7465         * vc-hooks.el (vc-dir-buffers): New var.
7466         (vc-state-refresh): New function.
7467         (vc-state): Use it.
7468         (vc-after-save): Always ask the backend to recompute the new state.
7469         Always call vc-dir if necessary, using vc-dir-buffers.
7470         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
7471         Use vc-dir-buffers.
7472         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
7473         (vc-dir-prepare-status-buffer, vc-dir-update)
7474         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
7475         Don't call expand-file-name on default-directory.
7477 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
7479         * speedbar.el (speedbar-item-delete):
7480         * calc/calc-prog.el (calc-kbd-if):
7481         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
7483         * epa.el (epa-key-list-mode-map):
7484         * hi-lock.el (hi-lock-menu): Fix typos in menus.
7486         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
7487         (hs-show-hook): Fix typo in docstring.
7489 2009-09-29  Glenn Morris  <rgm@gnu.org>
7491         * cedet/semantic/symref/idutils.el:
7492         * cedet/semantic/symref/list.el: Relicense under GPLv3+.
7494         * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
7496         * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
7497         * cedet/semantic/tag-file.el (semanticdb-table-child-p):
7498         * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
7499         Mark declarations not understood by check-declare.
7501         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
7502         file-name-nondirectory call preventing location of cedet files.
7503         (check-declare-verify): Use literal search rather than re-search.
7504         Add basic defmethod and defclass, and define-overloadable-function.
7506         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7507         Use tramp-compat-file-attributes rather than nonexistent
7508         tramp-compat-handle-file-attributes.
7510         * Makefile.in (lisptagsfiles4): New.
7511         (AUTOGENEL): Add cedet loaddefs files.
7512         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
7513         (update-elclist, compile-always, backup-compiled-files)
7514         (bootstrap-clean): Add yet another directory level.
7515         (update-elclist): Use LC_COLLATE rather than COLLATE.
7516         (ELCFILES): Update, via `make update-elclist'.
7518 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
7520         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
7521         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
7522         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
7524 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
7526         * Makefile.in (lisptagsfiles3): Define.
7527         (TAGS, TAGS-LISP): Use it.
7528         (update-elclist): Add third directory level to look for elc files.
7529         (compile-always): Likewise.
7530         (backup-compiled-files): Likewise.
7531         (bootstrap-clean): Likewise.
7532         (ELCFILES): Update.
7534 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
7536         * Makefile.in (ELCFILES): Add CEDET files.
7538 2009-09-28  Eric Ludlam  <zappo@gnu.org>
7540         CEDET (development tools) package merged.
7542         * cedet/*.el:
7543         * cedet/ede/*.el:
7544         * cedet/semantic/*.el:
7545         * cedet/srecode/*.el: New files.
7547 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
7549         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
7551         * net/tramp.el (top): Require tramp-imap.
7553         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7554         Use `tramp-compat-handle-file-attributes'.
7556 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
7558         * net/tramp-imap.el: New package.
7560 2009-09-28  Eric Ludlam  <zappo@gnu.org>
7562         * emacs-lisp/chart.el:
7563         * emacs-lisp/eieio-base.el:
7564         * emacs-lisp/eieio-comp.el:
7565         * emacs-lisp/eieio-custom.el:
7566         * emacs-lisp/eieio-datadebug.el:
7567         * emacs-lisp/eieio-opt.el:
7568         * emacs-lisp/eieio-speedbar.el:
7569         * emacs-lisp/eieio.el: New files.
7571         * cedet/cedet-cscope.el:
7572         * cedet/cedet-files.el:
7573         * cedet/cedet-global.el:
7574         * cedet/cedet-idutils.el:
7575         * cedet/data-debug.el:
7576         * cedet/inversion.el:
7577         * cedet/mode-local.el:
7578         * cedet/pulse.el: New files.
7580 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7582         * whitespace.el (whitespace-trailing-regexp)
7583         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
7584         Fix doc string.
7586 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
7588         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
7589         menu.
7591         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
7592         menu-bar-ediff-menu.
7594         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
7595         define-overloadable-function.
7597         * progmodes/autoconf.el: Provide autoconf as well, so that this
7598         file can be `require'd.
7600         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
7602         * emacs-lisp/autoload.el (generated-autoload-feature)
7603         (generated-autoload-load-name): New vars.
7604         (autoload-rubric, autoload-generate-file-autoloads): Use them.
7605         (make-autoload): Recognize define-overloadable-function and
7606         defclass forms (for EIEIO).
7608         * Makefile.in (update-subdirs): Exclude cedet directory.
7610 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
7612         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
7614         * faces.el: Default light-background background for region face to
7615         ns_selection_color under NS.
7617 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
7619         * net/imap-hash.el: New library, see NEWS.
7621         * Makefile.in (ELCFILES): Add imap-hash.el.
7623 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7625         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
7626         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
7627         * help-macro.el (make-help-screen): Avoid using an ambiguous function
7628         definition where the docstring could be taken for the return value.
7630 2009-09-26  Glenn Morris  <rgm@gnu.org>
7632         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
7633         Add option to only show images below a certain size.
7634         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
7635         save-excursion calls.
7637 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
7639         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
7640         subdirectories) and eieio.
7642 2009-09-26  Alan Mackenzie  <acm@muc.de>
7644         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
7645         buggy bracketing.  (Bug#4289)
7647         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
7648         character constants (as case labels).  (Bug#4289)
7650 2009-09-25  Juri Linkov  <juri@jurta.org>
7652         * files.el (safe-local-eval-forms): Allow time-stamp in
7653         before-save-hook (Bug#4554).
7655 2009-09-25  Drew Adams  <drew.adams@oracle.com>
7657         * menu-bar.el (list-buffers-directory): Doc fix.
7659 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7661         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
7662         Try and avoid copying twice the same paragraph.
7663         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
7664         Remove save-excursion.
7665         (log-edit-changelog-entry): Do it here instead.
7667 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
7669         * bs.el (bs--get-file-name): Use `list-buffers-directory'
7670         when available, instead of hardcoding mode names.  Doc fix.
7672         * menu-bar.el (list-buffers-directory): Add docstring.
7673         Make automatically buffer-local.
7675         * dired.el (dired-mode):
7676         * files.el (cd-absolute):
7677         * pcvs.el (cvs-temp-buffer):
7678         * pcvs-util.el (cvs-get-buffer-create):
7679         * shell.el (shell-mode):
7680         * vc-dir.el (vc-dir-mode):
7681         Don't make `list-buffers-directory' buffer local.
7683 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
7685         * comint.el (comint-exec, comint-run, make-comint):
7686         Doc fixes (Bug#4542).
7688 2009-09-25  Glenn Morris  <rgm@gnu.org>
7690         * mail/rmailmm.el (rmail-mime): New custom group.
7691         Move all defcustoms in this file into this group.
7692         (rmail-mime-media-type-handlers-alist): Revert previous change.
7693         (rmail-mime-show-images): New option.
7694         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
7695         references to it, since it wasn't actually used for anything.
7696         (rmail-mime-insert-image): New function.
7697         (rmail-mime-image): Use rmail-mime-insert-image.
7698         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
7699         obey the value of `rmail-mime-show-images' option.  Print the size of
7700         attachments.
7702 2009-09-25  David Engster  <deng@randomsample.de>
7704         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
7706 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7708         * whitespace.el: Does not highlight trailing spaces While point is
7709         at end of line.  Does not highligt spaces at beginning of buffer
7710         while point is at beginning of buffer.  Does not highlight spaces
7711         at end of buffer while point is at end of buffer.  (Bug#4177)
7712         New version 12.0.
7713         (whitespace-display-mappings): Adjust initialization.
7714         (whitespace-point, whitespace-font-lock-refontify): New vars.
7715         (whitespace-color-on, whitespace-color-off): Adjust code.
7716         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
7717         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
7718         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
7720 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
7722         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
7724         * textmodes/sgml-mode.el: Remove xml-mode alias.
7726         * files.el (auto-mode-alist, conf-mode-maybe)
7727         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
7729 2009-09-24  Alan Mackenzie  <acm@muc.de>
7731         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
7732         c-forward-conditionals, but it doesn't move point and doesn't set
7733         the mark.
7734         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
7735         (c-down-conditional-with-else, c-backward-conditional)
7736         (c-forward-conditional): Refactor to use c-scan-conditionals.
7738 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
7740         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
7741         (help-default-arg-highlight): Remove.
7742         (help-highlight-arg): New function.
7743         (help-do-arg-highlight): Use it.
7744         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
7746 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7748         * term.el (term-set-scroll-region, term-handle-ansi-escape):
7749         Undo last change, which didn't fix the problem and introduced others.
7751 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
7753         * progmodes/gdb-mi.el: Don't require speedbar.
7754         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
7756 2009-09-24  Glenn Morris  <rgm@gnu.org>
7758         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
7760         * term/ns-win.el (ns-reg-to-script): Define for compiler.
7762         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
7763         there is no newline after the final mime boundary.  (Bug#4539)
7764         Move markers on insertion so that any buttons inserted don't end up in
7765         the next part of a multipart message.
7766         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
7767         (rmail-mime-bulk-handler): Optionally handle images.
7768         (rmail-mime-image): New button action.
7769         (rmail-mime-image-handler): New function.
7770         (rmail-mime-mode): New mode.
7771         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
7773 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7775         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
7776         than just dropping elements from it (bug#4504).
7778         * term.el (term-set-scroll-region): Don't move cursor any more.
7779         (term-handle-ansi-escape): Call term-goto here instead.
7780         Suggested by Ivan Kanis <apple@kanis.eu>.
7782         * term.el: Require CL.
7783         (term-ansi-reset): New function.
7784         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
7785         (term-handle-colors-array): Simplify.
7787 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
7789         * allout.el (allout-overlay-interior-modification-handler)
7790         (allout-obtain-passphrase):
7791         * epa-file.el (epa-file-write-region):
7792         * ps-print.el (ps-begin-job):
7793         * vc-hooks.el (vc-toggle-read-only):
7794         * vc-rcs.el (vc-rcs-rollback):
7795         * vc-sccs.el (vc-sccs-rollback):
7796         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
7797         (vc-version-diff, vc-revert, vc-rollback):
7798         * wdired.el (wdired-check-kill-buffer):
7799         * emacs-lisp/authors.el (authors):
7800         * net/socks.el (socks-open-connection):
7801         * net/zeroconf.el (zeroconf-service-add-hook):
7802         * obsolete/vc-mcvs.el (vc-mcvs-register):
7803         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
7804         (gdb-select-frame):
7805         * progmodes/grep.el (lgrep, rgrep):
7806         * progmodes/idlw-help.el (idlwave-help-check-locations)
7807         (idlwave-help-html-link, idlwave-help-assistant-open-link):
7808         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7809         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
7810         (reftex-toc-rename-label): Fix typos in error messages.
7812         * dired-aux.el (dired-do-shell-command): Reflow docstring.
7813         (dired-copy-how-to-fn): Doc fix.
7814         (dired-files-attributes, dired-read-shell-command):
7815         Fix typos in docstrings.
7817         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
7818         (dired-x-find-file-other-window): Reflow docstrings.
7819         (dired-omit-marker-char, dired-read-shell-command)
7820         (dired-x-submit-report): Fix typos in docstrings.
7822         * shell.el (shell-mode-hook):
7823         * view.el (View-scroll-line-forward):
7824         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
7825         Fix typos in docstrings.
7827         * net/dig.el (dig-invoke): Fix typo in docstring.
7828         (query-dig): Reflow docstring.
7830         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
7831         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
7832         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
7833         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
7834         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
7835         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
7836         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
7837         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
7838         (idlwave-completion-map, idlwave-current-indent)
7839         (idlwave-custom-ampersand-surround, idlwave-customize)
7840         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
7841         (idlwave-define-abbrev, idlwave-determine-class-special)
7842         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
7843         (idlwave-end-block-reg, idlwave-end-of-statement)
7844         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
7845         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
7846         (idlwave-explicit-class-listed, idlwave-file-header)
7847         (idlwave-fill-paragraph, idlwave-find-class-definition)
7848         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
7849         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
7850         (idlwave-in-quote, idlwave-indent-action-table)
7851         (idlwave-indent-expand-table, idlwave-indent-line)
7852         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
7853         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
7854         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
7855         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
7856         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
7857         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
7858         (idlwave-outlawed-buffers, idlwave-popup-select)
7859         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
7860         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
7861         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
7862         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
7863         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
7864         (idlwave-statement-type, idlwave-struct-skip)
7865         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
7866         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
7867         (idlwave-what-module-find-class): Fix typos in docstrings.
7868         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
7869         (idlwave-calculate-cont-indent, idlwave-expand-equal)
7870         (idlwave-find-module, idlwave-find-structure-definition)
7871         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
7872         (idlwave-list-load-path-shadows, idlwave-next-statement)
7873         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
7874         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
7875         (idlwave-template): Reflow docstrings.
7877         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
7878         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
7879         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
7880         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
7881         (idlwave-shell-display-line, idlwave-shell-display-wframe)
7882         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
7883         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
7884         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
7885         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
7886         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
7887         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
7888         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
7889         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
7890         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
7891         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
7892         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
7893         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
7894         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
7895         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
7896         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
7897         Fix typos in docstrings.
7898         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
7899         (idlwave-shell-hide-output, idlwave-shell-mode)
7900         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
7901         Reflow docstrings.
7903         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
7905 2009-09-24  Ivan Kanis  <apple@kanis.eu>
7907         * term.el (term-bold-attribute): New var.
7908         (term-handle-colors-array): Use it.
7910 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
7912         * progmodes/gdb-mi.el (gdb-version): New variable.
7913         (gdb-non-stop-handler): Set gdb-version.
7914         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
7915         Condition "--thread" option on gdb-version.
7916         (gdb-invalidate-threads): Remove unused argument.
7918 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7920         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
7921         to looking-back to avoid ridiculous slow down in large files (bug#4511).
7923 2009-09-23  Glenn Morris  <rgm@gnu.org>
7925         * mail/rmail.el (rmail-reply): Don't try to add a References header when
7926         replying to mail without References or Message-Id.  (Bug#4525)
7928 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
7930         * term/ns-win.el (ns-reg-to-script): New variable.
7932 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
7934         * epg.el (epg-wait-for-status): Preserve existing 'error results.
7936 2009-09-22  Sam Steingold  <sds@gnu.org>
7938         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
7939         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
7940         to 1 because hg returns status 1 when nothing is found.
7941         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
7943 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7945         * textmodes/fill.el: Convert to utf-8 encoding.
7946         (fill-french-nobreak-p): Remove redundant » and « inherited from our
7947         pre-unicode days.
7949         * add-log.el (change-log-fill-forward-paragraph): New function.
7950         (change-log-mode): Use it so fill-region DTRT.
7951         Set fill-indent-according-to-mode here rather than in
7952         change-log-fill-paragraph.
7953         (change-log-fill-paragraph): Remove.
7955 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
7957         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
7958         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
7960 2009-09-22  Glenn Morris  <rgm@gnu.org>
7962         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
7963         the scroll-bar scroll the calendar window rather than the buffer.
7965         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
7966         commands that move point (as opposed to scrolling).
7968         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
7970         * emacs-lisp/elint.el (elint): New custom group.
7971         (elint-log-buffer): Make it a defcustom.
7972         (elint-scan-preloaded, elint-ignored-warnings)
7973         (elint-directory-skip-re): New options.
7974         (elint-builtin-variables): Doc fix.
7975         (elint-preloaded-env): New variable.
7976         (elint-unknown-builtin-args): Add an entry for encode-time.
7977         (elint-extra-errors): Make it a variable rather than a constant.
7978         (elint-preloaded-skip-re): New constant.
7979         (elint-directory): Skip files matching elint-directory-skip-re.
7980         (elint-features): New variable, local to linted buffers.
7981         (elint-update-env): Initialize elint-features.  Possibly add
7982         elint-preloaded-env to the buffer's environment.
7983         (elint-get-top-forms): Bind elint-current-pos, for log messages.
7984         Skip quoted forms.
7985         (elint-init-form): New function, extracted from elint-init-env.
7986         Make non-list forms a warning rather than an error.
7987         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
7988         easy-menu-define, put that adds an error-condition, and provide.
7989         When requiring cl, also require cl-macs.  Really require cl, to handle
7990         some cl macros.  Store required libraries in the list elint-features,
7991         so as not to re-load them.  Treat cc-require like require.
7992         (elint-init-env): Call elint-init-form to do the work.
7993         Handle eval-and-compile and such like.
7994         (elint-add-required-env): Do not clear messages.
7995         (elint-special-forms): Add handlers for function, defalias, if, when,
7996         unless, and, or.
7997         (elint-form): Add optional argument to ignore elint-special-forms,
7998         useful to prevent recursive calls from handlers.  Doc fix.
7999         Respect elint-ignored-warnings.
8000         (elint-form): Respect elint-ignored-warnings.
8001         (elint-bound-variable, elint-bound-function): New variables.
8002         (elint-unbound-variable): Respect elint-bound-variable.
8003         (elint-get-args): Respect elint-bound-function.
8004         (elint-check-cond-form): Add some simple handling for (f)boundp and
8005         featurep tests.
8006         (elint-check-defalias-form): New handler.
8007         (elint-check-let-form): Make an empty let a warning rather than an
8008         error.
8009         (elint-check-setq-form): Make an empty setq a warning rather than an
8010         error.  Respect elint-ignored-warnings.
8011         (elint-check-defvar-form): Accept null doc-strings.
8012         (elint-check-conditional-form): New handler.  Does some simple-minded
8013         checking of featurep and (f)boundp tests.
8014         (elint-put-function-args): New function.
8015         (elint-initialize): Use elint-scan-doc-file rather than
8016         elint-find-builtin-variables.  Use elint-put-function-args.
8017         Possibly scan preloaded-file-list.
8018         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
8019         extend to handle functions as well.
8021 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
8023         * linum.el (linum-delete-overlays, linum-update-window):
8024         Do not modify the right margin.  (Bug#3971)
8026 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
8028         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
8029         nxml-mode instead of xml-mode.
8031 2009-09-21  Kevin Ryde  <user42@zip.com.au>
8033         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
8035 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8037         * net/dig.el (dig-mode): Use define-derived-mode.
8039 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
8041         * vc-dispatcher.el (vc-do-command): Return the process object in
8042         the asynchronous case.  Use when instead of if.  Do not run
8043         vc-exec-after to display a message if not enabled.  (Bug#4463)
8045         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
8046         properties to the stash strings.
8047         (vc-git-stash-list): Return a list of strings.
8048         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
8049         (vc-git-stash-show-at-point): New functions.
8050         (vc-git-stash-map): New keymap.
8052         * register.el (ctl-x-r-map): Define the keys here instead of
8053         using autoload.
8055 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
8057         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
8058         list, to workaround performance problem (bug#4485).
8060 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
8062         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
8064 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
8066         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
8067         Document that this option is not recommended to use.
8069 2009-09-19  Glenn Morris  <rgm@gnu.org>
8071         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
8072         variable `var'.
8074         * calc/calc-alg.el (var):
8075         * calc/calcalg2.el (var): Define for compiler.
8077 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
8079         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
8080         Doc fix (Bug#3932).
8082         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
8084         * time-stamp.el (time-stamp-month-dd-yyyy)
8085         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
8086         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
8087         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
8088         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
8089         Remove functions that have been obsolete since 1995 (Bug#4436).
8091         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
8092         indent buffer only if called interactively (Bug#4452).
8094 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
8095             Eli Zaretskii  <eliz@gnu.org>
8097         This fixes bug#4197 (merged to bug#865, though not identical).
8098         * server.el (server-auth-dir): Add docstring note about FAT32.
8099         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
8100         but warn against using them.
8102 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
8104         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
8105         older GDB where there is no has_more field.
8107 2009-09-19  Glenn Morris  <rgm@gnu.org>
8109         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
8111 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
8113         * files.el (auto-mode-alist): Change default for XML files to nXML
8114         mode (Bug#4169).
8116 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
8118         * server.el (server-ensure-safe-dir): Pass 'integer
8119         to `file-attributes', as suggested.
8121 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8123         * dired-aux.el (dired-query-alist): Remove spurious backslash.
8124         (dired-query): Use read-key.
8126 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
8128         * cus-start.el (ns-use-qd-smoothing): Remove.
8130 2009-09-18  Glenn Morris  <rgm@gnu.org>
8132         * allout.el (top-level): Remove unnecessary progn.
8134         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
8136         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
8137         definition of abbrev table.
8139         * speedbar.el (speedbar-track-mouse):
8140         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
8141         * net/eudc.el (eudc-expand-inline):
8142         * net/newst-backend.el (newsticker--cache-read-feed):
8143         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
8144         condition-case handlers.
8146 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
8148         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
8149         (gdb-var-list): Add an element for has_more field.
8150         (gdb-non-stop-handler): Enable pretty printing for STL containers.
8151         (gdb-var-create-handler, gdb-var-list-children-handler-1)
8152         (gdb-var-update-handler-1): Parse output of dynamic variable
8153         objects (STL containers).
8154         (gdb-var-delete-1): Pass var1 as an explicit second argument.
8155         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
8157         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
8158         gdb-var-list.
8159         (gud-speedbar-buttons): Make node expandable if expression "has more"
8160         children.
8162 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
8164         * startup.el (emacs-quick-startup): Remove variable and all uses.
8165         (command-line): Set `inhibit-x-resources' instead.
8166         (command-line-1): Use `inhibit-x-resources' instead.
8168 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
8170         * subr.el: Fix last change to avoid using the `unless' macro,
8171         which breaks bootstrapping.
8173 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8175         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
8176         extended definitions, in case we reload subr.el after having
8177         loaded CL.
8178         (eval-next-after-load): Mark as obsolete.
8180 2009-09-17  Juri Linkov  <juri@jurta.org>
8182         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
8183         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
8184         (menu-bar-showhide-menu, menu-bar-tools-menu)
8185         (menu-bar-describe-menu, menu-bar-help-menu)
8186         (minibuffer-local-completion-map, minibuffer-local-map):
8187         Fix list quoting.
8189 2009-09-17  Glenn Morris  <rgm@gnu.org>
8191         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
8192         arguments, whether or not it has a handler.
8194         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
8196         * simple.el (hard-newline): Give it a doc-string.
8198         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
8199         (lisp-mode-syntax-table): Give them doc-strings.
8201 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
8203         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
8204         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
8205         (menu-bar-options-menu, menu-bar-showhide-menu)
8206         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
8207         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
8208         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
8209         (menu-bar-options-menu, menu-bar-tools-menu)
8210         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
8211         (menu-bar-help-menu):
8212         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
8213         string arguments.
8215         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
8216         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
8217         calls for the menu names and :help.
8219 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8221         * mouse.el (minor-mode-menu-from-indicator): Pay attention
8222         to :minor-mode-function (bug#4455).
8224 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8226         * startup.el (command-line): Initialize the window-system after
8227         processing the command-line.
8229         * textmodes/page.el (what-page): Make sure we don't inf-loop if
8230         page-delimiter matches the empty string.
8232 2009-09-16  Glenn Morris  <rgm@gnu.org>
8234         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
8235         byte-compile-not-obsolete-var.  It's a list now.
8236         (byte-compile-not-obsolete-funcs): New variable.
8237         (byte-compile-warn-obsolete): Don't warn about functions if they are in
8238         byte-compile-not-obsolete-funcs.
8239         (byte-compile-variable-ref, byte-compile-defvar): Update for
8240         byte-compile-not-obsolete-vars name-change and list nature.
8241         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
8242         and variables behind (f)boundp tests.
8243         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
8245 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
8247         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
8249 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8251         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
8252         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
8253         Don't autoload.
8255 2009-09-15  Stephen Eglen  <stephen@gnu.org>
8257         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
8258         the virtual-buffers, use the name of the buffer specified by
8259         find-file-noselect, as the match may be a symlink.  (This was a
8260         problem if the target and the symlink had different names.)
8262 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8264         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
8266         * desktop.el (desktop-path): Check user-emacs-directory.
8268         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
8270         * loadup.el: Use after-load-functions to GC after loading each file.
8271         Remove the explicit GC calls that used to be sprinkled around.
8273         * subr.el (after-load-functions): New hook.
8274         (do-after-load-evaluation): Run it.  Use string-match-p to detect
8275         `obsolete' packages, rather than painfully extracting the relevant
8276         directory name.
8278 2009-09-15  Glenn Morris  <rgm@gnu.org>
8280         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
8281         free variable `doc'.
8283         * dired.el (dired-mode-map): Add menu entry for async shell command.
8285         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
8286         variables, also consider the .elc files, since the .el files are
8287         normally gzipped (subsequent code locates the .el.gz from the .elc).
8289         * calc/calc-prog.el (arglist): Define for compiler.
8291         * calendar/diary-lib.el (diary-display-function): Change the default to
8292         fancy display.
8293         (body): Define for compiler.
8295         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
8296         (byte-compile-file-form, byte-compile-lambda)
8297         (byte-compile-top-level-body, byte-compile-form)
8298         (byte-compile-variable-ref, byte-compile-setq)
8299         (byte-compile-setq-default, byte-compile-body)
8300         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
8301         (batch-byte-compile): Give some more local variables with common names
8302         a "bytecomp-" prefix to avoid masking warnings about free variables.
8304         * startup.el (command-line-1): Give local variables with common names a
8305         distinguishing prefix, so as not to hide free variable warnings during
8306         bootstrap.
8308         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
8309         clever and add a suffix to make a unique name, just let the user decide
8310         whether or not to overwrite it.  If the input is a directory, write the
8311         default filename to that directory.  (Bug#4388)
8312         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
8313         is a filename-as-a-directory.
8315 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8317         * textmodes/page.el (what-page): Don't move to beginning of line.
8318         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
8320 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
8322         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
8324 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
8326         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
8327         * help.el (help-for-help-internal): Add purecopy calls for text.
8329         * vc.el (top): print-log method now takes an optional SHORTLOG
8330         argument.  Add a new method: root.
8331         (vc-root-diff, vc-print-root-log): New functions.
8332         (vc-log-short-style): New variable.
8333         (vc-print-log-internal): Add support for showing short logs.
8335         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
8336         vc-print-root-log and vc-print-root-diff.
8338         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
8339         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
8340         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
8341         short logs.
8343         * vc-cvs.el (vc-cvs-print-log):
8344         * vc-mtn.el (vc-mtn-print-log):
8345         * vc-rcs.el (vc-rcs-print-log):
8346         * vc-sccs.el (vc-sccs-print-log):
8347         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
8348         that is ignored for now.
8350         * vc-mtn.el (vc-mtn-annotate-command):
8351         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
8353 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8355         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
8356         to function-key-map, and give them ascii-character property.
8357         * term/x-win.el (x-alternatives-map):
8358         * term/ns-win.el (ns-alternatives-map):
8359         * term/internal.el (msdos-key-remapping-map):
8360         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
8362 2009-09-14  Glenn Morris  <rgm@gnu.org>
8364         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
8365         temp-buffers (2009-09-12).
8367 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8369         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
8370         the new read-key function.
8372 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
8374         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
8375         is defined (Bug#4405).
8377 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
8379         * recentf.el (recentf-cleanup): Use a hash table to find
8380         duplicates (Bug#4407).
8382 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
8384         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
8385         kp-0 to ascii equivalents (Bug#4325).
8387 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
8389         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
8391         * eshell/em-hist.el:
8392         * eshell/em-dirs.el (eshell-complete-user-reference):
8393         Declare pcomplete functions and variables to avoid compiler warnings.
8395 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
8397         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
8398         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
8399         * eshell/em-alias.el (eshell-aliases-file):
8400         * eshell/em-hist.el (eshell-history-file-name):
8401         Use expand-file-name instead of concat to make file names (Bug#4308).
8403 2009-09-13  Glenn Morris  <rgm@gnu.org>
8405         * ediff-merg.el (ediff-do-merge):
8406         * filesets.el (filesets-run-cmd):
8407         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
8408         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
8409         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
8410         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
8411         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
8412         Replace empty `let's with `progn'.
8414 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8416         * mail/sendmail.el (send-mail-function):
8417         * tooltip.el (tooltip-mode):
8418         * simple.el (transient-mark-mode):
8419         * rfn-eshadow.el (file-name-shadow-mode):
8420         * frame.el (blink-cursor-mode):
8421         * font-core.el (global-font-lock-mode):
8422         * files.el (temporary-file-directory)
8423         (small-temporary-file-directory, auto-save-file-name-transforms):
8424         * epa-hook.el (auto-encryption-mode):
8425         * composite.el (global-auto-composition-mode):
8426         Use custom-initialize-delay.
8427         * startup.el (command-line): Don't explicitly call
8428         custom-reevaluate-setting for all the above vars.
8429         * custom.el (custom-initialize-safe-set)
8430         (custom-initialize-safe-default): Delete.
8432 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8434         * term/x-win.el (x-initialize-window-system):
8435         * term/w32-win.el (w32-initialize-window-system):
8436         * term/ns-win.el (ns-initialize-window-system): Don't call
8437         mouse-wheel-mode since it's enabled globally by default already.
8439         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
8440         actually define the variable, but only silences the byte-compiler.
8441         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
8442         before looking it up.
8443         (mouse-wheel-scroll-amount): Also reset the bindings if this value
8444         is changed.
8446 2009-09-12  Glenn Morris  <rgm@gnu.org>
8448         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
8449         1000.
8450         (elint-add-required-env): Don't beep on error.
8451         (elint-forms): In case of error, return ENV unchanged.
8452         (elint-init-env): Skip non-list forms.
8453         (elint-log): Handle unknown file positions.
8455 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
8457         * epg.el (epg-make-context): Add autoload cookie.
8458         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
8459         (epg-decrypt-string, epg-start-verify, epg-verify-file)
8460         (epg-verify-string, epg-start-sign, epg-sign-file)
8461         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
8462         (epg-encrypt-string, epg-start-export-keys)
8463         (epg-export-keys-to-file, epg-export-keys-to-string)
8464         (epg-start-import-keys, epg-import-keys-from-file)
8465         (epg-import-keys-from-string, epg-start-receive-keys)
8466         (epg-receive-keys, epg-import-keys-from-server)
8467         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
8468         (epg-sign-keys, epg-start-generate-key)
8469         (epg-generate-key-from-file, epg-generate-key-from-string):
8470         Remove autoload cookie.
8472 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
8474         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
8475         reevaluation of trash-directory.
8477         * mwheel.el: Fix last change.
8478         (mouse-wheel-mode): New defvar.
8479         (mouse-wheel-mode): Remove autoload cookie.
8481 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8483         * mwheel.el (mwheel-installed-bindings): New var.
8484         (mouse-wheel-mode): Use it, so as to make sure we really remove all
8485         the bindings we set last time.  Use custom-initialize-delay.
8486         * loadup.el: Load mwheel after term/*-win.el.
8487         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
8488         and mouse-wheel-up-event now that their first evaluation is done
8489         sufficiently late to be correct.
8491         * startup.el (tutorial-directory): Make it a defcustom.
8492         Use custom-initialize-delay rather than eval-at-startup to set it.
8493         * image.el (image-load-path): Make it a defcustom.
8494         Use custom-initialize-delay rather than eval-at-startup to set it.
8495         * subr.el (eval-at-startup): Remove.
8496         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
8498         * subr.el (do-after-load-evaluation): Warn the user after loading an
8499         obsolete package.
8501 2009-09-12  Glenn Morris  <rgm@gnu.org>
8503         * proced.el (proced-mark-alt): Remove alias.
8504         (proced-mode-map): Remove proced-mark-alt.
8506         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
8507         Elint file and directory.  Remove initialization entry.
8509         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
8510         commands.
8511         (elint-current-buffer): Set mode-line-process.
8512         (elint-init-env): Handle define-derived-mode.
8513         Fix declare-function with unspecified arglist.  Guard against odd
8514         defalias statements (eg iso-insert's 8859-1-map).
8515         (elint-add-required-env): Use a temp buffer.
8516         (elint-form): Just print the function/macro name, not the whole form.
8517         Return env unchanged if we fail to parse a macro.
8518         (elint-forms): Guard against parse errors.
8519         (elint-output): New function, to handle batch mode.
8520         (elint-log-message): Add optional argument.  Use elint-output.
8521         (elint-set-mode-line): New function.
8523 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
8525         * emacs-lisp/elp.el (elp-not-profilable): Add more
8526         functions (Bug#4233).
8528 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
8530         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
8531         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
8533 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
8535         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
8536         (gdb-var-list-children): Use json parsing.
8538 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
8540         * progmodes/js.el (js--proper-indentation): Handle the case where
8541         char-before is null.  Reported by Deniz Dogan.
8543 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
8545         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
8547 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
8549         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
8550         (epg-digest-algorithm-alist): Add SHA224.
8551         (epg-context-set-passphrase-callback)
8552         (epg-context-set-progress-callback): Add description about
8553         callback function.
8555 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8557         * custom.el (custom-delayed-init-variables): New var.
8558         (custom-initialize-delay): New function.
8559         * startup.el (command-line): "Re"evaluate all vars in
8560         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
8561         explicitly any more.
8562         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
8563         to avoid creating a ~/.emacs.d at build-time (bug#4347).
8565         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
8567 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
8569         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
8570         (gdb-var-update-handler): Use json parsing.
8572 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
8574         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
8575         decode annotated text, regardless of language environment.  (Bug#2741)
8577 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8579         * Makefile.in (autoloads): Make rmail.el writable as well.
8581 2009-09-11  Glenn Morris  <rgm@gnu.org>
8583         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
8584         loaddefs.el.
8585         * dired.el: Regenerate with extracted autoloads.
8586         * Makefile.in (autoloads): Make dired.el writable.
8588         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
8589         * ibuffer.el: Regenerate with extracted autoloads.
8590         * Makefile.in (autoloads): Make ibuffer.el writable.
8592         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
8593         * version.el (emacs-copyright, emacs-major-version)
8594         (emacs-minor-version): Reformat doc-strings for make-docfile.
8596         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
8597         functions and variables, since they must be stuff specific to some other
8598         platform.
8599         (apropos-print): Make mouse-click message less specific about button.
8601         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
8602         that records where a macro was defined.
8603         * help-fns.el (describe-function-1): Mention if a function has a
8604         compiler-macro.
8605         * help-mode.el (help-function-cmacro): New button.
8607         * locate.el (top-level): Always require dired.
8608         (locate-mode-map): Initialize inside the defvar.
8610         * net/ange-ftp.el (dired-compress-file): Declare.
8611         (ange-ftp-dired-compress-file): Add doc string.
8613         * term/ns-win.el (x-display-name, x-setup-function-keys):
8614         Unify doc-strings with X versions.
8616 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8618         * emulation/crisp.el (crisp-mode-map): Move initialization
8619         into declaration.
8620         (crisp-mode): Use define-minor-mode.
8622         * progmodes/xscheme.el (xscheme-evaluation-commands):
8623         Put a :advertised-binding property rather than using
8624         advertised-xscheme-send-previous-expression.
8625         (advertised-xscheme-send-previous-expression): Declare obsolete.
8626         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
8627         `advertised-undo'.
8628         (crisp-mode): Add corresponding bindings to
8629         undo's :advertised-binding instead.
8630         * dired.el (dired-mode-map): Put a :advertised-binding property rather
8631         than using dired-advertised-find-file.
8632         (dired-advertised-find-file):
8633         * simple.el (advertised-undo):
8634         * wid-edit.el (advertised-widget-backward): Declare obsolete.
8635         (widget-keymap): Put a :advertised-binding property rather
8636         than using advertised-widget-backward.
8637         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
8638         than using advertised-undo.
8639         * tutorial.el (tutorial--default-keys): Adjust accordingly.
8641 2009-09-10  Simon South  <ssouth@slowcomputing.org>
8643         * progmodes/delphi.el (delphi-tab): Indent region when Transient
8644         Mark mode is enabled and region is active; otherwise indent or
8645         insert TAB as usual.
8646         (delphi-mode): Update description of TAB-key binding.
8648 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8650         * subr.el (define-key-rebound-commands): Mark obsolete.
8651         * startup.el (precompute-menubar-bindings): Remove.
8652         (normal-top-level): Remove obsolete code that tried to precompute
8653         menubar bindings.
8654         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
8655         define-key-rebound-commands and precompute-menubar-bindings.
8657 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
8659         * net/imap.el (imap-interactive-login): Better messages.
8660         (imap-open): Fix bug with renamed buffer on reconnect.
8661         (imap-authenticate): Add buffer-local imap-last-authenticator variable
8662         for easier debugging and cleaner code.  On successful (guessed based on
8663         server capabilities) secondary authentication, set imap-state
8664         correctly.
8665         (imap-last-authenticator): Define imap-last-authenticator as a variable
8666         to avoid warnings.
8668 2009-09-10  Glenn Morris  <rgm@gnu.org>
8670         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
8672         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
8673         (byte-compile-file-form-autoload): Don't warn about unknown functions
8674         where the autoload statement comes after the use.
8675         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
8676         that any handlers inside the body (eg require) are in turn respected.
8678         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
8679         effects.
8681         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
8682         and syntax and abbrev tables basic docs, if they don't have any.
8684         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
8686         * international/mule-cmds.el (top-level): Require cl when compiling.
8687         (view-hello-file): Use default-value rather than
8688         default-enable-multibyte-characters.
8690         * progmodes/fortran.el: Move all safe and risky properties into the
8691         defcustoms.
8693         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
8694         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
8695         * mail/undigest.el:
8696         Put autoloads in rmail.el rather than loaddefs.el.
8697         * mail/rmail.el: Regenerate with extracted autoloads.
8699         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
8700         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
8702 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
8704         Reported in thread for Bug#4375.
8705         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
8706         "-data-evaluate-expression" instead of print.
8707         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
8708         (gdb-tooltip-print): Parse output from above MI command.
8709         (gdb): Revert 2009-08-11 change.  User should detach inferior
8710         manually.
8712         Remove the word "separate" from IO functions as inferior
8713         output is now never displayed in the GUD buffer.
8715 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
8717         * startup.el (command-line-normalize-file-name): On Windows and
8718         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
8720 2009-09-10  Juri Linkov  <juri@jurta.org>
8722         * isearch.el (isearch-text-char-description): Propertize escape
8723         character sequences with the `escape-glyph' face.  (Bug#4344)
8725         * simple.el (shell-command): Set asynchronous process filter to
8726         `comint-output-filter'.  (Bug#4343)
8728         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
8729         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
8730         the list.  Move "asm" to the bottom.
8731         (grep-find-ignored-directories): Add `choice' with nil value
8732         to empty the list easily.
8733         (grep-find-ignored-files): New option.
8734         (grep-files-history): Set to nil by default instead of '("ch" "el").
8735         (grep-compute-defaults): Add "<X>" to `grep-template'.
8736         (grep-read-files): Bind new local variables `default-alias' and
8737         `default-extension'.  Use a list of default values for the file prompt.
8738         (lgrep): Add `--exclude=' command line options composed from
8739         `grep-find-ignored-files'.
8740         (rgrep): Add `-name' command line options composed from
8741         `grep-find-ignored-files'.  (Bug#4301)
8743 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8745         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
8746         (bug#4368).
8748 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8750         * calendar/time-date.el (autoload):
8751         Expand define-obsolete-function-alias into defalias and make-obsolete
8752         for old Emacsen that Gnus supports.
8753         (with-no-warnings): Define it for old Emacsen.
8754         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
8755         is available.
8756         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
8757         float-time is available; suppress compile warning for time-to-seconds.
8759 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
8761         * net/imap.el (imap-message-map): Docstring fix.
8763 2009-09-09  Glenn Morris  <rgm@gnu.org>
8765         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
8766         line numbers too.  (Bug#4374)
8768 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8770         * smerge-mode.el (smerge-remove-props, smerge-refine):
8771         Use with-silent-modifications (bug#4342).
8773         * subr.el (with-silent-modifications): New macro.
8775 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
8777         * files.el (top-level): Require `cl' when compiling.
8779 2009-09-07  Glenn Morris  <rgm@gnu.org>
8781         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
8783         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
8784         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
8786 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
8788         * vc-git.el (vc-git-annotate-command): Use separator to parse
8789         arguments correctly.
8791 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
8793         * proced.el (proced-mode): Doc fix.
8795 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
8797         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
8798         lstat fails.
8799         (tramp-do-file-attributes-with-ls): Check for file existence at
8800         remote end.
8801         (tramp-do-file-attributes-with-stat): Likewise.
8802         (tramp-convert-file-attributes): Return nil when attr is nil.
8804 2009-09-05  Glenn Morris  <rgm@gnu.org>
8806         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
8807         properties to this button.
8808         (diary-fancy-display): Don't extend the button to the final newline.
8809         (diary-fancy-display-mode): Continue to define "q" as a local key.
8811         * calendar/cal-china.el (holiday-chinese): Make it slightly more
8812         efficient.
8814         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
8816         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
8817         (byte-compile-dest-file-function): New option.
8818         (byte-compile-dest-file): Doc fix.
8819         Obey byte-compile-dest-file-function.
8820         (byte-compile-cl-file-p): New function.
8821         (byte-compile-eval): Only suppress noruntime warnings about cl functions
8822         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
8823         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
8824         than for file being previously loaded.
8825         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
8826         (byte-compile-file-form-require): Handle the case where requiring a file
8827         indirectly causes CL to be loaded.
8829 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
8831         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
8832         before killing the old buffer, since by the time `kill-buffer' is
8833         run so many buffer variables have been set to nil that it may not
8834         behave as expected.  (Bug#4061)
8836 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
8838         * files.el (find-alternate-file): If the old buffer is modified
8839         and visiting a file, behave similarly to `kill-buffer' when
8840         killing it, thus reverting to the pre-1.878 behavior; see
8841         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
8842         for discussion.  Also, consult `buffer-file-name' as a variable
8843         not as a function, for consistency with the rest of the code.
8845 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
8847         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
8848         also when adding a new directory.
8850         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
8851         defun.
8853 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8855         * files.el (locate-file-completion-table): Make it provide boundary
8856         information, so partial-completion works better.
8858 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
8860         * mail/footnote.el (Footnote-text-under-cursor):
8861         Check footnote-text-marker-alist before using it (bug#4324).
8863 2009-09-04  Glenn Morris  <rgm@gnu.org>
8865         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
8866         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
8867         * play/solitaire.el, play/tetris.el:
8868         Remove leading * from defcustom and defface docs.
8870         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
8871         necessary.
8872         (diary-fancy-overriding-map): New variable.
8873         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
8874         Use view-mode.
8876         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
8877         goto-line.
8879 2009-09-03  Glenn Morris  <rgm@gnu.org>
8881         * arc-mode.el (archive-mode):
8882         * dos-fns.el (set-default-process-coding-system):
8883         * man.el (Man-getpage-in-background):
8884         * menu-bar.el (menu-bar-describe-menu):
8885         * server.el (server-process-filter):
8886         * startup.el (command-line):
8887         * tar-mode.el (tar-header-block-tokenize, tar-extract):
8888         * w32-fns.el (set-default-process-coding-system):
8889         * x-dnd.el (x-dnd-handle-file-name):
8890         * international/mule-cmds.el (mule-menu-keymap)
8891         (set-default-coding-systems, language-info-alist, set-language-info)
8892         (set-language-environment, standard-display-european-internal)
8893         (set-locale-environment):
8894         * international/mule-diag.el (mule-diag):
8895         * mail/emacsbug.el (report-emacs-bug):
8896         * mail/rmail.el (rmail-mode):
8897         * mail/sendmail.el (mail-setup):
8898         Use default-value rather than default-enable-multibyte-characters.
8900         * progmodes/f90.el: Move all safe properties into the defcustoms.
8901         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
8903         * calendar/appt.el (appt-check):
8904         * calendar/diary-lib.el (diary-set-header, diary-live-p)
8905         (diary-check-diary-file, diary-list-entries)
8906         (diary-include-other-diary-files, diary-simple-display)
8907         (diary-fancy-display, diary-print-entries)
8908         (diary-mark-included-diary-files, diary-make-entry):
8909         Don't call substitute-in-file-name on diary-file.
8911 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
8912             Stefan Monnier  <monnier@iro.umontreal.ca>
8914         * mail/footnote.el (footnote-prefix): Make it a defcustom.
8915         (footnote-mode-map): Move initialization into the declaration.
8916         (footnote-minor-mode-map): Define it rather than changing global-map.
8917         (footnote-mode): Use define-minor-mode.
8919 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
8921         * net/tramp.el (tramp-handle-file-attributes-with-ls)
8922         (tramp-do-file-attributes-with-perl)
8923         (tramp-do-file-attributes-with-stat): Rename from
8924         `tramp-handle-file-attributes-with-*'.
8925         (tramp-handle-file-attributes): Use them.
8926         (tramp-do-directory-files-and-attributes-with-perl)
8927         (tramp-do-directory-files-and-attributes-with-stat): Rename from
8928         `tramp-handle-directory-files-and-attributes-with-*'.
8929         (tramp-handle-directory-files-and-attributes): Use them.
8930         (tramp-method-out-of-band-p): Additional parameter SIZE.
8931         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
8932         (tramp-handle-write-region): Use it.
8933         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
8934         (tramp-handle-vc-registered): Check, whether the first run did
8935         return files to be tested.
8936         (tramp-advice-make-auto-save-file-name): Do not call directly
8937         `tramp-handle-make-auto-save-file-name', because this would bypass
8938         the locking mechanism.
8940         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
8941         (file-remote-p, process-file, start-file-process, set-file-times)
8942         (tramp-compat-file-attributes): Compatibility functions shall not
8943         call directly `tramp-handle-*', because this would bypass the
8944         locking mechanism.
8945         (tramp-compat-number-sequence): New defun.
8947 2009-09-02  Glenn Morris  <rgm@gnu.org>
8949         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
8950         alias for float-time.
8951         (time-to-number-of-days): In Emacs, use float-time.
8952         * net/newst-backend.el (time-add): Suppress warnings from compat
8953         function.
8954         * time.el (emacs-uptime, emacs-init-time):
8955         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
8956         Use float-time rather than time-to-seconds.
8958         * minibuffer.el (completion-initials-expand): Fix typo.
8960         * faces.el (modeline, modeline-inactive, modeline-highlight)
8961         (modeline-buffer-id):
8962         * info.el (info-menu-5): Mark these face aliases as obsolete.
8964 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
8966         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
8967         space ...
8968         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
8969         no "--thread" option.
8970         (gdb-stopped): Don't print "Switched to thread" message when it is
8971         unchanged.
8973 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8975         * minibuffer.el (completion-try-completion)
8976         (completion-all-completions): Remove ill-defined (and
8977         mistakenly installed and luckily never used nor documented)
8978         `completion-styles' property.
8979         (completion-initials-expand, completion-initials-all-completions)
8980         (completion-initials-try-completion): New functions.
8981         (completion-styles-alist): Add doc to each entry.
8982         Add new `initials' entry.
8984 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
8986         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
8987         MI command -var-evaluate-expression.
8988         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
8989         and tweak for case of string child.
8990         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
8992 2009-09-01  Glenn Morris  <rgm@gnu.org>
8994         * add-log.el (change-log-date-face, change-log-name-face)
8995         (change-log-email-face, change-log-file-face, change-log-list-face)
8996         (change-log-conditionals-face, change-log-function-face)
8997         (change-log-acknowledgement-face):
8998         * cus-edit.el (custom-invalid-face, custom-rogue-face)
8999         (custom-modified-face, custom-set-face, custom-changed-face)
9000         (custom-saved-face, custom-button-face, custom-button-pressed-face)
9001         (custom-documentation-face, custom-state-face, custom-comment-face)
9002         (custom-comment-tag-face, custom-variable-tag-face)
9003         (custom-variable-button-face, custom-face-tag-face)
9004         (custom-group-tag-face-1, custom-group-tag-face):
9005         * diff-mode.el (diff-header-face, diff-file-header-face)
9006         (diff-index-face, diff-hunk-header-face, diff-removed-face)
9007         (diff-added-face, diff-changed-face, diff-function-face)
9008         (diff-context-face, diff-nonexistent-face):
9009         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
9010         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
9011         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
9012         (Info-title-4-face):
9013         * isearch.el (isearch-lazy-highlight-face):
9014         * log-view.el (log-view-file-face, log-view-message-face):
9015         * paren.el (show-paren-match-face, show-paren-mismatch-face):
9016         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
9017         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
9018         (cvs-msg-face):
9019         * smerge-mode.el (smerge-mine-face, smerge-other-face)
9020         (smerge-base-face, smerge-markers-face):
9021         * wid-edit.el (widget-documentation-face, widget-button-face)
9022         (widget-field-face, widget-single-line-field-face)
9023         (widget-inactive-face, widget-button-pressed-face):
9024         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
9025         (woman-addition-face):
9026         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
9027         (eshell-ls-executable-face, eshell-ls-readonly-face)
9028         (eshell-ls-unreadable-face, eshell-ls-special-face)
9029         (eshell-ls-missing-face, eshell-ls-archive-face)
9030         (eshell-ls-backup-face, eshell-ls-product-face)
9031         (eshell-ls-clutter-face):
9032         * eshell/em-prompt.el (eshell-prompt-face):
9033         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
9034         * obsolete/old-whitespace.el (whitespace-highlight-face):
9035         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
9036         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
9037         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
9038         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
9039         (antlr-font-lock-literal-face):
9040         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
9041         (ebrowse-root-class-face, ebrowse-file-name-face)
9042         (ebrowse-default-face, ebrowse-member-attribute-face)
9043         (ebrowse-member-class-face, ebrowse-progress-face):
9044         * progmodes/make-mode.el (makefile-space-face):
9045         * progmodes/sh-script.el (sh-heredoc-face):
9046         * textmodes/flyspell.el (flyspell-incorrect-face)
9047         (flyspell-duplicate-face):
9048         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
9049         * textmodes/texinfo.el (texinfo-heading-face):
9050         Mark face aliases with "-face" suffix as obsolete.
9052         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
9053         compiler.
9055         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
9056         (eudc-bob-sound-menu): Use defvar rather than defconst, since
9057         easy-menu-define wants to modify these.
9059         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
9061         * net/browse-url.el (browse-url-file-url):
9062         * term/internal.el (dos-codepage-setup):
9063         Use default-value rather than default-enable-multibyte-characters.
9065         * progmodes/etags.el (etags-goto-tag-location):
9066         * progmodes/flymake.el (flymake-highlight-line)
9067         (flymake-goto-file-and-line, flymake-goto-line):
9068         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
9069         (gdb-goto-breakpoint):
9070         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
9071         * progmodes/python.el (python-find-function)
9072         (python-pdbtrack-track-stack-file):
9073         * progmodes/verilog-mode.el (verilog-surelint-off):
9074         * term/ns-win.el (ns-open-file-select-line):
9075         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
9076         Use forward-line rather than goto-line.
9078         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
9079         * textmodes/reftex-index.el (reftex-display-index):
9080         * textmodes/reftex-ref.el (reftex-offer-label-menu):
9081         * textmodes/reftex-toc.el (reftex-toc):
9082         Remove unnecessary bindings of default-major-mode (all are followed by
9083         major-mode check and possible mode switch).
9085 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
9087         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
9088         Handle watchpoints (bug#4282).
9089         (def-gdb-thread-buffer-command): Enable thread to be selected by
9090         clicking without selecting threads buffer first.
9091         (gdb-current-context-command): Use selected frame so that "up",
9092         "down" etc work in the GUD buffer.
9093         (gdb-update): Find selected frame before rendering stack buffer.
9094         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
9096 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
9098         * progmodes/sym-comp.el (displayed-completions): Remove.
9099         (symbol-complete): Use minibuffer-complete.
9101 2009-08-31  Glenn Morris  <rgm@gnu.org>
9103         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
9105         * apropos.el (apropos-symbols-internal):
9106         Handle (obsolete) face aliases.
9108         * faces.el (describe-face): Adjust the output format to be more like
9109         describe-variable, and to mention (obsolete) face aliases.
9110         Adjust the whitespace so that help-setup-xref works.
9112         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
9113         * calendar/diary-lib.el (diary-button-face):
9114         Mark these face aliases as obsolete.
9116         * calendar/calendar.el (calendar-today): Doc fix.
9118 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
9120         * progmodes/gdb-mi.el (gdb-control-all-threads)
9121         (gdb-control-current-thread): Force tool bar update.
9122         (gdb-non-stop-handler): New function.
9123         (gdb-init-1): Use it to test if non-stop mode is supported.
9124         Remove unused gdbmi buffer type.
9126 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
9128         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
9129         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
9131 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
9133         * comint.el (comint-exec-1): Check command is non-null first.
9134         Part of gdb-mi.el change (2009-08-28).
9136 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9138         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
9140 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
9142         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
9143         instead of `dolist' to avoid a recursive require when bootstrapping.
9145 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9147         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
9149         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
9151         * net/imap.el (imap-send-command): Simplify.
9152         (imap-wait-for-tag): point-max -> buffer-size.
9154         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
9156         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
9157         with constant argument.
9159         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
9161         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
9163         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
9164         Change default, since most of our files don't have a history.
9165         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
9166         the user.
9168         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9169         Add comint-run.
9171         * calc/calc.el: Improve commenting convention.
9172         (calc-digit-map, toplevel): Simplify.
9174         * comint.el (comint-insert-input): Be careful to only set point if we
9175         don't delegate to some other command.
9177         * proced.el (proced-signal-list): Make it an alist.
9178         (proced-grammar-alist): Capitalize names.
9179         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
9180         Disable undo manually and make it read-only.
9181         Use completion-annotate-function.
9183         * minibuffer.el (minibuffer-message): If the current buffer is not
9184         a minibuffer, insert the message in the echo area rather than at the
9185         end of the buffer.
9186         (completion-annotate-function): New variable.
9187         (minibuffer-completion-help): Use it.
9188         (completion--embedded-envvar-table): Environment vars are
9189         always case-sensitive.
9191 2009-08-30  Glenn Morris  <rgm@gnu.org>
9193         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
9194         from fortran-current-defun.
9195         (fortran-beginning-of-subprogram): Be more precise about finding the
9196         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
9197         (fortran-end-of-subprogram): Simplify.
9198         (fortran-current-defun): Use fortran-start-prog-re.
9200 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
9202         * subr.el (do-after-load-evaluation): Simplify.
9204 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
9206         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
9208         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
9209         (vc-rcs-print-log): Use it.
9211         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
9213 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9215         * paths.el (abbrev-file-name): Move to abbrev.el.
9216         * abbrev.el (abbrev-file-name): Move from paths.el.
9217         Obey user-emacs-directory.
9218         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
9219         user-emacs-directory.
9220         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
9221         abbrev-file-name and calc-settings-file any more.
9222         * startup.el (command-line): Recompute abbrev-file-name and
9223         abbreviated-home-dir.
9224         (normal-no-mouse-startup-screen): Improve the generic code and get rid
9225         of the special code for when C-h bindings haven't been changed.
9226         (display-startup-echo-area-message): Use with-current-buffer.
9227         (command-line-1): Use a list of strings, rather than a list of lists
9228         of strings for longopts.
9230         * files.el (get-free-disk-space): Use / for default-directory.
9232         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
9233         Use with-current-buffer.
9235         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
9236         Recognize immutable variables like most-positive-fixnum.
9237         (byte-compile-setq-default): Check and warn if trying to assign
9238         to an immutable variable, or a non-variable.
9240         * progmodes/cc-vars.el (c-comment-continuation-stars):
9241         * progmodes/cc-engine.el (c-looking-at-bos):
9242         * progmodes/cc-cmds.el (c-toggle-auto-state)
9243         (c-forward-into-nomenclature, c-backward-into-nomenclature)
9244         (c-comment-line-break-function): Add version of obsolescence.
9246 2009-08-28  Juri Linkov  <juri@jurta.org>
9248         * files.el (magic-fallback-mode-alist): Add ZIP magic number
9249         associated with `archive-mode'.
9251         * image.el (image-type-header-regexps): Use only JPEG magic number
9252         to determine JPEG images, and don't use `image-jpeg-p' because
9253         Emacs can display non-JFIF non-Exif JPEG images.
9255 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
9257         * arc-mode.el (archive-mode):
9258         * emacs-lisp/re-builder.el (re-builder-unload-function):
9259         Protect against the default value of `major-mode' being nil.
9261 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
9263         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
9264         Fix typos in docstrings.
9266         * progmodes/js.el (js--macro-decl-re): Doc fix.
9267         (js--plain-method-re, js--split-name): Refloc docstring.
9268         (js--class-styles, js--make-merged-item, js--splice-into-items):
9269         Fix typos in docstrings; reflow docstrings.
9270         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
9271         (js--variable-decl-matcher, js--inside-pitem-p)
9272         (js--parse-state-at-point, js--get-all-known-symbols)
9273         (js--symbol-history, js-find-symbol, js--js-references)
9274         (js--moz-interactor, js--js-encode-value, js--read-tab):
9275         Fix typos in docstrings.
9277 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9279         * textmodes/reftex.el (reftex-get-file-buffer-force):
9280         * progmodes/verilog-mode.el (verilog-batch-execute-func):
9281         * emulation/viper.el (viper-go-away, viper-set-hooks):
9282         * emacs-lisp/re-builder.el (re-builder-unload-function):
9283         * emacs-lisp/bytecomp.el (byte-compile-file):
9284         * ses.el (ses-unload-function):
9285         * hexl.el (hexl-find-file):
9286         * files.el (normal-mode):
9287         * ehelp.el (with-electric-help):
9288         * autoinsert.el (auto-insert-alist):
9289         * arc-mode.el (archive-mode):
9290         Use (default-value 'major-mode) instead of default-major-mode.
9292         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
9293         * international/mule.el (load-with-code-conversion):
9294         * emacs-lisp/debug.el (debug):
9295         * ediff-vers.el (ediff-rcs-get-output-buffer):
9296         * dired.el (dired-internal-noselect): Don't let-bind
9297         default-major-mode around code that doesn't use it.
9298         E.g. buffer creation via get-buffer-create doesn't use it.
9300 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
9302         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
9303         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
9304         when writing the temp file.  Otherwise, epa-file gets confused.
9305         (tramp-register-file-name-handlers): Make it a defun.  Move also
9306         `epa-file-handler' to the front of `file-name-handler-alist'.
9308 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9310         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
9311         start right after a ^M.
9312         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
9313         (tramp-completion-file-name-regexp-separate)
9314         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
9315         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
9316         Don't modify last-coding-system-used by accident.
9317         (tramp-completion-file-name-handler): Apply the checks here,
9318         instead during registration.
9319         (tramp-register-file-name-handlers): Renamed from
9320         `tramp-register-file-name-handler'.  Register both
9321         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
9322         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
9324 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
9326         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
9327         Remove variable ...
9328         (gdb-init-1, gdb-display-separate-io-buffer)
9329         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
9330         references to it.
9331         (gdb-inferior-io-mode): Use make-comint-in-buffer.
9332         (gdb-inferior-filter): Use comint-output-filter to stop
9333         echoing and remove ^M characters.
9335 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9337         * emulation/viper-init.el (viper-restore-cursor-type):
9338         * emulation/cua-base.el (cua--update-indications):
9339         Replace default-cursor-type with (default-value 'cursor-type).
9341         * mail/sendmail.el (mail-recover-1):
9342         * international/mule-diag.el (describe-current-coding-system-briefly)
9343         (describe-current-coding-system):
9344         * international/mule-cmds.el (select-safe-coding-system)
9345         (select-message-coding-system)
9346         (set-language-environment-coding-systems, set-locale-environment):
9347         * hexl.el (hexl-insert-multibyte-char):
9348         * dos-w32.el (find-buffer-file-type-coding-system):
9349         * simple.el (what-cursor-position):
9350         Replace uses of default-buffer-file-coding-system
9351         with (default-value 'buffer-file-coding-system).
9353         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
9354         Replace uses of default-cursor-in-non-selected-windows
9355         with (default-value 'cursor-in-non-selected-windows).
9356         Use with-current-buffer.
9358         * mail/feedmail.el: Use CL macros.
9359         (feedmail-run-the-queue, feedmail-send-it-immediately):
9360         * dos-w32.el (find-buffer-file-type): Replace uses of
9361         default-buffer-file-type with (default-value 'buffer-file-type).
9363 2009-08-28  Glenn Morris  <rgm@gnu.org>
9365         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
9366         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
9367         Use default-value of major-mode rather than default-major-mode.
9369 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9371         * Makefile.in (update-elcfiles): Report left over elc files.
9373         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
9374         expand-file-name and with-current-buffer.
9375         (mail-get-names, mail-directory): Use with-current-buffer.
9377         * vc.el (vc-read-revision): New function.
9378         (vc-version-diff, vc-merge): Use it.
9380 2009-08-27  Sam Steingold  <sds@gnu.org>
9382         * simple.el (kill-do-not-save-duplicates): New user option.
9383         (kill-new): When it is non-nil, and the new string is the same as
9384         the latest kill, set replace to t to avoid duplicates in kill-ring.
9386 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
9388         * net/tramp.el (tramp-handle-process-file): Do not flush all
9389         caches when `process-file-side-effects' is set.
9390         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
9391         instead of `tramp-find-file-exists-command'.
9392         Unset `process-file-side-effects'.
9394 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
9396         * net/tramp.el (tramp-methods): New method "rsyncc".
9397         (top): Add completion function for "rsyncc".
9398         (tramp-message-show-message): New defvar.
9399         (tramp-message, tramp-error): Use it.
9400         (tramp-do-copy-or-rename-file-directly): Extend check for direct
9401         remote copying.
9402         (tramp-do-copy-or-rename-file-out-of-band): Handle new
9403         `tramp-methods' entry `copy-env' of "rsyncc".
9404         (tramp-vc-registered-read-file-names): New defconst.
9405         (tramp-vc-registered-file-names): New defvar.
9406         (tramp-handle-vc-registered): Implement optimization strategy.
9407         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
9408         (tramp-vc-file-name-handler): New defun.
9409         (tramp-get-ls-command, tramp-get-test-command)
9410         (tramp-get-file-exists-command, tramp-get-remote-ln)
9411         (tramp-get-remote-perl, tramp-get-remote-stat)
9412         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
9414         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
9415         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
9416         timestamps.
9417         (tramp-get-file-property): Check for timestamps in
9418         `tramp-cache-inhibit-cache'.
9419         (tramp-set-file-property): Write timestamp.
9421 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9423         * language/japan-util.el (japanese-symbol-table): Add entries for
9424         cp932-2-byte.
9426         * international/characters.el: Add category `j' to cp932-2-byte.
9428 2009-08-27  Kenichi Handa  <handa@m17n.org>
9430         * international/fontset.el (build-default-fontset-data): New macro.
9431         (setup-default-fontset): Use build-default-fontset-data for CJK,
9432         tibetan, ethiopic, and ipa.
9434 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9436         * cus-start.el (default-major-mode): Customize `major-mode' instead.
9437         (enable-multibyte-characters): Not customizable any more.
9439         * subr.el (default-mode-line-format, default-header-line-format)
9440         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
9441         (default-direction-reversed, default-truncate-lines)
9442         (default-left-margin, default-tab-width, default-case-fold-search)
9443         (default-left-margin-width, default-right-margin-width)
9444         (default-left-fringe-width, default-right-fringe-width)
9445         (default-fringes-outside-margins, default-scroll-bar-width)
9446         (default-vertical-scroll-bar, default-indicate-empty-lines)
9447         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
9448         (default-fringe-cursor-alist, default-scroll-up-aggressively)
9449         (default-scroll-down-aggressively, default-fill-column)
9450         (default-cursor-type, default-buffer-file-type)
9451         (default-cursor-in-non-selected-windows)
9452         (default-buffer-file-coding-system, default-major-mode)
9453         (default-enable-multibyte-characters): Mark as obsolete.
9455 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
9457         * vc-dir.el (vc-dir-update): Remove debug helper.
9459         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
9461 2009-08-26  Sam Steingold  <sds@gnu.org>
9463         * simple.el (save-interprogram-paste-before-kill): New user option.
9464         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
9465         save the interprogram-paste into kill-ring before overriding it
9466         with the Emacs kill.
9468 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
9470         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
9471         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
9472         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
9473         and move to vc-rcs.el.
9474         (vc-default-next-revision): Rename to vc-rcs-next-revision and
9475         move to vc-rcs.el.
9476         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
9477         (vc-rcs-update-changelog): Remove.
9478         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
9479         and move to vc-rcs.el.
9481         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
9482         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
9483         renaming.
9484         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
9485         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
9486         vc.el, renamed to be RCS specific.
9488         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
9489         New functions.
9490         (vc-cvs-update-changelog): Move here from vc.el.
9492         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
9493         New functions.
9495 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9497         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
9499 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
9501         * vc-git.el (vc-git-register): Use "git add" for directories.
9502         (vc-git-stash, vc-git-stash-show): New functions.
9503         (vc-git-extra-menu-map): Bind them.
9505         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
9506         directory correctly in case the item is a directory itself.
9508         * vc.el: Document the desired behavior for reverted files in the
9509         `added' state.
9510         (vc-default-prettify-state-info): Remove function, unused.
9512         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
9514 2009-08-26  Glenn Morris  <rgm@gnu.org>
9516         * bindings.el (standard-mode-line-format): Reposition dashes in
9517         which-func entry.  (Bug#4217)
9519         * files.el (enable-local-variables, enable-local-eval)
9520         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
9521         the defcustoms.
9522         (auto-mode-alist, ignored-local-variables)
9523         (save-some-buffers-action-alist): Move risky declarations to the
9524         definitions.
9525         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
9526         (font-lock-defaults, format-alist, imenu--index-alist)
9527         (imenu-generic-expression, input-method-alist, minor-mode-alist)
9528         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
9529         (mode-line-modified, mode-line-mule-info, mode-line-position)
9530         (mode-line-process, mode-line-remote, outline-level)
9531         (parse-time-rules, rmail-output-file-alist)
9532         (special-display-buffer-names, vc-mode):
9533         Move risky declarations to the relevant files.
9534         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
9535         (mode-line-modified, mode-line-process, mode-line-position)
9536         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
9537         * font-core.el (font-lock-defaults):
9538         * format.el (format-alist):
9539         * vc-hooks.el (vc-mode):
9540         * window.el (special-display-buffer-names):
9541         * international/mule-cmds.el (input-method-alist):
9542         Define riskiness here (dumped file) rather than in files.el.
9543         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
9544         * imenu.el (imenu-generic-expression, imenu--index-alist):
9545         * outline.el (outline-level):
9546         * time.el (display-time-string):
9547         * calendar/parse-time.el (parse-time-rules):
9548         * mail/rmailout.el (rmail-output-file-alist):
9549         Autoload riskiness here, rather than placing in files.el.
9551 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
9553         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
9555 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
9557         * simple.el (process-file-side-effects): New defvar.
9559         * dired-aux.el (dired-show-file-type):
9560         * vc.el (vc-diff-internal):
9561         * vc-arch.el (vc-arch-diff):
9562         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
9563         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
9564         * vc-git.el (vc-git-registered, vc-git-working-revision)
9565         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
9566         (vc-git--empty-db-p):
9567         * vc-hooks.el (vc-user-login-name):
9568         * vc-svn.el (vc-svn-registered, vc-svn-state)
9569         (vc-svn-dir-extra-headers, vc-svn-find-revision):
9570         * progmodes/grep.el (grep-probe): Let-bind
9571         `process-file-side-effects' with nil.
9573         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
9575         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
9576         daemon.  Replace ping by checking for running service for bluez
9577         and zeroconf.  (Bug#4239)
9579 2009-08-25  Kevin Ryde  <user42@zip.com.au>
9581         * net/dig.el (dig): Add autoload cookie.
9583 2009-08-25  Glenn Morris  <rgm@gnu.org>
9585         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
9586         load-history for absolute file-names.
9587         (byte-compile-file-form-require): Warn about use of the cl package.
9589         * format.el (format-alist): Doc fix.
9591         * play/bubbles.el (top-level): Don't require cl at run-time.
9593         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
9594         run-time cl).
9596 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
9598         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
9599         from cl package.
9600         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
9602 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
9604         * calc/calc-alg.el (math-trig-rewrite)
9605         (math-hyperbolic-trig-rewrite): New functions.
9606         (calc-simplify): Simplify trig functions when asked.
9608 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9610         * diff-mode.el (diff-find-source-location): Avoid goto-line.
9612 2009-08-24  Kenichi Handa  <handa@m17n.org>
9614         * language/ind-util.el (mapthread): Delete it.
9615         (combinatorial): New function.
9616         (indian--puthash-cv): Use combinatorial instead of mapthread.
9618 2009-08-22  Kevin Ryde  <user42@zip.com.au>
9620         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
9621         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
9622         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
9623         Clarify docstring that the value is strings not symbols.
9624         (checkdoc-list-of-strings-p): New function.
9626 2009-08-22  Glenn Morris  <rgm@gnu.org>
9628         * files.el (auto-mode-alist):
9629         * hippie-exp.el (he-concat-directory-file-name):
9630         * lpr.el (lpr-windows-system, printer-name):
9631         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
9632         * ps-print.el (ps-windows-system):
9633         * startup.el (command-line):
9634         * emulation/viper-ex.el (viper-glob-function):
9635         * international/mule-cmds.el (set-language-environment-coding-systems):
9636         * net/ange-ftp.el (ange-ftp-write-region):
9637         * obsolete/fast-lock.el (fast-lock-cache-name):
9638         Remove code for defunct system-types emx, macos, mswindows, next-mach,
9639         unisoft-unix, vax-vms, win32, w32.
9641         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
9642         given name if the pattern is not more specific.
9644         * calendar/lunar.el (lunar-phase-names): New option.
9645         (lunar-phase): Doc fix.
9646         (lunar-cycles-per-year): New constant.
9647         (lunar-index): New function.
9648         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
9649         (lunar-phase-name): Use lunar-phase-names.
9650         (calendar-lunar-phases): Use format.
9651         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
9653         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
9654         Copy imenu-example--name-and-position function here for own use.
9655         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
9657         * bs.el (bs--redisplay):
9658         * cus-edit.el (custom-redraw):
9659         * ibuffer.el (ibuffer-bury-buffer):
9660         * server.el (server-goto-line-column):
9661         * startup.el (command-line-1):
9662         * strokes.el (strokes-xpm-for-stroke):
9663         * term.el (term-display-buffer-line):
9664         * view.el (View-goto-line):
9665         * calc/calc.el (calc-do, calc-trail-buffer):
9666         * play/gamegrid.el (gamegrid-add-score-insecure):
9667         * progmodes/ada-mode.el (ada-compile-goto-error):
9668         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
9669         (ebrowse-select-1st-to-9nth):
9670         * progmodes/cperl-mode.el (cperl-time-fontification):
9671         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
9672         * progmodes/gud.el (gud-display-line):
9673         (idlwave-shell-display-line):
9674         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
9675         * progmodes/make-mode.el (makefile-browser-toggle):
9676         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
9677         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
9678         * textmodes/picture.el (picture-draw-rectangle):
9679         * textmodes/reftex-index.el (reftex-index-goto-letter):
9680         (reftex-select-jump-to-previous):
9681         * textmodes/reftex-sel.el (reftex-find-start-point)
9682         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
9683         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
9684         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
9685         * textmodes/tex-mode.el (tex-compilation-parse-errors):
9686         * textmodes/two-column.el (2C-associated-buffer):
9687         Use forward-line rather than goto-line.
9689         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
9690         goto-line.
9692         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
9693         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
9694         (quick-check-list-to-regexp): Declare.
9696         * progmodes/make-mode.el (makefile-browser-insert-selection):
9697         Use goto-char rather than goto-line.
9699         * progmodes/prolog.el (compilation-error-regexp-alist)
9700         (compilation-forget-errors): Declare.
9702 2009-08-22  Juri Linkov  <juri@jurta.org>
9704         * progmodes/grep.el (lgrep, rgrep): At the beginning
9705         set `dir' to `default-directory' unless `dir' is a non-nil
9706         readable directory.  (Bug#4052)
9707         (lgrep, rgrep): Change a weird way to report an error
9708         from using `read-string' to using `error'.
9709         Instead of using interactive arguments in the function body,
9710         add new argument `confirm'.
9712 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9714         * textmodes/remember.el (remember-buffer):
9715         * progmodes/cperl-mode.el (cperl-vc-header-alist):
9716         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
9717         (icalendar-extract-ical-from-buffer):
9718         * net/newst-treeview.el (newsticker-groups-filename):
9719         * net/newst-backend.el (newsticker-cache-filename):
9720         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
9721         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
9722         (speedbar-add-ignored-path-regexp, speedbar-line-path)
9723         (speedbar-buffers-line-path, speedbar-path-line)
9724         (speedbar-buffers-line-path):
9725         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
9726         (epg-sign-keys):
9727         * epa.el (epa-display-verify-result):
9728         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
9730 2009-08-21  Glenn Morris  <rgm@gnu.org>
9732         * progmodes/js.el (inferior-moz-process): Fix declaration.
9734         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
9736         * obsolete/rnewspost.el (news-mail-reply):
9737         Use goto-char rather than goto-line.
9739         * term/ns-win.el (ns-open-file-select-line):
9740         Use line-beginning-position rather than goto-line.
9742         * apropos.el (apropos-command):
9743         * ehelp.el (electric-helpify):
9744         * printing.el (pr-show-setup):
9745         * strokes.el (strokes-help):
9746         * tutorial.el (tutorial--describe-nonstandard-key)
9747         (tutorial--detailed-help):
9748         * woman.el (woman-mini-help, woman-display-extended-fonts):
9749         * calc/calc-help.el (calc-describe-key):
9750         * emulation/edt.el (edt-electric-helpify):
9751         * international/mule-diag.el (mule-diag):
9752         * play/yow.el (apropos-zippy):
9753         * progmodes/python.el (python-describe-symbol):
9754         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
9755         * textmodes/table.el (*table--cell-describe-mode)
9756         (*table--cell-describe-bindings):
9757         Use help-print-return-message rather than the now obsolete alias.
9759         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
9760         (calendar-cursor-to-visible-date):
9761         * play/5x5.el (5x5-position-cursor):
9762         * play/decipher.el (decipher):
9763         * play/gomoku.el (gomoku-goto-xy):
9764         * play/landmark.el (lm-goto-xy):
9765         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
9766         (mpuz-paint-digit):
9767         Use forward-line, not goto-line.
9769         * mail/rmail.el (rmail-obsolete): Delete custom group.
9770         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
9771         (rmail-remote-password, rmail-remote-password-required):
9772         Remove unneeded :set-after and :set properties.
9774 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
9776         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
9778 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
9780         * loadup.el: Remove leftover macos code.
9782         * vc-git.el (vc-git-annotate-command): Run asynchronously.
9783         Explicitly pass the date format to git blame so that user local
9784         so that the output format can be parsed.
9786 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
9788         * net/dbus.el (top): Don't check for (getenv
9789         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
9791 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
9793         * log-edit.el (log-edit-strip-single-file-name): New var.
9794         (log-edit-insert-changelog): Use it.  Bug#3571
9796 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9798         * subr.el (read-passwd): Use read-key so keypad keys work as well.
9799         Bug#3287
9801         * help.el (help-print-return-message): Rename from
9802         print-help-return-message.
9804         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
9805         cvs-mode-map parent hack.
9806         (log-view-mode): Derive from special-mode.
9808         * linum.el (linum-mode): window-size-change-functions is redundant.
9809         Adapt to new window-configuration-change-hook behavior.
9810         (linum-after-size, linum-after-config): Remove.
9812         * imenu.el (imenu-example--name-and-position)
9813         (imenu-example--lisp-extract-index-name)
9814         (imenu-example--create-lisp-index, imenu-example--create-c-index):
9815         Mark as obsolete.
9817         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
9818         (inferior-prolog-mode): Use it.
9819         (inferior-prolog-load-file): Reset list of errors.
9821 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9823         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
9825         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
9827 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
9829         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
9830         is running already.
9832 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9834         * subr.el (listify-key-sequence-1): Use normal syntax since those
9835         integers are nowadays always represented by the same (positive) number
9836         on all platforms.
9837         (read-key-empty-map): New const.
9838         (read-key-delay): New var.
9839         (read-key): New function.
9840         (force-mode-line-update): Use with-current-buffer.
9841         (locate-user-emacs-file): Don't forget to abbreviate the file name.
9842         (start-process-shell-command, start-file-process-shell-command):
9843         Discourage the use of command-args.
9845 2009-08-19  Glenn Morris  <rgm@gnu.org>
9847         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
9849 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9851         * simple.el (choose-completion-string): Don't rely on
9852         minibuffer-completing-file-name and ad-hoc checks to decide whether
9853         to continue completion or not.
9855         * minibuffer.el (minibuffer-hide-completions): New function.
9856         (completion--do-completion): Use it.
9857         (completions-annotations): New face.
9858         (completion--insert-strings): Use it.
9859         (completion-pcm--delim-wild-regex): Add docstring.
9860         (completion-pcm--string->pattern): Add support for 0-width delimiters
9861         in completion-pcm--delim-wild-regex.
9863 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9865         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
9866         Remove unused var `buffer-modified-p'.
9868         * minibuffer.el (completion--do-completion): Move point for the #b001
9869         case as well (bug#4176).
9870         (minibuffer-complete, minibuffer-complete-word): Don't move point.
9872 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
9874         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
9875         and :session buses.
9877 2009-08-18  Kenichi Handa  <handa@m17n.org>
9879         * international/ucs-normalize.el (ucs-normalize-version):
9880         Change to 1.1.
9881         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
9882         (utf-8-hfs): Make it perform normalization on encoding too.
9884         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
9885         (sentence-end-without-space): Delete duplicated chars.
9886         (sentence-end-base): Likewise.
9888         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
9889         (html-mode): Delete duplicated chars from sentence-end-base.
9891         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
9892         (texinfo-mode): Delete duplicated chars from sentence-end-base.
9894 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
9896         * files.el (hack-one-local-variable): If the mode function is for
9897         a minor mode, pass it an argument (Bug#4148).
9899 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
9901         * net/tramp.el (tramp-register-completion-file-name-handler):
9902         Check also for (member 'partial-completion completion-styles).
9904 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9906         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
9907         abbrev (Bug#3943).
9909 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
9911         * progmodes/cperl-mode.el: Merge upstream 6.2.
9912         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
9913         (cperl-forward-re): Check cperl-brace-recursing.
9914         (cperl-highlight-charclass): New function.
9915         (cperl-find-pods-heres): Use it.
9916         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
9917         (cperl-beautify-regexp-piece): Fix column calculation.
9918         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
9919         (cperl-beautify-level): Don't process entire regexp.
9920         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
9921         calling man.
9922         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
9923         (cperl-init-faces): Build a list in the normal way.
9925 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9927         * calendar/parse-time.el (parse-time-string-chars): Save match
9928         data.
9930 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9932         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
9933         (sql-product): Use it.
9934         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
9935         (sql-set-product): Add completion.
9936         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
9937         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
9938         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
9939         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
9940         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
9941         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
9942         (sql-highlight-db2-keywords): Remove.
9943         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
9944         (sql-highlight-product): Use derived-mode-p.
9945         (sql-set-sqli-buffer): Use with-current-buffer.
9946         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
9947         Simplify.
9949         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
9951         * term.el: Fix commenting convention, turn comments into docstrings.
9953 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
9955         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
9957 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
9959         * calendar/parse-time.el (parse-time-string-chars): Compute using
9960         character classes, to handle non-ascii characters (Bug#3190).
9962 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9964         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
9965         another heredoc if the user adds another < (Bug#3226).
9967         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
9968         Don't initialize based on window-system (Bug#4124).
9970         * facemenu.el (facemenu-read-color): Use a completion function
9971         that accepts any defined color, such as RGB triplets (Bug#3677).
9973         * files.el (get-free-disk-space): Change fallback default
9974         directory to /.  Expand DIR argument before switching to fallback.
9975         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
9977 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
9979         * files.el (load-library): Doc fix.
9981 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
9983         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
9984         (viper-if-string): Redefine C-s in the minibuffer to insert the last
9985         incremental search string.
9987         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
9988         XEmacs.
9990         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
9991         (ediff-merge-region-is-non-clash)
9992         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
9993         Also check if the job is really a merge job.
9995         * ediff.el (ediff-current-file): New function.
9997 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
9999         * progmodes/js.el: Edit docstrings throughout to follow Emacs
10000         conventions.
10001         (js-insert-and-indent): Delete function.
10002         (js-mode-map): Don't bind keys to js-insert-and-indent.
10003         (js-beginning-of-defun): Rename from js--beginning-of-defun.
10004         (js-end-of-defun): Rename from js--end-of-defun.
10005         (js-auto-indent-flag): Delete variable.
10007 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
10009         * progmodes/js.el: Remove proclaim statement.
10010         Defvar which-func-imenu-joiner-function to silence compiler.
10012         * files.el (auto-mode-alist): Use js-mode for .js files.
10014         * progmodes/js2-mode.el: Remove file.
10016         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
10018         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
10020         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
10022 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
10023             Karl Landstrom  <karl.landstrom@brgeight.se>
10025         * progmodes/js.el: New file.
10027 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
10029         * timezone.el (timezone-parse-date): Add ability to understand ISO
10030         basic format (minimal separators) dates in addition to the
10031         already-supported extended format dates.
10033 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
10035         * international/ucs-normalize.el: Add a `coding' file variable.
10037         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
10039 2009-08-14  Sam Steingold  <sds@gnu.org>
10041         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
10043 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
10045         * faces.el (help-argument-name): Define it here instead of
10046         help-fns.el, because in daemon mode help-fns.el may be loaded when
10047         faces are still uninitialized (Bug#1078).
10049         * help-fns.el (help-argument-name): Move defface to faces.el.
10051 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
10053         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
10054         create buffer with a pty but no process so that GDB can make the
10055         inferior the controlling process.
10057 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
10059         * international/ucs-normalize.el: New file.
10061 2009-08-13  Richard Stallman  <rms@gnu.org>
10063         * mail/rmail.el (rmail-get-attr-names):
10064         Accept an attribute header that is too short.
10066         * mail/rmail.el (rmail-forget-messages):
10067         Ignore nil elt in rmail-message-vector.  Use dotimes.
10069         * progmodes/compile.el (compilation-goto-locus):
10070         Use next-error-move-function.
10072         * simple.el (next-error-move-function): New variable.
10074 2009-08-12  Juri Linkov  <juri@jurta.org>
10076         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
10077         always non-nil.  (Bug#4052)
10079         * replace.el (read-regexp): Return empty string when
10080         `default-value' is nil.
10081         (keep-lines-read-args): Don't use empty string as the
10082         default value for `read-regexp'.  (Bug#2495)
10084 2009-08-12  Juri Linkov  <juri@jurta.org>
10086         * international/mule-cmds.el (ucs-insert): Change arguments
10087         from `arg' to `character', `count', `inherit' to be the same
10088         as in `insert-char'.  Doc fix.  (Bug#4039)
10090         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
10092 2009-08-12  Juri Linkov  <juri@jurta.org>
10094         * files-x.el: New file.
10096         * files.el: Move code that deals with adding/deleting
10097         file/directory-local variables to files-x.el.
10099         * Makefile.in (ELCFILES): Add files-x.elc.
10101 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
10103         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
10104         to use `goto-line'.
10105         (gdb-place-breakpoints, gdb-get-location): Rewritten without
10106         `goto-line'.
10107         (gdb-invalidate-disassembly): Do not refresh upon receiving
10108         'update signal.  Instead, update all disassembly buffers only after
10109         threads list.
10110         (gdb): Send -target-detach when buffer is killed (Bug#3794).
10111         (gdb-starting): Moved -data-list-register-names...
10112         (gdb-stopped): ...here so it's sent when first thread stops.
10113         (gdb-registers-handler-custom): Do nothing if register names are
10114         unknown yet.
10116         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
10117         from `gdb-mi.el' to avoid extra tangling.
10119         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
10120         change which breaks `gud-def' definitions used in `gdb'.
10121         (gdb-update-gud-running): No extra fuss for updating frame number.
10123 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10125         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
10126         (describe-language-environment-map, setup-language-environment-map)
10127         (set-coding-system-map): Move initialization into declaration.
10128         (set-language-info-alist): Last arg to define-key-after can be skipped.
10130         * international/quail.el (quail-completion-1): Simplify.
10131         (quail-define-rules): Use slightly more compact code.
10132         (quail-insert-decode-map): Propertize keys, compact columns.
10134         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10135         Add goto-line.
10137 2009-08-10  Miles Bader  <miles@gnu.org>
10139         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
10140         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
10141         (js2-instance-member, js2-private-member, js2-private-function-call)
10142         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
10143         (js2-magic-paren, js2-external-variable):
10144         Remove "-face" suffix from face names.
10145         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
10146         (js2-highlight-undeclared-vars, js2-peek-token)
10147         (js2-parse-function-params, js2-mode-show-errors)
10148         (js2-mode-show-warnings, js2-make-magic-delimiter)
10149         (js2-mode-highlight-magic-parens): Update to use new face names.
10151 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
10153         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
10154         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
10156 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
10158         * subr.el: Provide hashtable-print-readable.
10160         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
10161         hs-c-like-adjust-block-beginning.
10162         (hs-hide-block-at-point): Stop hiding at the beginning of
10163         hs-block-end-regexp (Bug#700).
10165 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
10167         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
10168         a macro.
10169         (gdb-registers-handler-custom): Do not fail when register names
10170         are unavailable.
10172 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
10174         * progmodes/gdb-mi.el (gdb-control-all-threads)
10175         (gdb-control-current-thread): Interactive setters for
10176         `gdb-gud-control-all-threads' to use in menu.
10177         (gdb-show-run-p): Show «Go» when process is not active.
10178         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
10179         gud/thread.xpm and gud/all.xpm.
10181 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
10183         * net/net-utils.el (net-utils-font-lock-keywords): New var.
10184         (nslookup-font-lock-keywords): Make it a variable.
10185         (net-utils-mode): New mode for viewing diagnostic network output.
10186         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
10187         (net-utils-run-simple): New function.
10188         (ifconfig, iwconfig, netstat, arp, route): Use it.
10190 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
10192         * progmodes/gdb-mi.el (gdb-read-memory-custom)
10193         (gdb-memory-set-address, def-gdb-set-positive-number)
10194         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
10195         after changing settings.
10196         (gdb-invalidate-disassembly): Update when first shown.
10197         (gdb-edit-locals-value): Fixed.
10198         (gdb-registers-handler-custom): Print registers in right order and
10199         allow changing register values (only for current thread yet).
10200         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
10201         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
10202         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
10203         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
10204         info in mode name.
10205         (gdb-registers-mode-map): TAB to switch to locals.
10207 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
10209         * mail/rmail.el (rmail-add-mbox-headers)
10210         (rmail-set-message-counters-counter): Search for
10211         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
10213 2009-08-08  Glenn Morris  <rgm@gnu.org>
10215         * Makefile.in (ELCFILES): Update.
10217 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
10219         * mail/sendmail.el (mail-yank-original): Set
10220         buffer-file-coding-system from the one used by the message whose
10221         text is yanked.
10223         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
10224         to "windows" when "pgnuplot" is used.
10225         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
10226         call accept-process-output if "pgnuplot" is used.
10227         (calc-graph-init): Don't send -display and -geometry to
10228         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
10229         running "pgnuplot -V" with shell-command-to-string.
10231         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
10232         the default.
10234 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
10236         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
10237         org/org-latex.elc.
10239 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
10241         * vc-dispatcher.el (vc-resynch-window): Update comment.
10243         * term.el (term-handle-ansi-escape): Add comments with the
10244         terminfo capabilities implemented.
10246 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
10248         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
10249         (gdb-var-create-handler): Rewritten using JSON parser.
10250         (gdb-propertize-header): Moved earlier.
10251         (gdb-set-header): Removed to avoid duplication.
10252         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
10253         Refresh disassembly buffers only after threads list have been
10254         update.
10255         (gdb-threads-header, gdb-registers-header): Per-buffer header line
10256         variables.
10258 2009-08-04  Juri Linkov  <juri@jurta.org>
10260         * files.el: Commands to add/delete file/directory-local variables.
10261         (read-file-local-variable, read-file-local-variable-value)
10262         (read-file-local-variable-mode, modify-file-local-variable)
10263         (modify-file-local-variable-prop-line)
10264         (modify-dir-local-variable): New functions.
10265         (add-file-local-variable, delete-file-local-variable)
10266         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
10267         (add-dir-local-variable, delete-dir-local-variable)
10268         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
10269         (copy-dir-locals-to-file-locals-prop-line): New commands.
10271 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
10273         * abbrev.el (insert-abbrev-table-description): Prettify output.
10274         Suggested by Karl Chen.
10276 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
10278         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
10279         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
10280         (gdb-overlay-arrow-position, gdb-thread-position)
10281         (gdb-disassembly-position): Declare variables.
10282         (gdb-wait-for-pending): Function now.
10283         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
10284         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
10285         compilation goes smoothly.
10286         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
10287         (gdb-non-stop-setting): New customization setting which replaces
10288         `gdb-non-stop' so changing it doesn't break active GDB session.
10289         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
10290         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
10291         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
10292         (gdb-show-threads-by-default): New customization options.
10293         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
10294         routines.
10295         (gdb-get-buffer-create): Send buffers update signal when they are
10296         created.
10297         (gdb-invalidate-locals, gdb-invalidate-registers)
10298         (gdb-invalidate-breakpoints)
10299         (gdb-invalidate-threads, gdb-invalidate-disassembly)
10300         (gdb-invalidate-memory): Accept update signal.
10301         (gdb-current-context-command): Use --frame option.
10302         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
10303         Implement `gdb-frame-number' selection logic.
10304         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
10305         whether to show GUD toolbar buttons.
10306         (gdb-thread-exited): Unselect current thread when it exits.
10307         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
10308         (gdb-mark-line): Routine which sets overlay arrow or inverses
10309         video on fringeless displays.
10310         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
10311         to build aligned columns of data in GDB buffers and set text
10312         properties line-by-line.
10313         (gdb-invalidate-breakpoints)
10314         (gdb-breakpoints-list-handler-custom)
10315         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
10316         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
10317         (gdb-registers-handler-custom): Align data columns.
10318         (gdb-locals-handler-custom): Now prints data like in variable
10319         declarations.
10320         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
10321         Removed confusing buttons.
10322         (gdb-invalidate-threads): Append --frame.
10323         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
10324         between breakpoints/threads buffers.
10325         (gdb-set-window-buffer): Now can ignore dedicated windows.
10326         (gdb-propertize-header): Use `gdb-set-window-buffer'.
10327         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
10328         (def-gdb-thread-buffer-gud-command): Replaces
10329         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
10330         for fine thread control.
10331         (gdb-preempt-existing-or-display-buffer): New function used to
10332         display bound buffers without breaking window layout.
10333         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
10334         (gdb-select-frame): New version of `gdb-frames-select' which now
10335         sets `gdb-frame-number' so commands may use --frame option instead
10336         of inner debugger state.
10337         (gdb-frame-handler): Do not set `gdb-frame-number'.
10338         (gdb-threads-mode-map): Select threads with mouse.
10340         * progmodes/gud.el (gdb-gud-context-call): Declare function to
10341         avoid compilation warning.
10342         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
10343         `gdb-show-stop-p`.
10345         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
10346         Argument `key' renamed to `buffer-type'.
10347         (gdb-current-context-buffer-name): Do not add thread info to
10348         buffer name when no thread is selected.
10349         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
10350         command (bug 3794).
10351         (gdb-thread-selected): Handle `=thread-selected' notification.
10352         (gdb-wait-for-pending): New macro to deal with congestion problems.
10353         (gdb-breakpoints-list-handler-custom): Don't fail on pending
10354         breakpoints.
10355         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
10356         This fixes problem similar to one described in bug 3947.
10357         (gud-menu-map): More menu items.
10358         (gdb-init-1): Reset `gdb-thread-number' to nil.
10360         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
10361         non-stop settings.
10363         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
10364         (gdb-current-context-command): Do not append --thread if
10365         `gdb-thread-number' is nil.
10366         (gdb-running-threads-count, gdb-stopped-threads-count): New
10367         variables.
10368         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
10369         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
10370         customization options.
10371         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
10372         GUD commands.
10373         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
10374         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
10375         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
10376         set `gdb-thread-number' and update `gud-running' properly.
10377         (gdb-running): Update threads list when new threads appear.
10378         (gdb-stopped): Support non-stop operation and new thread switching
10379         logic.
10380         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
10381         (gdb-json-partial-output): New set of JSON routines.
10382         (def-gdb-auto-update-trigger): New `signal-list' optional
10383         argument.
10384         (gdb-thread-list-handler-custom): Update `gud-running',
10385         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
10386         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
10387         (gdb-continue-thread, gdb-step-thread): New commands for fine
10388         thread execution control.
10389         (gud-menu-map): New menu items to switch non-stop options.
10390         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
10391         (gdb-send): Mimic RET properly (bug 3794).
10393         * progmodes/gdb-mi.el (gdb-rules-name-maker)
10394         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
10395         gdb-buffer-rules.
10396         (def-gdb-auto-update-handler): New nopreserve optional argument.
10397         (gdb-stack-list-frames-custom): Print stack from top to bottom.
10399         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
10400         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
10401         (gdb-parent-mode): New mode to derive other GDB modes from.
10402         (gdb-display-disassembly-for-thread)
10403         (gdb-frame-disassembly-for-thread): New commands for threads
10404         buffer.
10406         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
10407         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
10408         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
10409         (gdb-update): We now store all GDB buffers in a list so that they
10410         can be updated by traversing a list instead of calling invalidate
10411         triggers explicitly.
10412         (def-gdb-trigger-and-handler): New macro to define trigger-handler
10413         pair for GDB buffer.
10414         (gdb-stack-buffer-name): Add thread information.
10415         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
10416         handle pending triggers.
10417         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
10418         (def-gdb-thread-buffer-simple-command)
10419         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
10420         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
10421         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
10422         New commands which show buffers bound to thread.
10423         (gdb-stack-list-locals-regexp): Removed unused regexp.
10425         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
10426         (gdb-locals-buffer-name, gdb-registers-buffer-name)
10427         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
10428         to (gud-comint-buffer) in *-buffer-name functions
10429         because (gdb-get-target-string) already does that.
10430         (gdb-locals-handler-custom, gdb-registers-handler-custom)
10431         (gdb-changed-registers-handler): Rewritten without regexps.
10433         * progmodes/gdb-mi.el: Basic thread selection support.
10434         (gdb-thread-number): New variable.
10435         (gdb-current-context-command): New macro which adds --thread
10436         option to command.
10437         (gdb-threads-mode-map): Select thread with SPC.
10438         (gdb-thread-list-handler-custom): Mark current thread with overlay
10439         arrow.  Synchronize GDB thread and Emacs thread.
10440         (gdb-select-thread): New command which selects current thread.
10441         (gdb-invalidate-frames, gdb-invalidate-locals)
10442         (gdb-invalidate-registers): Use --thread option.
10444 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
10446         * net/tramp.el (top): Make check for tramp-gvfs loading more
10447         robust.  (Bug#3977)
10448         (tramp-handle-insert-file-contents): `unwind-protect' must be
10449         inside `with-parsed-tramp-file-name'.
10451         * net/tramp-gvfs.el (top): Remove superfluous message when loading
10452         fails.
10454 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
10456         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
10457         directory if CLASSPATH is not set.
10459 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
10461         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
10462         New defconst.
10463         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
10465 2009-08-02  Kevin Ryde  <user42@zip.com.au>
10467         * net/newst-backend.el (newsticker--raw-url-list-defaults):
10468         Update freshmeat link.  Delete newsforge.com as it seems gone.
10470 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
10472         * select.el (x-set-selection): Doc fix (Bug#4021).
10474         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
10476         * help-fns.el (describe-variable): Treat list return values from
10477         dir-locals-find-file properly (Bug#4005).
10479 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
10481         * net/tramp.el (tramp-debug-message): Print also microseconds.
10483 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
10485         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
10486         or END is non-nil.
10487         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
10488         (tramp-get-debug-buffer): Change `outline-regexp' according to new
10489         format.
10491         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
10492         (tramp-get-file-property): Use it.
10494         * autorevert.el (auto-revert-handler): Allow
10495         `auto-revert-tail-mode' for remote files.
10497 2009-08-02  Jason Rumney  <jasonr@gnu.org>
10499         * minibuffer.el (read-file-name): Treat confirm options to
10500         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
10502 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
10504         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
10505         (font-lock-variable-name-face, font-lock-constant-face): Darken
10506         the colors for light backgrounds.
10508 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
10510         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
10511         month names.  (Bug#3987)
10513 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
10515         * simple.el (line-move-finish): Pass whole number to
10516         line-move-to-column.
10517         (line-move-visual): Perform hscroll to the recorded position.
10519 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
10521         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
10523 2009-07-29  Alan Mackenzie  <acm@muc.de>
10525         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
10527 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
10529         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
10530         (gdb-place-breakpoints): Use full path when setting breakpoints.
10532 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
10534         * calc/calc.el (calc-mode-map): Add keybinding for
10535         `calc-transpose-lines'.
10537 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
10539         * calc/calc-misc.el (calc-transpose-lines): New function.
10541 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
10543         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
10544         Simplify check for out-of-band methods.
10545         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
10546         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
10548 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
10550         * vc-git.el (vc-git-checkin): Fix typo.
10552 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
10554         * progmodes/js2-mode.el: New file.
10556 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
10558         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
10559         (gud-menu-map): Adjust tooltip accordingly.
10561 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
10563         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
10564         (vc-bzr-log-view-mode): Adjust log-view-file-re.
10566         * add-log.el (change-log-mode-map): Add a menu.
10568 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
10570         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
10571         function returns nil.
10572         (dbus-handle-event): Handle special return value :ignore.
10573         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
10575 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
10577         * view.el (view-mode-enable): Don't define Helper-return-blurb if
10578         it's not needed.
10580 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
10582         Fix Bug#3888:
10584         * w32-vars.el (x-select-enable-clipboard): Doc fix.
10586         * term/pc-win.el (x-display-name, x-colors)
10587         (x-select-enable-clipboard, x-select-text): Doc fix.
10589         * term/common-win.el (x-display-name, x-colors): Doc fix.
10591         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
10592         (xw-defined-colors): Doc fix.
10594         * w32-fns.el (x-select-text, x-setup-function-keys)
10595         (x-get-selection, x-set-selection): Doc fix.
10597         * term/x-win.el (x-select-text, x-setup-function-keys)
10598         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
10600         * select.el (x-set-selection): Doc fix.
10602 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
10604         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
10605         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
10606         "IsNSSSupportAvailable" method is not available.  Reported by
10607         Steve Youngs <steve@sxemacs.org>.
10609 2009-07-24  Kenichi Handa  <handa@m17n.org>
10611         * international/characters.el: Fix setting of category ?C, ?|, ?K,
10612         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
10613         (build-unicode-category-table): Fix range checks.
10615 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
10617         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
10618         the buffer we try to sync is current when calling
10619         vc-resynch-buffer.
10621         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
10622         not show up to date files.
10624 2009-07-24  Glenn Morris  <rgm@gnu.org>
10626         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
10627         Add autoload cookies.  If necessary, initialize.
10628         (elint-log): Handle non-file buffers.
10629         (elint-initialize): Add optional argument to reinitialize.
10630         (elint-find-builtin-variables): Save excursion.
10632 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
10634         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
10635         for Lint.
10637 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
10639         * vc.el (vc-print-log-internal): New function, split out from ...
10640         (vc-print-log): ... here.
10641         (vc-dir-move-to-goal-column): Declare.
10643         * vc-git.el (vc-git-add-signoff): New variable.
10644         (vc-git-checkin): Use it.
10645         (vc-git-toggle-signoff): New function.
10646         (vc-git-extra-menu-map): Bind it to menu.
10647         (vc-git--run-command-string): Accept a nil FILE argument.
10648         (vc-git-stash-list): New function.
10649         (vc-git-dir-extra-headers): Use it.
10651 2009-07-23  Glenn Morris  <rgm@gnu.org>
10653         * help-fns.el (describe-variable): Describe ignored and risky local
10654         variables in a similar way to that in which we describe safe ones.
10656         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
10657         (byte-compile-output-file-form, byte-compile-output-docform)
10658         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
10659         Give some more local variables with common names a "bytecomp-" prefix,
10660         so as not to shadow things during compilation.
10661         * emacs-lisp/cl-macs.el (load-time-value)
10662         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
10663         `outbuffer' to `bytecomp-outbuffer'.
10665         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
10666         since the next two variables cover them automatically now.
10667         (elint-builtin-variables, elint-autoloaded-variables): New.
10668         (elint-unknown-builtin-args): Remove all members, since they can be
10669         parsed automatically now.
10670         (elint-extra-errors): New.
10671         (elint-env-add-env, elint-env-add-macro): Use cadr.
10672         (elint-current-buffer): Use or.  Change final message.
10673         (elint-get-top-forms): Use line-end-position.
10674         (elint-init-env): Use cadr.  Handle autoload, declare-function,
10675         and defalias.
10676         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
10677         (regexp-assoc): Remove unused function.
10678         (elint-top-form): Set elint-current-pos, to record the start of the
10679         top-level form, for compilation-mode.
10680         (elint-form): Trap errors in macro expansion.  Use dolist.
10681         (elint-unbound-variable): Use elint-builtin-variables and
10682         elint-autoloaded-variables.
10683         (elint-get-args): Use cadr, or.
10684         (elint-check-cond-form): Use dolist, cadr.
10685         (elint-check-condition-case-form): Doc fix.  Use cadr.
10686         Use elint-extra-errors.
10687         (elint-log): New function.
10688         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
10689         Distinguish errors and warnings.
10690         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
10691         Use a bytecomp-style format.
10692         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
10693         (elint-get-log-buffer): Use compilation mode.  Disable undo.
10694         Don't truncate lines.
10695         (elint-initialize): Set builtin and autoloaded variable lists.
10696         Only process elint-unknown-builtin-args if non-nil.
10697         (elint-find-builtin-variables, elint-find-autoloaded-variables):
10698         New functions.
10699         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
10701 2009-07-22  Kevin Ryde  <user42@zip.com.au>
10703         * net/newst-backend.el (newsticker--parse-atom-1.0)
10704         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
10705         (newsticker--parse-rss-1.0):
10706         * progmodes/idlwave.el (idlwave-mode):
10707         * progmodes/idlw-shell.el (idlwave-shell-mode):
10708         * progmodes/vera-mode.el (vera-mode):
10709         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
10710         * progmodes/vhdl-mode.el (vhdl-mode):
10711         * textmodes/table.el (table-generate-source)
10712         (table--warn-incompatibility):
10713         Hyperlink urls in docstrings with URL `...'.
10715 2009-07-22  Glenn Morris  <rgm@gnu.org>
10717         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
10718         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
10719         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
10720         Remove leading * from defcustom docs.
10722         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
10724         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
10725         defcustom doc.
10726         (list-load-path-shadows): Optionally, just return shadows as a string.
10728         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
10730 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
10732         * mail/rmailedit.el (rmail-edit-mode): Use
10733         auto-save-include-big-deletions.
10735         * mail/rmail.el (rmail-variables): Use
10736         auto-save-include-big-deletions.
10738         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
10739         changes.
10741 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
10743         * calc/calc.el (calc-undo-length): New variable.
10744         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
10746 2009-07-21  Richard Stallman  <rms@gnu.org>
10748         * files.el (auto-save-mode): Handle buffer-save-size = -2
10749         for toggling mode.
10751 2009-07-21  Glenn Morris  <rgm@gnu.org>
10753         * textmodes/ispell.el (ispell-looking-back): Update declaration.
10755         * calendar/todo-mode.el (calendar-current-date): Update declaration.
10757         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
10758         silence compiler.  Instead...
10759         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
10760         (ps-print-ensure-fontified): Update for above function name changes.
10762         * printing.el (pr-mh-get-msg-num, pr-mh-show)
10763         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
10764         silence compiler.  Instead...
10765         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
10766         (mh-show-buffer): Only define for compiler.
10767         (pr-mh-current-message): Update for above function name changes.
10769         * files.el (abort-if-file-too-large): Explicitly pass `filename'
10770         as an argument.
10771         (find-file-noselect, insert-file-1): Update for above change.
10773         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
10775         * mail/mailclient.el (mailclient-send-it): Fix message.
10777         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
10778         (edebug-eval): Check cl-debug-env is bound.
10779         (print-level, print-circle): Don't redefine built-in variables.
10781         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
10782         (custom-print-vectors): Remove old comments from doc.
10784         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
10785         (emerge-version): Make the variable an obsolete alias for the
10786         emacs-version variable.  Make the function obsolete.
10787         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
10788         Emerge options, rather than merging in into the main Options menu.
10789         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
10790         and auto advance modes.  Disable edit/fast items when not relevant.
10792 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
10794         * term/vt420.el (terminal-init-vt420): Fix typo.
10796 2009-07-20  Sam Steingold  <sds@gnu.org>
10798         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
10799         variable (removed from compile.el on 2004-03-11).
10801 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
10803         * files.el (hack-local-variables-filter): Fix last change.
10805 2009-07-19  Juri Linkov  <juri@jurta.org>
10807         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
10808         (dir-local-variables-alist): New buffer-local variable.
10809         (hack-local-variables-filter): If variable is not dir-local,
10810         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
10811         because file-local overrides dir-local.
10812         (c-postprocess-file-styles) <declare-function>:
10813         Remove obsolete declaration.
10814         (hack-dir-local-variables): Add dir-local variable/value pair to
10815         `dir-local-variables-alist' and remove duplicates.  Doc fix.
10817         * help-fns.el (describe-variable): Add information about
10818         file-local and dir-local variables.
10820 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
10822         * files.el (hack-local-variables-filter): Rewrite.
10824 2009-07-19  Glenn Morris  <rgm@gnu.org>
10826         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
10827         Silence compiler by only defining on XEmacs.
10829         * international/mule.el (auto-coding-regexp-alist): Only match
10830         BABYL... at the start of buffer, not of lines.  (Bug#3790)
10832         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
10833         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
10834         (cal-menu-context-mouse-menu): Doc fix.
10836         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
10838         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
10840 2009-07-18  Juri Linkov  <juri@jurta.org>
10842         * info.el: Virtual Info keyword finder.
10843         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
10844         (Info-finder-file): New variable.
10845         (Info-finder-find-file): New function.
10846         (finder-known-keywords, finder-package-info)
10847         (find-library-name, lm-commentary): Use defvar and
10848         declare-function to silence compiler warnings.
10849         (Info-finder-find-node): New function.
10850         (info-finder): New command.
10852         * subr.el (process-kill-buffer-query-function): New function.
10853         (add-hook)<kill-buffer-query-functions>: Add hook
10854         `process-kill-buffer-query-function'.
10856 2009-07-18  Alan Mackenzie  <acm@muc.de>
10858         * progmodes/cc-mode.el (c-before-hack-hook)
10859         (c-postprocess-file-styles): Give invocation of `c-set-style'
10860         DONT-OVERRIDE parameter of t.  Already set style variables will
10861         thus not be overridden by style settings given by `c-file-syle'.
10863         * files.el (hack-local-variables-filter): Remove entries with
10864         duplicate keys from `file-local-variables-alist'.
10866 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
10868         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
10869         x-set-selection if display-selections-p returns nil for the
10870         current frame.
10872 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
10874         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
10876 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
10878         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
10879         Accept nil in addition to a regexp.
10880         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
10881         Accept nil in addition to a regexp.
10882         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
10883         buffers that have an associated file.  Handle nil values of
10884         desktop-buffers-not-to-save and desktop-files-not-to-save.
10885         (Bug#3833)
10887         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10888         (x-disown-selection-internal): New functions.
10890 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
10892         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
10893         warning.
10894         (gdb-breakpoints-header): Move forward to avoid compiler warning.
10895         (gdb-make-header-line-mouse-map): Remove duplicate definition.
10897 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
10899         * simple.el (set-mark): Revert last change.
10901 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
10903         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
10904         rendering of pngs is not possible instead of messaging a long
10905         description.
10907 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
10909         * w32-fns.el (x-selection-owner-p): New function.
10911         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
10912         (mouse-yank-at-click, mouse-yank-primary): If
10913         select-active-regions is non-nil, deactivate the mark before
10914         insertion.
10916         * simple.el (deactivate-mark, set-mark): Only save selection if we
10917         own it.
10919 2009-07-17  Kenichi Handa  <handa@m17n.org>
10921         * case-table.el (describe-buffer-case-table): Fix for the case
10922         that KEY is a cons.
10924 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
10926         * vc-rcs.el (vc-rcs-find-file-hook):
10927         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
10929 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
10931         * net/tramp.el (tramp-wait-for-output): Handle the case when
10932         commands do not return a newline but a null byte before the shell
10933         prompt.  (Bug#3858)
10935 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10937         * term/ns-win.el (ns-set-alpha): Don't declare.
10938         (ns-set-background-alpha): Remove function.
10940 2009-07-16  Kevin Ryde  <user42@zip.com.au>
10942         * emacs-lisp/copyright.el (copyright-update): Save match-data across
10943         y-or-n-p, for safety.
10945 2009-07-16  Richard Stallman  <rms@gnu.org>
10947         * files.el (auto-save-mode): If buffer-saved-size is -2,
10948         don't clobber it.
10950         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
10951         (rmail-retry-ignored-headers): Add more uninteresting fields.
10953 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
10955         * net/rcirc.el (rcirc): Use history variables.
10956         (rcirc-server-name-history, rcirc-nick-name-history)
10957         (rcirc-server-port-history): New variables.
10959 2009-07-15  Kenichi Handa  <handa@m17n.org>
10961         * international/mule-cmds.el (set-language-environment-charset):
10962         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
10963         ignore them.
10965         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
10966         Delete unibyte-display.
10968 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
10970         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
10972 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
10974         * simple.el (deactivate-mark): Optional argument FORCE.
10975         (set-mark): Use deactivate-mark.
10977         * info.el (Info-search): No need to check transient-mark-mode
10978         before calling deactivate-mark.
10980         * select.el (x-set-selection): Doc fix.
10981         (x-valid-simple-selection-p): Allow buffer values.
10982         (xselect--selection-bounds): Handle buffer values.  Suggested by
10983         David De La Harpe Golden.
10985         * mouse.el (mouse-set-region, mouse-drag-track): Call
10986         copy-region-as-kill before setting the mark, to let
10987         select-active-regions work.
10989 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
10991         * simple.el (deactivate-mark): If select-active-regions is
10992         non-nil, copy the selection data into a string.
10993         (activate-mark): If select-active-regions is non-nil, set the
10994         selection to the current buffer.
10995         (set-mark): Update selection if select-active-regions is non-nil.
10997         * select.el (x-valid-simple-selection-p): Allow buffer values.
10999 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11001         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
11002         and more featureful message-mode.
11004 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
11006         * select.el (x-set-selection): Doc fix.
11007         (x-valid-simple-selection-p): Disallow selection data consisting
11008         of a list or cons of integers, since that is not used.
11009         (xselect--selection-bounds, xselect--int-to-cons): New functions.
11010         (xselect-convert-to-string, xselect-convert-to-length)
11011         (xselect-convert-to-filename, xselect-convert-to-charpos)
11012         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
11014 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
11016         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
11017         output in -break-info command (Emacs bug #3794).
11019 2009-07-14  Glenn Morris  <rgm@gnu.org>
11021         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
11022         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
11023         (edebug-print-length, edebug-print-level, edebug-print-circle)
11024         (edebug-sit-for-seconds, edebug-view-outside)
11025         (edebug-bounce-point, edebug-set-global-break-condition)
11026         (edebug-Go-nonstop-mode, edebug-trace-mode)
11027         (edebug-Trace-fast-mode, edebug-continue-mode)
11028         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
11029         (edebug-visit-eval-list): Doc fixes.
11031         * subr.el (def-edebug-spec): Doc fix.
11033 2009-07-14  Kenichi Handa  <handa@m17n.org>
11035         * international/characters.el: Fix setting of category ?C.
11037 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
11039         * term/ns-win.el (x-select-font): defalias x-select-font to
11040         ns-popup-font-panel instead of generate-fontset-menu.
11042 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
11044         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
11046 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
11048         * arc-mode.el (archive-find-type): Allow for a PK00 string before
11049         the PK\003\004 header (Bug#3770).
11051 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
11053         * pcomplete.el (pcomplete-comint-setup): Check for
11054         shell-dynamic-complete-filename too.
11056 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
11058         * simple.el (temporary-goal-column): Change the value for
11059         line-move-visual to a cons cell.
11060         (line-move-visual): Record or set the window hscroll, if
11061         necessary (Bug#3494).
11062         (line-move-1): Handle cons value of temporary-goal-column.
11064 2009-07-11  Kenichi Handa  <handa@m17n.org>
11066         * international/mule-diag.el (describe-character-set): Don't show
11067         width.
11069 2009-07-10  Sam Steingold  <sds@gnu.org>
11071         * progmodes/compile.el (compilation-mode-font-lock-keywords):
11072         Omake sometimes indents the errors it prints, so allow all
11073         regexps to start with spaces.
11075 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
11077         * cus-edit.el (customize-changed-options-previous-release):
11078         Bump value to 22.1.  (Bug#3804)
11080 2009-07-08  Sam Steingold  <sds@gnu.org>
11082         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
11083         to be a cons cell (test . ignored-directory) to selectively ignore
11084         some directories depending on the location of the search.
11086 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
11088         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
11089         remote user is root, on the local host.
11090         (tramp-local-host-p): Either the local user or the remote user
11091         must be root.  (Bug#3771)
11093 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
11095         * progmodes/gdb-mi.el (gdb): Remove description of
11096         gdb-use-separate-io-buffer.
11097         (menu): Don't allow toggling of or enable
11098         gdb-use-separate-io-buffer from menubar.
11100 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
11102         * mail/unrmail.el (unrmail): Make sure the message ends with two
11103         newlines (Bug#3769).
11105 2009-07-08  Glenn Morris  <rgm@gnu.org>
11107         * calendar/calendar.el (calendar-current-date): Rework previous change.
11109 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
11111         * calendar/calendar.el (calendar-current-date):
11112         Add an optional argument giving an offset from today.
11114 2009-07-08  Glenn Morris  <rgm@gnu.org>
11116         * tutorial.el (tutorial--describe-nonstandard-key):
11117         Adjust the message for when a key has been unbound.
11118         (help-with-tutorial): Hide the arch-tag.
11120 2009-07-08  Kenichi Handa  <handa@m17n.org>
11122         * international/fontset.el (setup-default-fontset): For each
11123         script, append (not set) font-specs.
11125         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
11126         docstring.
11128 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
11130         * progmodes/gdb-mi.el (gdb-init-1): Move sending
11131         -data-list-register-names to ...
11132         (gdb-starting): ... here because GDB 7.0 requires execution to
11133         have started when using this MI command.
11134         (gdb-set-header): New function to distinguish select and
11135         unselected tabs in gdb buffers.
11136         (gdb-propertize-header): New macro that uses gdb-set-header.
11137         (gdb-breakpoints-header, gdb-locals-header): Use it.
11138         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
11140 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
11142         * Makefile.in (ELCFILES): Remove fadr.elc.
11144 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
11146         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
11147         may contain frame information, so `string-match' should be used.
11148         (gdb-update): Disassembly is invalidated through
11149         `gdb-get-selected-frame'.
11150         (gdb-pad-string): New function to pad string with spaces.
11151         (gdb-invalidate-disassembly): Invalidate only if the buffer
11152         exists.
11153         (gdb-disassembly-handler-custom): Column alignment.
11154         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
11155         placing new ones.
11156         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
11157         end of line, too.
11158         (gdb-frame-handler): Match convention to for disassembly buffer
11159         mode name.
11160         (gdb-stack-list-frames-handler): Rewritten without regexps.
11161         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
11162         not highlight breakpoints without line information.
11163         (gdb-input): Add trailing newline to command.
11165         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
11166         buffer properly.
11167         (gdb-breakpoints-list-handler-custom): Replacement for
11168         `gdb-break-list-handler'.  Using real parser instead of regexps
11169         now.
11170         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
11171         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
11172         to place breakpoints.
11173         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
11174         functions.
11175         (gdb-disassembly-handler-custom): Show overlay arrow.
11176         (gdb-disassembly-place-breakpoints): Show breakpoints in
11177         disassembly buffer.
11178         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
11179         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
11180         instead of parsing breakpoints buffer.  Fixed old menu references
11181         in `gud-menu-map'.
11183         * fadr.el: Remove.
11185         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
11186         (gdb-memory-address): New variable which holds top address of
11187         memory page shown in memory buffer.
11188         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
11189         customization variables.
11190         New functions:
11191         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
11192         display the memory buffer.
11193         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
11194         buffer display parameters.
11195         (def-gdb-memory-format, gdb-memory-format-binary)
11196         (gdb-memory-format-octal, gdb-memory-format-unsigned)
11197         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
11198         Functions for setting memory buffer format.
11199         (gdb-memory-unit-word, gdb-memory-unit-halfword)
11200         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
11201         unit size used in memory buffer.
11202         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
11203         to next/previous page of memory buffer.
11204         Now using (bindat-get-field) instead of fadr functions.
11206 2009-07-07  Sam Steingold  <sds@gnu.org>
11208         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
11209         non-top-level files.
11211 2009-07-07  Kenichi Handa  <handa@m17n.org>
11213         * international/mule-cmds.el (reset-language-environment): Put
11214         the highset priority to the charset iso-8859-1.
11216 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
11218         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
11219         to the end of the line when locating the block (Bug#700).
11221 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
11223         * net/tramp.el (tramp-handle-write-region): Flush file properties
11224         in case of short track.
11226 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
11228         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
11229         Coded custom representation of verilog error regular expressions
11230         to work with Emacs-22's new format.
11231         (verilog-error-regexp-xemacs-alist): Coded custom representation
11232         of verilog error regular expressions to work with XEmacs format.
11233         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
11234         error recognition into XEmacs.
11235         (verilog-error-regexp-add-emacs): Hook routine to install verilog
11236         error recognition into Emacs-22.
11238 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
11240         * woman.el: Remove stand-alone closing parentheses.
11241         (woman-file-name, woman2-format-paragraphs)
11242         (woman-leave-blank-lines): Code cleanup.
11243         (woman-use-own-frame): Change default to nil.
11244         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
11245         defaults to inherit from default faces.
11246         (woman2-process-escapes): Consume the newline after a stand-alone
11247         filler character (Bug#3651).
11249 2009-07-06  Glenn Morris  <rgm@gnu.org>
11251         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
11252         (top-level): Move provide to the end.
11253         (ffap): Remove defunct URL from custom group.
11255         * subr.el (eval-after-load): Doc fix.
11257 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
11259         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
11260         `calc-embedded-word' is called twice.
11262 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11264         * files.el (find-alternate-file-other-window, find-alternate-file):
11265         Obey confirm-nonexistent-file-or-buffer.
11267 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
11269         * dired-aux.el (dired-show-file-type): Handle remote files.
11271 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
11273         * desktop.el (desktop-globals-to-save):
11274         Add file-name-history (Bug#2750).
11276 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
11278         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
11280 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
11282         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
11283         property on entire argument since this is what eshell-lisp-command
11284         expects.
11286 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
11288         * net/tramp-gvfs.el (tramp-gvfs-methods)
11289         (tramp-gvfs-zeroconf-domain)
11290         (tramp-bluez-discover-devices-timeout): Add version flag.
11291         (tramp-gvfs-handler-mounted-unmounted)
11292         (tramp-gvfs-connection-mounted-p): Polish handling of
11293         incompatibilities between GVFS 0.2 and 1.0.
11295 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
11297         * cus-start.el (all): Add make-pointer-invisible.
11299 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
11301         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
11302         formatted correctly.
11304 2009-07-02  Juri Linkov  <juri@jurta.org>
11306         * info.el: Virtual Info files and nodes.
11307         (Info-virtual-files, Info-virtual-nodes): New variables.
11308         (Info-current-node-virtual): New variable.
11309         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
11310         New functions.
11311         (Info-file-supports-index-cookies): Use Info-virtual-file-p
11312         to check for a virtual file instead of checking a fixed list
11313         of node names.
11314         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
11315         instead of ad-hoc processing of "dir" and (apropos history toc).
11316         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
11317         instead of ad-hoc processing of "dir" and (apropos history toc).
11318         Reread a file when moving from a virtual node.
11319         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
11320         (Info-directory-toc-nodes, Info-directory-find-file)
11321         (Info-directory-find-node): New functions.
11322         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
11323         (Info-history): Move part of code to
11324         `Info-history-find-node'.
11325         (Info-history-toc-nodes, Info-history-find-file)
11326         (Info-history-find-node): New functions.
11327         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
11328         (Info-toc): Move part of code to `Info-toc-find-node'.
11329         (Info-toc-find-node): New function.
11330         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
11331         the current Info file name to references because now the node
11332         "*TOC*" belongs to the same Info manual.
11333         (Info-toc-build): Rename from `Info-build-toc'.
11334         (Info-toc-nodes): Rename input argument `file' to `filename'.
11335         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
11336         instead of ad-hoc processing of ("dir" apropos history toc).
11337         (Info-index-nodes): Use Info-virtual-file-p
11338         to check for a virtual file instead of checking a fixed list
11339         of node names.
11340         (Info-index-node): Add check for `Info-current-node-virtual'.
11341         Raise `save-match-data' higher up the tree to contain
11342         `search-forward' too (bug fix).
11343         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
11344         (Info-virtual-index-nodes): New variable.
11345         (Info-virtual-index-find-node, Info-virtual-index): New functions.
11346         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
11347         (Info-apropos-file, Info-apropos-nodes): New variables.
11348         (Info-apropos-toc-nodes, Info-apropos-find-file)
11349         (Info-apropos-find-node, Info-apropos-matches): New functions.
11350         (info-apropos): Move part of code to `Info-apropos-find-node' and
11351         `Info-apropos-matches'.
11352         (Info-mode-map): Bind "I" to `Info-virtual-index'.
11353         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
11354         for a virtual file instead of checking a fixed list of node names.
11356         * simple.el (async-shell-command): New command.
11358         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
11360         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
11361         instead of `mount-info'.
11363 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
11365         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
11366         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
11368 2009-07-02  Kenichi Handa  <handa@m17n.org>
11370         * international/mule.el (set-keyboard-coding-system): Force *-unix
11371         coding-system to avoid eol conversion.
11373 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
11375         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11376         Add handler for `process-file', `shell-command' and
11377         `start-file-process'.
11378         (tramp-gvfs-handle-shell-command)
11379         (tramp-gvfs-handle-start-file-process)
11380         (tramp-gvfs-handle-process-file): New defuns.
11381         (tramp-synce-list-devices): Simplify check for existence of property.
11383 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
11385         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
11387 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
11389         * language/korean.el (set-language-info-alist): Add korean-cp949,
11390         cp949 to spec.
11392 2009-07-01  Kenichi Handa  <handa@m17n.org>
11394         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
11396         * international/encoded-kb.el: Deleted.
11398         * international/mule.el (set-keyboard-coding-system): Perform the
11399         necessary setup here instead of calling encoded-kbd-setup-display.
11401 2009-07-01  Glenn Morris  <rgm@gnu.org>
11403         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
11405 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
11407         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
11409 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
11411         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
11412         Handle also the 'rename case, when setting file modes.  (Bug#3712)
11413         (tramp-default-file-modes): Remove execute permissions.
11415         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
11416         (top): Add a default for "synce" in `tramp-default-user-alist'.
11417         Add completion function for "synce" method.
11418         (tramp-hal-service, tramp-hal-path-manager)
11419         (tramp-hal-interface-manager, tramp-hal-interface-device):
11420         New defconst.
11421         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
11422         (tramp-synce-list-devices, tramp-synce-parse-device-names):
11423         New defuns.
11425         * net/trampver.el: Update release number.
11427 2009-06-30  Kenichi Handa  <handa@m17n.org>
11429         * international/fontset.el (setup-default-fontset): Add CJK fonts
11430         for symbols and the other miscellaneous characters.
11432         * language/korea-util.el (setup-korean-environment-internal):
11433         Make char-width-table suitable for Korean environments.
11434         (exit-korean-environment): Cancel above.
11436         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
11437         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
11438         setup-function to make char-width-table suitable for respective
11439         environments, and an exit-function to cancel that.
11441         * language/japan-util.el (setup-japanese-environment-internal):
11442         Call use-cjk-char-width-table with arg `ja_JP'.
11444         * international/characters.el (cjk-char-width-table): Delete it.
11445         (cjk-char-width-table-list): New variable.
11446         (use-cjk-char-width-table): New arg local-name.
11447         (use-default-char-width-table): Fix for the case that Emacs is
11448         already using the default char-width-table.
11450 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
11452         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
11453         modes mandatory.  (Bug#3712)
11455 2009-06-29  Alan Mackenzie  <acm@muc.de>
11457         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
11458         correction between the visible width of TABs and their number of bytes.
11460 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
11462         * server.el (server-buffer-done): Prevent kill-buffer from
11463         prompting by clearing the buffer modification flag (Bug#3696).
11465 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
11467         * progmodes/verilog-mode.el (verilog-beg-of-statement)
11468         (verilog-endcomment-reason-re): Support unique case and priority case.
11469         (verilog-basic-complete-re): Support localparam lineup.
11470         (verilog-beg-of-statement-1): Fix for robustness, unique case.
11471         (verilog-set-auto-endcomments): Fix for unique case, always_comb
11472         commenting.
11473         (verilog-leap-to-case-head): Now support *nested* unique &
11474         priority case statements.
11475         (verilog-auto-lineup): Make just declarations the default (as it
11476         had been).
11477         (verilog-leap-to-case-head): Support priority/unique case statements.
11478         (verilog-auto-lineup): Rework to give users radio buttons to
11479         select the various styles of automatic lineup.
11480         (verilog-error-regexp-alist): Rework to support the XEmacs style
11481         of error regular expressions from compilers, lint tools &
11482         simulators.  Note that GNU Emacs has made it impossible for a mode
11483         to load such things.
11484         (electric-verilog-terminate-line, verilog-indent-declaration)
11485         (verilog-auto-wiure): Rework for radio button selection of
11486         auto-lineup selection of specification of auto lineup.
11487         (verilog-beg-of-statement-1): Redesign to support proper operation
11488         in additional code, based on testing with auto-lineup.
11489         (verilog-calculate-indent, assignments & declarations)
11490         (verilog-backward-token): Enhance to support auto-lineup of
11491         assignments & declarations.
11492         (verilog-in-directive-p, verilog-at-struct-p): New function for
11493         easy test of whether we are.
11494         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
11495         to support safe execution at almost anyline.
11496         (verilog-calc-1): Properly support indenting deep inside generate
11497         blocks.
11498         (verilog-init-font): Remove definition & use of verilog-init-font,
11499         as it is redundant with font-lock-defaults.
11500         (verilog-mode): Alter the definition of verilog-font-lock-defaults
11501         to avoid circular calls if syntax-ppss is a function (as is the
11502         case now in 22.x GNU Emacs) as that function would sometimes call
11503         itself, leading to (nearly) infinite recursion.
11504         (verilog-ovm-begin-re, verilog-ovm-end-re)
11505         (verilog-ovm-statement-re, verilog-leap-to-head)
11506         (verilog-backward-token): Add support for OVM macros.  Some are
11507         complete statements, and others open and close scopes like begin
11508         and end.
11509         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
11510         (verilog-defun-level-generate-only-re): Really fix the defun-list
11511         compilation issue.
11512         (verilog-calc-1, verilog-beg-of-statement): Enhance support for
11513         coverpoint, constraint and cross statements.
11514         (verilog-defun-level-list, verilog-generate-defun-level-list)
11515         (verilog-all-defun-level-list): Redo these specifications - it is
11516         too hard to support eval-when compile aggregation of lists also
11517         built at when-compile time.
11518         (verilog-defun-level-list): Place defconsts of variables used in
11519         building regular expressions which are built in eval-when-compile
11520         bodies in the same eval-when-compile body to facilitate compile
11521         without load.
11522         (verilog-beg-block-re-ordered): Support indenting
11523         virtual/protected tasks and functions.
11524         (verilog-defun-level-list, verilog-in-generate-region-p)
11525         (verilog-backward-ws&directives, verilog-calc-1): Speed up
11526         indentation of some module items (generate items).
11527         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
11528         across virtual/protected tasks and functions.
11530 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
11532         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
11533         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
11534         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
11535         in concatenations.  Reported by Yishay Belkind.
11536         (verilog-auto-ascii-enum): Support one-hot state machines in
11537         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
11538         (verilog-auto-inst, verilog-auto-inst-port): Include interface
11539         modport in AUTOINST and add vl-modport for users.  Reported by
11540         David Rogoff.
11541         (verilog-auto-inout-module, verilog-auto-inst)
11542         (verilog-decls-get-interfaces, verilog-insert-definition)
11543         (verilog-insert-one-definition, verilog-read-decls)
11544         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
11545         (verilog-sig-modport, verilog-signals-combine-bus)
11546         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
11547         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
11548         Suggested by David Rogoff.
11549         (verilog-repair-open-comma): Fix non-insertion of comma when
11550         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
11551         (verilog-make-width-expression): Simplify [A-1:0] expression
11552         widths to just {A{1'b0}}.
11553         (verilog-mode): Cleanup checkdoc warnings.
11554         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
11555         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
11556         inputs/outputs or data type.  Suggested by Vasu Kandadi.
11557         (next-error-last-buffer): Fix byte-compiler warning.
11558         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
11559         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
11560         or shell command text during AUTO expansion.  Suggested by Tad Truex.
11561         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
11562         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
11563         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
11564         in AUTOINOUT.  Reported by Matthew Lovell.
11565         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
11566         causing use of <= assignments.  Reported by Alex Reed.
11567         (verilog-read-decls): Fix triand, trior, wand, wor to be
11568         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
11569         (verilog-extended-complete-re): Support import "DPI-C" functions.
11570         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
11571         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
11572         (verilog-insert-date, verilog-insert-year)
11573         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
11574         Windows systems.  Reported by Michael Potts.
11575         (verilog-read-module-name): Fix AUTOINST when the child module
11576         declaration's name is a tick define.  Reported by Elliot Mednick.
11577         (verilog-read-decls): Fix V2K parameter bit subscripts getting
11578         passed to next parameter's definition.  Reported by Bruce T.
11579         (verilog-read-decls): Fix detecting "parameter int" when using
11580         AUTOINSTPARAM.  Reported by Bruce T.
11581         (verilog-goto-defun): Fix goto not finding modules unless first
11582         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
11583         (verilog-mode): Expand -f flag arguments on entry to mode so
11584         verilog-goto-defun will work.  Reported by Lawrence Butcher.
11585         (verilog-getopt): Expand environment variables in -f file
11586         arguments.  Suggested by Lawrence Butcher.
11587         (verilog-set-define): Fix "Symbol's value as variable is void"
11588         when reading enumerations.
11589         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
11590         Suggested by Stephen Peltan.
11591         (verilog-read-defines): Fix reading of enumerations in include
11592         files.  Reported by Steve Peltan.
11594 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
11596         * files.el (trash-directory): Fix defcustom type.
11598 2009-06-28  Juri Linkov  <juri@jurta.org>
11600         * help-fns.el (describe-function-1): Correctly locate adviced
11601         functions in hyperlink (Bug#2438).
11603 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
11605         * files.el (trash-directory): Change default to nil.
11606         (move-file-to-trash): If trash-directory is nil and
11607         system-move-file-to-trash is unbound, perform freedesktop-style
11608         trashing.
11610 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
11612         * files.el (move-file-to-trash): Add freedesktop trash
11613         support (Bug#973).
11615 2009-06-28  Glenn Morris  <rgm@gnu.org>
11617         * autorevert.el (global-auto-revert-non-file-buffers)
11618         (global-auto-revert-mode): Doc fixes.
11620 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
11622         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
11624 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
11626         * faces.el (x-handle-named-frame-geometry): Ensure that we have
11627         opened an X connection before calling x-get-resource (Bug#3194).
11629         * play/doctor.el: Remove reference to obsolete website.
11630         (make-doctor-variables): Correct grammar mistake (Bug#2633).
11632 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
11634         Remove find-file-not-found-hook VC method.  (Bug#2757)
11635         * vc-hooks.el (vc-file-not-found-hook)
11636         (vc-default-find-file-not-found-hook): Remove functions.
11637         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
11638         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
11639         * vc.el:
11640         * vc-hg.el:
11641         * vc-git.el: Do not mention find-file-not-found-hook VC method.
11643 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
11645         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
11646         compatibility function for `looking-back'.
11648         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11649         Use `ispell-looking-back'.
11651 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
11653         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
11654         rather than `filename'.
11656 2009-06-23  Miles Bader  <miles@gnu.org>
11658         * face-remap.el (text-scale-set): New function.
11660 2009-06-23  Glenn Morris  <rgm@gnu.org>
11662         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
11664         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
11666         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
11668         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
11670         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
11671         Simplify Persian conditionals.
11673         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
11674         variable `filename'.
11676         * comint.el (comint-insert-input): Doc fix.
11678         * Makefile.in (ELCFILES): Fix typo in previous change.
11680 2009-06-23  Miles Bader  <miles@gnu.org>
11682         * cus-start.el: Add entry for `recenter-redisplay'.
11684 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
11686         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
11687         Add an optional argument for the backend, use it instead of
11688         calling vc-backend.
11689         (vc-mode-line): Add an optional argument for the backend.
11690         Pass the backend to vc-state and vc-working-revision.  Move code for
11691         special handling for vc-state being a buffer to ...
11693         * vc-rcs.el (vc-rcs-find-file-hook):
11694         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
11696         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
11697         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
11698         vc-stay-local-p and vc-mode-line calls.
11700         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
11701         (vc-cvs-diff, vc-cvs-annotate-command)
11702         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
11703         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
11704         vc-mode-line calls.
11706         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
11707         direct comparison.
11708         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
11709         backend when calling vc-mode-line.
11710         (vc-register): Do not create a closure for calling the vc register
11711         function, call it directly.
11713 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
11715         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
11716         to make it obvious item can be clicked.
11718         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
11720 2009-06-23  Kenichi Handa  <handa@m17n.org>
11722         * language/korea-util.el (korean-key-bindings): Change the binding
11723         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
11724         same command.
11726 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
11728         Sync with Tramp 2.1.16.
11730         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
11732         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
11733         when a loading of a package fails.  Completion function for rsync
11734         is `tramp-completion-function-alist-ssh'.
11735         (all): Replace all calls of `split-string' and
11736         `tramp-split-string' by `tramp-compat-split-string'.
11737         (tramp-default-method): Use `tramp-compat-process-running-p'.
11738         (tramp-default-proxies-alist): Allow also Lisp forms.
11739         (tramp-remote-path): Add choice "Private Directories".
11740         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
11741         (tramp-domain-regexp): Allow also "-", "_" and ".".
11742         (tramp-end-of-output): Remove newlines, and add "$" at the end.
11743         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
11744         (tramp-debug-message): Insert header line in debug buffer.
11745         (tramp-handle-directory-files-and-attributes-with-stat):
11746         Care about filenames with spaces, or starting with "-".
11747         (tramp-handle-dired-uncache): New defun.
11748         (tramp-handle-insert-directory): Don't flush the directory from
11749         cache, this is handled by `dired-uncache' now.
11750         (tramp-handle-insert-file-contents): Improve error handling.
11751         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11752         Quote `tramp-end-of-output'.
11753         (tramp-action-password): Improve trace message.
11754         (tramp-check-for-regexp): Both echoes must be present, before removing.
11755         (tramp-open-connection-setup-interactive-shell): Trace coding system.
11756         (tramp-compute-multi-hops): Eval cons cells of
11757         `tramp-default-proxies-alist'.
11758         (tramp-maybe-open-connection): Use the same command pattern for
11759         first hop and further hops.
11760         (tramp-wait-for-output): Remove handling of newlines.
11761         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
11762         (tramp-split-string): Remove function.  It is handled in
11763         tramp-compat now.
11765         * net/tramp-cmds.el (tramp-bug):
11766         Recommend `tramp-cleanup-all-connections' in the bug mail.
11768         * net/tramp-compat.el (tramp-compat-split-string)
11769         (tramp-compat-process-running-p): New defuns.
11771         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
11772         for `dired-uncache'.
11774         * net/tramp-gvfs.el: New package.
11776         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11777         Add handler for `dired-uncache'.
11778         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
11780         * net/trampver.el: Update release number.  Make version check fit
11781         for SXEmacs 22.
11783 2009-06-22  Jim Meyering  <meyering@redhat.com>
11785         Automatically handle .xz suffix (XZ-compressed files), too.
11786         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
11787         XZ is the successor to LZMA: <http://tukaani.org/xz/>
11789 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
11790             Nick Roberts  <nickrob@snap.net.nz>
11792         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
11793         repository (http://sphinx.net.ru/hg/gdb-mi/).
11795 2009-06-22  Glenn Morris  <rgm@gnu.org>
11797         * files.el (dir-locals-collect-mode-variables): Allow for any number of
11798         `mode' and `eval' entries.  (Bug#3430)
11800         * Makefile.in (ELCFILES): Add fadr.elc.
11802         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
11803         differing behavior of \n and ^ in strings.  (Bug#3385)
11805         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
11807         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
11808         property.
11809         (lisp-indent-function): Make it a defcustom.
11811 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
11813         * progmodes/gdb-ui.el: Replace with ...
11814         * progmodes/gdb-mi.el: ... this file.
11815         * progmodes/gud.el: Modify for gdb-mi.el.
11817 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
11819         * fadr.el: New file.
11821 See ChangeLog.14 for earlier changes.
11823 ;; Local Variables:
11824 ;; coding: utf-8
11825 ;; End:
11827     Copyright (C) 2009, 2010  Free Software Foundation, Inc.
11829   This file is part of GNU Emacs.
11831   GNU Emacs is free software: you can redistribute it and/or modify
11832   it under the terms of the GNU General Public License as published by
11833   the Free Software Foundation, either version 3 of the License, or
11834   (at your option) any later version.
11836   GNU Emacs is distributed in the hope that it will be useful,
11837   but WITHOUT ANY WARRANTY; without even the implied warranty of
11838   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11839   GNU General Public License for more details.
11841   You should have received a copy of the GNU General Public License
11842   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
11844 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1