Scrolling commands which scroll a line instead of full screen..
[emacs.git] / lisp / ChangeLog
bloba9d95d9dd3d91fe317dab22883d4d2a3b2b320d7
1 2010-04-05  Juri Linkov  <juri@jurta.org>
3         Scrolling commands which scroll a line instead of full screen.
4         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
6         * simple.el (scroll-up-line, scroll-down-line): New commands.
7         Put property isearch-scroll=t on them.
9         * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
10         Remove commands.
12 2010-04-05  Juri Linkov  <juri@jurta.org>
14         Scrolling commands which does not signal errors at top/bottom.
15         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
17         * simple.el (scroll-up-command, scroll-down-command): New commands.
18         Put property isearch-scroll=t on them.
20         * bindings.el (global-map): Rebind [prior] from `scroll-down' to
21         `scroll-down-command' and [next] from `scroll-up' to
22         `scroll-up-command'.
24         * emulation/cua-base.el: Put property CUA=move on
25         `scroll-up-command' and `scroll-down-command'.
26         (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
27         and `scroll-down-command' to `cua-scroll-down'.
29 2010-04-05  Juanma Barranquero  <lekktu@gmail.com>
31         * help.el (describe-mode): Return nil.
33 2010-04-04  John Wiegley  <jwiegley@gmail.com>
35         * ido.el (ido-use-virtual-buffers): New variable to indicate
36         whether "virtual buffer" support is enabled for IDO.  Essentially
37         it works as follows: Say you are visiting a file and the buffer
38         gets cleaned up by mignight.el.  Later, you want to switch to that
39         buffer, but find it's no longer open.  With virtual buffers
40         enabled, the buffer name stays in the buffer list (using the
41         ido-virtual face, and always at the end), and if you select it, it
42         opens the file back up again.  This allows you to think less about
43         whether recently opened files are still open or not.  Most of the
44         time you can quit Emacs, restart, and then switch to a file buffer
45         that was previously open as if it still were.  NOTE: This feature
46         has been present in iswitchb for several years now, and I'm
47         porting the same logic to IDO.
48         (ido-virtual): Face used to indicate virtual buffers in the list.
49         (ido-buffer-internal): If a buffer is chosen, and no such buffer
50         exists, but a virtual buffer of that name does (which would be why
51         it was in the list), recreate the buffer by reopening the file.
52         (ido-make-buffer-list): If virtual buffers are being used, call
53         `ido-add-virtual-buffers-to-list' before the make list hook.
54         (ido-virtual-buffers): New variable which contains a copy of the
55         current contents of the `recentf-list', albeit pared down for the
56         sake of speed, and with proper faces applied.
57         (ido-add-virtual-buffers-to-list): Using the `recentf-list',
58         create a list of "virtual buffers" to present to the user in
59         addition to the currently open set.  Note that this logic could
60         get rather slow if that list is too large.  With the default
61         `recentf-max-saved-items' of 200, there is little speed penalty.
63 2010-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
65         * font-lock.el: Require CL when compiling.
66         (font-lock-turn-on-thing-lock): Use `case'.
68 2010-04-03  Eli Zaretskii  <eliz@gnu.org>
70         * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
71         Zaretskii.
73 2010-04-02  Juanma Barranquero  <lekktu@gmail.com>
75         * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
76         (semantic-create-imenu-directory-index): Fix typos in docstrings.
77         (semantic-imenu-goto-function): Reflow docstring.
79 2010-04-02  Juri Linkov  <juri@jurta.org>
81         * ehelp.el (electric-help-orig-major-mode):
82         New buffer-local variable.
83         (electric-help-mode): Set it to original major-mode.  Doc fix.
84         (with-electric-help): Use `electric-help-orig-major-mode' instead
85         of (default-value 'major-mode).  Doc fix.
86         http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
88 2010-04-02  Sam Steingold  <sds@gnu.org>
90         * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
91         `vc-hg-command' with a list of flags.
93         * progmodes/bug-reference.el (bug-reference-bug-regexp):
94         Also accept "patch" and "RFE".
95         (bug-reference-fontify): `bug-reference-url-format' can also be a
96         function to be able to handle the bug kind.
97         (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
99 2010-04-02  Jan Djärv  <jan.h.d@swipnet.se>
101         * tmm.el (tmm-get-keymap): Check with symbolp before passing
102         value to fboundp, it may not be a symbol.
104 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
106         * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
108 2010-03-31  Juri Linkov  <juri@jurta.org>
110         * simple.el (next-line, previous-line): Re-throw a signal
111         with `signal' instead of using `ding'.
112         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
114 2010-03-31  Juri Linkov  <juri@jurta.org>
116         * simple.el (keyboard-escape-quit): Raise deselecting the active
117         region higher than exiting the minibuffer.
118         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
120 2010-03-31  Juri Linkov  <juri@jurta.org>
122         * image.el (image-animated-p): Use `image-metadata' instead of
123         `image-extension-data'.  Get GIF extenstion data from metadata
124         property `extension-data'.
126 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
128         * simple.el (append-to-buffer): Simplify.
130 2010-03-31  Tomas Abrahamsson  <tab@lysator.liu.se>
132         * textmodes/artist.el (artist-mode): Fix typo in docstring.
133         Reported by Alex Schröder <kensanata@gmail.com>.  (Bug#5807)
135 2010-03-31  Kenichi Handa  <handa@m17n.org>
137         * language/sinhala.el (composition-function-table): Fix regexp for
138         the new Unicode specification.
140         * language/indian.el (devanagari-composable-pattern)
141         (tamil-composable-pattern, kannada-composable-pattern)
142         (malayalam-composable-pattern): Adjust for the new Unicode
143         specification.
144         (bengali-composable-pattern, gurmukhi-composable-pattern)
145         (gujarati-composable-pattern, oriya-composable-pattern)
146         (telugu-composable-pattern): New variables to cope with the new
147         Unicode specification.  Use them in composition-function-table.
149 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
151         Make tmm-menubar work for the Buffers menu again.
152         * tmm.el (tmm-prompt): Also handle keymap entries in the form of
153         vectors rather than cons cells, as used in menu-bar-update-buffers.
155 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
157         * progmodes/js.el (js-auto-indent-flag, js-mode-map)
158         (js-insert-and-indent): Revert 2009-08-15 change, restoring
159         electric punctuation for "{}();,:" (Bug#5586).
161         * mail/sendmail.el (mail-default-directory): Doc fix.
163 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
165         * mail/sendmail.el (mail-default-directory): Doc fix.
167 2010-03-31  Eli Zaretskii  <eliz@gnu.org>
169         * subr.el (version-regexp-alist, version-to-list)
170         (version-list-<, version-list-=, version-list-<=)
171         (version-list-not-zero, version<, version<=, version=): Doc fix.
172         (Bug#5744).
174 2010-02-31  Dan Nicolaescu  <dann@ics.uci.edu>
176         * vc.el (vc-root-diff): Doc fix.
178 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
180         * vc.el (vc-print-log, vc-print-root-log): Doc fix.
182         * simple.el (append-to-buffer): Fix last change.
184 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
186         * simple.el (append-to-buffer): Ensure that point is preserved if
187         BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
188         (Bug#5749)
190 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
192         * files.el (auto-mode-case-fold): Change default to t.
194 2010-03-30  Juri Linkov  <juri@jurta.org>
196         * dired-x.el (dired-omit-mode): Doc fix.
198 2010-03-30  Juri Linkov  <juri@jurta.org>
200         * replace.el (occur-accumulate-lines): Move occur-engine related
201         functions `occur-accumulate-lines' and `occur-engine-add-prefix'
202         to be located after `occur-engine'.
204 2010-03-30  Juri Linkov  <juri@jurta.org>
206         Make occur handle multi-line matches cleanly with context.
207         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
209         * replace.el (occur-accumulate-lines): Add optional arg `pt'.
210         (occur-engine): Add local variables `ret', `prev-after-lines',
211         `prev-lines'.  Use more arguments for `occur-context-lines'.
212         Set first elem of its returned list to `data', and the second elem
213         to `prev-after-lines'.  Don't print the separator line.
214         In the end, print remaining context after-lines.
215         (occur-context-lines): Add new arguments `begpt', `endpt',
216         `lines', `prev-lines', `prev-after-lines'.  Rewrite to combine
217         after-lines of the previous match with before-lines of the
218         current match and not overlap them.  Return a list with two
219         values: the output line and the list of context after-lines.
221 2010-03-30  Juri Linkov  <juri@jurta.org>
223         * replace.el (occur-accumulate-lines): Fix a bug where the first
224         context line at the beginning of the buffer was missing.
226 2010-03-30  Eli Zaretskii  <eliz@gnu.org>
228         * files.el: Make bidi-display-reordering safe variable for boolean
229         values.
231 2010-03-29  Phil Hagelberg  <phil@evri.com>
232             Chong Yidong  <cyd@stupidchicken.com>
234         * subr.el: Extend progress reporters to perform "spinning".
235         (progress-reporter-update, progress-reporter-do-update):
236         Handle non-numeric value arguments.
237         (progress-reporter--pulse-characters): New var.
239 2010-03-28  Chong Yidong  <cyd@stupidchicken.com>
241         * progmodes/compile.el (compilation-start): Fix regexp detection
242         of initial cd command (Bug#5771).
244 2010-03-28  Stefan Guath  <stefan@automata.se>  (tiny change)
246         * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
248 2010-03-27  Nick Roberts  <nickrob@snap.net.nz>
250         Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
251         * lisp/progmodes/gdb-mi.el: Restore.
252         * lisp/progmodes/gdb-ui.el: Remove.
253         * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
255 2010-03-25  Glenn Morris  <rgm@gnu.org>
257         * desktop.el (desktop-save-buffer-p): Don't mistakenly include
258         all dired buffers, even tramp ones.  (Bug#5755)
260 2010-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
262         Add "union tags" in mpc.el.
263         * mpc.el: Remove backward compatibility code.
264         (mpc-browser-tags): Change default.
265         (mpc--find-memoize-union-tags): New var.
266         (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
267         (mpc-cmd-find): Handle the case where the playlist does not exist.
268         Handle union-tags.
269         (mpc-cmd-list): Use mpc-cmd-special-tag-p.  Handle union-tags.
270         (mpc-cmd-add): Use mpc-cmd-flush.
271         (mpc-tagbrowser-tag-name): New fun.
272         (mpc-tagbrowser-buf): Use it.
273         (mpc-songs-refresh): Use cond.  Move to point-min as a fallback.
275 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
277         Misc cleanup.
278         * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
279         Use replace-regexp-in-string.
280         (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
281         (makefile-imake-mode-syntax-table): Move init into defvar.
282         (makefile-mode): Use define-derived-mode.
284         * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
285         (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
286         not be present any more.
288 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
290         * faces.el (set-face-attribute): Fix typo in docstring.
291         (face-valid-attribute-values): Reflow docstring.
293         * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
295 2010-03-24  Glenn Morris  <rgm@gnu.org>
297         * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
299 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
301         * indent.el (indent-for-tab-command): Doc fix.
303 2010-03-24  Alan Mackenzie  <acm@muc.de>
305         * progmodes/cc-engine.el (c-remove-stale-state-cache):
306         Fix off-by-one error.  Fixes bug #5747.
308 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
310         * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
311         (image-dired-read-comment): Doc fix.
313         * json.el (json-object-type, json-array-type, json-key-type)
314         (json-false, json-null, json-read-number):
315         * minibuffer.el (completion-in-region-functions):
316         * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
317         (cal-tex-cursor-week):
318         * emacs-lisp/trace.el (trace-function):
319         * eshell/em-basic.el (eshell/printnl):
320         * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
321         (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
322         * obsolete/levents.el (allocate-event, event-key, event-object)
323         (event-point, event-process, event-timestamp, event-to-character)
324         (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
325         * textmodes/reftex-vars.el (reftex-index-macros-builtin)
326         (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
327         (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
328         (reftex-highlight-selection): Fix typos in docstrings.
330 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
332         * minibuffer.el (completion-in-region-functions): Fix docstring typos.
334 2010-03-24  Glenn Morris  <rgm@gnu.org>
336         * mail/rmail.el (rmail-highlight-face): Restore option deleted
337         2008-02-13 without comment; mark it obsolete.
338         (rmail-highlight-headers): Use rmail-highlight-face once more.
340 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
342         * woman.el (woman2-process-escapes): Only consume the newline if
343         the filler character is on a line by itself (Bug#5729).
345 2010-03-24  Kenichi Handa  <handa@m17n.org>
347         * language/indian.el (devanagari-composable-pattern): Add more
348         consonants.
350 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
352         * net/trampver.el: Update release number.
354 2010-03-24  Glenn Morris  <rgm@gnu.org>
356         * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
358 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
360         * net/tramp.el (tramp-find-executable):
361         Use `tramp-get-connection-buffer'.  Make the regexp for checking
362         output of "wc -l" more robust.
363         (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
364         (tramp-open-connection-setup-interactive-shell): Remove workaround
365         for OpenSolaris bug, it is not needed anymore.
367 2010-03-24  Eric M. Ludlam  <zappo@gnu.org>
369         * cedet/semantic/imenu.el: New file, from the CEDET repository
370         (Bug#5412).
372 2010-03-24  Glenn Morris  <rgm@gnu.org>
374         * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie.  (Bug#4427)
376 2010-03-24  Wilson Snyder  <wsnyder@wsnyder.org>
378         * files.el (auto-mode-alist): Accept more verilog file patterns.
380 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
382         * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
384 2010-03-24  Glenn Morris  <rgm@gnu.org>
386         * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
387         log-edit-before-checkin-process.
389         * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
391         * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
393         * vc-dispatcher.el (vc-start-logentry): Doc fix.
394         (log-view-process-buffer, log-edit-extra-flags): Declare.
396         * log-edit.el (log-edit-before-checkin-process): Doc fix.
398         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
399         Consistently check ede-object is bound throughout.
401         * cedet/ede/project-am.el (ede-shell-run-something): Declare.
403 2010-03-23  Sam Steingold  <sds@gnu.org>
405         Fix bug#5620: recalculate all markers on compilation buffer
406         modifications, not on file modifications.
407         * progmodes/compile.el (buffer-modtime): New buffer-local variable:
408         the buffer modification time, for buffers not associated with files.
409         (compilation-mode): Create it.
410         (compilation-filter): Update it.
411         (compilation-next-error-function): Use it instead of
412         `visited-file-modtime' for timestamp.
414 2010-03-23  Juri Linkov  <juri@jurta.org>
416         Implement Occur multi-line matches.
417         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
419         * replace.el (occur): Doc fix.
420         (occur-engine): Set `begpt' to the beginning of the first line.
421         Set `endpt' to the end of the last match line.  At first, count
422         line numbers between `origpt' and `begpt'.  Split out code from
423         `out-line' variable to new let-bindings `match-prefix' and
424         `match-str'.  In `out-line' add non-numeric prefix to all
425         non-first lines of multi-line matches.  Finally, count lines
426         between `begpt' and `endpt' and add to `lines'.
428 2010-03-23  Juri Linkov  <juri@jurta.org>
430         * replace.el (occur-accumulate-lines, occur-engine):
431         Use `occur-engine-line' instead of duplicate code.
432         (occur-engine-line): New function created from duplicate code
433         in `occur-accumulate-lines' and `occur-engine'.
435         * replace.el (occur-engine-line): Add optional arg `keep-props'.
436         (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
438 2010-03-23  Juri Linkov  <juri@jurta.org>
440         * finder.el: Remove TODO tasks.
442         * info.el (Info-finder-find-node): Add node "all"
443         with all package info.  Handle a list of multiple keywords
444         separated by comma.
445         (info-finder): In interactive use with a prefix argument,
446         use `completing-read-multiple' to read a list of keywords
447         separated by comma.
449 2010-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
451         Add a new completion style `substring'.
452         * minibuffer.el (completion-basic--pattern): New function.
453         (completion-basic-try-completion, completion-basic-all-completions):
454         Use it.
455         (completion-substring--all-completions)
456         (completion-substring-try-completion)
457         (completion-substring-all-completions): New functions.
458         (completion-styles-alist): New style `substring'.
460 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
462         Get rid of .elc files after removal of the corresponding .el.
463         * Makefile.in (compile-clean): New target.
464         (compile-main): Use it.
466 2010-03-22  Jan Djärv  <jan.h.d@swipnet.se>
468         * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
469         don't do make there.  When compiling with separate object dir, there
470         is no Makefile there.
472 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
474         Get rid of the ELCFILES abomination, again.
475         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
476         (all, compile): Don't call compile-last.
477         (compile-main): Build the "elcfiles" list dynamically.
478         (compile-targets): New (internal) target.
480 2010-03-21  Andreas Schwab  <schwab@linux-m68k.org>
482         * Makefile.in (top_srcdir): Define.
483         (abs_top_builddir): Define.
484         (srcdir): Don't append `/..'.
485         (EMACS): Use ${abs_top_builddir}.
486         (all, compile, compile-always, compile-last): Don't set emacswd.
487         (update-subdirs, update-authors): Use $(top_srcdir) instead of
488         $(srcdir).
489         (lisp): Use $(srcdir) instead of @srcdir@.
491 2010-03-21  Juri Linkov  <juri@jurta.org>
493         Fix message of multi-line occur regexps and multi-buffer header lines.
494         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
496         * replace.el (occur-1): Don't display regexp if it is longer
497         than window-width.  Use `query-replace-descr' to display regexp.
498         (occur-engine): Don't display regexp in the buffer header for
499         multi-buffer occur.  Display a separate header line with total
500         match count and regexp for multi-buffer occur.
501         Use `query-replace-descr' to display regexp.
503 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
505         * net/secrets.el: Fix parenthesis.
506         (secrets-enabled): Fix parenthesis.
508 2010-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
510         Use more relative file and directory names.
511         * Makefile.in (EMACS): Arrange for it to work when we chdir.
512         (setwins, setwins_almost, setwins_for_subdirs):
513         Don't `cd'; output relative names.
514         (all, compile, compile-always, compile-last): Set emacswd.
515         (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
516         Just cd to the lisp source dir so we can use relative file names.
518         * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
520 2010-03-20  Glenn Morris  <rgm@gnu.org>
522         * textmodes/rst.el: Use faces for font-lock customization, and make the
523         old -face variables obsolete.
524         (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
525         (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
526         (rst-block-face, rst-external-face, rst-definition-face)
527         (rst-directive-face, rst-comment-face, rst-emphasis1-face)
528         (rst-emphasis2-face, rst-literal-face, rst-reference-face):
529         Make obsolete.
530         (rst-font-lock-keywords-function): Update for above changes.
532 2010-03-20  Juri Linkov  <juri@jurta.org>
534         * s-region.el:
535         * obsolete/s-region.el: Move to obsolete.
537 2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
539         * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
541 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
543         * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
545 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
547         Add special markup processing for commit logs.
548         * log-edit.el (log-edit-extra-flags): New variable.
549         (log-edit): Add new argument MODE.  Use that mode when non-nil
550         instead of the log-view-mode.
551         (log-view-process-buffer): New function.
553         * vc.el: Document that the checkin method takes optional
554         arguments.  Document new backend specific method: log-view-mode.
555         (vc-default-log-edit-mode): New function.
556         (vc-checkin): Use a backend specific log-view-mode.
557         Pass extra arguments to the checkin method.
558         (vc-modify-change-comment): Pass a dummy extra argument.
560         * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
561         log-edit.
562         (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
563         (vc-finish-logentry): Process the log buffer before passing it
564         down.  Pass log-edit-extra-flags.
566         * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
567         command.
568         (log-edit-extra-flags, log-edit-before-checkin-process):
569         New declarations.
571         * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
572         command.
573         (log-edit-extra-flags, log-edit-before-checkin-process):
574         New declarations.
575         (vc-hg-log-edit-mode): New derived mode.
577         * vc-arch.el (vc-arch-checkin):
578         * vc-cvs.el (vc-cvs-checkin):
579         * vc-git.el (vc-git-checkin):
580         * vc-mtn.el (vc-mtn-checkin):
581         * vc-rcs.el (vc-rcs-checkin):
582         * vc-sccs.el (vc-sccs-checkin):
583         * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
585 2010-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
587         * outline.el (hide-sublevels): Don't hide trailing newline (and fix
588         parent typo).
590 2010-03-19  Glenn Morris  <rgm@gnu.org>
592         * password-cache.el (password-cache, password-cache-expiry): Autoload.
594 2010-03-18  Glenn Morris  <rgm@gnu.org>
596         * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
598         * replace.el (query-replace-history): Give it a doc string.
599         (map-query-replace-regexp): Use query-replace-from-history-variable
600         and query-replace-to-history-variable.
602         * mail/hashcash.el (declare-function): Remove duplicate definition.
604         * mail/emacsbug.el (report-emacs-bug-pretest-address):
605         Make it an obsolete alias for report-emacs-bug-address.
606         (message-strip-special-text-properties): Declare.
607         (report-emacs-bug): Remove test for a pretest bug address.
608         Combine message-mode-specific code.
610         * mail/supercite.el: Don't require sendmail.
611         (mh-in-header-p): Declare rather than using with-no-warnings.
612         (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
613         mail-header-end.  Don't bind mysterious variable `kill-lines-magic'.
615         * calendar/cal-french.el: Convert to utf-8.
617         * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
618         Emacs scripts.
620 2010-03-16  Michael Albinus  <michael.albinus@gmx.de>
622         * net/secrets.el (secrets-enabled): New variable.  Use it instead
623         of a subfeature.
625 2010-03-15  Michael Albinus  <michael.albinus@gmx.de>
627         * net/secrets.el (top): Register the D-Bus signals only when the
628         service "org.freedesktop.secrets" can be pinged.
629         Provide subfeature `enabled'.
631 2010-03-14  Juri Linkov  <juri@jurta.org>
633         Add finder unknown keywords.
635         * finder.el (finder-unknown-keywords): New function.
637         * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
638         to create a Finder node with unknown keywords.
640 2010-03-14  Juri Linkov  <juri@jurta.org>
642         * finder.el (finder-compile-keywords): Replace `princ' with
643         `prin1' on a list of symbols interned from keyword strings.
645         * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
646         a comma, then split keywords using a comma and optional whitespace.
647         Otherwise, split by whitespace.
649         * complete.el:
650         * face-remap.el:
651         * log-view.el:
652         * net/hmac-def.el:
653         * net/hmac-md5.el:
654         * net/netrc.el:
655         * progmodes/mixal-mode.el: Fix keywords.
657 2010-03-13  Michael Albinus  <michael.albinus@gmx.de>
659         * Makefile.in (ELCFILES): Add net/secrets.elc.
661         * net/secrets.el: New file.
663 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
665         * facemenu.el (list-colors-display, list-colors-print): New arg
666         callback.  Use it to allow selecting colors.
668         * wid-edit.el (widget-image-insert): Insert image prop even if the
669         current display is non-graphic.
670         (widget-field-value-set): New fun.
671         (editable-field): Use it.
672         (widget-field-value-get): Clean up unused var.
673         (widget-color-value-create, widget-color--choose-action):
674         New funs.  Allow using list-colors-display to choose color.
676 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
678         * cus-edit.el: Resort topmost custom groups.
679         (custom-buffer-sort-alphabetically): Default to t.
680         (customize-apropos): Use apropos-parse-pattern.
681         (custom-search-field): New var.
682         (custom-buffer-create-internal): Add custom-apropos search field.
683         (custom-add-parent-links): Don't display parent doc.
684         (custom-group-value-create): Don't sort top-level custom group.
685         (custom-magic-value-create): Show visibility button before option name.
687         (custom-variable-state): New fun, from custom-variable-state-set.
688         (custom-variable-state-set): Use it.
689         (custom-group-value-create): Hide options with standard values
690         using the :hidden-states property.  Use progress reporter.
692         (custom-show): Simplify.
693         (custom-visibility): Disable images by default.
694         (custom-variable): New property :hidden-states.
695         (custom-variable-value-create): Enable images for
696         custom-visibility widgets.  Use :hidden-states property to
697         determine initial visibility.
699         * wid-edit.el (widget-image-find): Give images center ascent.
700         (visibility): Add :on-image and :off-image properties.
701         (widget-visibility-value-create): Use them.
703 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
705         * cus-edit.el (processes): Remove from development group.
706         (oop, hypermedia): Delete group.
707         (comm): Promote to top-level group.
709         * net/browse-url.el (browse-url):
710         * net/xesam.el (xesam):
711         * net/tramp.el (tramp):
712         * net/goto-addr.el (goto-address):
713         * net/ange-ftp.el (ange-ftp): Put in comm group.
715         * view.el (view): Remove from editing group.
717         * uniquify.el (uniquify): Put in files group.
719         * net/browse-url.el (browse-url):
720         * ps-print.el (postscript): Put in external group.
722         * cus-edit.el (outlines):
723         * textmodes/text-mode.el (text-mode-hook):
724         * textmodes/table.el (table):
725         * textmodes/picture.el (picture):
726         * outline.el (outlines): Put in wp group.
728         * nxml/nxml-mode.el (nxml): Remove from wp group.
730         * net/tramp-imap.el (tramp-imap): Put in tramp group.
732         * mail/metamail.el (metamail): Remove from hypermedia group.
734         * cus-edit.el (abbrev):
735         * whitespace.el (whitespace):
736         * vcursor.el (vcursor):
737         * reveal.el (reveal):
738         * hl-line.el (hl-line): Put in convenience group.
740         * epg-config.el (epg): Put in data group.
742         * emulation/pc-select.el (pc-select): Put in emulations group.
744         * calculator.el (calculator): Put in applications group.
746 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
748         Add .dir-locals.el support for file-less buffers.
749         * files.el (hack-local-variables): Split out code to apply local
750         variable settings ...
751         (hack-local-variables-apply): ... here.  New function.
752         (hack-dir-local-variables): Use the default directory for when the
753         buffer does not have an associated file.
754         (hack-dir-local-variables-non-file-buffer): New function.
755         * diff-mode.el (diff-mode):
756         * vc-annotate.el (vc-annotate-mode):
757         * vc-dir.el (vc-dir-mode):
758         * log-edit.el (log-edit-mode):
759         * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
761 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
763         Add support for shelving snapshots and for showing shelves.
764         * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
765         (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
766         New functions.
767         (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
768         (vc-bzr-extra-menu-map): Map them.
770 2010-03-11  Glenn Morris  <rgm@gnu.org>
772         * cus-edit.el (customize-changed-options-previous-release):
773         Bump to 23.1.
775         * image.el (image-animate-max-time): Fix :version tag.
777 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
779         * Branch for 23.2.
781 2010-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
783         * vc-git.el (vc-git-revision-table): Include remote branches.
785 2010-03-10  Kim F. Storm  <storm@cua.dk>
787         Animated image API.
788         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
790         * image.el (image-animate-max-time): New defcustom.
791         (image-animated-types): New defconst.
792         (create-animated-image, image-animate-timer)
793         (image-animate-start, image-animate-stop, image-animate-timeout)
794         (image-animated-p): New functions.
796         * image-mode.el (image-toggle-display-image):
797         Replace `create-image' with `create-animated-image'.
799 2010-03-09  Miles Bader  <Miles Bader <miles@gnu.org>>
801         * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
802         instead of "format:"; this ensures that the output is
803         newline-terminated.
805 2010-03-08  Chong Yidong  <cyd@stupidchicken.com>
807         * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
808         that all errors are caught, and that the return value is always a
809         list (Bug#5692).
811 2010-03-08  Kenichi Handa  <handa@m17n.org>
813         * language/misc-lang.el (windows-1256): New coding system.
814         (cp1256): New alias of windows-1256 (bug#5690).
816 2010-03-07  Andreas Schwab  <schwab@linux-m68k.org>
818         * mail/rfc822.el (rfc822-addresses): Move catch clause down around
819         call to rfc822-bad-address.  (Bug#5692)
821 2010-03-07  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
823         * vc-git.el (vc-git-annotate-extract-revision-at-line):
824         Use vc-git-root as default directory for revision path (Bug#5657).
826 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
828         * calculator.el (calculator): Don't bind split-window-keep-point
829         (Bug#5674).
831 2010-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
833         * vc-git.el: Re-flow to fit into 80 columns.
834         (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
835         Remove spurious `quote' element in each case alternative.
836         (vc-git-show-log-entry): Use prog1.
837         (vc-git-after-dir-status-stage): Remove unused var `remaining'.
839 2010-03-06  Glenn Morris  <rgm@gnu.org>
841         * cedet/semantic/grammar.el (semantic-grammar-header-template):
842         Update template copyright to GPLv3+.
844 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
846         * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
848 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
850         * macros.el (insert-kbd-macro): Look up keyboard macro using the
851         definition, not the name (Bug#5481).
853 2010-03-03  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
855         * subr.el (momentary-string-display): Don't overwrite the MESSAGE
856         argument with a local variable.  (Bug#5670)
858 2010-03-02  Juri Linkov  <juri@jurta.org>
860         * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
862 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
864         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
865         error when FILENAME and NEWNAME are existing remote directories.
867         * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
868         parameter DIR-FLAG.
870 2010-03-02  Glenn Morris  <rgm@gnu.org>
872         * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
873         of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
875 2010-03-01  Alan Mackenzie  <acm@muc.de>
877         * progmodes/cc-engine.el (c-remove-stale-state-cache):
878         Correct previous patch.
880 2010-03-01  Kenichi Handa  <handa@m17n.org>
882         * language/burmese.el (burmese-composable-pattern): Rename from
883         myanmar-composable-pattern.
885         * international/characters.el (script-list):
886         * international/fontset.el (script-representative-chars):
887         Change myanmar to burmese.
888         (otf-script-alist): Likewise.
889         (setup-default-fontset): Likewise.  Re-fix :otf spec.
891 2010-03-01  Alan Mackenzie  <bug-cc-mode@gnu.org>
893         * cc-engine.el (c-remove-stale-state-cache): Take account of when
894         `good-pos' is in the same macro as `here'.  Fixes bug#5649.
896 2010-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
898         * menu-bar.el (menu-bar-manuals-menu): Fix typo.
900 2010-02-28  Jan Djärv  <jan.h.d@swipnet.se>
902         * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
904 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
906         * net/tramp.el (tramp-handle-write-region): START can be a string.
907         Take care in the checks.  Reported by Dan Davison
908         <davison@stats.ox.ac.uk>.
910 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
912         * net/dbus.el (dbus-introspect, dbus-get-property)
913         (dbus-set-property, dbus-get-all-properties):
914         Use `dbus-call-method' when noninteractive.  (Bug#5645)
916 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
918         * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
919         * emacs-lisp/elint.el (elint-add-required-env):
920         * cedet/semantic/db-find.el
921         (semanticdb-find-translate-path-brutish-default):
922         * cedet/ede/make.el (ede-make-check-version):
923         * calendar/icalendar.el (icalendar--add-diary-entry):
924         * calc/calcalg2.el (math-tracing-integral):
925         * files.el (recover-session-finish): Use with-current-buffer
926         instead of save-excursion.
928 2010-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
930         Fix in-buffer completion when after-change-functions modify the buffer.
931         * minibuffer.el (completion--replace): New function.
932         (completion--do-completion): Use it and use relative movement.
934 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
936         * international/fontset.el (setup-default-fontset): Fix :otf spec.
938 2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
940         * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
941         Allow the characters _<> in the stack entry (Bug#5653).
943 2010-02-26  Kenichi Handa  <handa@m17n.org>
945         * language/burmese.el: Fix entries in composition-function-table.
946         (myanmar-composable-pattern): New variable.
948         * international/fontset.el (setup-default-fontset): Add an entry
949         for myanmar.
951         * international/characters.el (script-list): Add Myanmar
952         Extended-A.
954 2010-02-26  Glenn Morris  <rgm@gnu.org>
956         * custom.el (custom-initialize-delay): Doc fix.
958         * mail/sendmail.el (send-mail-function): Autoload the call
959         to custom-initialize-delay, not otherwise preserved in loaddefs.el.
961 2010-02-25  Alan Mackenzie  <acm@muc.de>
963         * progmodes/cc-engine.el (c-clear-<-pair-props)
964         (c-clear->-pair-props): Correct to wipe category text props, not
965         syntax-table ones.
967         * progmodes/cc-mode.el (c-after-change): Remove any hard
968         syntax-table properties for <, > which, e.g., C-y has
969         inopportunely converted from category properties.
971 2010-02-24  Chong Yidong  <cyd@stupidchicken.com>
973         * files.el (hack-local-variables-filter): For eval forms, also
974         check safe-local-variable-p (Bug#5636).
976 2010-02-24  Eduard Wiebe  <usenet@pusto.de>
978         * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
979         and use c(ad)r of cddr (Bug#5640).
981 2010-02-22  Michael Albinus  <michael.albinus@gmx.de>
983         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
984         setting the modes by `ignore-errors'.  It might fail, for example
985         if the file is not owned by the user but the group.
986         (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
988 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
990         * files.el (directory-listing-before-filename-regexp): Use
991         stricter matching for iso-style dates, to avoid false matches with
992         date-like filenames (Bug#5597).
994         * htmlfontify.el (htmlfontify): Doc fix.
996         * eshell/eshell.el (eshell): Doc fix.
998         * startup.el (fancy-about-screen): In mode-line, apply
999         mode-line-buffer-id face only to the buffer name (Bug#5613).
1001 2010-02-20  Kevin Ryde  <user42@zip.com.au>
1003         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1004         In `watcom' anchor regexp to start of line, to avoid slowness
1005         (Bug#5599).
1007 2010-02-20  Eli Zaretskii  <eliz@gnu.org>
1009         * subr.el (remove-yank-excluded-properties): Explain in a comment
1010         why `category' property is removed.
1012 2010-02-19  Chong Yidong  <cyd@stupidchicken.com>
1014         * isearch.el (isearch-update-post-hook, isearch-update): Revert
1015         2010-02-17 change.
1017 2010-02-19  Ulf Jasper  <ulf.jasper@web.de>
1019         * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
1020         (icalendar--convert-weekly-to-ical)
1021         (icalendar--convert-yearly-to-ical)
1022         (icalendar--convert-block-to-ical)
1023         (icalendar--convert-cyclic-to-ical)
1024         (icalendar--convert-anniversary-to-ical): Take care of time
1025         specifications where hour has 1-digit only (Bug#5549).
1027 2010-02-19  Nick Roberts  <nickrob@snap.net.nz>
1029         * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
1030         of disassemble output in GDB 7.1.
1032 2010-02-19  Glenn Morris  <rgm@gnu.org>
1034         * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
1035         property.  (Bug#5593)
1037 2010-02-18  Sam Steingold  <sds@gnu.org>
1039         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
1041 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1043         Use abbreviated file names in bookmarks (bug#5591).
1044         * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
1045         calls to expand-file-name.
1046         (bookmark-relocate): Use abbreviated file names in bookmarks.
1047         (bookmark-load): Use abbreviated file names in messages.
1049 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
1051         * net/tramp.el (tramp-handle-directory-files): When FULL, do not
1052         expand "." and "..".  Reported by Thierry Volpiatto
1053         <thierry.volpiatto@gmail.com>.
1055 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
1057         * net/tramp.el (tramp-handle-insert-file-contents): Set always the
1058         permissions of the temporary file to "0600".  In case the remote
1059         file has no read permissions for the owner, there might be
1060         problems otherwise.  Reported by Ole Laursen <olau@iola.dk>.
1062 22010-02-18  Glenn Morris  <rgm@gnu.org>
1064         * emacs-lisp/authors.el (authors-renamed-files-alist):
1065         Add entries for INSTALL.CVS.
1067 2010-02-17  Mark A. Hershberger  <mah@everybody.org>
1069         * vc-bzr.el: Fix typo in Known Bugs section.
1071         * isearch.el (isearch-update-post-hook): New hook.
1072         (isearch-update): Use the new hook.
1074 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
1076         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
1077         Fix errors in copying directories.
1078         (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
1079         (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
1080         (tramp-handle-delete-file)
1081         (tramp-handle-dired-recursive-delete-directory)
1082         (tramp-handle-write-region): Flush also the cache for the upper
1083         directory.
1085 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
1087         * simple.el (save-interprogram-paste-before-kill): Doc fix.
1089         * cus-edit.el (hardware): Doc fix.
1091         * man.el (man): Add to external custom group.
1093         * delim-col.el (columns): Move to wp custom group.
1095         * doc-view.el (doc-view): Add to data custom group.
1097         * cedet/data-debug.el (data-debug): Move to extensions group.
1099         * cedet/ede.el (ede):
1100         * cedet/srecode.el (srecode):
1101         * cedet/semantic.el (semantic): Put in tools and extensions group.
1103         * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
1105         * textmodes/flyspell.el (flyspell-word): Obey the offset specified
1106         by ispell-parse-output (Bug#5575).
1108 2010-02-16  Kenichi Handa  <handa@m17n.org>
1110         * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
1111         (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
1112         (skkdic-convert): Use `euc-japan' coding system for writing.
1114 2010-02-16  Glenn Morris  <rgm@gnu.org>
1116         * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
1117         tex-main-file before using it.  (Bug#5562)
1119 2010-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1121         * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
1122         warnings, since it is annoying for the user to see them each time he
1123         runs the code.
1125 2010-02-15  Michael Albinus  <michael.albinus@gmx.de>
1127         * net/tramp.el (tramp-process-actions, tramp-read-passwd):
1128         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
1129         instead of PROC for caching "first-password-request".  Otherwise,
1130         new processes would not profit from passwords already entered.
1132         * net/tramp-cache.el (tramp-dump-connection-properties):
1133         Don't save "first-password-request" property.
1135 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
1137         * outline.el (outline-head-from-level):
1138         * simple.el (with-wrapper-hook):
1139         * cedet/ede.el (ede-run-target, project-delete-target)
1140         (project-dist-files, ede-name, ede-documentation, ede-parent-project)
1141         (ede-adebug-project, ede-adebug-project-parent)
1142         (ede-adebug-project-root):
1143         * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
1144         (elint-defun, elint-buffer-env, elint-top-form-logged)
1145         (elint-unbound-variable):
1146         * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
1147         Fix typos in docstrings.
1149 2010-02-14  Michael Albinus  <michael.albinus@gmx.de>
1151         * files.el (insert-directory): When WILDCARD-REGEXP and
1152         FULL-DIRECTORY-P are nil, insert the file entry instead of the
1153         whole directory.  (Bug#5551)
1155         * net/ange-ftp.el (ange-ftp-insert-directory): Insert "  " for
1156         dired's alignment sanity.  (Bug#5516)
1158 2010-02-14  Juri Linkov  <juri@jurta.org>
1160         * man.el (Man-fontify-manpage, Man-cleanup-manpage):
1161         Remove remaining ^H with their preceding chars.  (Bug#5566)
1163 2010-02-13  Glenn Morris  <rgm@gnu.org>
1165         * simple.el (transpose-subr): Give it a doc-string.
1167         * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
1168         Doc fixes.
1170 2010-02-12  Juri Linkov  <juri@jurta.org>
1172         * arc-mode.el (archive-unique-fname): Make directories for nested
1173         archives.  (Bug#5540)
1175 2010-02-12  Juri Linkov  <juri@jurta.org>
1177         * ffap.el (dired-at-point): Fix docstring.  (Bug#5565)
1179 2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1181         * subr.el (copy-overlay): Handle deleted overlays.
1183         * man.el (Man-completion-table): Don't signal an error if we can't run
1184         manual-program (bug#4056).
1186 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
1188         * textmodes/artist.el (artist-mt): Fix typos in docstring.
1190 2010-02-10  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1192         * info.el (Info-bookmark-jump): Simplify.
1194         * bookmark.el (bookmark-handle-bookmark): Catch the right error.
1195         (bookmark-default-handler): Accept new bookmark field `buffer'.
1197 2010-02-10  Chong Yidong  <cyd@stupidchicken.com>
1199         * iswitchb.el (iswitchb-completions): Revert last change.
1201 2010-02-10  Michael Albinus  <michael.albinus@gmx.de>
1203         * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
1204         FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
1205         This prevents file names like "~/" being listed literally.
1207 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
1209         * term/xterm.el (xterm-maybe-set-dark-background-mode):
1210         Remove dead code.  (Bug#5546)
1212 2010-02-09  Chong Yidong  <cyd@stupidchicken.com>
1214         * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
1215         correctly (Bug#5548).
1217 2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
1219         * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
1220         (ada-adjust-case): Don't adjust case in hexadecimal number literals.
1222 2010-02-08  Kenichi Handa  <handa@m17n.org>
1224         * international/mule-util.el (with-coding-priority): Add autoload
1225         cookie for putting `lisp-indent-function'.
1227 2010-02-07  Glenn Morris  <rgm@gnu.org>
1229         * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
1230         Move F2003 named interfaces from keywords-2 to keywords-1, and
1231         use function-name-face rather than constant-face.
1232         Simplify "abstract interface" regexp.
1234 2010-02-07  Chong Yidong  <cyd@stupidchicken.com>
1236         * eshell/esh-util.el (eshell-file-attributes): New optional arg
1237         ID-FORMAT.  Pass it to `file-attributes'.
1239         * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
1241 2010-02-07  sj  <prime.wizard+emacs@gmail.com>  (tiny change)
1243         * faces.el (set-face-attribute): Allow calling
1244         internal-set-lisp-face-attribute with 'unspecified family and
1245         foundry argument (Bug#5536).
1247 2010-02-07  Glenn Morris  <rgm@gnu.org>
1249         * progmodes/f90.el (f90-font-lock-keywords-2)
1250         (f90-looking-at-type-like, f90-looking-at-program-block-end):
1251         Handle F2003 named interfaces.
1253 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
1255         * progmodes/cc-mode.el (c-common-init): Bind temporary variables
1256         beg and end before calling c-get-state-before-change-functions.
1258 2010-02-06  Dan Nicolaescu  <dann@ics.uci.edu>
1260         * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
1262 2010-02-05  Juri Linkov  <juri@jurta.org>
1264         * doc-view.el (doc-view-mode):
1265         * image-mode.el (image-mode): Put property mode-class=special.
1266         (Bug#4896)
1268 2010-02-05  Mark A. Hershberger  <mah@everybody.org>
1270         * vc-svn.el (vc-svn-revision-table): New function.
1272 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
1274         * net/ange-ftp.el (ange-ftp-insert-directory):
1275         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
1276         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
1277         Handle also directories.  (Bug#5478)
1279 2010-02-05  Glenn Morris  <rgm@gnu.org>
1281         * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
1283 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
1285         * startup.el (command-line-1): Convert options beginning with a
1286         single dash as well (Bug#5519).
1288 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1290         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
1291         * minibuffer.el (completion-initials-expand): Only check the presence
1292         of delims *within* the boundaries, since otherwise the / delim is
1293         always found for files.
1295         Fix up various corner case problems.
1296         * doc-view.el (doc-view-last-page-number): New function.
1297         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
1298         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
1299         (doc-view-kill-proc): Avoid inf-loop in freak cases.
1300         (doc-view-reconvert-doc): Use the new recursive delete-directory.
1301         (doc-view-convert-current-doc): Don't create the resolution.el file
1302         here any more.
1303         (doc-view-pdf/ps->png): Do it here instead.
1304         (doc-view-already-converted-p): Check that resolution.el is present.
1305         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
1306         windows that are not yet showing images.
1308 2010-02-04  Alan Mackenzie  <acm@muc.de>
1310         Change strategy for marking < and > as template delimiters: mark
1311         them strictly in matching pairs.
1313         * cc-mode.el (c-before-change):
1314         Use c-get-state-before-change-functions.
1315         (c-common-init): Adapt to use
1316         c-get-state-before-change-functions (note plural).
1318         * cc-langs.el (c-no-parens-syntax-table): New syntax table, used
1319         for searching syntactically for matching <s and >s.
1320         (c-get-state-before-change-functions): New language variable (note
1321         the plural) which supersedes c-get-state-before-change-function.
1323         * cc-engine.el (c-clear-<-pair-props, c-clear->-pair-props)
1324         (c-clear-<>-pair-props, c-clear-<-pair-props-if-match-after)
1325         (c-clear->-pair-props-if-match-before)
1326         (c-before-change-check-<>-operators): New functions.
1327         (c-after-change-check-<>-operators): Use macro
1328         c-unmark-<->-as-paren.
1330         * cc-defs.el (c-search-backward-char-property): New macro.
1332         * cc-cmds.el (c-electric-lt-gt): Do not set text properties on <
1333         and > any more.  (These will be handled by font locking.)
1335 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
1337         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
1338         `dired-uncache' for every elemnt which is an absolute file name.
1340         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
1341         directory, handle its directory component.
1342         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
1343         function is called permanently and creates noise, otherwise.
1345         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
1346         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
1347         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
1349 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
1351         * macros.el (apply-macro-to-region-lines):
1352         Minor simplification.  (Bug#5485)
1354 2010-02-04  Glenn Morris  <rgm@gnu.org>
1356         * mail/rmail.el (rmail-show-message-1): Handle malformed
1357         quoted-printable text.  (Bug#5441)
1359         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
1361         * simple.el (visual-line-mode): Capitalize lighter.
1363 2010-02-03  John Wiegley  <jwiegley@gmail.com>
1365         * iswitchb.el (iswitchb-completions): Add bookmark files to the
1366         list of files considered for "virtual buffer" completions.
1368 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
1370         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
1371         also in case of (and (not full) (not wildcard)). This is needed,
1372         when dired is called with a list of files, which are not in
1373         `default-directory'.  (Bug#5478)
1375 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1377         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
1379 2010-02-02  Juri Linkov  <juri@jurta.org>
1381         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
1382         from unidiff to allow function-line after @@.
1384 2010-02-02  Juri Linkov  <juri@jurta.org>
1386         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
1387         '(RCS SCCS) with inverted condition.
1389 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
1391         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
1392         messages.
1394 2010-02-01  Juri Linkov  <juri@jurta.org>
1396         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
1397         compare with "pkunzip" and "pkzip" instead of only "pkzip".
1398         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
1399         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
1401 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1403         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
1404         (doc-view-revert-buffer): New command.
1405         (doc-view-mode-map): Use it.
1407 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
1409         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
1410         pending merge is detected.
1412 2010-01-31  Juri Linkov  <juri@jurta.org>
1414         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
1415         beginning of interactive spec like all other grep commands do.
1416         Put "all" in front of "gz".  (Bug#5260)
1418 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
1420         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
1422 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
1424         * dirtrack.el (dirtrack): Warn instead of signalling error if the
1425         regexp is incorrect (Bug#5476).
1427 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
1429         * net/tramp.el (tramp-handle-insert-directory): Handle also
1430         symlinks, when FILENAME is not in `default-directory'.
1432 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
1434         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
1435         FILE is not in `default-directory'.  (Bug#5478)
1437         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
1438         of SWITCHES.  Handle the case, FILENAME is not in
1439         `default-directory'.  (Bug#5478)
1440         (tramp-register-file-name-handlers): Add safe-magic property.
1442 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
1444         * arc-mode.el (archive-zip-extract): Quote the argument passed to
1445         unzip (Bug#5475).
1447 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
1449         * progmodes/flymake.el (flymake-allowed-file-name-masks)
1450         (flymake-master-make-header-init): Add other C++ filename masks.
1451         (flymake-find-possible-master-files)
1452         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
1454 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
1456         Fix some busybox annoyances.
1458         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
1459         not responding." string.
1460         (tramp-open-connection-setup-interactive-shell): Dump stty
1461         settings.  Enable "neveropen" arg for all `tramp-send-command'
1462         calls.  Handle "=" in variable values properly.
1463         (tramp-find-inline-encoding): Raise an error, when no encoding is
1464         found.
1465         (tramp-wait-for-output): Check, whether PROC buffer is available.
1466         Remove spurious " ^H" sequences, sent by busybox.
1467         (tramp-get-ls-command): Suppress coloring, if possible.
1469 2010-01-28  Glenn Morris  <rgm@gnu.org>
1471         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
1473         * log-edit.el (log-edit-strip-single-file-name): Add missing
1474         :safe, :group, and :version tags.
1476 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
1478         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
1479         buffers.  (Bug#5477)
1481 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
1483         * files.el (delete-directory): Handle moving to trash without
1484         first doing recursion (Bug#5436).
1486 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
1488         * vc-hooks.el (vc-path): Mark as obsolete.
1490 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
1492         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
1493         names too.
1495         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
1496         for the short log.
1497         (vc-bzr-log-view-mode): Adjust regexp for the above change.
1499 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
1501         * progmodes/python.el: Replace reference to obsolete c-subword-mode.
1503         * vc-bzr.el (vc-bzr-revision-table): New function.
1505 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
1507         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
1508         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
1510 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
1512         Remove support for adding --signoff on commit.
1513         Future support will use an incompatible generic mechanism.
1514         * vc-git.el (vc-git-add-signoff): Remove variable.
1515         (vc-git-toggle-signoff): Remove function.
1516         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
1518         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
1519         from xterm-set-background-mode.  Return t if the background mode
1520         was set.
1521         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
1522         earlier, call it again in case the background mode has changed.
1524 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
1526         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
1527         (Bug#3541).
1529 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
1531         * emacs-lisp/assoc.el (aelement): Doc fix.
1532         (aput, adelete, amake): Use lexical-let (Bug#5450).
1534 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
1536         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
1537         is the same as subprogram call, not declaration.  (Bug#5435).
1539 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
1541         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
1542         (tramp-smb-maybe-open-connection): Use it.
1544 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
1546         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
1548 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1550         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
1551         just because we see "encoding: 8bit".
1552         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
1554 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
1556         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
1558 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
1560         * jka-compr.el (jka-compr-load): If load-file is not in
1561         load-history, try its file-truename version.  (bug#5447)
1563 2010-01-21  Alan Mackenzie  <acm@muc.de>
1565         Fix a situation where deletion of a cpp construct throws an error.
1566         * progmodes/cc-engine.el (c-invalidate-state-cache): Before
1567         invoking c-with-all-but-one-cpps-commented-out, check that the
1568         special cpp construct is still in the buffer.
1569         (c-parse-state): Record the special cpp with markers, not numbers.
1571 2010-01-21  Kenichi Handa  <handa@m17n.org>
1573         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
1574         process last-command-event, as it is now decoded first (Bug#5380).
1576 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
1578         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
1580 2010-01-20  Glenn Morris  <rgm@gnu.org>
1582         * indent.el (tab-always-indent): Fix custom-type.
1584 2010-01-19  Alan Mackenzie  <acm@muc.de>
1586         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
1587         buffer throws "args out of range".
1588         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
1589         playing the role of delimiter.
1591 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
1593         * progmodes/ada-mode.el: Fix bug#5400.
1594         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
1595         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
1596         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
1597         Improve comments in "is" portion.  Handle null procedure declaration.
1598         (ada-move-to-end): Improve doc string.
1600 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
1602         * ido.el (ido-cur-list): Initialize to nil.
1603         Remove obsolete information from commentary.
1604         (ido-choice-list): Initialize to nil.
1605         (ido-get-bufname): Reject minibuffers.
1606         (ido-make-buffer-list): If "default" is a nonexistent
1607         buffer, ignore it, as per the function's comment.
1608         (ido-kill-buffer-internal): New function.
1609         (ido-kill-buffer-at-head): Use it.
1610         (ido-visit-buffer): Likewise.
1612 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1614         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
1616 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
1618         * cedet/ede/locate.el (ede-locate-file-in-project)
1619         (ede-locate-file-in-project-impl): Fix typos in docstrings.
1620         (ede-enable-locate-on-project): Fix typos in error messages.
1622         * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
1623         (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
1624         (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
1625         (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
1626         (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
1627         Fix typos in menu help.
1629         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
1630         Fix typos in chart titles.
1632         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
1633         * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
1634         (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
1635         (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
1636         (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
1637         (semantic-parse-stream, semantic-parse-region)
1638         (semantic-parse-region-default, semantic--set-buffer-cache)
1639         (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
1640         (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
1641         (semantic-default-submodes):
1642         * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
1643         (semanticdb-create-ebrowse-database)
1644         (semanticdb-find-tags-for-completion-method)
1645         (semanticdb-find-tags-by-class-method)
1646         (semanticdb-deep-find-tags-by-name-method)
1647         (semanticdb-deep-find-tags-for-completion-method):
1648         * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
1649         (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
1650         (semanticdb-find-tags-for-completion-method)
1651         (semanticdb-find-tags-by-class-method)
1652         (semanticdb-deep-find-tags-for-completion-method):
1653         * cedet/semantic/db-find.el (semanticdb-find-translate-path)
1654         (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
1655         (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
1656         (semanticdb-find-tags-by-name-method)
1657         (semanticdb-find-tags-by-name-regexp-method)
1658         (semanticdb-find-tags-for-completion-method)
1659         (semanticdb-find-tags-by-class-method)
1660         (semanticdb-find-tags-external-children-of-type-method)
1661         (semanticdb-find-tags-subclasses-of-type-method)
1662         (semanticdb-deep-find-tags-by-name-method)
1663         (semanticdb-deep-find-tags-by-name-regexp-method)
1664         (semanticdb-deep-find-tags-for-completion-method):
1665         * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
1666         (semanticdb-enable-gnu-global-in-buffer)
1667         (semanticdb-find-tags-for-completion-method)
1668         (semanticdb-deep-find-tags-by-name-method)
1669         (semanticdb-deep-find-tags-for-completion-method):
1670         * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
1671         (javascript-mode, semanticdb-find-translate-path)
1672         (semanticdb-find-tags-for-completion-method)
1673         (semanticdb-find-tags-by-class-method)
1674         (semanticdb-deep-find-tags-by-name-method)
1675         (semanticdb-deep-find-tags-for-completion-method)
1676         (semanticdb-find-tags-external-children-of-type-method):
1677         * cedet/semantic/idle.el (semantic-idle-work-core-handler)
1678         (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
1679         (global-semantic-idle-scheduler-mode):
1680         * cedet/srecode/dictionary.el (srecode-field-value)
1681         (srecode-dictionary-add-section-dictionary):
1682         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
1683         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
1684         (describe-class, eieio-describe-generic, describe-generic):
1685         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
1686         (eieio-speedbar-expand):
1687         * emulation/viper-cmd.el (viper-exec-form-in-vi)
1688         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
1689         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
1690         (viper-del-backward-char-in-replace, viper-backward-indent)
1691         (viper-brac-function, viper-register-to-point, viper-submit-report):
1692         * net/tramp.el (tramp-remote-coding-commands):
1693         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
1694         Fix typos in docstrings.
1696 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1698         * mail/sendmail.el (mail-yank-original): Set the mark if the
1699         specified function for yanking does not do it.
1701 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
1703         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
1705         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
1706         resyncing a directory.
1708 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
1710         * progmodes/ada-mode.el: Fix bug#1920.
1711         (ada-ident-re): Delete ., allow multibyte characters.
1712         (ada-goto-label-re): New; matches goto labels.
1713         (ada-block-label-re): New; matches block labels.
1714         (ada-label-re): New; matches both.
1715         (ada-named-block-re): Deleted; callers changed to use
1716         `ada-block-label-re' instead.
1717         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
1718         Use `ada-block-label-re'.
1719         (ada-indent-on-previous-lines): Improve handling of goto labels.
1720         (ada-get-indent-block-start): Special-case block label.
1721         (ada-get-indent-label): Split into `ada-indent-block-label' and
1722         `ada-indent-goto-label'.
1723         (ada-goto-stmt-start, ada-goto-next-non-ws):
1724         Optionally ignore goto labels.
1725         (ada-goto-next-word): Simplify.
1726         (ada-indent-newline-indent-conditional): Insert newline before
1727         trying to fix indentation; doc fix.
1729 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
1731         * calc/calc.el (calc-command-flags): Give it an initial value.
1733 2010-01-17  Glenn Morris  <rgm@gnu.org>
1735         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
1737 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1739         * cedet/semantic.el (semantic-mode):
1740         * files.el (minibuffer-with-setup-hook):
1741         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
1742         (artist-key-draw-continously, artist-key-do-continously-continously)
1743         (artist-key-set-point-continously, artist-mouse-draw-continously):
1744         Fix typos in docstrings.
1746 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
1748         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
1749         return t (Bug#3898).
1751 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
1753         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
1754         can parse the output of the external commands (Bug#5279).
1756 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
1758         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
1760 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
1762         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
1764         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
1766         * startup.el (command-line): Remove unused --icon-type arg.
1767         Handle --display arg, passing it to command-line-1 (Bug#5392).
1769 2010-01-16  Mario Lang  <mlang@delysid.org>
1771         * cedet/ede/cpp-root.el (ede-cpp-root-project):
1772         * cedet/ede/files.el (ede-expand-filename):
1773         * cedet/ede/simple.el (ede-simple-project):
1774         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
1775         (semantic-complete-inline-tag-engine):
1776         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
1777         * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
1778         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
1779         * cedet/semantic/db.el (semanticdb-equivalent-mode):
1780         * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
1781         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
1782         * emacs-lisp/chart.el (chart-translate-namezone):
1783         * textmodes/artist.el (artist-compute-popup-menu-table):
1784         Remove duplicated words in doc-strings.
1786 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
1788         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
1789         to mairix-search to suppress threading (Bug#5342).
1791 2010-01-15  Kenichi Handa  <handa@m17n.org>
1793         * international/mule-cmds.el (canonicalize-coding-system-name):
1794         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
1796 2010-01-15  Glenn Morris  <rgm@gnu.org>
1798         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
1800         * wid-edit.el (widget-keymap): Doc fix.
1802         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
1803         former seems to be more widely accepted by various svn versions.
1805 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
1807         * find-cmd.el (find-constituents):
1808         * vc-arch.el (vc-arch-root):
1809         * window.el (window-body-height, pop-up-frames):
1810         * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
1811         (semantic-no-reparse-needed-change-hook):
1812         * cedet/srecode/insert.el (srecode-resolve-argument-list)
1813         (srecode-template-inserter-blank, srecode-template-inserter-variable)
1814         (srecode-template-inserter-ask, srecode-template-inserter-width)
1815         (srecode-template-inserter-section-start)
1816         (srecode-template-inserter-section-end, srecode-insert-method):
1817         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
1818         * progmodes/ada-stmt.el (ada-if):
1819         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
1820         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
1821         (ispell-encoding8-command, ispell-aspell-supports-utf8)
1822         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
1824         * progmodes/flymake.el (flymake-post-syntax-check):
1825         Fix typo in error message.
1827 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
1829         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
1830         which is always a string.  (Bug#5313)
1832 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
1834         * progmodes/ada-xref.el (ada-default-prj-properties):
1835         Simplify previous change.
1837 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
1839         * progmodes/ada-xref.el (ada-default-prj-properties):
1840         Default ada_project_path to $ADA_PROJECT_PATH.
1842 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
1844         * progmodes/ada-mode.el (ada-create-keymap):
1845         Override `narrow-to-defun' with `ada-narrow-to-defun'.
1847 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
1849         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
1850         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
1851         (ada-get-current-indent, ada-imenu-generic-expression)
1852         (ada-which-function): Check for it.
1854 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
1856         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
1857         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
1859 2010-01-14  Glenn Morris  <rgm@gnu.org>
1861         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
1863 2010-01-14  Kenichi Handa  <handa@m17n.org>
1865         * composite.el (auto-composition-mode): Make it a buffer local
1866         variable (permanent-local).
1867         (auto-composition-function): Set the default value to
1868         auto-compose-chars.
1869         (auto-composition-mode): Make it a simple function, not a minor mode.
1870         (global-auto-composition-mode): Likewise.
1871         (turn-on-auto-composition-if-enabled): Delete it.
1873 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
1875         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
1877 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
1879         * files.el (copy-directory): Compute target for recursive
1880         directories with identical names.  (Bug#5343)
1882 2010-01-12  Glenn Morris  <rgm@gnu.org>
1884         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
1885         it to bug-gnu-emacs rather than emacs-pretest-bug.
1887 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
1889         * cedet/data-debug.el (data-debug): Fix customization group reference.
1891 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
1893         * cedet/semantic/analyze.el (semantic-analyze-push-error)
1894         (semantic-analyze-context, semantic-analyze-context-assignment)
1895         (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
1896         * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
1897         (semantic-java-doc-keywords-map):
1898         * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
1899         (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
1900         (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
1901         (semantic-c-classname, semantic-format-tag-uml-prototype)
1902         (semantic-c-dereference-namespace, semantic-analyze-type-constants):
1903         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
1904         (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
1905         (semantic-get-local-variables, semantic-end-of-command)
1906         (semantic-beginning-of-command, semantic-ctxt-current-class-list)
1907         (lisp-mode):
1908         * cedet/semantic/bovine/make.el (makefile-mode):
1909         * cedet/semantic/wisent/python.el (wisent-python-string-re)
1910         (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
1911         (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
1912         (semantic-lex, semantic-get-local-variables, python-mode):
1913         * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
1914         * cedet/srecode/extract.el (srecode-extract-state-set)
1915         (srecode-extract-method): Fix typos in docstrings.
1917 2010-01-11  Sam Steingold  <sds@gnu.org>
1919         * imenu.el (imenu-default-create-index-function): Detect infinite
1920         loops caused by imenu-prev-index-position-function.
1922 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
1924         * htmlfontify.el (htmlfontify-load-rgb-file)
1925         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
1926         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
1927         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
1928         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
1929         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
1930         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
1931         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
1932         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
1933         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
1934         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
1935         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
1936         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
1937         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
1938         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
1939         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
1940         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
1941         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
1942         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
1943         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
1944         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
1945         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
1946         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
1947         backslash-quoting from parentheses, etc.
1949 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
1951         * progmodes/js.el: Autoload javascript-mode alias.
1953 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
1955         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
1956         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
1957         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
1958         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
1959         Fix typos in docstrings.
1960         (ffap-url-regexp): Doc fix.
1961         (ffap-at-mouse): Fix typo in message.
1963 2010-01-11  Glenn Morris  <rgm@gnu.org>
1965         * version.el (emacs-copyright): Set copyright year to 2010.
1967 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1969         * format.el (format-annotate-function): Only set
1970         write-region-post-annotation-function after running to-fn so as not to
1971         affect nested write-region calls (bug#5273).
1973 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
1975         * cedet/semantic.el (semantic-new-buffer-setup-functions):
1976         Add python parser.
1978         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
1979         wisent/python.el.
1981 2010-01-10  Richard Kim  <emacs18@gmail.com>
1983         * cedet/semantic/wisent/python-wy.el:
1984         * cedet/semantic/wisent/python.el: New files.
1986 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
1988         * man.el (Man-goto-section): Signal error if the section is not
1989         found (Bug#5317).
1991 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
1993         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
1994         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
1996 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
1998         * progmodes/compile.el: Don't treat compile-command as safe if
1999         compilation-read-command might be nil (Bug#4218).
2001 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
2003         * startup.el (command-line-1): Use orig-argi to check for ignored X and
2004         NS options.
2006 2010-01-08  Kenichi Handa  <handa@m17n.org>
2008         * international/fontset.el (build-default-fontset-data):
2009         Exclude characters in scripts kana, hangul, han, or cjk-misc.
2011 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
2013         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
2014         to `create-file-buffer' as it expects, not just a buffer name.
2015         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
2016         to help uniquify.  (Bug#3224)
2018 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
2020         * font-setting.el (font-setting-change-default-font): Use user-spec
2021         instead of name.
2023 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
2025         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
2027 2010-01-05  Tom Tromey  <tromey@redhat.com>
2029         * progmodes/python.el (python-font-lock-keywords):
2030         Handle qualified decorators (Bug#881).
2032 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2034         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
2035         in a lightweight checkout.
2037 2010-01-05  Kenichi Handa  <handa@m17n.org>
2039         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
2041 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
2043         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
2045 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
2047         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
2048         checkouts.  (Bug#618)
2049         (vc-bzr-log-view-mode): Also highlight the author.
2050         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
2051         (vc-bzr-shelve-menu-map):
2052         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
2053         (vc-bzr-shelve-apply): Make prompt more explicit.
2055 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
2057         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
2058         They are valid characters in URL paths (rfc3986), and at least
2059         Firefox does not understand the encoded version (Bug#3166).
2061 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
2063         * progmodes/octave-mod.el (octave-end-keywords)
2064         (octave-block-begin-or-end-regexp, octave-block-match-alist):
2065         Add "end" keyword (Bug#3061).
2066         (octave-end-as-array-index-p): New function.
2067         (calculate-octave-indent): Use it.
2069 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2071         * bookmark.el: Consistently put the text property on the bookmark name.
2072         (bookmark-bmenu-marks-width): Bump back to 2, to include
2073         annotation marks.
2074         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
2075         property on the bookmark name, instead of not putting it at all.
2076         (bookmark-bmenu-list): Fix where we put the text property.
2078 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2080         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
2081         for showing buffer modified state (as added in the previous change).
2083 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2085         * bookmark.el: Show modified state of bookmark buffer more accurately.
2086         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
2087         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
2088         (with-buffer-modified-unmodified): New macro.
2089         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
2090         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
2091         Use new macro to preserve the buffer modified state.
2093 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2095         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
2096         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
2097         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
2098         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
2099         (bookmark-bmenu-rename, bookmark-bmenu-locate)
2100         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
2101         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
2103 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
2105         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
2106         Make the lines in the generated doc string shorter.  (Bug#4668)
2108 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
2110         * net/rcirc.el: Add follow-link binding (Bug#4738).
2112 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
2114         * Makefile.in (bzr-update): Rename from cvs-update.
2115         (cvs-update): New target for backward compatibility.
2117         * makefile.w32-in (bzr-update): Rename from cvs-update.
2118         (cvs-update): New target for backward compatibility.
2120 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2122         * bookmark.el: Remove gratuitous gratitude.
2124 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2126         * bookmark.el (bookmark-bmenu-any-marks): New function
2127         (bookmark-bmenu-save): Clear buffer modification if no marks.
2129 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2131         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
2132         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
2133         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
2134         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
2136         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
2137         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
2138         To: emacs-devel {_AT_} gnu.org
2139         Subject: bookmark.el bug report
2140         Date: Mon, 28 Dec 2009 14:19:16 +0800
2141         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
2143 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
2145         * bookmark.el: Improvements suggested by Drew Adams:
2146         (bookmark-bmenu-ensure-position): New name for
2147         `bookmark-bmenu-check-position'.  Just ensure the position,
2148         don't return any meaningful value.
2149         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
2150         New constants.
2152 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
2154         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
2155         (bookmark-yank-point, bookmark-bmenu-check-position):
2156         Fix typos in docstrings.
2157         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
2158         (bookmark-name-from-full-record, bookmark-get-position)
2159         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
2160         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
2161         Remove useless quoting of parenthesis, etc. in docstrings.
2163         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
2164         (ediff-append-custom-diff): Fix typo in error message.
2165         (ediff-meta-mark-equal-files): Fix typos in messages.
2167         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
2169         * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
2170         Fix typo in docstring.
2172         * net/imap-hash.el (imap-hash-make): Doc fix.
2173         (imap-hash-test): Fix typo in error message; reflow docstring.
2174         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
2175         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
2176         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
2177         Fix typos in docstrings.
2178         (imap-hash-open-connection): Fix typo in error message.
2180         * play/gomoku.el (gomoku): Fix typos in docstring.
2182         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
2183         (gdb-jsonify-buffer): Fix typos in docstring.
2184         (gdb-goto-breakpoint): Fix typo in error message.
2185         ("Display Other Windows"): Fix typo in help message.
2186         (gdb-speedbar-expand-node): Fix typo in question.
2188         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
2189         (idlwave-html-system-help-location, idlwave-html-help-location)
2190         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
2191         (idlwave-help-browser-generic-args, idlwave-help-directory)
2192         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
2193         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
2194         (idlwave-online-help, idlwave-help-html-link)
2195         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
2196         Fix typos in docstrings.
2197         (idlwave-help-with-source, idlwave-help-find-routine-definition):
2198         Reflow docstrings.
2199         (idlwave-help-assistant-start): Fix typo in error message.
2201         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
2202         (octave-electric-space): Fix typos in docstrings.
2204 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
2206         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
2208 2010-01-01  Juri Linkov  <juri@jurta.org>
2210         * comint.el (comint-input-ring-size): Make it a defcustom and
2211         increase the default to 500 (Bug#5148).
2213 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
2215         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
2216         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
2217         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
2219 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
2221         Show working revision correctly for mercurial.
2222         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
2223         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
2225 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
2227         Declare some functions for the byte-compiler.
2228         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
2229         (speedbar-timer-fn, speedbar-change-expand-button-char)
2230         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
2232 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
2234         This changeset reverts GDB Graphical Interface to use annotations.
2235         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
2237 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
2239         Make vc-dir work on subdirectories of the bzr root.
2240         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
2241         file names relative to it.
2242         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
2243         relative directory to vc-bzr-after-dir-status.
2245 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
2247         * font-lock.el (font-lock-refresh-defaults): New function, which
2248         can be used to let font-lock react to external changes in
2249         variables like font-lock-defaults and keywords.
2250         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
2252 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
2254         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
2256         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
2258 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
2260         Supersede color.diff settings in git log (bug#5211).
2262         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
2263         escape chars in its output when the user has color.diff set to `always'.
2264         This fix works on git 1.4.2 and newer (released on 2006-08-13).
2266 2009-12-26  Kevin Ryde  <user42@zip.com.au>
2268         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
2269         node.  Keep previous "Index" name to work with past coreutils too.
2271         * man.el (man): Revise docstring a bit to show -a and -l as
2272         examples.  Add -k description since support for it has otherwise
2273         been a secret.  (Further to bug#3717.)
2274         (Man-bgproc-sentinel): When "-k foo" produces no output show error
2275         "no matches" rather than "Can't find manpage", as the latter reads
2276         like -k was interpreted as a page name, which is not so.  (Bug#5431)
2278 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
2280         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
2281         switches.  Check also for //SUBDIRED// line.
2283 2009-12-25  Kenichi Handa  <handa@m17n.org>
2285         * language/indian.el (devanagari-composable-pattern): Fixed to
2286         handle ZWNJ and ZWJ.  Use it in composition-function-table for
2287         Devanagari.
2288         (malayalam-composable-pattern): Fix previous change.
2290 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2292         * ps-print.el (ps-face-attributes): It was not returning the
2293         attribute face for faces specified as string.  Reported by harven
2294         <harven@free.fr>.
2295         (ps-print-version): New version 7.3.5.
2297 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
2299         * calendar/icalendar.el (icalendar--convert-tz-offset):
2300         Fix timezone names.
2301         (icalendar--convert-tz-offset): Fix the "last-day-problem".
2302         (icalendar--add-diary-entry): Remove the trailing blank that
2303         diary-make-entry inserts.
2305 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
2307         Make `file-expand-wildcards' work for remote files.
2309         * files.el (file-expand-wildcards): In case of remote files, check
2310         only local file name part for wildcards.  Provide feature 'files
2311         and subfeature 'remote-wildcards.  (Bug#5198)
2313         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
2314         if there is already an established connection.
2315         (tramp-advice-file-expand-wildcards): Remove it.
2317         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
2318         (tramp-advice-file-expand-wildcards): Move from tramp.el.
2319         Activate advice for older GNU Emacs versions.  (Bug#5237)
2321 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
2323         Some doc fixes (more needed).
2325         * find-cmd.el (find-constituents): Reflow docstring.
2326         (find-cmd, find-prune, find-command): Fix typos in docstrings.
2327         (find-generic): Doc fix.
2329 2009-12-17  Juri Linkov  <juri@jurta.org>
2331         Fix regression from 23.1 to allow multiple modes in Local Variables.
2333         * files.el (hack-local-variables-filter): While ignoring duplicates,
2334         don't take `mode' into account.
2335         (hack-local-variables-filter, hack-dir-local-variables):
2336         Don't remove duplicate `mode' from local-variables-alist (like `eval').
2338 2009-12-17  Juri Linkov  <juri@jurta.org>
2340         Make `dired-diff' safer.  (Bug#5225)
2342         * dired-aux.el (dired-diff): Signal an error when `file' equals to
2343         `current' or when `file' is a directory of the `current' file.
2345 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
2347         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
2348         unconditionally preloaded files.
2350 2009-12-16  Juri Linkov  <juri@jurta.org>
2352         Revert to old 23.1 logic of using the file at the mark as default.
2353         * dired-aux.el (dired-diff): Use the file at the mark as default
2354         if it's not the same as the current file, and the target dir is
2355         the current dir or the mark is active.  Add the current file
2356         as the arg of `dired-dwim-target-defaults'.  Use the default file
2357         in the prompt.  (Bug#5225)
2359 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
2361         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
2362         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
2363         (tramp-check-for-regexp): Check also, when an echoing shell stops
2364         to echo sent commands.
2366 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
2368         * Makefile.in: Revert last change (Bug#5191).
2370 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
2372         * vc-hg.el (vc-hg-print-log): Fix argument order.
2373         (vc-hg-working-revision): Make sure the command is executed in a
2374         known environment so that we can parse the output.  (Bug#4417)
2376 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
2378         * progmodes/python.el (python-symbol-completions): Remove text
2379         properties from symbol string before calling python-send-receive.
2381 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
2383         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
2384         when there are values for both file and line.  (Bug#5060)
2386 2009-12-14  Juri Linkov  <juri@jurta.org>
2388         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
2389         whitespace after the file name of the first line of unified format,
2390         because git-diff doesn't output whitespace and file modification time
2391         after the file name.
2393 2009-12-14  David Kastrup  <dak@gnu.org>
2395         * info.el (Info-hide-cookies-node): Before hiding a cookie,
2396         check if it already has the `display' property added by
2397         `Info-display-images-node', and not put the `invisible' property
2398         in this case.
2400 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
2402         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
2403         (semantic-mru-bookmark-mode): Doc fixes.
2405         * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
2406         of assert.
2408 2009-12-13  Glenn Morris  <rgm@gnu.org>
2410         * mail/emacsbug.el (message-sort-headers): Define for compiler.
2411         (report-emacs-bug): In message-mode, sort manually before storing
2412         original report text.  (Bug#5178)
2413         Remove superfluous save-excursion.
2415 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
2417         * net/dbus.el (dbus-property-handler): Filter lambda forms out
2418         when responding to "GetAll" properties.
2420 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
2422         * simple.el (compose-mail): Remove mail-setup-with-from from
2423         customization checks.
2425 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
2427         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
2428         RAR archives created on Unix systems.
2430 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2432         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
2433         the varalias that was accidentally removed by the 2009-11-19 change
2434         (bug#5186).
2436 2009-12-12  Kenichi Handa  <handa@m17n.org>
2438         * language/indian.el (indian-compose-regexp): New function.
2439         (malayalam-composable-pattern): Fix the pattern.
2440         (composition-function-table): Set malayalam-composable-pattern for
2441         Malayalam characters.
2443 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
2445         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
2446         rather than down-mouse-1, based on follow-link conventions.
2448         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
2449         are compiled.
2451 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
2453         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
2454         (verilog-vmm-statement-re, verilog-ovm-statement-re)
2455         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
2456         (verilog-leap-to-head, verilog-backward-token):
2457         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
2459 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
2461         * progmodes/verilog-mode.el (verilog-auto-lineup)
2462         (verilog-nameable-item-re): Cleanup user-visible spelling and
2463         documentation errors.  One reported by Gary Delp.
2464         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
2465         (verilog-read-decls): Fix AUTOWIRE with types declared in a
2466         package, bug195.  Reported by Pierre-David Pfister.
2468 2009-12-11  Glenn Morris  <rgm@gnu.org>
2470         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
2472         * mail/emacsbug.el: No longer require sendmail.
2473         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
2474         (report-emacs-bug-orig-text): Doc fix.
2475         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
2476         New local variables, to adapt to different mail-user-agents.
2477         (report-emacs-bug): Fix test for a gnu.org address.
2478         Use overlays for emphasis, since font-lock defeats 'face property.
2479         Pretest bugs also end up at the newsgroup these days.
2480         Stop message-mode stripping text properties.
2481         Set and use the new buffer-local variables.
2482         (report-emacs-bug-hook): Add doc-string.
2483         Remove some unnecessary save-excursions and simplify.
2484         Use the appropriate hook and send-command.
2486         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
2487         capitalization of some menu entries.
2489 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2491         * whitespace.el (whitespace-display-char-on): Ensure
2492         `buffer-display-table' is unique when two or more windows are
2493         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
2494         New version 12.1.
2496 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
2498         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
2499         characters in the Attribute field.
2501 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
2503         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
2505 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2507         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
2508         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
2509         Disregard autoload-excludes.
2510         (update-directory-autoloads): Obey autoload-excludes here instead.
2511         But don't store its contents in no-autoloads and remove entries that
2512         refer to excludes files.
2514 2009-12-10  Glenn Morris  <rgm@gnu.org>
2516         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
2517         (expand-mail-aliases): Define for compiler.
2519         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
2520         Define for compiler.
2522         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
2523         appropriate for the mail-user-agent in use.
2525 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
2527         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
2529 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
2531         Fix short log parsing and fontification.
2532         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
2533         Fix fontification for the [merge] label.
2535 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
2537         Drop some properties to avoid surprises (bug#5002).
2538         * htmlfontify.el (hfy-ignored-properties): New defcustom.
2539         (hfy-fontify-buffer): Use it.
2541 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2543         Minor cleanup.
2544         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
2545         Adjust all callers.
2546         (ffap-locate-file): Remove unused arg `dir-ok' and make other
2547         args compulsory.  Adjust callers.
2548         (ffap-gopher-at-point): Remove unused var `name'.
2550         Get rid of the ELCFILES abomination.
2551         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
2552         (compile-elcfiles): New phony target.
2553         (compile-main): Compute ELCFILES dynamically.
2554         (compile-clean): New target to remove left-over elc files.
2555         (compile, all): Use it.
2557 2009-12-09  Kenichi Handa  <handa@etlken>
2559         * international/mule-diag.el: Require help-mode instead of help-fns.
2561 2009-12-09  Kenichi Handa  <handa@m17n.org>
2563         * international/mule-cmds.el (ucs-names): Supply sufficiently
2564         fine ranges instead of pre-calculating accurate ranges.
2565         Iterate with bigger gc-cons-threshold.
2567 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
2569         Add support for stashing a snapshot of the current tree.
2570         * vc-git.el (vc-git-stash-snapshot): New function.
2571         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
2573 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
2575         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
2576         instead of `(beginning|end)-of-line'.
2578 2009-12-08  Glenn Morris  <rgm@gnu.org>
2580         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
2582         * Makefile.in (ELCFILES): Regenerate.
2584 2009-12-07  Juri Linkov  <juri@jurta.org>
2586         Don't lazy-highlight the comint output in history Isearch mode.
2588         * comint.el (comint-history-isearch-search): Instead of
2589         `comint-line-beginning-position', use `comint-after-pmark-p'
2590         to check if point if before the process mark, and go to
2591         `process-mark' in this case.
2593 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2595         * textmodes/tex-mode.el (latex-complete)
2596         (latex-indent-or-complete): Remove.
2597         (latex-mode): Set completion-at-point-functions instead.
2599         Provide a standard completion command and hook it into TAB.
2600         * minibuffer.el (completion-at-point-functions): New var.
2601         (completion-at-point): New command.
2602         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
2603         * progmodes/python.el (python-mode-map): Use completion-at-point.
2604         (python-completion-at-point): Rename from python-partial-symbol and
2605         adjust for use in completion-at-point-functions.
2606         (python-mode): Setup completion-at-point for Python completion.
2607         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
2608         extracted from lisp-complete-symbol.
2609         (lisp-complete-symbol): Use it.
2610         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
2611         setup completion-at-point for Elisp completion.
2612         (emacs-lisp-mode-map, lisp-interaction-mode-map):
2613         Use completion-at-point.
2614         * ielm.el (ielm-map): Use completion-at-point.
2615         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
2616         * progmodes/sym-comp.el: Move to...
2617         * obsolete/sym-comp.el: Move from progmodes.
2619 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
2621         Prevent save-buffer in Rmail buffers from using the coding-system
2622         of the current message, and from clobbering the encoding mnemonics
2623         in the mode line (Bug#4623).
2625         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
2626         flag, too.
2627         (rmail-message-encoding): New variable.
2628         (rmail-write-region-annotate): Record the encoding of the current
2629         message in rmail-message-encoding.
2630         (rmail-after-save-hook): New function, restores the encoding of
2631         the current message after the message collection is saved.
2633 2009-12-07  Juri Linkov  <juri@jurta.org>
2635         * progmodes/grep.el (grep-read-files): Use `completing-read'
2636         instead of `read-string'.  Set its `collection' arg to
2637         `read-file-name-internal'.  (Bug#4301)
2639 2009-12-07  Juri Linkov  <juri@jurta.org>
2641         Correctly restore original Isearch point.  (Bug#4994)
2643         * isearch.el (isearch-mode): Move `isearch-push-state' after
2644         `(run-hooks 'isearch-mode-hook)'.
2645         (isearch-cancel): When `isearch-push-state-function' is defined,
2646         let-bind `isearch-cmds' to the first state (the last element of
2647         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
2648         function and restores the original point).  Otherwise, move point
2649         to `isearch-opoint'.
2651 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2653         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
2654         chars that don't have names, so the table can be built much faster at
2655         run-time.
2657 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
2659         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
2660         change.  Suggested by David Kastrup.
2662         * simple.el (compose-mail): Check for incompatibilities and warn.
2663         (compose-mail-user-agent-warnings): New option.
2665 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
2667         Support showing a single log entry from vc-annotate.
2668         * vc.el (print-log): Add a new argument: START-REVISION.
2669         (vc-print-log-internal): Add a new optional argument and
2670         pass it to the backend.
2671         (vc-print-log, vc-print-root-log): Adjust callers.
2672         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
2673         buffer already displays the requested log entry, use it.
2674         Otherwise display only the log entry in question.
2675         * vc-svn.el (vc-svn-print-log):
2676         * vc-mtn.el (vc-mtn-print-log):
2677         * vc-hg.el (vc-hg-state):
2678         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
2679         (vc-git-show-log-entry): Return t on success.
2680         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
2681         (vc-bzr-show-log-entry): Return t on success.
2682         * vc-rcs.el (vc-rcs-print-log):
2683         * vc-sccs.el (vc-sccs-print-log):
2684         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
2686 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
2688         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
2689         Add menus to the meta mode.  (Bug#5043)
2691 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
2693         * ediff-init.el (ediff-event-key): Use event-to-character instead of
2694         event-key.
2696         * ediff.el (ediff-buffers-internal): Add unwind-protect.
2698 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
2700         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
2701         Berbain <raphael.berbain@gmail.com>.
2703         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
2704         characters.
2705         (tramp-initial-end-of-output): New defconst.
2706         (tramp-methods, tramp-find-shell)
2707         (tramp-open-connection-setup-interactive-shell)
2708         (tramp-maybe-open-connection): Use it.
2709         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
2710         existence of `#' and `$'.
2712         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
2713         `tramp-initial-end-of-output'.
2715 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
2717         Get the background mode from the terminal for xterm, and set
2718         faces accordingly.
2719         * term/xterm.el (xterm-set-background-mode): New function.
2720         (terminal-init-xterm): Use it in case xterm supports background
2721         color queries.  Recompute faces after getting the background
2722         color.
2724 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
2726         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
2727         number comment back on its own line, for easier parsing.
2729 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2731         Make it work for non-file buffers (bug#5102).
2732         * doc-view.el (doc-view-current-cache-dir):
2733         Use doc-view-buffer-file-name rather than buffer-file-name.
2734         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
2736 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
2738         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
2739         author field is too short.
2741 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
2743         * vc-git.el (vc-git-print-log): Handle a limit argument.
2744         Display the short log in graph form and with labels.
2745         (vc-git-log-view-mode): Handle labels.
2747         Make vc-revert change VC state from 'added to 'unregistered.
2748         * vc-git.el (vc-git-revert): Call git reset first.
2750 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
2752         * net/newst-backend.el, net/newst-plainview.el:
2753         * net/newst-reader.el, net/newst-ticker.el:
2754         * net/newst-treeview.el, net/newsticker.el:
2755         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
2757 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
2759         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
2761         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
2762         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
2763         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
2764         Update annotation regexp.
2766         * simple.el (beginning-of-visual-line): Constrain to field
2767         boundaries (Bug#5106).
2769 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
2771         * xml.el (xml-substitute-numeric-entities): Move
2772         newsticker--decode-numeric-entities in newst-backend.el to
2773         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
2774         * net/newst-backend.el (newsticker--parse-generic-feed)
2775         (newsticker--parse-generic-items)
2776         (newsticker--decode-numeric-entities): Move
2777         newsticker--decode-numeric-entities in newst-backend.el to
2778         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
2780 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
2782         * progmodes/js.el (js--js-not): Add null to the list of values.
2784 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
2786         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
2788 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2790         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
2791         delimiter if it is at the end of the current line.
2792         (bibtex-generate-url-list): Fix docstring.
2794 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2796         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
2797         minibuffer's content with itself.
2798         Fold the confirm-after-completion case into the `confirm' case.
2799         (completion-pcm-word-delimiters): Add : and / to the delimiters.
2801 2009-12-06  Kevin Ryde  <user42@zip.com.au>
2803         * ffap.el (ffap-rfc-path): Make this a defcustom since
2804         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
2806         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
2807         manuals, similar to existing setup for help-mode.  (Bug#3913.)
2809 2009-12-05  Juri Linkov  <juri@jurta.org>
2811         Save and restore dired buffer's point positions too.  (Bug#4880)
2813         * dired.el (dired-save-positions): Return in the first element
2814         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
2815         Doc fix.
2816         (dired-restore-positions): First restore buffer's position.
2817         While restoring window's positions, check if window still displays
2818         the original buffer.
2820 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
2822         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
2823         if possible.
2825         * cedet/semantic/ia.el (semantic-ia-complete-symbol):
2826         Make argument optional.
2828         * shell.el (shell): Require ansi-color (Bug#5113).
2830         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
2832         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
2834 2009-12-05  Alan Mackenzie  <acm@muc.de>
2836         * progmodes/cc-mode.el (c-before-hack-hook)
2837         (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
2838         `c-file-style' to work again.  This reversion restores the current
2839         software to its state in Emacs 23.1.  (Bug#4146)
2841 2009-12-05  Kevin Ryde  <user42@zip.com.au>
2843         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
2844         comment-start-skip to comment-end-skip as comment (Bug#4781).
2846 2009-12-05  Juri Linkov  <juri@jurta.org>
2848         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
2849         for virtual nodes.  (Bug#4147)
2850         (Info-find-node-2): Set `Info-current-node-virtual' to nil
2851         when moving from a virtual node.
2852         (Info-mode-menu): Add `Info-virtual-index' to the menu.
2853         (Info-mode): Add `Info-virtual-index' to the docstring.
2855 2009-12-05  Eric Ludlam  <zappo@gnu.org>
2857         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
2858         Describe project macro symbols.
2860         * cedet/semantic/complete.el (semantic-complete-do-completion):
2861         Don't call semantic-collector-current-exact-match.
2863         * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
2864         ede-objects as targets.
2866         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
2867         a target's object list even if compiler vars are already in the
2868         Makefile.
2870         * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
2871         list of headers producing necessary macros.
2873 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
2875         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
2876         track of the buffer position of the end of a BibTeX entry as this
2877         position may change during reformatting.
2878         (bibtex-format-entry): Remove whitespace before processing
2879         numerical fields so that we recognize the latter properly.
2880         (bibtex-reformat): Do not use push which changes the global value
2881         of bibtex-entry-format.
2882         (bibtex-field-braces-alist, bibtex-field-strings-alist)
2883         (bibtex-field-re-init): Replace only space characters by regexp
2884         for whitespace.
2885         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
2886         (bibtex-initialize): Also update bibtex-strings.
2887         (bibtex-kill-field): Preserve white space at end of entry.
2888         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
2889         Update bibtex-reference-keys.
2891 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2893         * minibuffer.el (completion-pcm--merge-try): Also consider placing
2894         point after a star, if that's the only place where modifications can
2895         make progress.
2897 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
2899         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
2900         in docstrings.
2902 2009-12-04  Juri Linkov  <juri@jurta.org>
2904         * proced.el (proced): Call `(proced-update t)' to update process
2905         information instead of only running proced-post-display-hook.
2906         (proced-send-signal): Add a leading space to the buffer name
2907         " *Marked Processes*" to make this buffer ephemeral.
2909 2009-12-04  Juri Linkov  <juri@jurta.org>
2911         * dired.el (dired-auto-revert-buffer): New defcustom.
2912         (dired-internal-noselect): Use it.
2914 2009-12-04  Juri Linkov  <juri@jurta.org>
2916         Change roles of modes and functions in image-mode.el (Bug#5062).
2918         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
2919         in `auto-mode-alist'.
2920         (image-mode-previous-major-mode): New variable.
2921         (image-minor-mode-map): Rename from `image-mode-text-map'.
2922         (image-mode): Move graceful error-handling code from
2923         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
2924         (image-minor-mode): Remove all image-handling code.
2925         Replace `image-mode-text-map' with `image-minor-mode-map'.
2926         Check for `image-type' in mode-line format string.
2927         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
2928         (image-mode-as-text): New function with most code from
2929         `image-mode-maybe'.
2930         (image-toggle-display-text): Move code that removes image
2931         properties from `image-toggle-display' to here.
2932         (image-toggle-display-image): New function with code that adds
2933         image properties copied from `image-toggle-display'.
2934         (image-toggle-display): Remove most code with leaving only code
2935         that toggles between `image-mode-as-text' and `image-mode'.
2937 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
2939         * net/newst-treeview.el
2940         (newsticker--treeview-list-highlight-start): Restored call to
2941         save-excursion: Selected item was stuck.
2942         (newsticker--treeview-list-select): New.
2943         (newsticker--treeview-item-show-text)
2944         (newsticker--treeview-item-show)
2945         (newsticker--treeview-item-update): Use new
2946         newsticker-treeview-item-mode.
2947         (newsticker-treeview-update): Keep current item.
2948         (newsticker-treeview-next-new-or-immortal-item): Doc change.
2949         (newsticker--treeview-first-feed): Doc change.
2950         (newsticker-treeview-list-menu)
2951         (newsticker-treeview-item-menu): Added menu entries.
2952         (newsticker-treeview-item-mode): New.
2954         * net/newst-backend.el (newsticker-customize): Delete other
2955         windows.
2957 2009-12-04  Sam Steingold  <sds@gnu.org>
2959         * log-view.el (log-view-mode-map): "q" calls quit-window,
2960         like in all the other non-self-insert buffers.
2962 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2964         Minor cleanup.
2965         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
2966         key decoding rather than do it manually via last-input-event +
2967         ascii-character.
2968         (term-exec): Use delete-and-extract-region.
2969         (term-handle-ansi-terminal-messages): Remove unused var `end'.
2970         (term-process-pager): Remove unused var `i'.
2971         (term-dynamic-simple-complete): Make obsolete.
2972         (serial-update-config-menu): Remove unused vars `y' and `str'.
2973         (term-update-mode-line): Remove unused var `temp'.
2975 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
2977         Limit the number of log entries displayed by default.
2978         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
2979         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
2980         using a prefix argument.
2982 2009-12-03  Glenn Morris  <rgm@gnu.org>
2984         * progmodes/idlwave.el (class): Restore still useful declaration.
2986 2009-12-03  Alan Mackenzie  <acm@muc.de>
2988         Enhance `c-parse-state' to run efficiently in "brace deserts".
2990         * progmodes/cc-mode.el (c-basic-common-init):
2991         Call c-state-cache-init.
2992         (c-neutralize-syntax-in-and-mark-CPP): Rename from
2993         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
2994         placing `category' properties value 'c-cpp-delimiter at its boundaries.
2996         * progmodes/cc-langs.el (c-before-font-lock-function):
2997         c-extend-and-neutralize-syntax-in-CPP has been renamed
2998         c-neutralize-syntax-in-and-mark-CPP.
3000         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
3001         with `category' properties now, not `syntax-table' ones.
3003         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
3004         enhanced (but slower) version of c-end-of-macro that won't land
3005         inside a literal or on another awkward character.
3006         (c-state-cache-too-far, c-state-cache-start)
3007         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
3008         (c-state-nonlit-pos-cache-limit, c-state-point-min)
3009         (c-state-point-min-lit-type, c-state-point-min-lit-start)
3010         (c-state-min-scan-pos, c-state-brace-pair-desert)
3011         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
3012         buffer local variables.
3013         (c-state-literal-at, c-state-lit-beg)
3014         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
3015         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
3016         (c-state-cache-top-paren, c-state-cache-after-top-paren)
3017         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
3018         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
3019         (c-renarrow-state-cache)
3020         (c-append-lower-brace-pair-to-state-cache)
3021         (c-state-push-any-brace-pair, c-append-to-state-cache)
3022         (c-remove-stale-state-cache)
3023         (c-remove-stale-state-cache-backwards, c-state-cache-init)
3024         (c-invalidate-state-cache-1, c-parse-state-1)
3025         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
3026         (c-parse-state): Enhance and refactor.
3027         (c-debug-parse-state): Amend to deal with all the new variables.
3029         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
3030         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
3031         modify to use category text properties rather than syntax-table ones.
3032         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
3033         to switch off/on the syntactic paren property of C++ template
3034         delimiters using the category property.
3035         (c-with-<->-as-parens-suppressed): Macro to invoke code with
3036         template delims suppressed.
3037         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
3038         New constant/macros which apply category properties to the start
3039         and end of preprocessor constructs.
3040         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
3041         "comment out" the syntactic value of characters in preprocessor
3042         constructs.
3043         (c-with-cpps-commented-out)
3044         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
3045         with characters in all or all but one preprocessor constructs
3046         "commented out".
3048 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
3050         * proced.el (proced-filter-alist): Use regexp-quote.
3052 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
3054         Cleanup.
3055         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
3056         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
3057         arguments.  Expand `default-directory'.
3059         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
3060         the benefit of returning an expanded localname.
3061         (tramp-tramp-file-p): Handle the case NAME is not a string.
3063 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3065         Add support for bzr shelve/unshelve.
3066         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
3067         (vc-bzr-extra-menu-map): New variables.
3068         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
3069         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
3070         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
3071         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
3072         (vc-bzr-dir-extra-headers): Display shelves.
3074         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
3076 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3078         * textmodes/bibtex.el (bibtex-complete-internal):
3079         Use completion-in-region.
3080         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
3082 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
3084         Support applying stashes.  Improve UI.
3085         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
3086         (vc-git-stash-apply, vc-git-stash-pop)
3087         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
3088         (vc-git-stash-menu): New functions.
3089         (vc-git-stash-menu-map): New variable.
3090         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
3092 2009-12-03  Glenn Morris  <rgm@gnu.org>
3094         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
3095         (vc-print-log-internal): Fix previous change.
3096         (vc-revert): Correct pluralization.
3098 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3100         * progmodes/make-mode.el (makefile-special-targets-list): No need for
3101         it to be an alist any more.
3102         (makefile-complete): Use completion-in-region.
3104         * progmodes/octave-mod.el (octave-complete-symbol):
3105         Use completion-in-region.
3107         Misc cleanup.
3108         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
3109         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
3110         (idlwave-complete-class): Don't quote lambda.
3111         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
3112         (idlwave-mode-map): Move initialization into declaration.
3113         (idlwave-action-and-binding): Use backquotes.
3114         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
3115         Simplify.
3116         (idlwave-is-pointer-dereference): Remove unused var `pos'.
3117         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
3118         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
3119         `parts', and `all-parts'.
3120         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
3121         (idlwave-convert-xml-system-routine-info): Remove unused string
3122         `version-string'.
3123         (idlwave-display-user-catalog-widget): Use dolist.
3124         (idlwave-scanning-lib): Declare dynamically-scoped var.
3125         (idlwave-scan-library-catalogs): Remove unused var `flags'.
3126         (completion-highlight-first-word-only): Declare to silence bytecomp.
3127         (idlwave-popup-select): Tighten scope of `resp'.
3128         (idlwave-find-struct-tag): Remove unused var `beg'.
3129         (idlwave-after-load-rinfo-hook): Declare.
3130         (idlwave-sintern-class-info): Remove unused var `taglist'.
3131         (idlwave-find-class-definition): Remove unused var `list'.
3132         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
3133         (idlwave-what-module-find-class): Remove unused var `classes'.
3135 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
3137         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
3139 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3141         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
3142         buffers visited.  Remove redundant current-buffer-saving.
3144 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3146         Use completion-in-buffer and remove uses of dynamic scoping.
3147         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
3148         (pascal-buffer-to-use, pascal-flag): Don't declare.
3149         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
3150         (pascal-get-completion-decl, pascal-keyword-completion):
3151         Add `pascal-str' argument, save-excursion,
3152         return the found completions, and don't filter with pascal-pred.
3153         (pascal-completion-cache): New var.
3154         (pascal-completion): Don't switch buffer any more (it was never
3155         necessary).  Don't save-excursion any more (it's done by the called
3156         subroutines).  Use a cache to avoid redundant computations.
3157         Use complete-with-action rather than pascal-completion-response and
3158         let it apply the predicate as well.
3159         (pascal-complete-word): Use completion-in-buffer when
3160         pascal-toggle-completions is nil.
3161         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
3162         not used any more.
3163         (pascal-comp-defun): Don't change buffer any more.
3164         Use complete-with-action rather than pascal-completion-response and
3165         let it apply the predicate as well.
3166         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
3167         when neded.
3169 2009-12-02  Kenichi Handa  <handa@m17n.org>
3171         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
3172         shape for all Indic scripts.
3174 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3176         Use completion-in-buffer.
3177         * wid-edit.el (widget-field-text-end): New function.
3178         (widget-field-value-get): Use it.
3179         (widget-string-complete, widget-file-complete)
3180         (widget-color-complete): Use it and completion-in-region.
3181         (widget-complete): Don't narrow the buffer.
3183 2009-12-02  Glenn Morris  <rgm@gnu.org>
3185         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
3186         (rmail-select-summary): Use rmail-pop-to-buffer.
3187         * mail/rmailsum.el: Replace all pop-to-buffer calls with
3188         rmail-pop-to-buffer, to prevent horizontal splits.
3190         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
3191         save-excursion with save-current-buffer.
3192         Widen before searching.  (Bug#5093)
3193         (diary-list-sexp-entries): Remove superfluous save-excursion.
3195 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
3197         * woman.el (woman-make-bufname): Handle man-pages with "." in the
3198         name.  (Bug#5038)
3200 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
3202         * ido.el (ido-file-internal): Handle filenames at point that do
3203         not have a directory part.  (Bug#5049)
3205 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
3207         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
3208         (mpc-songs-jump-to, mpc-resume): Doc fixes.
3210 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
3212         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
3213         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
3214         any more.
3216 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3218         * comint.el (comint-insert-input): Ignore clicks to the right of
3219         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
3221         * vc.el (vc-print-log-internal): Don't wait for the process to
3222         terminate before setting up the major mode.
3224         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
3225         in case.
3227         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
3228         the last element.
3230         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
3232 2009-12-01  Glenn Morris  <rgm@gnu.org>
3234         * window.el (window--display-buffer-2): Fix previous changes.
3236 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
3238         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
3240 2009-12-01  Glenn Morris  <rgm@gnu.org>
3242         * Makefile.in (ELCFILES): Add mpc.elc.
3244 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3246         * mpc.el: New file.
3248 2009-12-01  Glenn Morris  <rgm@gnu.org>
3250         * window.el (window-to-use): Define for compiler.
3252         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
3253         consistent with others (no final period).
3255         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
3256         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
3258 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
3260         Make vc-print-log buttons work.
3261         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
3263 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
3265         * savehist.el (savehist-autosave-interval): Allow setting to nil
3266         through customize.  (Bug#5056)
3268 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
3270         Fix references to jit-lock properties.
3271         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
3272         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
3273         (perl-font-lock-special-syntactic-constructs):
3274         Quote jit-lock-defer-multiline property.
3276 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
3278         * vc-git.el (vc-git-registered): Call vc-git-root only once.
3280 2009-11-30  Juri Linkov  <juri@jurta.org>
3282         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
3283         value `buffer' of `multi-isearch-next-buffer-current-function'.
3284         Use `(current-buffer)' when `buffer' is nil.
3285         (multi-isearch-next-buffer-from-list): Don't fallback to
3286         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
3288 2009-11-30  Juri Linkov  <juri@jurta.org>
3290         * misearch.el (multi-isearch-read-buffers): Move canonicalization
3291         of buffers with `get-buffer' to `multi-isearch-buffers'.
3292         (multi-isearch-buffers, multi-isearch-buffers-regexp):
3293         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
3294         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
3295         FILES with `expand-file-name' converting relative file names
3296         to absolute.  Doc fix.  (Bug#4727)
3298 2009-11-30  Juri Linkov  <juri@jurta.org>
3300         * misearch.el (multi-isearch-read-buffers)
3301         (multi-isearch-read-matching-buffers): New functions.
3302         (multi-isearch-buffers, multi-isearch-buffers-regexp):
3303         Use them in the `interactive' spec.  Doc fix.
3304         (multi-isearch-read-files, multi-isearch-read-matching-files):
3305         New functions.
3306         (multi-isearch-files, multi-isearch-files-regexp):
3307         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
3309 2009-11-30  Juri Linkov  <juri@jurta.org>
3311         * doc-view.el (doc-view-continuous):
3312         Rename from `doc-view-continuous-mode'.
3313         (doc-view-menu): Move "Toggle display" to the top.
3314         Add submenu "Continuous" with radio buttons "Off"/"On"
3315         and "Save as Default".
3316         (doc-view-scroll-up-or-next-page)
3317         (doc-view-scroll-down-or-previous-page)
3318         (doc-view-next-line-or-next-page)
3319         (doc-view-previous-line-or-previous-page): Rename
3320         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
3322 2009-11-30  Juri Linkov  <juri@jurta.org>
3324         * comint.el (comint-mode-map): Rebind `M-r' from
3325         `comint-previous-matching-input' to
3326         `comint-history-isearch-backward-regexp'.
3327         Unbind `M-s' to allow global key binding `M-s'.
3328         Add menu items for `comint-history-isearch-backward' and
3329         `comint-history-isearch-backward-regexp'.  (Bug#3746)
3331 2009-11-30  Juri Linkov  <juri@jurta.org>
3333         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
3334         For def=recenter, replace `recenter' with `recenter-top-bottom'
3335         that is called with `this-command' and `last-command' let-bound
3336         to `recenter-top-bottom'.  When the last `def' was not `recenter',
3337         set `recenter-last-op' to nil.  (Bug#4981)
3339 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3341         Minor cleanup and simplification.
3342         * filecache.el (file-cache-add-directory)
3343         (file-cache-add-directory-recursively)
3344         (file-cache-add-from-file-cache-buffer)
3345         (file-cache-delete-file-regexp, file-cache-delete-directory)
3346         (file-cache-files-matching-internal, file-cache-display): Use dolist.
3347         (file-cache-temp-minibuffer-message): Delete function.
3348         (file-cache-minibuffer-complete): Use minibuffer-message instead.
3350         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
3351         Don't signal an error when bumping into EOB in tr, s, or y.
3353 2009-11-29  Juri Linkov  <juri@jurta.org>
3355         * startup.el (fancy-about-text): Fix wording of Guided Tour.
3356         (Bug#4960)
3358         * descr-text.el (describe-char-unidata-list): Use lowercase name
3359         for "Unicode name" like in other tags.
3361 2009-11-29  Juri Linkov  <juri@jurta.org>
3363         * ediff-util.el (ediff-minibuffer-with-setup-hook):
3364         New compatibility macro.
3365         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
3367 2009-11-29  Juri Linkov  <juri@jurta.org>
3369         Add defcustom to define the cycling order of `recenter-top-bottom'.
3370         (Bug#4981)
3372         * window.el (recenter-last-op): Doc fix.
3373         (recenter-positions): New defcustom.
3374         (recenter-top-bottom): Rewrite to use `recenter-positions'.
3375         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
3377 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
3379         Improve integration of Tramp and ange-ftp in eshell.
3381         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
3382         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
3383         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
3385         * eshell/esh-util.el (top): Require also Tramp when compiling.
3386         (eshell-directory-files-and-attributes): Check for FTP remote
3387         connection.
3388         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
3389         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
3390         (eshell-file-attributes): Handle ".".  Return `entry'.
3392         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
3393         (ange-ftp-directory-files-and-attributes)
3394         (ange-ftp-real-directory-files-and-attributes): New defuns.
3396         * net/tramp.el (tramp-maybe-open-connection): Open the remote
3397         shell with "exec" when possible.  This prevents trailing prompts
3398         in `start-file-process'.
3400 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3402         Try and remove assumptions about point-min==1.
3403         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
3404         (rng-compute-mode-line-string): Show the validation percentage in
3405         terms of the narrowed text, not the widened text.
3406         (rng-do-some-validation): Don't catch internal errors when debugging.
3407         (rng-first-error): Simplify.
3408         (rng-after-change-function): Remove work around.  AFAIK the bug has
3409         been fixed a while ago.
3411         * image-mode.el (image-minor-mode): Exit more gracefully when the image
3412         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
3414         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
3416         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
3417         `cd' doesn't always do it for us (bug#5067).
3419         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
3420         on 2009-10-25 as part of some other change (bug#5067).
3422 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3424         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
3425         `suspicious'.
3426         (byte-compile-warnings): Use byte-compile-warning-types.
3427         (byte-compile-save-excursion): Warn about use of set-buffer right
3428         after save-excursion.
3430         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
3431         the excursion as well.
3433 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
3435         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
3436         providing a Tramp related implementation of "su" and "sudo".
3437         (eshell-unix-initialize): Add "su" and "sudo".
3439 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
3441         * net/socks.el (socks-send-command): Convert binary request to
3442         unibyte before sending.  This fixes mishandling of some port
3443         numbers such as 129.
3445 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3447         * help.el (describe-bindings-internal): Remove `interactive'.
3449         * man.el (Man-completion-table): Trim a terminating "(".
3450         Remove the space between name page a section.
3451         Add the command's description on the `help-echo' property.
3452         Remove `process-connection-type' binding since it's unused by
3453         call-process.
3454         Provide completion for the "<section> <name>" format as well.
3455         (Man-default-man-entry): Remove spurious var shadowing the argument.
3457 2009-11-26  Kevin Ryde  <user42@zip.com.au>
3459         * log-view.el: Add "Keywords: tools", since its other keywords
3460         aren't in finder-known-keywords, and following vc.el.
3462         * sha1.el (sha1-string-external): default-directory "/" in case
3463         otherwise non-existent.  process-connection-type pipe for touch of
3464         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
3466 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3468         Misc coding convention cleanups.
3469         * htmlfontify.el (hfy-init-kludge-hook): Rename from
3470         hfy-init-kludge-hooks.
3471         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
3472         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
3473         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
3474         and push.
3475         (hfy-slant, hfy-weight): Use tables rather than code.
3476         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
3477         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
3478         (hfy-face-attr-for-class): Initialize `face-spec' directly.
3479         (hfy-face-to-css): Remove `nconc' with single arg.
3480         (hfy-p-to-face-lennart): Use `or'.
3481         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
3482         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
3483         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
3484         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
3485         (hfy-force-fontification): Use run-hooks.
3487 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
3489         Various minor fixes.
3490         * htmlfontify.el (hfy-default-header): Add toggle_invis since
3491         Javascript belongs in the header, not the body.
3492         (hfy-javascript): Remove.
3493         (hfy-fontify-buffer): Don't insert it any more.
3494         (hfy-face-at): Handle (face0 face1 face2) style face properties.
3495         Fix bug in invis handling when there were no invis props in a chunk.
3497 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3499         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
3501 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
3503         * finder.el (finder-mode-map): Add a menu.
3505 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
3507         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
3508         "unsigned" structs.
3510         (verilog-leap-to-head, verilog-backward-token): Handle "disable
3511         fork" statement better.
3513 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
3515         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
3516         (verilog-delete-auto, verilog-delete-empty-auto-pair)
3517         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
3518         Reported by Clay Douglass.
3520         (verilog-auto-inst, verilog-auto-star-safe)
3521         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
3522         Fix removing "// Interfaces" when saving .* expansions.  Reported by
3523         Pierre-David Pfister.
3525 2009-11-26  Glenn Morris  <rgm@gnu.org>
3527         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
3528         the scope.
3530 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
3532         * vc-annotate.el (vc-annotate-revision-previous-to-line):
3533         Really use previous revision.
3535 2009-11-25  Kevin Ryde  <user42@zip.com.au>
3537         * man.el (Man-completion-table): default-directory "/" in case
3538         doesn't otherwise exist.  process-environment COLUMNS=999 so as
3539         not to truncate long names.  process-connection-type pipe to avoid
3540         any chance of hitting the pseudo-tty TIOCGWINSZ.
3541         (man): completion-ignore-case t for friendliness and since man
3542         itself is case-insensitive on the command line.
3543         Further to Bug#3717.
3545         * arc-mode.el: Add "Keywords: files", so the details in its
3546         commentary can be reached from finder-by-keyword.
3547         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
3548         editing mode, but it's comms related and sgml-mode.el has "comm"
3549         on that basis too.
3550         * textmodes/bibtex-style.el: Add "Keywords: tex".
3551         * international/isearch-x.el, international/ja-dic-cnv.el:
3552         * international/ja-dic-utl.el, international/kkc.el:
3553         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
3555 2009-11-25  Juri Linkov  <juri@jurta.org>
3557         * man.el (Man-completion-table): Modify regexp to include
3558         section names to completion strings.  (Bug#3717)
3560 2009-11-25  Juri Linkov  <juri@jurta.org>
3562         Search recursively in gzipped files.  (Bug#4982)
3564         * progmodes/grep.el (grep-highlight-matches): Add new options
3565         `always' and `auto'.  Doc fix.
3566         (grep-process-setup): Check `grep-highlight-matches' for
3567         `auto-detect' to determine the need to compute grep defaults.
3568         Move Windows/DOS specific --colors settings handling
3569         to `grep-compute-defaults'.  Check `grep-highlight-matches'
3570         to get the value of "--color=".
3571         (grep-compute-defaults): Compute `grep-highlight-matches' when it
3572         has the value `auto-detect'.  Move Windows/DOS specific settings
3573         from `grep-process-setup'.
3574         (zrgrep): New command with alias `rzgrep'.
3576 2009-11-25  Juri Linkov  <juri@jurta.org>
3578         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
3579         to nil instead of switching off view-mode.  (Bug#4896)
3581 2009-11-25  Juri Linkov  <juri@jurta.org>
3583         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
3585         * mwheel.el (mwheel-scroll-up-function)
3586         (mwheel-scroll-down-function): New defvars.
3587         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
3588         `scroll-up', and `mwheel-scroll-down-function' instead of
3589         `scroll-down'.
3591         * doc-view.el (doc-view-scroll-up-or-next-page)
3592         (doc-view-scroll-down-or-previous-page): Add optional ARG.
3593         Use this ARG in the call to image-scroll-up/image-scroll-down.
3594         Change `interactive' spec to "P".  Goto next/previous page only
3595         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
3596         SPC/DEL case).  Doc fix.
3597         (doc-view-next-line-or-next-page)
3598         (doc-view-previous-line-or-previous-page): Rename arg to ARG
3599         for consistency.
3600         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
3601         `doc-view-scroll-up-or-next-page', and buffer-local
3602         `mwheel-scroll-down-function' to
3603         `doc-view-scroll-down-or-previous-page'.
3605 2009-11-25  Juri Linkov  <juri@jurta.org>
3607         Provide additional default values (directories at other Dired
3608         windows) via M-n in the minibuffer of some Dired commands.
3610         * dired-aux.el (dired-diff, dired-compare-directories)
3611         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
3612         `minibuffer-default' in `minibuffer-with-setup-hook'.
3613         (dired-dwim-target-directory): Find a window that displays Dired
3614         buffer instead of failing when the next window is not Dired.
3615         Use `get-window-with-predicate' to find for the next Dired window.
3616         (dired-dwim-target-defaults): New function.
3618         * ediff-util.el (ediff-read-file-name):
3619         Use `dired-dwim-target-defaults' to set `minibuffer-default'
3620         in `minibuffer-with-setup-hook'.
3622 2009-11-25  Juri Linkov  <juri@jurta.org>
3624         Provide additional default values (file name at point or at the
3625         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
3627         * minibuffer.el (read-file-name-defaults): New function.
3628         (read-file-name): Reset `minibuffer-default' to nil when
3629         it duplicates initial input `insdef'.
3630         Bind `minibuffer-default-add-function' to lambda that
3631         calls `read-file-name-defaults' in `minibuffer-selected-window'.
3632         (minibuffer-insert-file-name-at-point): New command.
3634         * files.el (file-name-at-point-functions): New defcustom.
3635         (find-file-default): Remove defvar.
3636         (find-file-read-args): Don't use `find-file-default'.
3637         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
3638         to `read-file-name'.
3639         (find-file-literally): Use `read-file-name' with
3640         `confirm-nonexistent-file-or-buffer'.
3642         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
3644         * dired.el (dired-read-dir-and-switches):
3645         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
3646         to `read-file-name'.
3647         (dired-file-name-at-point): New function.
3648         (dired-mode): Add hook `dired-file-name-at-point' to
3649         `file-name-at-point-functions'.
3651 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3653         Really make the *Completions* window soft-dedicated (bug#5030).
3654         * window.el (window--display-buffer-2): Add `dedicated' argument.
3655         (display-buffer): Pass it when needed so the dedicated flag is set
3656         after calling set-window-buffer, which would otherwise reset it.
3658 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3660         * progmodes/meta-mode.el (meta-complete-symbol):
3661         * progmodes/etags.el (complete-tag):
3662         * mail/mailabbrev.el (mail-abbrev-complete-alias):
3663         Use completion-in-region.
3665         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
3666         (dabbrev-completion): Use completion-in-region.
3667         (dabbrev--abbrev-at-point): Simplify regexp.
3669         * abbrev.el (abbrev--before-point): Use word-motion functions
3670         if :regexp is not specified (bug#5031).
3672         * subr.el (string-prefix-p): New function.
3674         * man.el (Man-completion-cache): New var.
3675         (Man-completion-table): Use it.
3677         * vc.el (vc-print-log-internal): Make `limit' optional for better
3678         compatibility (e.g. with vc-annotate.el).
3680 2009-11-24  Kevin Ryde  <user42@zip.com.au>
3682         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
3683         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
3685         * emacs-lisp/elint.el (elint-add-required-env): Better error message
3686         when .el source file not found or other error.
3688 2009-11-24  Markus Triska  <markus.triska@gmx.at>
3690         * linum.el (linum-update-window): Ignore intangible (bug#4996).
3692 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3694         Handle the [back] button properly (bug#4979).
3695         * descr-text.el (describe-text-properties): Add a `buffer' argument.
3696         Use help-setup-xref, help-buffer, and with-help-window.
3697         (describe-char): Add `buffer' argument.
3698         Pass proper command to help-setup-xref.  Don't meddle with
3699         help-xref-stack-item directly.
3700         (describe-text-category): Use with-help-window and help-buffer.
3702         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
3703         for the displayed buffer (bug#4887).
3705         * man.el (Man-completion-table): New function.
3706         (man): Use it.
3708 2009-11-24  David Reitter  <david.reitter@gmail.com>
3710         * vc-git.el (vc-git-registered): Use checkout directory (where
3711         .git is) rather than the file's directory and a relative path spec
3712         to work around a bug in git.
3714 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
3716         Improve handling of processes on remote hosts.
3718         * eshell/esh-util.el (eshell-path-env): New defvar.
3719         (eshell-parse-colon-path): New defun.
3720         (eshell-file-attributes): Use `eshell-parse-colon-path'.
3722         * eshell/esh-ext.el (eshell-search-path):
3723         Use `eshell-parse-colon-path'.
3724         (eshell-remote-command): Remove argument HANDLER.
3725         (eshell-external-command): Check for FTP remote connection.
3727         * eshell/esh-proc.el (eshell-gather-process-output):
3728         Use `file-truename', in order to start also symlinked files.
3729         Apply `start-file-process' instead of `start-process'.
3730         Shorten `command' to the local file name part.
3732         * eshell/em-cmpl.el (eshell-complete-commands-list):
3733         Use `eshell-parse-colon-path'.
3735         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
3737         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
3738         to `eshell-directory-change-hook'.
3740 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
3742         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
3743         because it could be enabled automatically if view-read-only is non-nil.
3745 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
3747         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
3748         made on 2009-11-22.
3750 2009-11-24  Glenn Morris  <rgm@gnu.org>
3752         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
3753         deleted variable bookmark-bmenu-bookmark-column.
3755         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
3756         Move after definition of global-semantic-idle-tag-highlight-mode.
3758 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3760         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
3762 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
3764         * net/browse-url.el (browse-url-filename-alist): On Windows, add
3765         two slashes to the "file:" prefix.
3766         (browse-url-file-url): De-munge Cygwin filenames before passing
3767         them to Windows browser.
3768         (browse-url-default-windows-browser): Use call-process.
3770 2009-11-23  Juri Linkov  <juri@jurta.org>
3772         Implement DocView Continuous mode.  (Bug#4896)
3773         * doc-view.el (doc-view-continuous-mode): New defcustom.
3774         (doc-view-mode-map): Bind C-n/<down> to
3775         `doc-view-next-line-or-next-page', C-p/<up> to
3776         `doc-view-previous-line-or-previous-page'.
3777         (doc-view-next-line-or-next-page)
3778         (doc-view-previous-line-or-previous-page): New commands.
3780 2009-11-23  Juri Linkov  <juri@jurta.org>
3782         Implement Isearch in comint input history.  (Bug#3746)
3783         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
3784         `isearch-mode-hook'.
3785         (comint-history-isearch): New defcustom.
3786         (comint-history-isearch-backward)
3787         (comint-history-isearch-backward-regexp): New commands.
3788         (comint-history-isearch-message-overlay): New buffer-local variable.
3789         (comint-history-isearch-setup, comint-history-isearch-end)
3790         (comint-goto-input, comint-history-isearch-search)
3791         (comint-history-isearch-message, comint-history-isearch-wrap)
3792         (comint-history-isearch-push-state)
3793         (comint-history-isearch-pop-state): New functions.
3795 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
3797         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
3798         return.
3799         (tramp-handle-make-symbolic-link)
3800         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
3801         Quote file names.
3802         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
3803         (tramp-handle-process-file): Use it.
3805 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3807         * window.el (move-to-window-line-last-op): Remove.
3808         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
3810 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
3812         Make M-r mirror the new cycling behavior of C-l.
3813         * window.el (move-to-window-line-last-op): New var.
3814         (move-to-window-line-top-bottom): New command.
3815         (global-map): Bind M-r move-to-window-line-top-bottom.
3817 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
3819         * dired-x.el (dired-guess-shell-alist-default):
3820         Support xz format.  (Bug#4953)
3822 2009-11-22  Chong Yidong  <cyd@stupidchicken.com>
3824         * cedet/srecode/map.el (srecode-get-maps):
3825         * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
3826         * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
3827         * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
3828         (semantic-toggle-decoration-style):
3829         * cedet/semantic/decorate/include.el
3830         (semantic-decoration-include-describe)
3831         (semantic-decoration-unknown-include-describe)
3832         (semantic-decoration-unparsed-include-describe)
3833         (semantic-decoration-all-include-summary):
3834         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
3835         * cedet/semantic/analyze/complete.el
3836         (semantic-analyze-possible-completions):
3837         * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
3838         (semantic-show-unmatched-syntax-mode)
3839         (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
3840         (semantic-highlight-func-mode):
3841         * cedet/semantic/util.el (semantic-describe-buffer):
3842         * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
3843         (semantic-symref-find-tags-by-name)
3844         (semantic-symref-find-tags-by-regexp)
3845         (semantic-symref-find-tags-by-completion)
3846         (semantic-symref-find-file-references-by-name)
3847         (semantic-symref-find-text):
3848         * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
3849         (senator-yank-tag):
3850         * cedet/semantic/scope.el (semantic-calculate-scope):
3851         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
3852         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
3853         (define-semantic-idle-service):
3854         * cedet/semantic/complete.el (semantic-complete-analyze-inline)
3855         (semantic-complete-analyze-inline-idle):
3856         * cedet/semantic/analyze.el (semantic-analyze-current-context):
3857         * cedet/mode-local.el (describe-mode-local-bindings)
3858         (describe-mode-local-bindings-in-mode):
3859         * cedet/ede/make.el (ede-make-check-version):
3860         * cedet/ede/locate.el (ede-enable-locate-on-project):
3861         * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
3862         (cedet-idutils-version-check):
3863         * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
3864         (cedet-gnu-global-version-check):
3865         * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
3866         (cedet-cscope-version-check): Use called-interactively-p instead
3867         of interactive-p.
3869         * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
3870         Use semantic-format-tag-prototype.
3872 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
3874         * emulation/viper-cmd.el: Use viper-last-command-char instead of
3875         last-command-char/last-command-event.
3876         (viper-prefix-arg-value): Do correct conversion of event-char for
3877         XEmacs.
3879         * emulation/viper-util.el, emulation/viper.el:
3880         Use viper-last-command-char instead of
3881         last-command-char/last-command-event.
3883         * ediff-init.el, ediff-mult.el, ediff-util.el:
3884         Replace last-command-char and last-command-event
3885         with (ediff-last-command-char) everywhere.
3887         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
3888         created in fundamental mode.
3890         * ediff.el (ediff-version): Revert the change of interactive-p to
3891         called-interactively-p.
3893 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
3895         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
3896         generation from word-movement command names.
3898 2009-11-21  Chong Yidong  <cyd@stupidchicken.com>
3900         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
3901         (semantic-complete-jump-local, semantic-complete-jump):
3902         Improve prompt string.
3904 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
3906         * cus-start.el (all): Add native condition for font-use-system-font.
3908 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
3910         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
3911         Correct the patch from 2009-11-18.  (Bug#3910)
3913 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
3915         * progmodes/subword.el: Rename from lisp/subword.el.
3917         * subword.el: Rename to progmodes/subword.el.
3919         * Makefile.in (ELCFILES): Adapt to subword.el move.
3921 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3922             Stefan Monnier  <monnier@iro.umontreal.ca>
3924         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
3925         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
3926         (bookmark-bmenu-show-filenames): Use push.
3927         (bookmark-bmenu-hide-filenames): Use local var instead of
3928         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
3929         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
3930         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
3931         filenames now that the bookmark names are always available.
3933 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3935         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
3936         (bookmark-search-pattern): Move and leave unbound.
3937         (bookmark-bmenu-mode-map): Change binding.
3938         (bookmark-read-search-input): Simplify.
3939         Don't use text-char-description.  Don't error on non-char events.
3940         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
3941         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
3942         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
3943         Use a local var for the timer.
3944         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
3945         (i.e. bookmark-bmenu-search).
3947 2009-11-21  Glenn Morris  <rgm@gnu.org>
3949         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
3951 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
3953         * net/browse-url.el (browse-url-default-windows-browser):
3954         Use cygstart for cygwin.
3956 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
3958         * bookmark.el: Formatting and doc fixes only:
3959         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
3960         (bookmark-bmenu-search): Wrap to fit within 80 columns.
3961         Minor grammar and punctuation fixes in doc string.
3962         (bookmark-read-search-input): Adjust to fit within 80 columns.
3964 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
3966         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
3967         (c-backward-into-nomenclature): Adapt to subword renaming.
3969         * subword.el (subword-forward, subword-backward, subword-mark)
3970         (subword-kill, subword-backward-kill, subword-transpose)
3971         (subword-downcase, subword-upcase, subword-capitalize)
3972         (subword-forward-internal, subword-backward-internal):
3973         Rename from forward-subword, backward-subword, mark-subword,
3974         kill-subword, backward-kill-subword, transpose-subwords,
3975         downcase-subword, upcase-subword, capitalize-subword,
3976         forward-subword-internal, backward-subword-internal.
3978 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3980         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
3981         New options.
3982         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
3983         New vars.
3984         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
3985         (bookmark-bmenu-filter-alist-by-regexp)
3986         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
3987         (bookmark-bmenu-search): New command.
3988         (bookmark-bmenu-mode-map): Bind it.
3990 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
3992         * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
3994         * cedet/semantic/idle.el (define-semantic-idle-service)
3995         (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
3997 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
3999         * progmodes/cc-cmds.el: declare-functioned forward-subword and
4000         backward-subword to quit the byte-compiler.
4002         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
4004         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
4006         * progmodes/cc-cmds.el (c-update-modeline)
4007         (c-forward-into-nomenclature, c-backward-into-nomenclature):
4008         Refer to subword.el functions instead of cc-subword.el.
4010         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
4011         subword.el functions instead of cc-subword.el.
4013         * progmodes/cc-subword.el: Rename to subword.el.
4014         * subword.el: Rename from progmodes/cc-subword.el.
4015         (subword-mode-map): Rename from c-subword-mode-map.
4016         (subword-mode): Rename from c-subword-mode.
4017         (global-subword-mode): New global minor mode.
4018         (forward-subword): Rename from c-forward-subword.
4019         (backward-subword): Rename from c-backward-subword.
4020         (mark-subword): Rename from c-mark-subword.
4021         (kill-subword): Rename from c-kill-subword.
4022         (backward-kill-subword): Rename from c-backward-kill-subword.
4023         (transpose-subwords): Rename from c-tranpose-subword.
4024         (downcase-subword): Rename from c-downcase-subword.
4025         (capitalize-subword): Rename from c-capitalize-subword.
4026         (forward-subword-internal): Rename from c-forward-subword-internal.
4027         (backward-subword-internal): Rename from c-backward-subword-internal.
4029 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
4031         * vc.el (vc-deduce-fileset): Allow non-state changing operations
4032         from a dired buffer.
4033         (vc-dired-deduce-fileset): New function.
4034         (vc-root-diff, vc-print-root-log): Use it.
4036         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
4037         nil LIMIT argument to vc-print-log-internal.
4039 2009-11-20  Glenn Morris  <rgm@gnu.org>
4041         * Makefile.in (ELCFILES): Regenerate.
4043 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
4045         * cedet/cedet.el (cedet-menu-map): Re-order menu items.
4047         * cedet/semantic.el: Enable idle-mode menu items only if
4048         global-semantic-idle-scheduler-mode is enabled.
4049         (semantic-default-submodes): Doc fix.
4051         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
4052         When turning off, disable other idle modes.
4054 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
4056         * calc/calc.el (calc-set-mode-line):
4057         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4058         (math-format-number): Rename `math-format-complement-signed' to
4059         `math-format-twos-complement'.
4061         * calc/calc-bin.el (math-format-twos-complement): Rename from
4062         math-format-complement-signed.
4063         (calc-radix): Rename `calc-complement-signed-mode' to
4064         `calc-twos-complement-mode'.
4065         (calc-octal-radix, calc-hex-radix): Add an argument for
4066         two's complement.
4068         * calc/calc-embed.el (calc-embedded-mode-vars):
4069         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4071         * calc/calc-ext.el (calc-init-extensions):
4072         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
4073         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
4075         * calc/calc-units.el (math-build-units-table-buffer):
4076         Let `calc-twos-complement-mode' be nil.
4078         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
4079         entries.
4081         * calc/calc-vec.el (calcFunc-vunpack):
4082         * calc/calc-aent.el (calc-do-calc-eval):
4083         * calc/calc-forms.el (math-format-date):
4084         * calc/calc-graph.el (calc-graph-plot):
4085         * calc/calc-math.el (math-use-emacs-fn):
4086         * calc/calccomp.el (math-compose-expr):
4087         Let `calc-twos-complement-mode' be nil.
4089 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4091         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
4092         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
4093         * minibuffer.el (completion-in-region-functions): New hook.
4094         (completion-in-region): New function.
4095         * emacs-lisp/lisp.el (lisp-complete-symbol):
4096         * pcomplete.el (pcomplete-std-complete): Use it.
4098 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4100         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
4101         (latex-complete-alist): New vars.
4102         (latex-string-prefix-p, latex-complete-bibtex-keys)
4103         (latex-complete-envnames, latex-complete-refkeys)
4104         (latex-complete-data): New functions.
4105         (latex-complete, latex-indent-or-complete): New commands.
4107         * window.el (display-buffer-mark-dedicated): New var.
4108         (display-buffer): Obey it.
4109         * minibuffer.el (minibuffer-completion-help): Use it.
4111         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
4113         * filecache.el (file-cache-add-file): Use push and cons.
4114         (file-cache-delete-file-regexp): Use push.
4115         (file-cache-complete): Use completion-in-region.
4117         * simple.el (with-wrapper-hook): Fix thinko.
4119         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
4120         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
4121         Use with-current-buffer and string-to-number.
4122         (hfy-fallback-colour-values): Use assoc-string.
4123         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
4124         (hfy-face-at): Remove unused var `found-face'.
4125         (hfy-compile-stylesheet): Remove unused var `css'.
4126         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
4127         and `orig-buffer'.
4128         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
4129         Use with-current-buffer.
4130         (hfy-text-p): Use expand-file-name and fewer setq.
4132 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
4134         * htmlfontify.el, hfy-cmap.el: New files.
4136 2009-11-19  Juri Linkov  <juri@jurta.org>
4138         * minibuffer.el (completions-format): New defcustom.
4139         (completion--insert-strings): Implement vertical format.
4141         * simple.el (switch-to-completions): Move point to the first
4142         completion when point was at the beginning of the buffer.
4144 2009-11-19  Juri Linkov  <juri@jurta.org>
4146         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
4148         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
4150 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
4152         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
4153         (mail-signature): Change default to t.
4154         (mail-from-style): Deprecate `system-default' value.
4155         (mail-insert-from-field): For default value of mail-from-style,
4156         default to `angles' unless `angles' needs quoting and `parens'
4157         does not.
4158         (mail-citation-prefix-regexp): Use citation regexp from
4159         message-mode.
4161 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
4163         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
4164         Set variables for computing the prompt for reading password.
4166 2009-11-19  Glenn Morris  <rgm@gnu.org>
4168         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
4170         * textmodes/flyspell.el (sgml-lexical-context): Declare.
4172         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
4173         (newsticker-treeview-listwindow-height): Fix custom type.
4175 2009-11-19  Kenichi Handa  <handa@m17n.org>
4177         * descr-text.el (describe-char-padded-string): Compose with TAB
4178         only if there's a font for CH.
4179         (describe-char): Fix the condition for detecting a trivial composition.
4181 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
4183         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
4184         more accurate version of the regexp.  (Bug#3910)
4186 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
4188         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
4190 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
4192         * font-setting.el (font-use-system-font): Declare for byte-compiler.
4193         (font-setting-change-default-font): Fix typo in docstring.
4195 2009-11-18  Alan Mackenzie  <acm@muc.de>
4197         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
4199 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
4201         * font-setting.el (font-use-system-font): Move ...
4203         * cus-start.el (all): ... to here.
4205 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
4207         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
4208         Don't set `ad-return-value' if `ad-do-it' doesn't.
4210         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
4211         modification time.
4213 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
4215         * menu-bar.el: Put "Use system font" in Option-menu.
4216         (menu-bar-options-save): Add font-use-system-font.
4218         * loadup.el: If feature system-font-setting or font-render-setting is
4219         there, load font-setting.
4221         * Makefile.in (ELCFILES): Add font-settings.el.
4222         * font-setting.el: New file.
4224 2009-11-17  Glenn Morris  <rgm@gnu.org>
4226         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
4228         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
4229         Preserve point in the list buffer.  (Bug#4939)
4230         Use point-at-eol.
4231         (newsticker--treeview-list-update-highlight)
4232         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
4234 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
4236         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
4237         Remove.
4239         * calc/calc-ext.el (calc-init-extensions): Remove references to
4240         symclip.
4242         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
4244         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
4245         * calc/calc-help.el (calc-b-prefix-help): Remove references to
4246         `calc-symclip'.
4248 2009-11-16  Kevin Ryde  <user42@zip.com.au>
4250         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
4251         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
4253         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
4254         (lm-keywords-list): Allow comma-only separator like "foo,bar".
4255         Ignore trailing spaces by omit-nulls to split-string (fixing
4256         regression from Emacs 21 due to the incompatible split-string
4257         change).  (Bug #4928.)
4259 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4261         * vc.el (vc-log-show-limit): Default to 2000.
4262         (vc-print-log-internal): Insert buttons to request more entries
4263         when limiting the output.
4265         * vc-sccs.el (vc-sccs-print-log):
4266         * vc-rcs.el (vc-rcs-print-log):
4267         * vc-cvs.el (vc-cvs-print-log):
4268         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
4269         LIMIT is non-nil.
4271 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
4273         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
4274         error when `tramp-gvfs-dbus-event-vector' is set.
4275         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
4277 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4279         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
4281 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
4283         * net/dbus.el (dbus-unregister-service): New defun.
4284         (dbus-register-property): Register the handlers of
4285         "org.freedesktop.DBus.Properties" for SERVICE.
4286         (dbus-property-handler): Fix docstring.
4288 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4290         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
4291         Quote doc string reference in defvaralias as it is not in special form.
4292         (byte-compile-output-docform): Doc fix.
4294 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
4296         * calc/calc.el (math-2-word-size, math-half-2-word-size)
4297         (calc-complement-signed-mode): New variables.
4298         (calc-set-mode-line): Add indicator for twos-complements.
4299         (math-format-number): Format twos-complement notation.
4301         * calc/calc-bin.el (calc-word-size): Reset the variables
4302         `math-2-word-size' and `math-half-2-word-size'.
4303         (math-format-complement-signed, math-symclip, calcFunc-symclip)
4304         (calc-symclip): New functions.
4306         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
4308         * calc/calc-embed.el (calc-embedded-mode-vars):
4309         Add `calc-complement-signed-mode' to the list of modes.
4311         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
4312         (calc-b-oper-keys): Add `calc-symclip' to list.
4314         * calc/calc-ext.el (math-read-number-fancy): Read complement
4315         signed numbers.
4316         (calc-init-extensions): Add binding for `calc-symclip'.
4317         Add autoload for `calcFunc-symclip' and `calc-symclip'.
4319         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
4320         `calc-symclip'.
4321         (calc-modes-menu): Add item for twos complement mode.
4323         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
4325 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
4327         * register.el (jump-to-register, insert-register): Handle Semantic
4328         tags.  From commented-out advice in semantic/senator.el.
4330 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
4332         * vc.el (vc-log-show-limit): New variable.
4333         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
4334         when using a prefix argument.
4335         (vc-print-log-internal): Add new argument LIMIT.
4337         * vc-svn.el (vc-svn-print-log):
4338         * vc-mtn.el (vc-mtn-print-log):
4339         * vc-hg.el (vc-hg-print-log):
4340         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
4341         pass it to the log command when set.  Make the BUFFER argument
4342         non-optional.
4344         * vc-sccs.el (vc-sccs-print-log):
4345         * vc-rcs.el (vc-rcs-print-log):
4346         * vc-git.el (vc-git-print-log):
4347         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
4348         ignore it.  Make the BUFFER argument non-optional
4350         * bindings.el (mode-line-buffer-identification): Do not purecopy.
4352 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
4354         * dired.el (dired-mode-map): Move encryption items to "Operate"
4355         menu (Bug#4703).
4357         * strokes.el (strokes-update-window-configuration): Make strokes
4358         buffer current before erasing (Bug#4906).
4360         * cedet/semantic/idle.el (semantic-idle-summary-mode)
4361         (semantic-idle-summary-mode): Define using define-minor-mode
4362         instead of define-semantic-idle-service.
4363         (semantic-idle-summary-mode): New function.
4364         (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
4365         that mouse motion does not reset the echo area.
4367 2009-11-15  Juri Linkov  <juri@jurta.org>
4369         * simple.el (set-mark-default-inactive): Add :type, :group
4370         and :version.  (Bug#4876)
4372 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
4374         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
4375         (archive-unique-fname): ... here.  (Bug#4929)
4377 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4379         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
4380         with a real fix.
4382         * novice.el (disabled-command-function): Add useful args.
4383         Setup the help buffer so that [back] works.
4384         Remove redundant call to help-mode.
4385         (disabled-command-function): Use `case'.
4386         (en/disable-command): New function extracted from enable-command.
4387         (enable-command, disable-command): Use it.
4389 2009-11-14  Glenn Morris  <rgm@gnu.org>
4391         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
4392         constants.  (Bug#4913)
4394         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
4396 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
4398         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
4399         defined in C that have no doc-strings.  (Bug#1063)
4401 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
4403         * cus-edit.el (data, files):
4404         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
4406 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
4408         * simple.el (shell-command): Doc fix (Bug#4891).
4410         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
4412 2009-11-14  Glenn Morris  <rgm@gnu.org>
4414         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
4415         statements for vc-diff, emerge-quit, and rmail-cease-edit.
4416         If they are already loaded, eval-after-load will do the right thing.
4418         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
4419         compiling.
4421         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
4423         * simple.el (x-selection-owner-p): Declare.
4424         (read-mail-command): Use custom radio type rather than choice.
4425         (completion-no-auto-exit): Doc fix.
4427         * custom.el (defgroup):
4428         * epg-config.el (epg): Doc fixes.
4430 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
4432         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
4433         * international/ccl.el (define-ccl-program): Do not purecopy the
4434         docstring, defconst does it anyway.
4436 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4438         * add-log.el (add-change-log-entry): Avoid displaying the changelog
4439         a second time.
4441         * x-dnd.el (x-dnd-maybe-call-test-function):
4442         * window.el (split-window-vertically):
4443         * whitespace.el (whitespace-help-on):
4444         * vc-rcs.el (vc-rcs-consult-headers):
4445         * userlock.el (ask-user-about-lock-help)
4446         (ask-user-about-supersession-help):
4447         * type-break.el (type-break-force-mode-line-update):
4448         * time-stamp.el (time-stamp-conv-warn):
4449         * terminal.el (te-set-output-log, te-more-break, te-filter)
4450         (te-sentinel, terminal-emulator):
4451         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
4452         (term-write-input-ring, term-check-source, term-start-output-log):
4453         (term-display-buffer-line, term-dynamic-list-completions):
4454         (term-ansi-make-term, serial-term):
4455         * subr.el (selective-display):
4456         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
4457         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
4458         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
4459         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
4460         (speedbar-remove-localized-speedbar-support)
4461         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
4462         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
4463         (speedbar-buffers-line-directory):
4464         * simple.el (shell-command-on-region, append-to-buffer)
4465         (prepend-to-buffer):
4466         * shadowfile.el (shadow-save-todo-file):
4467         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
4468         (scroll-bar-maybe-set-window-start):
4469         * sb-image.el (speedbar-image-dump):
4470         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
4471         (load-save-place-alist-from-file):
4472         * ps-samp.el (ps-print-message-from-summary):
4473         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
4474         (ps-background-image, ps-begin-job, ps-do-despool):
4475         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
4476         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
4477         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
4478         (pr-call-process, pr-file-list, pr-interface-save):
4479         * novice.el (disabled-command-function)
4480         (enable-command, disable-command):
4481         * mouse.el (mouse-buffer-menu-alist):
4482         * mouse-copy.el (mouse-kill-preserving-secondary):
4483         * macros.el (kbd-macro-query):
4484         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
4485         * informat.el (batch-info-validate):
4486         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
4487         * hippie-exp.el (try-expand-dabbrev-visible):
4488         * help-mode.el (help-make-xrefs):
4489         * help-fns.el (describe-variable):
4490         * generic-x.el (bat-generic-mode-run-as-comint):
4491         * finder.el (finder-mouse-select):
4492         * find-dired.el (find-dired-sentinel):
4493         * filesets.el (filesets-file-close):
4494         * files.el (list-directory):
4495         * faces.el (list-faces-display, describe-face):
4496         * facemenu.el (list-colors-display):
4497         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
4498         * epg.el (epg--process-filter, epg-cancel):
4499         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
4500         (epa--read-signature-type):
4501         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
4502         (emerge-file-names):
4503         * ehelp.el (electric-helpify):
4504         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
4505         * ediff-vers.el (rcs-ediff-view-revision):
4506         * ediff-util.el (ediff-setup):
4507         * ediff-mult.el (ediff-append-custom-diff):
4508         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
4509         (ediff-wordify):
4510         * echistory.el (Electric-command-history-redo-expression):
4511         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
4512         * disp-table.el (describe-display-table):
4513         * dired.el (dired-find-buffer-nocreate):
4514         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
4515         * dabbrev.el (dabbrev--same-major-mode-p):
4516         * chistory.el (list-command-history):
4517         * apropos.el (apropos-documentation):
4518         * allout.el (allout-obtain-passphrase):
4519         (allout-copy-exposed-to-buffer):
4520         (allout-verify-passphrase): Use with-current-buffer.
4522 2009-11-13  Glenn Morris  <rgm@gnu.org>
4524         * Makefile.in (ELCFILES): Regenerate.
4526 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
4528         * net/dbus.el (dbus-registered-objects-table): Rename from
4529         `dbus-registered-functions-table', because it contains also properties.
4530         (dbus-unregister-object): Unregister also properties.
4531         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
4532         Use a timeout of 500 msec, in order to not block.
4533         (dbus-register-property, dbus-property-handler): New defuns.
4535 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4537         * simple.el (minibuffer-default-add-completions): Drop deprecated
4538         4th arg.
4540 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
4542         * textmodes/artist.el (artist-mouse-choose-operation):
4543         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
4544         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
4545         (artist-compute-up-event-key): New function.
4546         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
4548 2009-11-13  Kenichi Handa  <handa@m17n.org>
4550         * language/japan-util.el: Make sure that the value of jisx0208
4551         property is jisx0208 character.
4553 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
4555         * international/mule.el (auto-coding-regexp-alist): Only purecopy
4556         car or each item, not the whole list.
4558 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4560         * minibuffer.el (minibuffer-completion-help):
4561         Use minibuffer-hide-completions.
4563 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
4565         * dired.el (dired-save-positions, dired-restore-positions): New funs.
4566         (dired-revert): Use them (bug#4880).
4568 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
4570         * tooltip.el (tooltip-frame-parameters): Undo previous change.
4572 2009-11-12  Juri Linkov  <juri@jurta.org>
4574         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
4575         New functions.
4576         (find-file-literally-at-point): Alias of `ffap-literally'.
4578 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
4580         * textmodes/ispell.el (ispell-skip-region-alist):
4581         * textmodes/css-mode.el (auto-mode-alist):
4582         * progmodes/compile.el (auto-mode-alist):
4583         * international/mule.el (ctext-non-standard-encodings-alist)
4584         (ctext-non-standard-encodings-regexp):
4585         * simple.el (shell-command-switch, text-read-only):
4586         * replace.el (occur-mode-map):
4587         * paths.el (rmail-file-name):
4588         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
4589         * find-file.el (ff-special-constructs):
4590         * files.el (file-name-handler-alist):
4591         * composite.el: Purecopy strings.
4593         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
4595 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
4597         * widget.el (define-widget): Purecopy the docstring.
4598         * international/mule-cmds.el (charset): Do not purecopy the
4599         docstring here, define-widget does it.
4601         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
4602         * textmodes/bibtex-style.el (auto-mode-alist):
4603         * progmodes/inf-lisp.el (inferior-lisp-prompt):
4604         * progmodes/compile.el (compile-command):
4605         * language/korea-util.el (default-korean-keyboard):
4606         * international/mule-conf.el (file-coding-system-alist):
4607         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
4608         * tooltip.el (tooltip-frame-parameters):
4609         * newcomment.el (comment-end, comment-padding):
4610         * dired.el (dired-trivial-filenames):
4611         * comint.el (comint-file-name-prefix): Purecopy initial values.
4613 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
4615         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
4616         (tramp-advice-minibuffer-electric-tilde): Unload advices via
4617         `tramp-unload'.
4618         (tramp-advice-make-auto-save-file-name)
4619         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
4620         after removing the advice.
4622 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
4624         * progmodes/grep.el (grep-regexp-alist):
4625         * international/mule-cmds.el (iso-2022-control-alist):
4626         * emacs-lisp/timer.el (timer-duration-words):
4627         * subr.el (version-separator, version-regexp-alist):
4628         * minibuffer.el (completion-styles-alist):
4629         * faces.el (face-attribute-name-alist, list-faces-sample-text):
4630         Change defvars to defconsts.
4632         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
4633         * loadup.el ("international/mule-conf"): Load the byte compiled version.
4634         * international/mule-conf.el: Allow to be byte compiled.
4636         * international/mule.el (define-charset): Purecopy props.
4637         (load-with-code-conversion): Purecopy doc string and file name.
4638         (put-charset-property): Purecopy strings.
4639         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
4641         * international/mule-cmds.el (register-input-method): Purecopy arguments.
4642         (define-char-code-property): Correctly purecopy the table.
4644         * international/ccl.el (define-ccl-program): Purecopy the docstring.
4646         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
4648         * subr.el (add-hook): Purecopy strings.
4649         (eval-after-load): Purecopy load-history-regexp and the form.
4651         * custom.el (custom-declare-group): Purecopy load-file-name.
4653         * subr.el (menu-bar-separator): New defconst.
4654         * net/eudc.el (eudc-tools-menu):
4655         * international/mule-cmds.el (set-coding-system-map)
4656         (mule-menu-keymap):
4657         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
4658         * vc-hooks.el (vc-menu-map):
4659         * replace.el (occur-mode-map):
4660         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
4661         (menu-bar-edit-menu, menu-bar-goto-menu)
4662         (menu-bar-custom-menu, menu-bar-showhide-menu)
4663         (menu-bar-options-menu, menu-bar-tools-menu)
4664         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
4665         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
4666         (menu-bar-help-menu):
4667         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
4668         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
4670         * term/x-win.el (x-gtk-stock-map):
4671         * progmodes/vera-mode.el (auto-mode-alist):
4672         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
4673         (inferior-lisp-program, inferior-lisp-load-command):
4674         * progmodes/hideshow.el (hs-special-modes-alist):
4675         * progmodes/gud.el (same-window-regexps):
4676         * progmodes/grep.el (grep-program, find-program, xargs-program):
4677         * net/telnet.el (same-window-regexps):
4678         * net/rlogin.el (same-window-regexps):
4679         * language/ethiopic.el (font-ccl-encoder-alist):
4680         * vc-sccs.el (vc-sccs-master-templates):
4681         * vc-rcs.el (vc-rcs-master-templates):
4682         * subr.el (cl-assertion-failed):
4683         * simple.el (next-error-overlay-arrow-position):
4684         * lpr.el (lpr-command):
4685         * locate.el (locate-ls-subdir-switches):
4686         * info.el (same-window-regexps, info)
4687         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
4688         * image-mode.el (image-mode, auto-mode-alist):
4689         * hippie-exp.el (hippie-expand-ignore-buffers):
4690         * format.el (format-alist):
4691         * find-dired.el (find-ls-subdir-switches, find-grep-options)
4692         (find-name-arg):
4693         * facemenu.el (facemenu-keybindings):
4694         * dired.el (dired-listing-switches, dired-chown-program):
4695         * diff.el (diff-switches, diff-command):
4696         * cus-edit.el (same-window-regexps):
4697         * bindings.el (mode-line-mule-info)
4698         (mode-line-buffer-identification): Purecopy strings.
4700 2009-11-11  Juri Linkov  <juri@jurta.org>
4702         * simple.el (dired-get-filename) <declare-function>:
4703         Tell the byte-compiler about dired-get-filename.
4704         (shell-command): In Dired mode, get filename from the current line
4705         as the default value.
4707 2009-11-10  Glenn Morris  <rgm@gnu.org>
4709         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
4710         * calendar/holidays.el, progmodes/cperl-mode.el:
4711         Update x-popup-menu declarations.
4713         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
4714         (list-load-path-shadows): Use dolist.
4715         (list-load-path-shadows): Use with-current-buffer.
4717 2009-11-10  Juri Linkov  <juri@jurta.org>
4719         * minibuffer.el (read-file-name): Support a list of default values
4720         in `default-filename'.  Use the first file name where only one
4721         element is required.  Doc fix.
4723 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
4725         * net/dbus.el (dbus-unregister-object): Release service, if no
4726         other method is registered for it.
4728 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
4730         * bookmark.el (bookmark-completing-read): Sort bookmark names if
4731         bookmark-sort-flag is non-nil (Bug#4653).
4733 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
4735         * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
4736         the progress reporter entirely.
4738         * emulation/cua-base.el: Add CUA property to some CC mode commands
4739         (Bug#4100).
4741 2009-11-08  Kevin Ryde  <user42@zip.com.au>
4743         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
4744         at end of sentence (Bug#4818).
4746 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
4748         * progmodes/compile.el (compilation-error-regexp-alist-alist):
4749         Handle "see declaration of" MSFT statements (Bug#4100).
4751 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
4753         * net/tramp.el (tramp-advice-make-auto-save-file-name)
4754         (tramp-advice-file-expand-wildcards): Unload via
4755         `ad-remove-advice'.
4757         * net/trampver.el: Update release number.
4759 2009-11-08  Kevin Ryde  <user42@zip.com.au>
4761         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
4762         `ad-do-it'.
4764 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
4766         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
4767         in order to keep context in SELinux.
4769 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
4771         * dired-aux.el (dired-query): Place cursor in echo area and allow
4772         C-g.
4774         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
4775         menu item if not on a directory (Bug#4701).
4777 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
4779         Sync with Tramp 2.1.17.
4781         * net/tramp.el (tramp-handle-copy-directory): Don't use
4782         `file-remote-p' (due to compatibility).
4784         * net/tramp-compat.el (tramp-compat-copy-directory)
4785         (tramp-compat-delete-directory): New defuns.
4787         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
4788         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
4789         `tramp-compat-delete-directory'.
4791         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
4792         (tramp-smb-handle-delete-directory): Use
4793         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
4795         * net/trampver.el: Update release number.
4797 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
4799         * tar-mode.el (tar-copy): Call write-region on the right buffer
4800         (Bug#4857).
4802         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
4803         by hand, if necessary (Bug#4878).
4805 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
4807         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
4808         align size column (Bug#4839).
4810         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
4811         statement.
4813 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
4815         * progmodes/ld-script.el (auto-mode-alist):
4816         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
4818         * cus-face.el (custom-declare-face): Purecopy face spec.
4820 2009-11-06  Kenichi Handa  <handa@m17n.org>
4822         * international/uni-bidi.el: Re-generated.
4823         * international/uni-category.el: Re-generated.
4824         * international/uni-combining.el: Re-generated.
4825         * international/uni-mirrored.el: Re-generated.
4827 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
4829         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
4830         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
4831         (tex-start-options, slitex-run-command, latex-run-command)
4832         (tex-run-command, tex-directory):
4833         * textmodes/ispell.el (ispell-html-skip-alists)
4834         (ispell-tex-skip-alists, ispell-tex-skip-alists):
4835         * textmodes/fill.el (adaptive-fill-first-line-regexp):
4836         (adaptive-fill-regexp):
4837         * textmodes/dns-mode.el (auto-mode-alist):
4838         * progmodes/python.el (interpreter-mode-alist):
4839         * progmodes/etags.el (tags-compression-info-list):
4840         * progmodes/etags.el (tags-file-name):
4841         * net/browse-url.el (browse-url-galeon-program)
4842         (browse-url-firefox-program):
4843         * mail/sendmail.el (mail-signature-file)
4844         (mail-citation-prefix-regexp):
4845         * international/mule-conf.el (eight-bit):
4846         * international/latexenc.el (latex-inputenc-coding-alist):
4847         * international/fontset.el (x-pixel-size-width-font-regexp):
4848         * emacs-lisp/warnings.el (warning-type-format):
4849         * emacs-lisp/trace.el (trace-buffer):
4850         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
4851         (emacs-lisp-mode-map):
4852         * calendar/holidays.el (holiday-solar-holidays)
4853         (holiday-bahai-holidays, holiday-islamic-holidays)
4854         (holiday-christian-holidays, holiday-hebrew-holidays)
4855         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
4856         (hebrew-holidays-1, holiday-oriental-holidays)
4857         (holiday-general-holidays):
4858         * x-dnd.el (x-dnd-known-types):
4859         * tool-bar.el (tool-bar):
4860         * startup.el (site-run-file):
4861         * shell.el (shell-dumb-shell-regexp):
4862         * rfn-eshadow.el (file-name-shadow-tty-properties)
4863         (file-name-shadow-properties):
4864         * paths.el (remote-shell-program, news-directory):
4865         * mouse.el ([C-down-mouse-3]):
4866         * menu-bar.el (menu-bar-tools-menu):
4867         * jka-cmpr-hook.el (jka-compr-load-suffixes)
4868         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
4869         (jka-compr-compression-info-list):
4870         * isearch.el (search-whitespace-regexp):
4871         * image-file.el (image-file-name-extensions):
4872         * find-dired.el (find-ls-option):
4873         * files.el (directory-listing-before-filename-regexp)
4874         (directory-free-space-args, insert-directory-program)
4875         (list-directory-brief-switches, magic-fallback-mode-alist)
4876         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
4877         (automount-dir-prefix):
4878         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
4879         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
4880         (face-font-registry-alternatives, face-font-registry-alternatives)
4881         (face-font-family-alternatives):
4882         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
4883         (facemenu-foreground-menu, facemenu-face-menu):
4884         * epa-hook.el (epa-file-name-regexp):
4885         * dnd.el (dnd-protocol-alist):
4886         * textmodes/rst.el (auto-mode-alist):
4887         * button.el (default-button): Purecopy strings.
4889 2009-11-06  Glenn Morris  <rgm@gnu.org>
4891         * Makefile.in (ELCFILES): Update.
4893 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4895         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
4896         * emacs-lisp/levents.el: Move to obsolete/levents.el.
4898         * nxml/xsd-regexp.el (xsdre-gen-categories):
4899         * nxml/xmltok.el (xmltok-parse-entity):
4900         * nxml/rng-parse.el (rng-parse-validate-file):
4901         * nxml/rng-maint.el (rng-format-manual)
4902         (rng-manual-output-force-new-line):
4903         * nxml/rng-loc.el (rng-save-schema-location-1):
4904         * nxml/rng-cmpct.el (rng-c-parse-file):
4905         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
4906         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
4908 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
4910         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
4911         Remove extra save-excursions and make-variable-buffer-local's.
4912         Suggested by Stefan Monnier.
4914         (verilog-getopt-file, verilog-module-inside-filename-p)
4915         (verilog-set-define): Merge GNU 1.35 and repair changes from
4916         switching to using with-current-buffer.
4918         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
4919         being treated as a number and confusing AUTORESET.
4920         Reported by Dan Dever.
4922         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
4923         Add verilog-auto-ignore-concat to fix backward compatibility with
4924         older verilog-modes.  Reported by Dan Katz.
4926         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
4927         containing closing anchors "...$".
4929         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
4930         Reported by Wade Smith.
4932         (verilog-batch-execute-func): Comment on function usage.
4934 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
4936         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
4937         for labels.
4939         (verilog-label-re, verilog-calc-1): Support proper indent of named
4940         asserts.
4942         (verilog-backward-token, verilog-basic-complete-re)
4943         (verilog-beg-of-statement, verilog-indent-re): Support proper
4944         indent of the assert statement at the beginning of a block of text.
4946         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
4947         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
4948         tokens as begins.
4950 2009-11-05  Glenn Morris  <rgm@gnu.org>
4952         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
4953         Emacs 19.  (Bug#1531)
4954         (byte-compile-fix-header): Update for the above change.
4955         Drop test for epoch::version.
4957         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
4958         * cus-dep.el (custom-make-dependencies):
4959         * finder.el (finder-compile-keywords):
4960         Use autoload-rubric's feature argument.
4962         * calendar/diary-lib.el (top-level): Make load behave more like require.
4964         * vc-git.el (vc-git-stash-map): Move definition before use.
4966 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
4968         * custom.el (custom-declare-group): Purecopy standard-value.
4969         (custom-declare-group): Purecopy custom-prefix.
4971         * international/mule.el (load-with-code-conversion):
4972         Call do-after-load-evaluation unconditionally.
4974         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
4976 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
4978         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
4980 2009-11-04  Glenn Morris  <rgm@gnu.org>
4982         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
4983         (byte-compile-compatibility): Remove option.
4984         (byte-compile-close-variables, byte-compile-fix-header)
4985         (byte-compile-insert-header, byte-compile-output-docform)
4986         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
4987         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
4988         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
4989         (byte-compile-insert, byte-compile-defun):
4990         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
4991         (byte-defop-compiler19): Remove.
4992         Without byte-compile-compatibility, the 'emacs19-opcode property is not
4993         used by anything.  Replace all calls with byte-defop-compiler.
4995 2009-11-04  Juri Linkov  <juri@jurta.org>
4997         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
4998         (menu-bar-options-menu): Don't quote the `prop' arg of
4999         `menu-bar-make-mm-toggle'.
5001 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
5003         * calendar/calendar.el (cal-loaddefs):
5004         * calendar/diary-lib.el (diary-loaddefs):
5005         * calendar/holidays.el (hol-loaddefs):
5006         * eshell/esh-module.el (esh-groups): Load rather than require.
5008 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5010         * calendar/todo-mode.el (todo-add-category): Don't hardcode
5011         point-min==1.
5012         (todo-top-priorities): Only display-buffer when called interactively.
5013         (todo-item-start): Don't save excursion point.
5014         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
5015         (todo-insert-item-here, todo-file-item, todo-remove-item):
5016         Adjust uses of todo-item-start and todo-item-end.
5018         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
5019         (autoload-rubric): Don't use any more.
5020         * cedet/semantic/fw.el (semantic/loaddefs):
5021         * cedet/srecode.el (srecode/loaddefs):
5022         * cedet/ede.el (ede/loaddefs): Load rather than require.
5023         * cedet/ede/cpp-root.el:
5024         * cedet/ede/emacs.el:
5025         * cedet/ede/files.el:
5026         * cedet/ede/linux.el:
5027         * cedet/ede/locate.el:
5028         * cedet/ede/make.el:
5029         * cedet/ede/shell.el:
5030         * cedet/ede/speedbar.el:
5031         * cedet/ede/system.el:
5032         * cedet/ede/util.el:
5033         * cedet/semantic/analyze.el:
5034         * cedet/semantic/bovine.el:
5035         * cedet/semantic/complete.el:
5036         * cedet/semantic/ctxt.el:
5037         * cedet/semantic/db-file.el:
5038         * cedet/semantic/db-find.el:
5039         * cedet/semantic/db-global.el:
5040         * cedet/semantic/db-mode.el:
5041         * cedet/semantic/db-typecache.el:
5042         * cedet/semantic/db.el:
5043         * cedet/semantic/debug.el:
5044         * cedet/semantic/dep.el:
5045         * cedet/semantic/doc.el:
5046         * cedet/semantic/edit.el:
5047         * cedet/semantic/find.el:
5048         * cedet/semantic/format.el:
5049         * cedet/semantic/html.el:
5050         * cedet/semantic/ia-sb.el:
5051         * cedet/semantic/ia.el:
5052         * cedet/semantic/idle.el:
5053         * cedet/semantic/lex-spp.el:
5054         * cedet/semantic/lex.el:
5055         * cedet/semantic/mru-bookmark.el:
5056         * cedet/semantic/scope.el:
5057         * cedet/semantic/senator.el:
5058         * cedet/semantic/sort.el:
5059         * cedet/semantic/symref.el:
5060         * cedet/semantic/tag-file.el:
5061         * cedet/semantic/tag-ls.el:
5062         * cedet/semantic/tag-write.el:
5063         * cedet/semantic/tag.el:
5064         * cedet/semantic/util-modes.el:
5065         * cedet/semantic/analyze/complete.el:
5066         * cedet/semantic/analyze/refs.el:
5067         * cedet/semantic/bovine/c.el:
5068         * cedet/semantic/bovine/gcc.el:
5069         * cedet/semantic/bovine/make.el:
5070         * cedet/semantic/bovine/scm.el:
5071         * cedet/semantic/decorate/include.el:
5072         * cedet/semantic/decorate/mode.el:
5073         * cedet/semantic/symref/cscope.el:
5074         * cedet/semantic/symref/global.el:
5075         * cedet/semantic/symref/grep.el:
5076         * cedet/semantic/symref/idutils.el:
5077         * cedet/semantic/symref/list.el:
5078         * cedet/semantic/wisent/java-tags.el:
5079         * cedet/semantic/wisent/javascript.el:
5080         * cedet/srecode/compile.el:
5081         * cedet/srecode/cpp.el:
5082         * cedet/srecode/document.el:
5083         * cedet/srecode/el.el:
5084         * cedet/srecode/expandproto.el:
5085         * cedet/srecode/getset.el:
5086         * cedet/srecode/insert.el:
5087         * cedet/srecode/java.el:
5088         * cedet/srecode/map.el:
5089         * cedet/srecode/mode.el:
5090         * cedet/srecode/template.el:
5091         * cedet/srecode/texi.el: Remove the file-local setting of
5092         generated-autoload-feature.
5094         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
5095         and only put a prop if it is non-nil.
5097 2009-11-03  Juri Linkov  <juri@jurta.org>
5099         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
5100         (menu-bar-options-menu): Fix list quoting (Bug#4429).
5102         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
5103         and "Menu" to make top-level menu item visually one unit (like
5104         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
5105         multi-word menu items).  Fix :help string for quit-window.
5107 2009-11-03  Glenn Morris  <rgm@gnu.org>
5109         * cedet/mode-local.el (with-mode-local): Doc fix.
5111         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
5112         (byte-compile-file-form-define-abbrev-table)
5113         (byte-compile-file-form-custom-declare-variable)
5114         (byte-compile-variable-ref, byte-compile-defvar):
5115         Whether or not a warning is enabled should only affect whether we issue
5116         the warning, not whether or not we collect the relevant data.
5117         Eg warnings can be turned on and off throughout the course of a file.
5119         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
5120         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
5122 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5124         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
5125         * play/mpuz.el (mpuz-create-buffer):
5126         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
5127         (lm-print-y,s,noise, lm-print-w0, lm-init):
5128         * play/gomoku.el (gomoku-prompt-for-move):
5129         * play/fortune.el (fortune-in-buffer):
5130         * play/dissociate.el (dissociated-press):
5131         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
5132         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
5133         * mail/supercite.el (sc-eref-show):
5134         * mail/smtpmail.el (smtpmail-send-it):
5135         * mail/rmailsum.el (rmail-summary-next-labeled-message)
5136         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
5137         (rmail-summary-undelete-many, rmail-summary-rmail-update)
5138         (rmail-summary-goto-msg, rmail-summary-expunge)
5139         (rmail-summary-get-new-mail, rmail-summary-search-backward)
5140         (rmail-summary-add-label, rmail-summary-output-menu)
5141         (rmail-summary-output-body):
5142         * mail/rfc822.el (rfc822-addresses):
5143         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
5144         * mail/mailpost.el (post-mail-send-it):
5145         * mail/hashcash.el (hashcash-generate-payment):
5146         * mail/feedmail.el (feedmail-run-the-queue)
5147         (feedmail-queue-send-edit-prompt-help-first)
5148         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
5149         (feedmail-deduce-address-list):
5150         * eshell/esh-ext.el (eshell-remote-command):
5151         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
5152         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
5153         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
5154         (viper-save-string-in-file, viper-valid-marker):
5155         * emulation/viper-keym.el (viper-toggle-key):
5156         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
5157         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
5158         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
5159         * emulation/viper-cmd.el (viper-exec-form-in-vi)
5160         (viper-exec-form-in-emacs, viper-brac-function):
5161         * emulation/viper.el (viper-delocalize-var):
5162         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
5163         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
5164         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
5165         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
5166         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
5167         * emulation/edt.el (edt-electric-helpify):
5168         * emulation/cua-rect.el (cua--rectangle-aux-replace):
5169         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
5170         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
5171         (cua-indent-to-global-mark-column):
5172         * calendar/diary-lib.el (calendar-mark-1):
5173         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
5174         Use with-current-buffer.
5175         * emulation/viper.el (viper-delocalize-var): Use dolist.
5177 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
5179         * comint.el (comint-replace-by-expanded-history-before-point):
5180         Replace !! with the previous input string literally (Bug#1795).
5182 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
5184         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
5185         to be made up of whitespace.
5187 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
5189         * minibuffer.el (read-file-name): Don't use file dialogs for
5190         remote directories (Bug#99).
5192 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
5194         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
5196 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
5198         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
5199         instead of deleting the window or frame.
5201 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
5203         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
5204         Support face colors.
5206         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
5207         New function.  Support face colors (Bug#1168).
5208         (tex-common-initialization): Use it.
5210         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
5211         mode allows it (Bug#1168).
5213 2009-10-31  Juri Linkov  <juri@jurta.org>
5215         * facemenu.el (list-colors-display): Don't mark buffer as
5216         modified (Bug#3948).
5218 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
5220         * international/mule-diag.el (list-character-sets-1): Minor
5221         message fix (Bug#3526).
5223         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
5224         face property (Bug#4834).
5225         (etags-list-tags, etags-tags-apropos-additional)
5226         (etags-tags-apropos, tags-select-tags-table): Add follow-link
5227         property.
5229         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
5230         items.
5232         * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
5233         items.
5235         * cedet/ede.el (ede-minor-mode):
5236         * cedet/semantic.el (semantic-mode): Toggle menu separators.
5238 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5240         * textmodes/two-column.el (2C-split):
5241         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
5242         * textmodes/tex-mode.el (tex-set-buffer-directory):
5243         * textmodes/spell.el (spell-region, spell-string):
5244         * textmodes/reftex.el (reftex-erase-buffer):
5245         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
5246         * textmodes/reftex-toc.el (reftex-toc-promote-action):
5247         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
5248         (reftex-select-item):
5249         * textmodes/reftex-ref.el (reftex-label-info-update)
5250         (reftex-offer-label-menu):
5251         * textmodes/reftex-index.el (reftex-index-change-entry)
5252         (reftex-index-phrases-info):
5253         * textmodes/reftex-global.el (reftex-create-tags-file)
5254         (reftex-save-all-document-buffers, reftex-ensure-write-access):
5255         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
5256         (reftex-view-crossref-from-bibtex):
5257         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
5258         (reftex-extract-bib-entries-from-thebibliography)
5259         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
5260         * textmodes/refbib.el (r2b-capitalize-title):
5261         (r2b-convert-buffer, r2b-help):
5262         * textmodes/page-ext.el (pages-directory)
5263         (pages-directory-goto-with-mouse):
5264         * textmodes/bibtex.el (bibtex-validate-globally):
5265         * textmodes/bib-mode.el (bib-capitalize-title):
5266         * textmodes/artist.el (artist-clear-buffer, artist-system):
5267         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
5268         (local-set-scheme-interaction-buffer, xscheme-process-filter)
5269         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
5270         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
5271         (xscheme-send-control-g-interrupt, xscheme-start-process)
5272         (xscheme-process-sentinel, xscheme-cd):
5273         * progmodes/verilog-mode.el (verilog-read-always-signals)
5274         (verilog-set-define, verilog-getopt-file)
5275         (verilog-module-inside-filename-p):
5276         * progmodes/sh-script.el:
5277         * progmodes/python.el (python-pdbtrack-get-source-buffer)
5278         (python-pdbtrack-grub-for-buffer, python-execute-file):
5279         * progmodes/octave-inf.el (inferior-octave):
5280         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
5281         (idlwave-shell-compile-helper-routines, idlwave-set-local)
5282         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
5283         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
5284         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
5285         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
5286         (idlwave-shell-filter, idlwave-shell-examine-highlight)
5287         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
5288         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
5289         (idlwave-shell-examine-display, idlwave-shell-run-region)
5290         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
5291         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
5292         * progmodes/idlw-help.el (idlwave-help-get-special-help)
5293         (idlwave-help-get-help-buffer):
5294         * progmodes/gud.el (gud-basic-call, gud-find-class)
5295         (gud-tooltip-activate-mouse-motions-if-enabled):
5296         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
5297         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
5298         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
5299         (ebrowse-tags-next-file):
5300         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
5301         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
5302         (ebnf-eps-finish-and-write):
5303         * progmodes/cpp.el (cpp-edit-save):
5304         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
5305         * progmodes/cc-defs.el (c-emacs-features):
5306         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
5307         (antlr-directory-dependencies):
5308         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
5309         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
5310         (ada-find-any-references, ada-make-filename-from-adaname)
5311         (ada-make-body-gnatstub):
5312         * obsolete/rnews.el (news-list-news-groups):
5313         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
5314         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
5315         * net/rcirc.el (rcirc-debug):
5316         * net/newst-treeview.el (newsticker--treeview-list-add-item)
5317         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
5318         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
5319         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
5320         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
5321         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
5322         (newsticker--treeview-list-clear-highlight)
5323         (newsticker--treeview-list-update-highlight)
5324         (newsticker--treeview-list-highlight-start)
5325         (newsticker--treeview-tree-update-highlight)
5326         (newsticker--treeview-get-selected-item)
5327         (newsticker-treeview-mark-list-items-old)
5328         (newsticker--treeview-set-current-node):
5329         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
5330         * net/newst-backend.el (newsticker--get-news-by-funcall)
5331         (newsticker--get-news-by-wget, newsticker--image-get)
5332         (newsticker--image-sentinel):
5333         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
5334         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
5335         (eudc-ph-close-session):
5336         * net/eudc.el (eudc-save-options):
5337         * language/thai-word.el (thai-update-word-table):
5338         * language/japan-util.el (japanese-string-conversion):
5339         * international/titdic-cnv.el (tsang-quick-converter)
5340         (ziranma-converter, ctlau-converter):
5341         * international/mule-cmds.el (describe-language-environment):
5342         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
5343         (skkdic-convert-postfix, skkdic-convert-prefix):
5344         (skkdic-convert-okuri-nasi, skkdic-convert):
5345         * emacs-lisp/re-builder.el (reb-update-overlays):
5346         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
5347         * emacs-lisp/gulp.el (gulp-send-requests):
5348         * emacs-lisp/find-gc.el (trace-call-tree):
5349         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
5350         (eieio-describe-generic):
5351         * emacs-lisp/eieio-base.el (eieio-persistent-read):
5352         * emacs-lisp/edebug.el (edebug-outside-excursion):
5353         * emacs-lisp/debug.el (debugger-make-xrefs):
5354         * emacs-lisp/cust-print.el (custom-prin1-to-string):
5355         * emacs-lisp/chart.el (chart-new-buffer):
5356         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
5357         Use with-current-buffer.
5358         * textmodes/artist.el (artist-system): Don't call
5359         copy-sequence on a fresh string.
5360         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
5362 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
5364         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
5365         is no item to edit.  (Bug#4820)
5366         (todo-top-priorities): Restore point and restore narrowing in Todo
5367         buffer.  (Bug#4820)
5369 2009-10-31  Glenn Morris  <rgm@gnu.org>
5371         * net/ange-ftp.el (top-level): Don't require dired when compiling.
5372         (comint-last-output-start, comint-last-input-start)
5373         (comint-last-input-end): Don't defvar when compiling.
5374         (ange-ftp-process-file): Use bound-and-true-p.
5376         * pcmpl-rpm.el (top-level): Move provide statement to end.
5377         (pcmpl-rpm): Remove unused custom group.
5379         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
5381         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
5383         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
5384         (byte-compile-warnings): Add `constants' as an option.
5385         (byte-compile-callargs-warn, byte-compile-arglist-warn)
5386         (display-call-tree): Update for byte-compile-fdefinition possibly
5387         returning `(macro lambda ...)'.  (Bug#4778)
5388         (byte-compile-variable-ref, byte-compile-setq-default):
5389         Respect `constants' member of byte-compile-warnings.
5391         * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
5392         Use mapc rather than mapcar because the return value is never used.
5394         * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
5395         * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
5396         * cedet/semantic/html.el:
5397         Suppress harmless warnings about setting up semantic-imenu (not
5398         part of Emacs) variables.
5400 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5402         * vc-bzr.el (vc-bzr-revision-keywords): New var.
5403         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
5404         to "submit:".
5406         * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
5407         * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
5408         * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
5409         * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
5410         * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
5411         * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
5412         (semantic-analyzer-debug-global-symbol)
5413         (semantic-analyzer-debug-missing-innertype)
5414         (semantic-analyzer-debug-insert-include-summary):
5415         * cedet/semantic/util.el (semantic-file-tag-table):
5416         (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
5417         (semantic-recursive-find-nonterminal-by-name):
5418         * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
5419         * cedet/semantic/tag-file.el (semantic-prototype-file):
5420         * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
5421         * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
5422         * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
5423         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
5424         (semantic-idle-summary-maybe-highlight):
5425         * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
5426         (semantic-ia-sb-tag-info):
5427         * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
5428         * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
5429         * cedet/semantic/ede-grammar.el (project-compile-target):
5430         (ede-proj-makefile-insert-variables):
5431         * cedet/semantic/debug.el (semantic-debug-set-parser-location):
5432         (semantic-debug-set-source-location, semantic-debug-interface-layout)
5433         (semantic-debug-mode, semantic-debug):
5434         * cedet/semantic/db.el (semanticdb-needs-refresh-p):
5435         * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
5436         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
5437         * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
5438         (semanticdb-find-translate-path-includes--internal)
5439         (semanticdb-reset-log, semanticdb-find-log-activity):
5440         * cedet/semantic/db-file.el (object-write):
5441         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
5442         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
5443         (semanticdb-create-ebrowse-database):
5444         * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
5445         * cedet/semantic/complete.el (semantic-displayor-focus-request)
5446         (semantic-collector-calculate-completions-raw)
5447         (semantic-complete-read-tag-analyzer):
5448         * cedet/semantic/analyze.el (semantic-analyze-pulse):
5449         * cedet/ede/util.el (ede-update-version-in-source):
5450         * cedet/ede/proj.el (project-delete-target):
5451         * cedet/ede/proj-elisp.el (ede-update-version-in-source)
5452         (ede-proj-flush-autoconf):
5453         * cedet/ede/pconf.el (ede-proj-configure-synchronize)
5454         (ede-proj-configure-synchronize):
5455         * cedet/ede/locate.el (ede-locate-file-in-project-impl):
5456         * cedet/ede/linux.el (ede-linux-version):
5457         * cedet/ede/emacs.el (ede-emacs-version):
5458         * cedet/ede/dired.el (ede-dired-add-to-target):
5459         * cedet/ede.el (ede-buffer-header-file, ede-find-target)
5460         (ede-buffer-documentation-files, ede-project-buffers, ede-set)
5461         (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
5462         * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
5463         (cedet-idutils-lid-call, cedet-idutils-expand-filename)
5464         (cedet-idutils-version-check):
5465         * cedet/cedet-global.el (cedet-gnu-global-call):
5466         (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
5467         (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
5468         * cedet/cedet-cscope.el (cedet-cscope-call)
5469         (cedet-cscope-expand-filename, cedet-cscope-version-check):
5470         Use with-current-buffer.
5471         * cedet/ede.el (ede-make-project-local-variable)
5472         (ede-set-project-variables, ede-set): Use dolist.
5474 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
5476         * textmodes/ispell.el (ispell-skip-region-alist):
5477         * international/mule-conf.el (eight-bit):
5478         * international/fontset.el (font-encoding-alist):
5479         * startup.el (pure-space-overflow-message):
5480         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
5481         * paths.el (gnus-nntp-service, rmail-spool-directory)
5482         (term-file-prefix):
5483         * files.el (save-some-buffers-action-alist):
5484         * cmuscheme.el (same-window-buffer-names):
5485         * ielm.el (same-window-buffer-names):
5486         * shell.el (same-window-buffer-names):
5487         * mail/sendmail.el (same-window-buffer-names):
5488         * progmodes/inf-lisp.el (same-window-buffer-names):
5489         * bindings.el (mode-line-client)
5490         (mode-line-column-line-number-mode-map):
5491         * language/tibetan.el (tibetan-precomposition-rule-regexp)
5492         (tibetan-precomposed-regexp): Purecopy string arguments.
5494 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5496         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
5497         (calcDigit-nondigit):
5498         * calc/calc-yank.el (calc-copy-to-buffer):
5499         * calc/calc-units.el (calc-invalidate-units-table):
5500         * calc/calc-trail.el (calc-trail-yank):
5501         * calc/calc-store.el (calc-insert-variables):
5502         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
5503         * calc/calc-prog.el (calc-read-parse-table):
5504         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
5505         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
5506         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
5507         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
5508         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
5509         (calc-graph-name, calc-graph-find-command, calc-graph-view)
5510         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
5511         * calc/calc-ext.el (calc-realign):
5512         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
5513         (calc-embedded-finish-edit, calc-embedded-make-info)
5514         (calc-embedded-finish-command, calc-embedded-stack-change):
5515         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
5517         * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
5518         (overload-docstring-extension): Use that info.
5519         * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
5520         * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
5521         * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
5522         (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
5523         (semantic-nonterminal-full-name): Add the new `when' info.
5524         * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
5525         `assert'.
5527         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
5528         shell-dynamic-complete-filename in preference to
5529         comint-dynamic-complete-filename.
5531         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
5532         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
5533         Don't consider whether the display supports colors.
5534         (bookmark-import-new-list): Use dolist.
5535         (bookmark-bmenu-mode-map): Move initialization into declaration.
5536         (bookmark-bmenu-list): Use dolist, simplify.
5537         (bookmark-show-all-annotations): Use save-selected-window and dolist.
5538         (menu-bar-final-items): Use push.
5540 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
5542         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
5543         it works on remote files.
5544         (vc-hg-diff): Don't pass any `--cwd' argument.
5546 2009-10-27  Kevin Ryde  <user42@zip.com.au>
5548         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
5549         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
5550         (Further to Bug#3921).
5552 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
5554         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
5555         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
5556         calling `tramp-imap-put-file'.  Add file size to the call.
5557         (tramp-imap-get-file-entries): Compute also user name, file size,
5558         and date.
5559         (tramp-imap-handle-insert-directory): Insert uid and gid.
5560         (tramp-imap-handle-file-attributes): Transform uid and gid
5561         according to `id-format'.
5562         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
5563         size in header X-Size.
5565 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
5567         * simple.el (transpose-subr): Give clearer error when the mark
5568         is not set.  (Bug#4807)
5570 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
5572         * net/tramp.el (tramp-perl-file-truename): New defconst.
5573         Perl code contributed by yary <not.com@gmail.com> (tiny change).
5574         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
5575         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
5576         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
5578         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
5579         Ignore `dired-call-process'.
5580         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
5582 2009-10-26  Julian Scheid  <julians37@gmail.com>
5584         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
5585         (tramp-get-remote-readlink): New defun.
5586         (tramp-handle-file-truename): Use it.
5587         (tramp-handle-file-exists-p): Check file-attributes cache, assume
5588         file exists if cache value present.
5589         (tramp-check-cached-permissions): New defun.
5590         (tramp-handle-file-readable-p): Use it.
5591         (tramp-handle-file-writable-p): Likewise.
5592         (tramp-handle-file-executable-p): Likewise.
5593         (tramp-handle-file-name-all-completions): Try using Perl to get
5594         partial completions.  When perl not available, combine `cd' and
5595         `ls' into single remote operation and use shell expansion to get
5596         partial remote directory contents.  Set `file-exists-p' cache for
5597         directory and any files returned by ls.  Change cache handling to
5598         support partial directory contents.  Use error message emitted by
5599         remote `cd' or Perl code for local tramp-error.
5600         (tramp-do-copy-or-rename-file-directly): Avoid separate
5601         tramp-send-command-and-check call.
5602         (tramp-handle-process-file): Merge three remote ops into one.
5603         Do not flush all caches when `process-file-side-effects' is set.
5604         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
5605         file-attributes shows uid/gid to be set already.
5607 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
5609         * textmodes/tex-mode.el (tex-dvi-view-command)
5610         (tex-show-queue-command, tex-open-quote):
5611         * progmodes/ruby-mode.el (auto-mode-alist)
5612         (interpreter-mode-alist): Purecopy strings.
5614         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
5616         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
5617         string for the hook, keymap and abbrev table.
5619         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
5621         * x-dnd.el (x-dnd-xdnd-to-action):
5622         * startup.el (fancy-startup-text, fancy-about-text): Change to
5623         defconst from defvar.
5625         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
5627         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
5628         Purecopy initialization strings.
5630         * mail/sendmail.el (mail-header-separator)
5631         (mail-personal-alias-file):
5632         * mail/rmail.el (rmail-default-dont-reply-to-names)
5633         (rmail-ignored-headers, rmail-retry-ignored-headers)
5634         (rmail-highlighted-headers, rmail-secondary-file-directory)
5635         (rmail-secondary-file-regexp):
5636         * files.el (null-device, file-name-invalid-regexp)
5637         (locate-dominating-stop-dir-regexp)
5638         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
5639         (interpreter-mode-alist): Use mapcar instead of mapc.
5641         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
5643         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
5644         (completion-ignored-extensions):
5645         (debug-ignored-errors): Purecopy strings.
5647 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5649         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
5650         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
5651         (pcomplete--here): Use push.
5653         * subr.el (all-completions): Declare the 4th arg obsolete.
5655 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5657         * pcomplete.el (pcomplete-unquote-argument-function): New var.
5658         (pcomplete-unquote-argument): New function.
5659         (pcomplete--common-suffix): Always pay attention to case.
5660         (pcomplete--table-subvert): Quote and unquote the text.
5661         (pcomplete--common-quoted-suffix): New function.
5662         (pcomplete-std-complete): Use it and pcomplete-begin.
5664         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
5665         we're inside a dedicated or minibuffer window.
5667 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5669         * cedet/semantic/fw.el (semantic-alias-obsolete)
5670         (semantic-varalias-obsolete): Make the `when' arg mandatory.
5671         (define-mode-overload-implementation):
5672         * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
5673         * cedet/semantic/wisent.el (wisent-lex-make-token-table):
5674         * cedet/semantic/util.el (semantic-file-token-stream)
5675         (semantic-something-to-stream):
5676         * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
5677         (semantic-expand-nonterminal):
5678         * cedet/semantic/tag-file.el (semantic-find-nonterminal)
5679         (semantic-find-dependency, semantic-find-nonterminal)
5680         (semantic-find-dependency):
5681         * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
5682         (semantic-flex-text, semantic-flex-make-keyword-table)
5683         (semantic-flex-keyword-p, semantic-flex-keyword-put)
5684         (semantic-flex-keyword-get, semantic-flex-map-keywords)
5685         (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
5686         * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
5687         * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
5688         (semantic-after-idle-scheduler-reparse-hooks):
5689         * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
5690         * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
5691         * cedet/semantic.el (semantic-toplevel-bovine-table)
5692         (semantic-toplevel-bovine-cache)
5693         (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
5694         (semantic-init-mode-hooks, semantic-init-db-hooks)
5695         (semantic-bovination-working-type): Provide the `when' arg.
5697 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
5699         * bookmark.el: Update documentation, especially documentation
5700         of `bookmark-alist' and of the bookmark file format.
5701         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
5703 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
5705         * mail/emacsbug.el (report-emacs-bug): Clarify that the
5706         keybindings apply to the mail buffer (Bug#4003).  Shrink help
5707         window to buffer.
5709         * whitespace.el (whitespace-mode, whitespace-newline-mode)
5710         (global-whitespace-mode, global-whitespace-newline-mode)
5711         (whitespace-toggle-options, global-whitespace-toggle-options):
5712         Doc fix (Bug#3660).
5714         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
5715         of xmltok-start before the end tag was inserted (Bug#2840).
5717         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
5718         patterns that are preceded by an open-paren (Bug#1320).
5720 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
5722         * files.el (delete-directory): Delete symlinks to directories with
5723         delete-file (Bug#4739).
5725 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
5727         * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
5728         * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
5729         argument to make-obsolete.
5731         * cedet/semantic/fw.el (semantic-alias-obsolete)
5732         (semantic-varalias-obsolete): Add optional WHEN argument.
5734 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
5736         * vc.el (vc-backend-for-registration): Rename from
5737         vc-get-backend-for-registration.  Update callers.
5739         * international/mule-cmds.el (set-language-info-alist):
5740         Purecopy lang-env.
5741         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
5742         (charset): Purecopy the name.
5743         (define-char-code-property): Purecopy string arguments.
5745         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
5746         Purecopy string arguments.
5748         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5749         * ediff-hook.el (menu-bar-ediff-menu):
5750         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
5751         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
5753 2009-10-24  Glenn Morris  <rgm@gnu.org>
5755         * comint.el (comint-dynamic-list-completions):
5756         * term.el (term-dynamic-list-completions): Use choose-completion rather
5757         than obsolete alias mouse-choose-completion.
5759         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
5760         file-cache-choose-completion.
5761         (file-cache-choose-completion): Handle an optional event argument.
5762         (file-cache-mouse-choose-completion): Make it an obsolete alias.
5764         * progmodes/octave-mod.el (octave-complete-symbol):
5765         Use choose-completion if mouse-choose-completion is ever removed.
5767         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
5768         use.
5770         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
5771         compiler.
5773         * vc-hooks.el (vc-responsible-backend): Fix declaration.
5775 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5777         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
5778         Ignore `pred' now that we receive one.
5779         Handle test-completion specially.
5781 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
5783         * vc.el (vc-responsible-backend): Throw an error if not backend is
5784         found.  Remove the REGISTER argument.  Move the code dealing with
5785         REGISTER ...
5786         (vc-get-backend-for-registration): ... here.  New function.
5787         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
5788         of vc-responsible-backend, pass the file name instead of the
5789         directory name.
5791 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5793         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
5794         New funs.
5795         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
5796         (pcomplete-comint-setup): Don't modify a global var via
5797         accidental side-effects.
5798         (pcomplete-shell-setup): Adjust call accordingly.
5799         (pcomplete-parse-comint-arguments): Use push.
5801 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
5803         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
5804         Allow uncapitalized info node names (Bug#3921).
5806         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
5807         to the DEBUG file (Bug#3781).
5809 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
5811         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
5812         dictionary entry (Bug#4579).
5814 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
5816         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
5817         from `rfn-eshadow-update-overlay-hook' when unloading.
5818         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
5819         "rsyncc".  Adjust doc string.
5820         (tramp-temp-buffer-file-name): New buffer-local defvar.
5821         (tramp-handle-insert-file-contents, tramp-handle-write-region):
5822         Keep temporary file when indicated by method ("rsync" and
5823         "rsyncc").
5824         (tramp-handle-write-region): Handle APPEND.
5825         (tramp-delete-temp-file-function): New defun.  Added to
5826         `kill-buffer-hook'.
5828 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
5830         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
5832 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
5834         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
5835         (color-name-rgb-alist, tty-standard-colors)
5836         (tty-color-mode-alist): Change to defconst.
5838         * simple.el (mark-inactive): Purecopy message.
5840         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
5841         (global-map, yank-menu):
5842         * textmodes/ispell.el (ispell-menu-map):
5843         * net/eudc.el (eudc-tools-menu):
5844         * international/mule-cmds.el (describe-language-environment-map)
5845         (setup-language-environment-map, set-coding-system-map)
5846         (mule-menu-keymap):
5847         * vc-hooks.el (vc-menu-entry, vc-menu-map):
5848         * replace.el (occur-mode-map):
5849         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
5851 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
5853         * calc/calc.el (math-read-number, math-read-number-simple): Use
5854         `save-match-data'.
5856 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5858         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
5859         rather than fiddling with global-map bindings, since it should only
5860         affect per-terminal settings.
5861         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
5863         * minibuffer.el (completion-table-with-terminator): Allow to specify
5864         the terminator-regexp.
5866         * simple.el (switch-to-completions): Look for *Completions* in other
5867         frames as well.
5869         * pcomplete.el: Allow the use of completion-tables.
5870         (pcomplete-std-complete): New command.
5871         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
5872         (pcomplete--here): Use a function for `form' rather than an expression,
5873         so it can be byte-compiled.
5874         (pcomplete-here, pcomplete-here*): Adjust accordingly.
5875         Add edebug declaration.
5876         (pcomplete-show-completions): Remove unused var `curbuf'.
5877         (pcomplete-do-complete, pcomplete-stub):
5878         Don't assume `completions' is a list of strings any more.
5880 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
5882         * find-dired.el (find-name-arg): Fix typo in docstring.
5884 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5886         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
5887         (pcmpl-linux-fs-types): Same, and update to new modules layout.
5889         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
5890         pcomplete-entries.
5892         * comint.el (comint-read-input-ring, comint-write-input-ring)
5893         (comint-substitute-in-file-name)
5894         (comint-dynamic-complete-as-filename)
5895         (comint-dynamic-simple-complete)
5896         (comint-dynamic-list-filename-completions)
5897         (comint-dynamic-list-completions)
5898         (comint-redirect-results-list-from-process): Minor simplifications.
5900 2009-10-21  Kevin Ryde  <user42@zip.com.au>
5902         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
5903         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
5904         the first form.  And insert a blank line after ";;; Code" since
5905         that's usual style.  (Bug#4612)
5907         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
5909 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5911         * minibuffer.el (completion-table-with-terminator): Properly implement
5912         boundaries, in case `terminator' appears in the suffix.
5913         (completion--embedded-envvar-table): Don't return boundaries if
5914         there's no valid completion.  Simplify.
5915         (completion-file-name-table): New completion table extracted from
5916         completion--file-name-table.
5917         (completion--file-name-table): Use it.
5918         (read-file-name-predicate): Declare obsolete.
5919         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
5920         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
5921         completion-file-name-table, and use the `pred' argument.
5922         * files.el (locate-file-completion-table): Use the `pred' arg rather
5923         than read-file-name-predicate.
5924         (abbreviate-file-name): Use \` rather than ^ for BOS.
5926 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
5928         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
5929         vc-responsible-backend to register, it causes problems.
5931 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5933         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
5935 2009-10-21  Eric Ludlam  <zappo@gnu.org>
5937         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
5938         (semantic-c-debug-mode-init-pch): New functions.
5939         (semantic-c-debug-mode-init-last-mode): New var.
5940         (semantic-c-parse-lexical-token): Use them.
5942         * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
5943         When extracting the argument list, limit only by point-max.
5945 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
5947         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
5948         (tramp-smb-handle-file-attributes): Use it.
5949         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
5950         (tramp-smb-handle-insert-directory): Use `mapc' rather than
5951         `mapcar'.  Use `tramp-smb-get-stat-capability'.
5952         Add `dired-filename' text properties.
5953         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
5954         (tramp-smb-maybe-open-connection): Simplify check for smbclient
5955         version.
5957 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5959         * subr.el (read-key-delay): Reduce to 0.01.
5960         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
5961         (bug#4751).
5963 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5965         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
5967         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
5968         (Info-menu): Remove unused vars `last' and `completions'.
5969         (Info-index-nodes): Remove unused var `node'.
5971         * info.el (Info-complete-menu-item): Use complete-with-action.
5973 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
5975         Make vc-annotate work through copies and renames.
5976         * vc-annotate.el (vc-annotate-extract-revision-at-line):
5977         Return the file name too.
5978         (vc-annotate-revision-at-line)
5979         (vc-annotate-find-revision-at-line)
5980         (vc-annotate-revision-previous-to-line)
5981         (vc-annotate-show-log-revision-at-line): Update to get the file
5982         name from vc-annotate-extract-revision-at-line.
5983         (vc-annotate-show-diff-revision-at-line-internal): Change the
5984         argument to mean whether to show a file diff or not.  Get the file
5985         name from vc-annotate-extract-revision-at-line.
5986         (vc-annotate-show-diff-revision-at-line):
5987         Update vc-annotate-show-diff-revision-at-line call.
5988         (vc-annotate-warp-revision): Add an optional file argument.
5990         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
5991         (vc-git-annotate-extract-revision-at-line): Also return the file
5992         name if found.
5994         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
5995         command.  Remove unused code.
5996         (vc-hg-annotate-re): Update to match --follow output.
5997         (vc-hg-annotate-extract-revision-at-line): Also return the file
5998         name if found.
6000         * vc.el: Update annotate-extract-revision-at-line documentation.
6002 2009-10-18  Kevin Ryde  <user42@zip.com.au>
6004         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
6005         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
6007         * net/browse-url.el (browse-url): Identify alist with "consp and
6008         not functionp" and let all other things go down the `apply' leg,
6009         as suggested by Stefan.  (Further to bug#4531.)
6011 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
6013         * minibuffer.el (read-file-name): Check for repeat before putting
6014         a default argument in file-name-history (Bug#4657).
6016         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
6017         read syntax (Bug#4737).
6019         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
6021 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
6023         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
6024         (html-tag-alist, html-tag-help): Add descriptions for undocumented
6025         entries and make note of obsolete tags.
6027 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6029         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
6031 2009-10-18  Glenn Morris  <rgm@gnu.org>
6033         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
6034         grep, so that binary files (eg international/uni-bidi.el) can match.
6035         Remove test for "UnicodeData" files, since it is hopefully unnecessary
6036         now, and in any case the file header format has changed.
6038 2009-10-17  Glenn Morris  <rgm@gnu.org>
6040         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
6041         (flyspell-get-word, flyspell-large-region)
6042         (flyspell-auto-correct-previous-word): Doc/error message fixes.
6044 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
6046         * Makefile.in (ELCFILES): Add ede/shell.
6048 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
6050         * term/common-win.el (x-colors): Purecopy it.
6052 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6054         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
6055         permissive for when the buffer is empty.
6056         (tar-header-block-tokenize): Decode the username and groupname.
6057         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
6059 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
6061         * cedet/srecode/srt.el:
6062         * cedet/srecode/compile.el:
6063         * cedet/semantic/mru-bookmark.el:
6064         * cedet/semantic/debug.el:
6065         * cedet/semantic/complete.el:
6066         * cedet/semantic/analyze.el: Require CL when compiling.
6068 2009-10-17  Eric Ludlam  <zappo@gnu.org>
6070         * cedet/semantic/scope.el
6071         (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
6072         tmpscope so that the regular scope will continue to work.
6074         * cedet/semantic/idle.el (semantic-idle-tag-highlight):
6075         Use semantic-idle-summary-highlight-face as the highlighting.
6077         * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
6078         contains multibyte characters, choose first applicable coding
6079         system automatically.
6081         * cedet/ede/project-am.el (project-run-target): New method.
6082         (project-run-target): New method.
6084         * cedet/ede.el (ede-target): Add run target menu item.
6085         (ede-project, ede-minor-keymap): Add ede-run-target binding.
6086         (ede-run-target): New function.
6087         (ede-target::project-run-target): New method.
6089         * cedet/ede/proj.el (project-run-target): New method.
6091         * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
6092         (ede-g++-libtool-shared-compiler): Remove SHELL.  Remove COMMANDS.
6093         Add :rules.
6094         (ede-proj-target-makefile-shared-object): Only libtool compilers
6095         now available.  Add linkers for libtool.
6096         (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
6097         (ede-proj-makefile-target-name): Always use .la extension.
6099         * cedet/ede/proj-prog.el (project-run-target): New method.
6101         * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
6102         (ede-g++-linker): Change Change link lines.
6104         * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
6105         When searching for old variables, go to the end of the buffer and
6106         search backward from there.
6107         (ede-proj-makefile-automake-insert-subdirs)
6108         (ede-proj-makefile-automake-insert-extradist): New methods.
6109         (ede-proj-makefile-create): Use them.
6111         * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
6112         Force FILE to expand to the current target.  Use file-exists-p to
6113         check that it exists.
6115         * cedet/ede/linux.el (ede-linux-version): Don't call "head".
6116         (ede-linux-load): Wrap dir in file-name-as-directory.
6117         Set :version slot.
6119         * cedet/ede/files.el (ede-get-locator-object): When enabling
6120         locate, do so on "top".
6122         * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
6123         file-name-as-directory during compare.
6124         (ede-emacs-version): Return Emacs/XEmacs differentiator.
6125         Get version number from different places.  Don't call egrep.
6126         (ede-emacs-load): Set :version slot.  Call file-name-as-directory
6127         to set the directory.
6129         * cedet/ede/shell.el: New file.
6131         * cedet/inversion.el (inversion-decoders): Allow for stray . in
6132         alpha/beta variants.
6134 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6136         * international/mule-cmds.el (select-safe-coding-system): If the file
6137         has a coding cookie, use it regardless of any other setting (bug#4712).
6139 2009-10-17  Glenn Morris  <rgm@gnu.org>
6141         * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
6142         All errors should have messages.
6144         * foldout.el (foldout-mouse-swallow-events):
6145         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
6147         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
6148         (dired-keep-marker-copy, dired-keep-marker-hardlink)
6149         (dired-keep-marker-symlink, dired-dwim-target)
6150         (dired-copy-preserve-time): Do not autoload these defcustoms.
6152         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
6153         messages from messing up the file coding.  (Bug#4623)
6155 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
6157         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
6158         if no match is found for the current dictionary.  (Bug#4578)
6160         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
6161         optional, since that is how it is documented, and this is often called
6162         with a nil argument.  (Bug#4577)
6163         (flyspell-external-point-words, flyspell-auto-correct-word)
6164         (flyspell-correct-word-before-point, flyspell-word-search-forward)
6165         (flyspell-word-search-backward): Remove nil argument in calls to
6166         flyspell-get-word, since it is not needed now.
6168 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
6170         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
6172 2009-10-16  Glenn Morris  <rgm@gnu.org>
6174         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
6176 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
6178         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
6179         (ange-ftp-file-size): New function.
6180         (ange-ftp-file-attributes): Use it.
6182 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
6184         * net/tramp-smb.el (tramp-smb-version): New defvar.
6185         (tramp-smb-maybe-open-connection): Use it, in order to avoid
6186         repeated checks.
6188 2009-10-16  Glenn Morris  <rgm@gnu.org>
6190         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
6191         Maybe copy some custom properties from old to new name.  (Bug#4706)
6193 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
6195         * subr.el (error, sit-for, start-process-shell-command)
6196         (start-file-process-shell-command): Set the calling convention
6197         after the function definition.
6199 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6201         * subr.el (error, sit-for, start-process-shell-command)
6202         (start-file-process-shell-command): Use the new
6203         set-advertised-calling-convention feature.
6205 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
6207         * international/ucs-normalize.el (ucs-normalize-version):
6208         Change to 1.2.
6209         (check-range): Adjust for Unicode 5.2.
6211 2009-10-15  Juri Linkov  <juri@jurta.org>
6213         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
6214         to the `menu-item' format.
6216 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
6218         * net/tramp.el (tramp-replace-environment-variables): Do not fail
6219         if the environment variable does not exist.
6221         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6222         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
6223         parameter.
6224         (tramp-smb-handle-add-name-to-file)
6225         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6226         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6227         (tramp-smb-handle-file-attributes)
6228         (tramp-smb-do-file-attributes-with-stat)
6229         (tramp-smb-handle-file-local-copy)
6230         (tramp-smb-handle-insert-directory)
6231         (tramp-smb-handle-make-directory)
6232         (tramp-smb-handle-make-directory-internal)
6233         (tramp-smb-handle-make-symbolic-link)
6234         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
6235         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
6236         (tramp-smb-maybe-open-connection): Apply the changed parameters.
6237         (tramp-smb-read-file-entry): Read Disk names in compressed format.
6238         Handle long file names.
6239         (tramp-smb-get-cifs-capabilities): Check, whether the connection
6240         process is running.
6241         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
6242         Read share names with "-g" option.
6244 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
6246         * net/rcirc.el (rcirc-view-log-file): New command.
6247         (rcirc-track-minor-mode-map): Remove C-c ` binding.
6248         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
6249         specified.
6251 2009-10-15  Glenn Morris  <rgm@gnu.org>
6253         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
6254         from the second command-line argument.
6255         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
6256         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
6257         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
6258         w32-batch-update-autoloads.
6259         * emacs-lisp/autoload.el (autoload-make-program): New variable.
6260         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
6262         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
6263         the headers cannot be located.  Simplify, subtracting superflous
6264         save-excursions.
6266 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6268         Replace completion-base-size by completion-base-position to fix bugs
6269         such as (bug#4699).
6270         * simple.el (completion-base-position): New var.
6271         (completion-base-size): Mark as obsolete.
6272         (choose-completion): Make it work for mouse events as well.
6273         Pass the new base-position to choose-completion-string.
6274         (choose-completion-guess-base-position): New function, extracted from
6275         choose-completion-delete-max-match.
6276         (choose-completion-delete-max-match): Use it.  Make obsolete.
6277         (choose-completion-string): Use the new base-position info.
6278         (completion-root-regexp): Delete.
6279         (completion-setup-function): Preserve completion-base-position.
6280         Eliminate obsolete base-size manipulation.
6281         * minibuffer.el (display-completion-list): Don't mess with base-size.
6282         (minibuffer-completion-help): Set completion-base-position instead.
6283         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
6284         choose-completion.
6285         * textmodes/bibtex.el (bibtex-complete):
6286         * emacs-lisp/crm.el (crm--choose-completion-string):
6287         Adjust to new calling convention.
6288         * complete.el (partial-completion-mode): Use minibufferp to avoid
6289         bumping into incompatible change to choose-completion-string-functions.
6290         * ido.el (ido-choose-completion-string): Make its calling convention
6291         more permissive.
6292         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
6293         base-size manipulation.
6294         (comint-dynamic-list-input-ring): Use dotimes and push.
6295         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
6296         fundamental-mode.  Use `or'.
6298 2009-10-14  Juri Linkov  <juri@jurta.org>
6300         * misearch.el (multi-isearch-next-buffer-from-list)
6301         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
6303 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6305         * Makefile.in (compile-onefile): Load `bytecomp' rather than
6306         `bytecomp.el'.
6308         * minibuffer.el (completion-pcm--merge-completions): Make sure the
6309         string we return is all made up of text from the completions rather
6310         than part from the completions and part from the input (bug#4219).
6312         * ido.el (ido-everywhere): Use define-minor-mode.
6314         * buff-menu.el (list-buffers, ctl-x-map):
6315         Mark the entry points with ;;;###autoload cookies.
6317 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
6319         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
6320         correctly in the detached head case.
6321         (vc-git-print-log): Remove unused binding.
6323         * vc.el (vc-responsible-backend): When a directory is passed for
6324         for registration create a VC repository if no backend is
6325         responsible for the directory argument.
6326         (vc-deduce-fileset): Tell vc-responsible-backend to register.
6328         * vc.el: Move comments about RCS and SCCS ...
6329         * vc-rcs.el:
6330         * vc-sccs.el: ... here, respectively.
6332 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6334         * minibuffer.el (completion--file-name-table): Return nil if there's
6335         no file completion, even if substitute-in-file-name changed
6336         the string (bug#4708).
6338 2009-10-13  Juri Linkov  <juri@jurta.org>
6340         * files-x.el (read-file-local-variable-value): Don't filter out
6341         minor modes from mode name completion (bug#4664).
6343 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
6345         * international/mule-cmds.el (ucs-names): Remove exclusion of
6346         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
6348 2009-10-13  Kenichi Handa  <handa@m17n.org>
6350         * international/uni-name.el: Regenerated.
6352 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
6354         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
6355         should be automatically buffer-local, but isn't.)
6357 2009-10-12  Sam Steingold  <sds@gnu.org>
6359         * progmodes/compile.el (compilation-next-error-function): Fix the
6360         timestamps if the buffer has been visited before.
6361         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
6362         non-anchored patterns, like the perl one (bug#3928).
6364 2009-10-12  Glenn Morris  <rgm@gnu.org>
6366         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
6367         Let-bind `size'.
6369 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
6371         * proced.el (proced-unload-function): New function.
6373         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
6374         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
6375         Doc fix.
6377         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
6379 2009-10-11  Juri Linkov  <juri@jurta.org>
6381         * files-x.el (read-file-local-variable-value):
6382         Provide default value only for bound variables (bug#4664).
6384 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
6386         * net/tramp.el (tramp-local-host-p): Function shall return nil for
6387         connection methods like smb.
6389         * net/tramp-cache.el (tramp-flush-connection-property): The hash
6390         can be empty.
6392         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6393         (tramp-smb-file-name-handler-alist): Add handlers for
6394         `add-name-to-file', `make-symbolic-link'.
6395         (tramp-smb-handle-add-name-to-file)
6396         (tramp-smb-do-file-attributes-with-stat)
6397         (tramp-smb-handle-make-symbolic-link)
6398         (tramp-smb-get-cifs-capabilities): New defuns.
6399         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
6400         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
6401         (tramp-smb-handle-file-local-copy)
6402         (tramp-smb-handle-make-directory-internal)
6403         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
6404         The file name syntax depends on cifs capabilities.
6405         (tramp-smb-handle-file-attributes):
6406         Call `tramp-smb-do-file-attributes-with-stat' if possible.
6407         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
6408         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
6410 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
6412         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
6413         (eieio-defclass): Apply deftype handler and setf-method properties
6414         directly.
6415         (eieio-add-new-slot): Avoid union function from cl library.
6416         (eieio--typep): New function.
6417         (eieio-perform-slot-validation): Use it.
6419 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
6421         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
6422         Update documentation to refer to the variables documented in r1.135.
6423         (Bug#4188)
6425 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
6427         * bookmark.el (Info-suffix-list): Remove this unused variable.
6428         (bookmark-current-point): Remove this obsolete variable.
6429         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
6430         Adjust for removal of bookmark-current-point.
6432         (bookmarks-already-loaded, bookmark-current-buffer)
6433         (bookmark-yank-point): Document.  (Bug#4188)
6435 2009-10-10  Glenn Morris  <rgm@gnu.org>
6437         * frame.el (frame-height): Doc fix.
6439         * calendar/calendar.el (calendar-split-width-threshold): New option.
6440         (calendar-basic-setup): Use calendar-split-width-threshold.
6442 2009-10-10  Sascha Wilde  <wilde@sha-bang.de>
6444         * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
6445         Use .la for Automake.
6447 2009-10-09  Chong Yidong  <cyd@stupidchicken.com>
6449         * cedet/ede/pconf.el (ede-proj-configure-synchronize):
6450         Use "autoreconf -i".  Suggested by Andreas Schwab.
6452 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
6454         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
6455         Ideographic Supplement" range (U+1F200..U+1F2FF).
6457 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6459         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
6460         since the list will have been rebuilt anyway.  (Bug#4349)
6462 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6464         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
6465         (bookmark-bmenu-execute-deletions): Don't save here, as
6466         bookmark-delete will now do so if necessary.
6467         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
6468         (Bug#4348)
6470 2009-10-09  Glenn Morris  <rgm@gnu.org>
6472         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
6474 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
6476         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
6477         (bookmark-jump-other-window): Just invoke bookmark-jump with new
6478         argument now, so the two function's behaviors will match.  (Bug#3645)
6480 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
6482         * cedet/ede/proj.el (project-make-dist, project-compile-project):
6483         Fix filename test.
6484         (ede-proj-dist-makefile): Use expand-file-name instead of concat
6485         to expand file names.
6487 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
6489         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
6490         (tramp-file-name-real-host, tramp-file-name-port):
6491         Apply `save-match-data'.
6493         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
6494         case both directories are remote.
6495         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
6496         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
6498 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
6500         * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
6501         (ede-proj-target-makefile-objectcode): Use it.
6503         * cedet/ede/source.el (ede-want-any-source-files-p)
6504         (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
6505         Return search result.  This error was introduced while merging.
6507 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
6509         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
6511 2009-10-07  Glenn Morris  <rgm@gnu.org>
6513         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
6514         of concat.
6516 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6518         * files-x.el (read-file-local-variable): Include some
6519         non-user-variables in the completion table (bug#4664).
6521 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
6523         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
6524         message.
6526         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
6527         (tramp-smb-file-name-handler-alist): Add handler for
6528         `copy-directory', `expand-file-name', `set-file-modes'.
6529         (tramp-smb-handle-copy-directory)
6530         (tramp-smb-handle-expand-file-name)
6531         (tramp-smb-handle-set-file-modes): New defuns.
6532         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
6533         (tramp-smb-handle-file-attributes): Simplify check for retrieving
6534         entry.
6535         (tramp-smb-handle-insert-directory): Don't flush the cache.
6536         (tramp-smb-maybe-open-connection): Check for samba client and
6537         server versions.
6539 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
6541         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
6542         to not error out of search for "^lisp=" fails.
6544 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
6546         * makefile.w32-in (WINS_UPDATES): New macro.
6547         (custom-deps, finder-data, autoloads): Use it.
6549 2009-10-07  Glenn Morris  <rgm@gnu.org>
6551         * Makefile.in (autoloads): Revert previous change.
6552         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
6553         the list of preloaded files passed on the command-line, get
6554         it from src/Makefile.
6556         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
6557         show the original buffer rather than a random one.
6559 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
6561         * help.el (describe-no-warranty): Place point in a slightly better
6562         position in the GPLv3 text.
6564 2009-10-06  Sam Steingold  <sds@gnu.org>
6566         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
6567         the comm attribute is present before calling regexp-quote.
6569 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
6571         * play/animate.el (animate-string): For good effect, make sure
6572         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
6574         * play/animate.el (animate-sequence, animate-birthday-present):
6575         * misc.el (butterfly): Don't set `indent-tabs-mode'.
6577 2009-10-06  Glenn Morris  <rgm@gnu.org>
6579         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
6581         * emacs-lisp/autoload.el (autoload-excludes): New variable.
6582         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
6583         (batch-update-autoloads): Process a string value of autoload-excludes,
6584         set during the build process.
6585         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
6587         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
6588         inside with-parsed...  macro so that `v' is defined.
6590         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
6591         * progmodes/fortran.el (fortran-end-of-block)
6592         (fortran-beginning-of-block):
6593         Also push mark in the macro case.
6595         * emerge.el (emerge-show-file-name):
6596         * calc/calc.el (calc-quit):
6597         * calc/calc-misc.el (calc-big-or-small):
6598         * calc/calc-graph.el (calc-graph-view):
6599         * calc/calc-ext.el (calc-reset):
6600         * calendar/calendar.el (calendar-basic-setup):
6601         Use window-full-height-p.
6603         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
6604         header we don't understand, don't insert another.  (Bug#4624)
6605         If changing mime charset, insert the new one in the right place.
6607 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
6609         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
6610         (cal-tex-cursor-month): Correctly increment the end date for diary and
6611         holiday listing.  (Bug#4626)
6613 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6615         * help-fns.el (describe-function-1): Don't burp if the function is not
6616         a symbol.
6618 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
6620         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
6621         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
6622         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
6623         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
6625         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
6626         (eieio-default-superclass): Reflow docstrings.
6627         (this, class-option-assoc, defclass, eieio-class-un-autoload)
6628         (eieio-unbind-method-implementations, defmethod)
6629         (eieio-validate-slot-value, eieio-validate-class-slot-value)
6630         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
6631         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
6632         (eieio-slot-originating-class-p, eieio-slot-name-index)
6633         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
6634         (constructor, initialize-instance, no-next-method, object-print)
6635         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
6636         Fix typos in docstrings.
6637         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
6638         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
6639         (next-method-p): Doc fixes.
6640         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
6641         Fix typos in error messages.
6642         (eieio-defmethod): Fix typo in description of generic method.
6644         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
6645         (eieio-persistent-save-interactive, slot-missing):
6646         Fix typos in docstrings.
6647         (eieio-instance-inheritor-slot-boundp): Doc fix.
6649         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
6650         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
6652         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
6653         (eieio-custom-object-apply-reset):
6654         Fix typos in docstrings and error messages.
6656         * emacs-lisp/eieio-datadebug.el (data-debug-show):
6657         Fix typo in docstring.
6659         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
6660         (eieio-browse-tree): Doc fix.
6661         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
6662         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
6663         Fix typos in docstrings.
6665         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
6666         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
6667         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
6668         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
6669         Reflow docstrings.
6671 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
6673         * vc-hg.el (log-view-vc-backend): Declare for compiler.
6674         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
6675         Set log-view-vc-backend so that diff can work.
6677         * log-view.el (log-view-diff): Use vc-diff-internal instead of
6678         vc-version-diff.
6679         (vc-diff-internal): Autoload this instead of vc-version-diff.
6681 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
6683         * simple.el (eval-expression): Doc fix.
6685         * progmodes/cwarn.el (cwarn-mode): Doc fix.
6687 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
6689         * files.el (directory-files-no-dot-files-regexp): New defconst.
6690         (delete-directory): Use it.
6691         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
6693         * net/tramp.el (tramp-verbose): Fix docstring.
6694         (tramp-methods): Add recursive option to `tramp-copy-args'.
6695         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
6696         "scp1_old", "scp2_old", "rsync", "rsyncc".
6697         (tramp-default-method): Check also for `auth-source-user-or-password'.
6698         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
6699         Add handler for `copy-directory'.
6700         (tramp-handle-copy-directory): New defun.
6701         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
6702         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
6703         Optimize sent command.
6705 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6707         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
6708         window if necessary.
6710         * calendar/calendar.el (calendar-basic-setup): Don't call
6711         switch-to-buffer in a dedicated window.
6713 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
6715         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
6716         don't do anything related to relocating, just return nil.
6717         (bookmark-error-no-filename): New error.
6718         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
6719         bookmark has no file.  Don't even attempt to handle things that
6720         are not files; the whole point of custom handlers is to keep that
6721         knowledge elsewhere anyway.  Tighten some comments.
6722         (bookmark-file-or-variation-thereof): Remove now-unused function.
6723         (bookmark-location): Doc string fix.
6724         (Bug#4250)
6726 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6728         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
6729         don't use a file dialog, because they usually don't know how to read
6730         a directory target from the user.  (Bug#4230)
6731         Also, make sure the prompt can display directories as well as files.
6733 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6735         * bookmark.el (bookmark-set, bookmark-buffer-name):
6736         Improve doc strings.  (Bug#1193)
6738 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6740         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
6741         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
6742         (bookmark-get-annotation, bookmark-set-annotation)
6743         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
6744         (bookmark-set-position, bookmark-get-front-context-string)
6745         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
6746         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
6747         (bookmark-jump-other-window, bookmark-handle-bookmark)
6748         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
6749         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
6750         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
6751         Improve doc strings to say whether bookmark can be a string or
6752         a record or both, and make other consistency and clarity fixes.
6753         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
6754         (bookmark-default-annotation-text, bookmark-yank-word)
6755         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
6756         (bookmark-import-new-list, bookmark-maybe-rename)
6757         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
6758         (bookmark-bmenu-bookmark): Give these doc strings.
6759         (bookmark-bmenu-check-position): Give this a doc string, but also
6760         add a FIXME comment about how the function may be pointless.
6761         (bookmark-default-handler): Rework doc string and change a
6762         parameter name, to clarify that this takes a bookmark record
6763         not a bookmark name.
6764         (bookmark-set): Change a parameter name to indicate its meaning,
6765         and improve the doc string a bit.
6766         (Bug#4188)
6768 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6770         * bookmark.el (bookmark-alist): Document the new `handler' element
6771         in the param alist.
6772         (bookmark-make-record-function): Adjust documentation for above.
6773         (Bug#4193)
6775 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
6777         * info.el (Info-bookmark-make-record): Document this function.
6778         (Info-bookmark-jump): Document with a doc string, not just a comment.
6779         (Bug#4203)
6781 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
6783         * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
6784         (semantic-new-buffer-fcn): Call parser setup functions here.
6785         (semantic-mode): Don't call parser setup functions here, it's done
6786         in semantic-new-buffer-fcn now.
6787         (semantic-mode): Parse all existing buffers when enabled.
6789         * cedet/srecode/compile.el (srecode-compile-file):
6790         Call semantic-new-buffer-fcn if the buffer has not been parsed.
6792 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
6794         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
6796         * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
6797         (proj-comp-insert-variable-once): New macro, renamed from
6798         ede-pmake-insert-variable-once in ede/pmake.edl.
6799         (ede-proj-makefile-insert-variables): Use it.
6801 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
6803         * files.el (copy-directory): New defun.
6805         * dired-aux.el (dired-copy-file-recursive): Use it.
6807 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
6809         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
6810         (makefile-end-of-command):
6811         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
6812         (semantic-end-of-context): Fix previous change.  Doc fixes.
6814 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
6816         * files-x.el (modify-dir-local-variable)
6817         (copy-dir-locals-to-file-locals-prop-line):
6818         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
6819         (makefile-end-of-command):
6820         * cedet/semantic/lex.el (semantic-lex-token):
6821         * cedet/semantic/analyze/fcn.el
6822         (semantic-analyze-dereference-metatype-1):
6823         * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
6824         (semantic-lex-cpp-undef):
6825         * cedet/semantic/wisent/wisent.el (wisent-skip-block):
6826         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
6827         (semantic-end-of-context): Fix typos in docstrings.
6829         * recentf.el (recentf-unload-function): New function.
6831 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
6833         * cedet/ede.el (ede-project-placeholder-cache-file):
6834         * cedet/semantic/db-file.el (semanticdb-default-save-directory):
6835         * cedet/srecode/map.el (srecode-map-save-file):
6836         Use locate-user-emacs-file.  Suggested by Juanma Barranquero.
6838 2009-10-04  Glenn Morris  <rgm@gnu.org>
6840         * window.el (window-full-height-p): Add doc string.
6842 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
6844         * window.el (window-full-height-p): New function.  (Bug#4543)
6846 2009-10-03  Chong Yidong  <cyd@stupidchicken.com>
6848         * cedet/srecode/insert.el: Require srecode/args.
6850         * cedet/srecode/args.el: Require srecode/dictionary instead of
6851         srecode/insert.
6853         * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
6855         * files.el (auto-mode-alist): Add .srt and Project.ede.
6857         * cedet/semantic.el (semantic-mode):
6858         Handle srecode-template-mode-hook as well.
6859         (semantic-mode): Use js-mode-hook for Javascript hook.
6861         * cedet/srecode/template.el: Remove hook variable.
6863         * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
6865         * cedet/ede.el (ede-target-forms-menu): Don't enable if no
6866         projects exist.
6867         (ede-project-placeholder-cache-file): Default to a file in
6868         user-emacs-directory.
6870         * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
6871         templates in data-directory.
6872         (srecode-map-save-file): Default to a file in user-emacs-directory.
6874         * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
6875         directory.
6877 2009-09-30  Eric Ludlam  <zappo@gnu.org>
6879         * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
6880         Doc fix.
6882         * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
6883         Only insert each variable once.
6885         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
6886         (ede-pmake-insert-variable-shared): Use it.
6888         * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
6889         for lexical table iff table is nil.
6891 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
6893         * vc.el: Remove commented out code.
6894         (vc-derived-from-dir-mode): Remove, unused.
6895         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
6897 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
6899         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
6900         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
6901         there could be recursive loading when `default-directory' is a
6902         remote file name.  (Bug#4614)
6904 2009-10-03  Glenn Morris  <rgm@gnu.org>
6906         * calendar/calendar.el (calendar-basic-setup): Handle the case where
6907         the frame is wide.
6908         (calendar-generate-window): Test for shrinkability rather than width.
6910         * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
6911         declaration, currently false.
6913         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
6914         reusing existing buffers, in case we happen to visit two files with the
6915         same basename.  (Bug#4593)
6917 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
6919         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
6920         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
6921         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
6922         subdirs of cedet as well.
6923         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
6925 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6927         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
6928         Obey advertised-signature-table.
6930         * help-fns.el (help-function-arglist): Don't check
6931         advertised-signature-table.
6932         (describe-function-1): Do it here instead so it also applies to subrs.
6934 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
6936         * simple.el (start-file-process): Say in the doc-string, that file
6937         handlers might not support pty association, if PROGRAM is nil.
6939         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
6940         HOST and USER are strings.  They are nil, when there are
6941         incomplete entries in ~/.netrc, for example.
6942         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
6943         root directory ("device busy" error otherwise).
6945         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
6946         Flush file properties of created directory.
6948 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
6950         * makefile.w32-in (WINS_BASIC): Remove cedet.
6951         (WINS_CEDET): Add cedet.
6952         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
6954 2009-10-02  Kevin Ryde  <user42@zip.com.au>
6956         * net/browse-url.el (browse-url): Pass any symbol in
6957         browse-url-browser-function to `apply', since if you've mistakenly put
6958         an unbound symbol then the error is clearer.  (Bug#4531)
6960 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
6962         * allout.el (allout-init, allout-back-to-current-heading)
6963         (allout-beginning-of-current-entry, allout-ascend-to-depth)
6964         (allout-ascend, allout-up-current-level, allout-end-of-level)
6965         (allout-previous-visible-heading, allout-forward-current-level)
6966         (allout-backward-current-level, allout-show-children):
6967         * apropos.el (apropos-describe-plist):
6968         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
6969         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
6970         * completion.el (add-completion, add-permanent-completion):
6971         * descr-text.el (describe-text-category, describe-char):
6972         * desktop.el (desktop-lazy-abort):
6973         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
6974         * dired.el (dired-build-subdir-alist):
6975         * ediff.el (ediff-version):
6976         * elide-head.el (elide-head, elide-head-show):
6977         * emerge.el (emerge-version):
6978         * env.el (getenv):
6979         * face-remap.el (variable-pitch-mode):
6980         * faces.el (describe-face):
6981         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
6982         (dired-at-point):
6983         * files.el (find-file-existing, auto-save-mode):
6984         * font-lock.el (font-lock-fontify-buffer):
6985         * help-fns.el (describe-function, describe-variable)
6986         (describe-syntax, describe-categories):
6987         * help.el (view-lossage, describe-bindings, describe-key)
6988         (describe-mode):
6989         * hexl.el (hexl-current-address):
6990         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
6991         * info.el (Info-goto-emacs-key-command-node):
6992         * log-edit.el (log-edit-insert-cvs-template)
6993         (log-edit-insert-cvs-rcstemplate):
6994         * menu-bar.el (menu-bar-mode):
6995         * mouse.el (mouse-appearance-menu):
6996         * newcomment.el (comment-indent-new-line):
6997         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
6998         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
6999         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
7000         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
7001         * recentf.el (recentf-mode):
7002         * savehist.el (savehist-mode, savehist-save):
7003         * shadowfile.el (shadow-copy-files):
7004         * simple.el (kill-ring-save, next-line, previous-line)
7005         (normal-erase-is-backspace-mode):
7006         * strokes.el (strokes-update-window-configuration)
7007         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
7008         (strokes-xpm-for-stroke):
7009         * time.el (emacs-uptime, emacs-init-time):
7010         * tutorial.el (tutorial--describe-nonstandard-key)
7011         (tutorial--detailed-help):
7012         * type-break.el (type-break-mode)
7013         (type-break-mode-line-message-mode, type-break-query-mode)
7014         (type-break-guesstimate-keystroke-threshold):
7015         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
7016         * version.el (emacs-version):
7017         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
7018         * winner.el (winner-mode):
7019         * calendar/timeclock.el (timeclock-in, timeclock-out)
7020         (timeclock-status-string, timeclock-change)
7021         (timeclock-workday-remaining-string)
7022         (timeclock-workday-elapsed-string)
7023         (timeclock-when-to-leave-string):
7024         * calendar/todo-mode.el (todo-add-category):
7025         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
7026         * emacs-lisp/autoload.el (update-file-autoloads):
7027         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
7028         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
7029         (checkdoc-message-text, checkdoc-defun):
7030         * emacs-lisp/debug.el (debugger-list-functions):
7031         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
7032         * emacs-lisp/eieio-opt.el (eieio-describe-class)
7033         (eieio-describe-generic):
7034         * emacs-lisp/lisp-mnt.el (lm-synopsis):
7035         * emacs-lisp/shadow.el (list-load-path-shadows):
7036         * emulation/cua-base.el (cua-mode):
7037         * emulation/edt.el (edt-set-scroll-margins):
7038         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
7039         (tpu-toggle-regexp, tpu-toggle-search-direction)
7040         (tpu-toggle-rectangle, tpu-toggle-control-keys):
7041         * emulation/tpu-extras.el (tpu-set-scroll-margins):
7042         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
7043         (viper-set-parsing-style-toggling-macro)
7044         (viper-set-emacs-state-searchstyle-macros):
7045         * emulation/viper.el (viper-set-hooks):
7046         * eshell/esh-mode.el (eshell-truncate-buffer):
7047         * international/mule-cmds.el (prefer-coding-system)
7048         (describe-input-method, describe-language-environment):
7049         * international/mule-diag.el (list-character-sets)
7050         (describe-character-set, describe-coding-system)
7051         (describe-fontset, list-fontsets, list-input-methods):
7052         * mail/sendmail.el (mail-signature):
7053         * net/ange-ftp.el (ange-ftp-copy-file):
7054         * net/browse-url.el (browse-url):
7055         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
7056         * net/quickurl.el (quickurl-add-url):
7057         * net/rcirc.el (names, topic):
7058         * net/xesam.el (xesam-mode):
7059         * play/5x5.el (5x5-new-game):
7060         * play/yow.el (apropos-zippy):
7061         * progmodes/ada-mode.el (ada-mode-version):
7062         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
7063         (f90-end-of-block)
7064         (f90-beginning-of-block):
7065         * progmodes/fortran.el (fortran-end-of-block)
7066         (fortran-beginning-of-block):
7067         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
7068         * progmodes/python.el (python-describe-symbol, python-shell):
7069         * term/ns-win.el (ns-print-buffer):
7070         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
7071         * textmodes/flyspell.el (flyspell-mode-on):
7072         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
7073         (pages-directory-for-addresses):
7074         * textmodes/table.el (table-recognize-cell)
7075         (table-query-dimension, table-generate-source)
7076         (table-insert-sequence, table--warn-incompatibility):
7077         * textmodes/tex-mode.el (tex-validate-buffer):
7078         * textmodes/texinfmt.el (texinfmt-version)
7079         (texinfo-format-buffer):
7080         Use `called-interactively-p' instead of `interactive-p'.
7082 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
7084         * image-mode.el (image-toggle-display):
7085         * emacs-lisp/elp.el (elp-instrument-function):
7086         * emacs-lisp/advice.el (ad-make-advised-definition):
7087         * emacs-lisp/easy-mmode.el (define-minor-mode):
7088         * net/browse-url.el (browse-url-maybe-new-window):
7089         * progmodes/sh-script.el (sh-learn-buffer-indent):
7090         Pass new argument 'any to `called-interactively-p'.
7092 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
7094         * international/uni-bidi.el:
7095         * international/uni-category.el:
7096         * international/uni-combining.el:
7097         * international/uni-comment.el:
7098         * international/uni-decimal.el:
7099         * international/uni-decomposition.el:
7100         * international/uni-digit.el:
7101         * international/uni-lowercase.el:
7102         * international/uni-mirrored.el:
7103         * international/uni-name.el:
7104         * international/uni-numeric.el:
7105         * international/uni-old-name.el:
7106         * international/uni-titlecase.el:
7107         * international/uni-uppercase.el:
7108         Regenerate from Unicode 5.2.0 data.
7110 2009-10-01  Glenn Morris  <rgm@gnu.org>
7112         * Makefile.in (ELCFILES): Regenerate.
7114 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7116         * subr.el (interactive-p): Mark obsolete.
7117         (called-interactively-p): Make the optional-ness of `kind' obsolete.
7118         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
7119         advertised-signature-table for subroutines as well.
7121         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
7122         (set-advertised-calling-convention): New function.
7123         (make-obsolete, define-obsolete-function-alias)
7124         (make-obsolete-variable, define-obsolete-variable-alias):
7125         Make the optional-ness of `when' obsolete.
7126         (define-obsolete-face-alias): Make `when' non-optional.
7127         * help-fns.el (help-function-arglist):
7128         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
7129         Use advertised-signature-table.
7131 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
7133         * files.el (delete-directory): New defun.  The original function
7134         in fileio.c has been renamed to `delete-directory-internal'.
7136         * dired.el (dired-delete-file): Call `delete-directory' with
7137         RECURSIVE parameter.
7139         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
7140         parameter RECURSIVE.  Implementation is missing.
7142         * net/tramp.el (tramp-handle-make-directory): Flush upper
7143         directory's file properties.
7144         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
7145         (tramp-handle-dired-recursive-delete-directory): Flush directory
7146         properties after the remove command only.
7148         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
7149         Handle optional parameter RECURSIVE.
7151         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
7152         Handle optional parameter RECURSIVE.
7154         * net/tramp-smb.el (tramp-smb-errors): Add error message for
7155         connection timeout.
7156         (tramp-smb-handle-delete-directory): Handle optional parameter
7157         RECURSIVE.
7159 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7161         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
7162         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
7163         (byte-compile-defmacro): Use backquotes.
7165         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
7167         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
7168         has no associated file.
7169         (vc-resynch-buffer): Use vc-dir-buffers.
7171 2009-10-01  Glenn Morris  <rgm@gnu.org>
7173         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
7174         (chart-file-count):
7175         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
7176         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
7177         * emacs-lisp/eieio-opt.el (eieio-describe-class):
7178         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
7179         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
7180         (eieio-copy-parents-into-subclass, make-instance, class-children)
7181         (eieio-generic-form):
7182         * cedet/cedet-files.el (cedet-directory-name-to-file-name):
7183         * cedet/cedet-idutils.el (cedet-idutils-search)
7184         (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
7185         (cedet-idutils-version-check):
7186         * cedet/cedet.el (cedet-version):
7187         * cedet/data-debug.el (data-debug-insert-overlay-button)
7188         (data-debug-insert-overlay-list-button)
7189         (data-debug-insert-buffer-button)
7190         (data-debug-insert-buffer-list-button)
7191         (data-debug-insert-process-button, data-debug-insert-ring-button)
7192         (data-debug-insert-widget, data-debug-insert-stuff-list-button)
7193         (data-debug-insert-stuff-vector-button)
7194         (data-debug-insert-symbol-button, data-debug-insert-string)
7195         (data-debug-insert-number, data-debug-insert-lambda-expression)
7196         (data-debug-insert-nil, data-debug-insert-simple-thing)
7197         (data-debug-insert-custom, data-debug-edebug-expr):
7198         * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
7199         (global-ede-mode-map, ede-new, ede-debug-target)
7200         (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
7201         * cedet/semantic.el (semantic-minimum-working-buffer-size)
7202         (semantic-fetch-tags, semantic-submode-list)
7203         (semantic-default-submodes):
7204         * cedet/ede/source.el (ede-source-match):
7205         * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
7206         (project-am-package-info):
7207         * cedet/ede/proj.el (ede-proj-target, project-new-target):
7208         * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
7209         * cedet/ede/proj-comp.el (ede-current-build-list):
7210         * cedet/ede/makefile-edit.el (makefile-move-to-macro):
7211         * cedet/ede/files.el (ede-toplevel-project-or-nil):
7212         * cedet/ede/cpp-root.el (initialize-instance):
7213         * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
7214         (autoconf-parameter-strip, autoconf-insert-new-macro):
7215         * cedet/semantic/wisent.el (wisent-lex-eoi):
7216         * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
7217         (semantic-show-parser-state-mode):
7218         * cedet/semantic/texi.el (semantic-texi-environment-regexp):
7219         * cedet/semantic/tag.el (semantic-tag-new-variable)
7220         (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
7221         (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
7222         (semantic--tag-deep-copy-tag-list)
7223         (semantic-tag-components-with-overlays-default):
7224         * cedet/semantic/symref.el (semantic-symref-find-text):
7225         * cedet/semantic/senator.el (senator-yank-tag)
7226         (senator-transpose-tags-up):
7227         * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
7228         (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
7229         * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
7230         * cedet/semantic/lex.el (semantic-lex-comment-regex)
7231         (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
7232         (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
7233         * cedet/semantic/lex-spp.el
7234         (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
7235         (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
7236         * cedet/semantic/idle.el
7237         (semantic-idle-summary-current-symbol-info-brutish)
7238         (semantic-idle-summary-current-symbol-info-default):
7239         * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
7240         (semantic--grammar-macro-compl-dict):
7241         * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
7242         * cedet/semantic/format.el (semantic-format-tag-custom-list)
7243         (semantic-format-tag-canonical-name-default):
7244         * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
7245         (semantic-find-tags-for-completion)
7246         (semantic-find-tags-by-scope-protection-default)
7247         (semantic-deep-find-tags-for-completion):
7248         * cedet/semantic/edit.el
7249         (semantic-edits-incremental-reparse-failed-hook)
7250         (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
7251         (semantic-edits-splice-remove, semantic-edits-splice-replace):
7252         * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
7253         * cedet/semantic/dep.el (semantic-dependency-include-path):
7254         * cedet/semantic/db.el (semanticdb-default-find-index-class)
7255         (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
7256         (semanticdb-project-roots):
7257         * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
7258         (semanticdb-find-adebug-insert-scanned-tag-cons)
7259         (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
7260         (semanticdb-brute-deep-find-tags-for-completion):
7261         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
7262         * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
7263         (semantic-end-of-context-default)
7264         (semantic-ctxt-current-function-default)
7265         (semantic-ctxt-scoped-types-default):
7266         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
7267         (semantic-complete-inline-tag-engine)
7268         (semantic-complete-inline-custom-type)
7269         (semantic-complete-read-tag-analyzer):
7270         * cedet/semantic/chart.el (semantic-chart-tags-by-class)
7271         (semantic-chart-database-size):
7272         * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
7273         (semantic-analyze-current-context):
7274         * cedet/semantic/symref/list.el (semantic-symref)
7275         (semantic-symref-hide-buffer, semantic-symref-symbol):
7276         * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
7277         * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
7278         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
7279         * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
7280         (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
7281         (semantic-c-dereference-template):
7282         * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
7283         (semantic--analyze-refs-full-lookup-with-parents)
7284         (semantic--analyze-refs-full-lookup-simple):
7285         * cedet/semantic/analyze/complete.el
7286         (semantic-analyze-possible-completions):
7287         * cedet/srecode/table.el (srecode-mode-table-new):
7288         * cedet/srecode/srt.el (srecode-read-variable-name):
7289         * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
7290         * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
7291         (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
7292         * cedet/srecode/map.el (srecode-current-map):
7293         * cedet/srecode/insert.el (srecode-insert)
7294         (srecode-insert-variable-secondname-handler, srecode-insert-method)
7295         (srecode-template-inserter-point-override)
7296         (srecode-insert-include-lookup):
7297         * cedet/srecode/getset.el (srecode-auto-choose-class):
7298         * cedet/srecode/extract.el (srecode-inserter-extract):
7299         * cedet/srecode/document.el
7300         (srecode-document-autocomment-return-last-alist)
7301         (srecode-document-autocomment-param-type-alist)
7302         (srecode-document-insert-function-comment)
7303         (srecode-document-insert-variable-one-line-comment)
7304         (srecode-document-function-name-comment):
7305         * cedet/srecode/dictionary.el (srecode-create-dictionary)
7306         (srecode-compound-toString):
7307         * cedet/srecode/compile.el (srecode-flush-active-templates):
7308         * cedet/srecode/args.el (srecode-semantic-handle-:blank):
7309         Doc/message fixes.
7311         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
7312         match-data.  (Bug#4555).
7314         * cedet/semantic/bovine/gcc.el
7315         (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
7316         (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
7318         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
7319         rather than parsing it as a regexp.  This relaxes the layout
7320         requirements and makes errors easier to detect.
7321         (check-declare-verify): Check file is regular.
7322         (check-declare-directory): Doc fix.
7323         * subr.el (declare-function): Doc fix.
7325         * ibuffer.el (ibuffer-format-qualifier):
7326         * isearch.el (hi-lock-regexp-okay):
7327         * calc/calc.el (math-zerop):
7328         * mail/uce.el (rmail-msgbeg, rmail-msgend):
7329         * term/w32-win.el (setup-default-fontset, set-fontset-font):
7330         Remove unused declarations.
7332 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
7334         * cedet/semantic/wisent/javat-wy.el
7335         (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
7337 2009-09-30  Juanma Barranquero  <lekktu@gmail.com>
7339         * cedet/srecode/expandproto.el: Fix provide statement.
7341 2009-09-30  Eric Ludlam  <zappo@gnu.org>
7343         * emacs-lisp/eieio.el (boolean-p): Delete.
7345 2009-09-30  Sascha Wilde  <wilde@sha-bang.de>
7347         * cedet/ede/srecode.el: Fix provide statement.
7349 2009-09-30  Glenn Morris  <rgm@gnu.org>
7351         * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
7352         * cedet/ede/proj-aux.el (ede-aux-source):
7353         * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
7354         (ede-misc-source):
7355         * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
7356         (semantic-mrub-switch-tags): Fix doc typos.
7358         * cedet/semantic/db-global.el (data-debug-new-buffer)
7359         (data-debug-insert-thing): Remove unneeded declarations (one broken).
7360         (semanticdb-enable-gnu-global-databases): Fix prompt typo.
7362         * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
7364         * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
7365         use of CL function `remove-if-not'.
7367         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
7369         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
7370         filename is not a string.
7372 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
7374         * files.el (safe-local-eval-forms): Fix typo.
7376 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7378         * vc-hooks.el (vc-dir-buffers): New var.
7379         (vc-state-refresh): New function.
7380         (vc-state): Use it.
7381         (vc-after-save): Always ask the backend to recompute the new state.
7382         Always call vc-dir if necessary, using vc-dir-buffers.
7383         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
7384         Use vc-dir-buffers.
7385         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
7386         (vc-dir-prepare-status-buffer, vc-dir-update)
7387         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
7388         Don't call expand-file-name on default-directory.
7390 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
7392         * speedbar.el (speedbar-item-delete):
7393         * calc/calc-prog.el (calc-kbd-if):
7394         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
7396         * epa.el (epa-key-list-mode-map):
7397         * hi-lock.el (hi-lock-menu): Fix typos in menus.
7399         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
7400         (hs-show-hook): Fix typo in docstring.
7402 2009-09-29  Glenn Morris  <rgm@gnu.org>
7404         * cedet/semantic/symref/idutils.el:
7405         * cedet/semantic/symref/list.el: Relicense under GPLv3+.
7407         * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
7409         * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
7410         * cedet/semantic/tag-file.el (semanticdb-table-child-p):
7411         * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
7412         Mark declarations not understood by check-declare.
7414         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
7415         file-name-nondirectory call preventing location of cedet files.
7416         (check-declare-verify): Use literal search rather than re-search.
7417         Add basic defmethod and defclass, and define-overloadable-function.
7419         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7420         Use tramp-compat-file-attributes rather than nonexistent
7421         tramp-compat-handle-file-attributes.
7423         * Makefile.in (lisptagsfiles4): New.
7424         (AUTOGENEL): Add cedet loaddefs files.
7425         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
7426         (update-elclist, compile-always, backup-compiled-files)
7427         (bootstrap-clean): Add yet another directory level.
7428         (update-elclist): Use LC_COLLATE rather than COLLATE.
7429         (ELCFILES): Update, via `make update-elclist'.
7431 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
7433         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
7434         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
7435         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
7437 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
7439         * Makefile.in (lisptagsfiles3): Define.
7440         (TAGS, TAGS-LISP): Use it.
7441         (update-elclist): Add third directory level to look for elc files.
7442         (compile-always): Likewise.
7443         (backup-compiled-files): Likewise.
7444         (bootstrap-clean): Likewise.
7445         (ELCFILES): Update.
7447 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
7449         * Makefile.in (ELCFILES): Add CEDET files.
7451 2009-09-28  Eric Ludlam  <zappo@gnu.org>
7453         CEDET (development tools) package merged.
7455         * cedet/*.el:
7456         * cedet/ede/*.el:
7457         * cedet/semantic/*.el:
7458         * cedet/srecode/*.el: New files.
7460 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
7462         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
7464         * net/tramp.el (top): Require tramp-imap.
7466         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
7467         Use `tramp-compat-handle-file-attributes'.
7469 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
7471         * net/tramp-imap.el: New package.
7473 2009-09-28  Eric Ludlam  <zappo@gnu.org>
7475         * emacs-lisp/chart.el:
7476         * emacs-lisp/eieio-base.el:
7477         * emacs-lisp/eieio-comp.el:
7478         * emacs-lisp/eieio-custom.el:
7479         * emacs-lisp/eieio-datadebug.el:
7480         * emacs-lisp/eieio-opt.el:
7481         * emacs-lisp/eieio-speedbar.el:
7482         * emacs-lisp/eieio.el: New files.
7484         * cedet/cedet-cscope.el:
7485         * cedet/cedet-files.el:
7486         * cedet/cedet-global.el:
7487         * cedet/cedet-idutils.el:
7488         * cedet/data-debug.el:
7489         * cedet/inversion.el:
7490         * cedet/mode-local.el:
7491         * cedet/pulse.el: New files.
7493 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7495         * whitespace.el (whitespace-trailing-regexp)
7496         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
7497         Fix doc string.
7499 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
7501         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
7502         menu.
7504         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
7505         menu-bar-ediff-menu.
7507         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
7508         define-overloadable-function.
7510         * progmodes/autoconf.el: Provide autoconf as well, so that this
7511         file can be `require'd.
7513         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
7515         * emacs-lisp/autoload.el (generated-autoload-feature)
7516         (generated-autoload-load-name): New vars.
7517         (autoload-rubric, autoload-generate-file-autoloads): Use them.
7518         (make-autoload): Recognize define-overloadable-function and
7519         defclass forms (for EIEIO).
7521         * Makefile.in (update-subdirs): Exclude cedet directory.
7523 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
7525         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
7527         * faces.el: Default light-background background for region face to
7528         ns_selection_color under NS.
7530 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
7532         * net/imap-hash.el: New library, see NEWS.
7534         * Makefile.in (ELCFILES): Add imap-hash.el.
7536 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7538         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
7539         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
7540         * help-macro.el (make-help-screen): Avoid using an ambiguous function
7541         definition where the docstring could be taken for the return value.
7543 2009-09-26  Glenn Morris  <rgm@gnu.org>
7545         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
7546         Add option to only show images below a certain size.
7547         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
7548         save-excursion calls.
7550 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
7552         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
7553         subdirectories) and eieio.
7555 2009-09-26  Alan Mackenzie  <acm@muc.de>
7557         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
7558         buggy bracketing.  (Bug#4289)
7560         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
7561         character constants (as case labels).  (Bug#4289)
7563 2009-09-25  Juri Linkov  <juri@jurta.org>
7565         * files.el (safe-local-eval-forms): Allow time-stamp in
7566         before-save-hook (Bug#4554).
7568 2009-09-25  Drew Adams  <drew.adams@oracle.com>
7570         * menu-bar.el (list-buffers-directory): Doc fix.
7572 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7574         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
7575         Try and avoid copying twice the same paragraph.
7576         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
7577         Remove save-excursion.
7578         (log-edit-changelog-entry): Do it here instead.
7580 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
7582         * bs.el (bs--get-file-name): Use `list-buffers-directory'
7583         when available, instead of hardcoding mode names.  Doc fix.
7585         * menu-bar.el (list-buffers-directory): Add docstring.
7586         Make automatically buffer-local.
7588         * dired.el (dired-mode):
7589         * files.el (cd-absolute):
7590         * pcvs.el (cvs-temp-buffer):
7591         * pcvs-util.el (cvs-get-buffer-create):
7592         * shell.el (shell-mode):
7593         * vc-dir.el (vc-dir-mode):
7594         Don't make `list-buffers-directory' buffer local.
7596 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
7598         * comint.el (comint-exec, comint-run, make-comint):
7599         Doc fixes (Bug#4542).
7601 2009-09-25  Glenn Morris  <rgm@gnu.org>
7603         * mail/rmailmm.el (rmail-mime): New custom group.
7604         Move all defcustoms in this file into this group.
7605         (rmail-mime-media-type-handlers-alist): Revert previous change.
7606         (rmail-mime-show-images): New option.
7607         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
7608         references to it, since it wasn't actually used for anything.
7609         (rmail-mime-insert-image): New function.
7610         (rmail-mime-image): Use rmail-mime-insert-image.
7611         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
7612         obey the value of `rmail-mime-show-images' option.  Print the size of
7613         attachments.
7615 2009-09-25  David Engster  <deng@randomsample.de>
7617         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
7619 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
7621         * whitespace.el: Does not highlight trailing spaces While point is
7622         at end of line.  Does not highligt spaces at beginning of buffer
7623         while point is at beginning of buffer.  Does not highlight spaces
7624         at end of buffer while point is at end of buffer.  (Bug#4177)
7625         New version 12.0.
7626         (whitespace-display-mappings): Adjust initialization.
7627         (whitespace-point, whitespace-font-lock-refontify): New vars.
7628         (whitespace-color-on, whitespace-color-off): Adjust code.
7629         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
7630         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
7631         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
7633 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
7635         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
7637         * textmodes/sgml-mode.el: Remove xml-mode alias.
7639         * files.el (auto-mode-alist, conf-mode-maybe)
7640         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
7642 2009-09-24  Alan Mackenzie  <acm@muc.de>
7644         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
7645         c-forward-conditionals, but it doesn't move point and doesn't set
7646         the mark.
7647         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
7648         (c-down-conditional-with-else, c-backward-conditional)
7649         (c-forward-conditional): Refactor to use c-scan-conditionals.
7651 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
7653         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
7654         (help-default-arg-highlight): Remove.
7655         (help-highlight-arg): New function.
7656         (help-do-arg-highlight): Use it.
7657         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
7659 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7661         * term.el (term-set-scroll-region, term-handle-ansi-escape):
7662         Undo last change, which didn't fix the problem and introduced others.
7664 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
7666         * progmodes/gdb-mi.el: Don't require speedbar.
7667         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
7669 2009-09-24  Glenn Morris  <rgm@gnu.org>
7671         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
7673         * term/ns-win.el (ns-reg-to-script): Define for compiler.
7675         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
7676         there is no newline after the final mime boundary.  (Bug#4539)
7677         Move markers on insertion so that any buttons inserted don't end up in
7678         the next part of a multipart message.
7679         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
7680         (rmail-mime-bulk-handler): Optionally handle images.
7681         (rmail-mime-image): New button action.
7682         (rmail-mime-image-handler): New function.
7683         (rmail-mime-mode): New mode.
7684         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
7686 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7688         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
7689         than just dropping elements from it (bug#4504).
7691         * term.el (term-set-scroll-region): Don't move cursor any more.
7692         (term-handle-ansi-escape): Call term-goto here instead.
7693         Suggested by Ivan Kanis <apple@kanis.eu>.
7695         * term.el: Require CL.
7696         (term-ansi-reset): New function.
7697         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
7698         (term-handle-colors-array): Simplify.
7700 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
7702         * allout.el (allout-overlay-interior-modification-handler)
7703         (allout-obtain-passphrase):
7704         * epa-file.el (epa-file-write-region):
7705         * ps-print.el (ps-begin-job):
7706         * vc-hooks.el (vc-toggle-read-only):
7707         * vc-rcs.el (vc-rcs-rollback):
7708         * vc-sccs.el (vc-sccs-rollback):
7709         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
7710         (vc-version-diff, vc-revert, vc-rollback):
7711         * wdired.el (wdired-check-kill-buffer):
7712         * emacs-lisp/authors.el (authors):
7713         * net/socks.el (socks-open-connection):
7714         * net/zeroconf.el (zeroconf-service-add-hook):
7715         * obsolete/vc-mcvs.el (vc-mcvs-register):
7716         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
7717         (gdb-select-frame):
7718         * progmodes/grep.el (lgrep, rgrep):
7719         * progmodes/idlw-help.el (idlwave-help-check-locations)
7720         (idlwave-help-html-link, idlwave-help-assistant-open-link):
7721         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7722         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
7723         (reftex-toc-rename-label): Fix typos in error messages.
7725         * dired-aux.el (dired-do-shell-command): Reflow docstring.
7726         (dired-copy-how-to-fn): Doc fix.
7727         (dired-files-attributes, dired-read-shell-command):
7728         Fix typos in docstrings.
7730         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
7731         (dired-x-find-file-other-window): Reflow docstrings.
7732         (dired-omit-marker-char, dired-read-shell-command)
7733         (dired-x-submit-report): Fix typos in docstrings.
7735         * shell.el (shell-mode-hook):
7736         * view.el (View-scroll-line-forward):
7737         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
7738         Fix typos in docstrings.
7740         * net/dig.el (dig-invoke): Fix typo in docstring.
7741         (query-dig): Reflow docstring.
7743         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
7744         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
7745         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
7746         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
7747         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
7748         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
7749         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
7750         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
7751         (idlwave-completion-map, idlwave-current-indent)
7752         (idlwave-custom-ampersand-surround, idlwave-customize)
7753         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
7754         (idlwave-define-abbrev, idlwave-determine-class-special)
7755         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
7756         (idlwave-end-block-reg, idlwave-end-of-statement)
7757         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
7758         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
7759         (idlwave-explicit-class-listed, idlwave-file-header)
7760         (idlwave-fill-paragraph, idlwave-find-class-definition)
7761         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
7762         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
7763         (idlwave-in-quote, idlwave-indent-action-table)
7764         (idlwave-indent-expand-table, idlwave-indent-line)
7765         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
7766         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
7767         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
7768         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
7769         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
7770         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
7771         (idlwave-outlawed-buffers, idlwave-popup-select)
7772         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
7773         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
7774         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
7775         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
7776         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
7777         (idlwave-statement-type, idlwave-struct-skip)
7778         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
7779         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
7780         (idlwave-what-module-find-class): Fix typos in docstrings.
7781         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
7782         (idlwave-calculate-cont-indent, idlwave-expand-equal)
7783         (idlwave-find-module, idlwave-find-structure-definition)
7784         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
7785         (idlwave-list-load-path-shadows, idlwave-next-statement)
7786         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
7787         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
7788         (idlwave-template): Reflow docstrings.
7790         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
7791         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
7792         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
7793         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
7794         (idlwave-shell-display-line, idlwave-shell-display-wframe)
7795         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
7796         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
7797         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
7798         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
7799         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
7800         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
7801         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
7802         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
7803         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
7804         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
7805         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
7806         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
7807         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
7808         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
7809         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
7810         Fix typos in docstrings.
7811         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
7812         (idlwave-shell-hide-output, idlwave-shell-mode)
7813         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
7814         Reflow docstrings.
7816         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
7818 2009-09-24  Ivan Kanis  <apple@kanis.eu>
7820         * term.el (term-bold-attribute): New var.
7821         (term-handle-colors-array): Use it.
7823 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
7825         * progmodes/gdb-mi.el (gdb-version): New variable.
7826         (gdb-non-stop-handler): Set gdb-version.
7827         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
7828         Condition "--thread" option on gdb-version.
7829         (gdb-invalidate-threads): Remove unused argument.
7831 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7833         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
7834         to looking-back to avoid ridiculous slow down in large files (bug#4511).
7836 2009-09-23  Glenn Morris  <rgm@gnu.org>
7838         * mail/rmail.el (rmail-reply): Don't try to add a References header when
7839         replying to mail without References or Message-Id.  (Bug#4525)
7841 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
7843         * term/ns-win.el (ns-reg-to-script): New variable.
7845 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
7847         * epg.el (epg-wait-for-status): Preserve existing 'error results.
7849 2009-09-22  Sam Steingold  <sds@gnu.org>
7851         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
7852         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
7853         to 1 because hg returns status 1 when nothing is found.
7854         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
7856 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7858         * textmodes/fill.el: Convert to utf-8 encoding.
7859         (fill-french-nobreak-p): Remove redundant » and « inherited from our
7860         pre-unicode days.
7862         * add-log.el (change-log-fill-forward-paragraph): New function.
7863         (change-log-mode): Use it so fill-region DTRT.
7864         Set fill-indent-according-to-mode here rather than in
7865         change-log-fill-paragraph.
7866         (change-log-fill-paragraph): Remove.
7868 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
7870         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
7871         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
7873 2009-09-22  Glenn Morris  <rgm@gnu.org>
7875         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
7876         the scroll-bar scroll the calendar window rather than the buffer.
7878         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
7879         commands that move point (as opposed to scrolling).
7881         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
7883         * emacs-lisp/elint.el (elint): New custom group.
7884         (elint-log-buffer): Make it a defcustom.
7885         (elint-scan-preloaded, elint-ignored-warnings)
7886         (elint-directory-skip-re): New options.
7887         (elint-builtin-variables): Doc fix.
7888         (elint-preloaded-env): New variable.
7889         (elint-unknown-builtin-args): Add an entry for encode-time.
7890         (elint-extra-errors): Make it a variable rather than a constant.
7891         (elint-preloaded-skip-re): New constant.
7892         (elint-directory): Skip files matching elint-directory-skip-re.
7893         (elint-features): New variable, local to linted buffers.
7894         (elint-update-env): Initialize elint-features.  Possibly add
7895         elint-preloaded-env to the buffer's environment.
7896         (elint-get-top-forms): Bind elint-current-pos, for log messages.
7897         Skip quoted forms.
7898         (elint-init-form): New function, extracted from elint-init-env.
7899         Make non-list forms a warning rather than an error.
7900         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
7901         easy-menu-define, put that adds an error-condition, and provide.
7902         When requiring cl, also require cl-macs.  Really require cl, to handle
7903         some cl macros.  Store required libraries in the list elint-features,
7904         so as not to re-load them.  Treat cc-require like require.
7905         (elint-init-env): Call elint-init-form to do the work.
7906         Handle eval-and-compile and such like.
7907         (elint-add-required-env): Do not clear messages.
7908         (elint-special-forms): Add handlers for function, defalias, if, when,
7909         unless, and, or.
7910         (elint-form): Add optional argument to ignore elint-special-forms,
7911         useful to prevent recursive calls from handlers.  Doc fix.
7912         Respect elint-ignored-warnings.
7913         (elint-form): Respect elint-ignored-warnings.
7914         (elint-bound-variable, elint-bound-function): New variables.
7915         (elint-unbound-variable): Respect elint-bound-variable.
7916         (elint-get-args): Respect elint-bound-function.
7917         (elint-check-cond-form): Add some simple handling for (f)boundp and
7918         featurep tests.
7919         (elint-check-defalias-form): New handler.
7920         (elint-check-let-form): Make an empty let a warning rather than an
7921         error.
7922         (elint-check-setq-form): Make an empty setq a warning rather than an
7923         error.  Respect elint-ignored-warnings.
7924         (elint-check-defvar-form): Accept null doc-strings.
7925         (elint-check-conditional-form): New handler.  Does some simple-minded
7926         checking of featurep and (f)boundp tests.
7927         (elint-put-function-args): New function.
7928         (elint-initialize): Use elint-scan-doc-file rather than
7929         elint-find-builtin-variables.  Use elint-put-function-args.
7930         Possibly scan preloaded-file-list.
7931         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
7932         extend to handle functions as well.
7934 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
7936         * linum.el (linum-delete-overlays, linum-update-window):
7937         Do not modify the right margin.  (Bug#3971)
7939 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
7941         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
7942         nxml-mode instead of xml-mode.
7944 2009-09-21  Kevin Ryde  <user42@zip.com.au>
7946         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
7948 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7950         * net/dig.el (dig-mode): Use define-derived-mode.
7952 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
7954         * vc-dispatcher.el (vc-do-command): Return the process object in
7955         the asynchronous case.  Use when instead of if.  Do not run
7956         vc-exec-after to display a message if not enabled.  (Bug#4463)
7958         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
7959         properties to the stash strings.
7960         (vc-git-stash-list): Return a list of strings.
7961         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
7962         (vc-git-stash-show-at-point): New functions.
7963         (vc-git-stash-map): New keymap.
7965         * register.el (ctl-x-r-map): Define the keys here instead of
7966         using autoload.
7968 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
7970         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
7971         list, to workaround performance problem (bug#4485).
7973 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
7975         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
7977 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
7979         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
7980         Document that this option is not recommended to use.
7982 2009-09-19  Glenn Morris  <rgm@gnu.org>
7984         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
7985         variable `var'.
7987         * calc/calc-alg.el (var):
7988         * calc/calcalg2.el (var): Define for compiler.
7990 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
7992         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
7993         Doc fix (Bug#3932).
7995         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
7997         * time-stamp.el (time-stamp-month-dd-yyyy)
7998         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
7999         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
8000         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
8001         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
8002         Remove functions that have been obsolete since 1995 (Bug#4436).
8004         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
8005         indent buffer only if called interactively (Bug#4452).
8007 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
8008             Eli Zaretskii  <eliz@gnu.org>
8010         This fixes bug#4197 (merged to bug#865, though not identical).
8011         * server.el (server-auth-dir): Add docstring note about FAT32.
8012         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
8013         but warn against using them.
8015 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
8017         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
8018         older GDB where there is no has_more field.
8020 2009-09-19  Glenn Morris  <rgm@gnu.org>
8022         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
8024 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
8026         * files.el (auto-mode-alist): Change default for XML files to nXML
8027         mode (Bug#4169).
8029 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
8031         * server.el (server-ensure-safe-dir): Pass 'integer
8032         to `file-attributes', as suggested.
8034 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8036         * dired-aux.el (dired-query-alist): Remove spurious backslash.
8037         (dired-query): Use read-key.
8039 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
8041         * cus-start.el (ns-use-qd-smoothing): Remove.
8043 2009-09-18  Glenn Morris  <rgm@gnu.org>
8045         * allout.el (top-level): Remove unnecessary progn.
8047         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
8049         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
8050         definition of abbrev table.
8052         * speedbar.el (speedbar-track-mouse):
8053         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
8054         * net/eudc.el (eudc-expand-inline):
8055         * net/newst-backend.el (newsticker--cache-read-feed):
8056         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
8057         condition-case handlers.
8059 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
8061         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
8062         (gdb-var-list): Add an element for has_more field.
8063         (gdb-non-stop-handler): Enable pretty printing for STL containers.
8064         (gdb-var-create-handler, gdb-var-list-children-handler-1)
8065         (gdb-var-update-handler-1): Parse output of dynamic variable
8066         objects (STL containers).
8067         (gdb-var-delete-1): Pass var1 as an explicit second argument.
8068         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
8070         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
8071         gdb-var-list.
8072         (gud-speedbar-buttons): Make node expandable if expression "has more"
8073         children.
8075 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
8077         * startup.el (emacs-quick-startup): Remove variable and all uses.
8078         (command-line): Set `inhibit-x-resources' instead.
8079         (command-line-1): Use `inhibit-x-resources' instead.
8081 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
8083         * subr.el: Fix last change to avoid using the `unless' macro,
8084         which breaks bootstrapping.
8086 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8088         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
8089         extended definitions, in case we reload subr.el after having
8090         loaded CL.
8091         (eval-next-after-load): Mark as obsolete.
8093 2009-09-17  Juri Linkov  <juri@jurta.org>
8095         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
8096         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
8097         (menu-bar-showhide-menu, menu-bar-tools-menu)
8098         (menu-bar-describe-menu, menu-bar-help-menu)
8099         (minibuffer-local-completion-map, minibuffer-local-map):
8100         Fix list quoting.
8102 2009-09-17  Glenn Morris  <rgm@gnu.org>
8104         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
8105         arguments, whether or not it has a handler.
8107         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
8109         * simple.el (hard-newline): Give it a doc-string.
8111         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
8112         (lisp-mode-syntax-table): Give them doc-strings.
8114 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
8116         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
8117         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
8118         (menu-bar-options-menu, menu-bar-showhide-menu)
8119         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
8120         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
8121         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
8122         (menu-bar-options-menu, menu-bar-tools-menu)
8123         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
8124         (menu-bar-help-menu):
8125         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
8126         string arguments.
8128         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
8129         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
8130         calls for the menu names and :help.
8132 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8134         * mouse.el (minor-mode-menu-from-indicator): Pay attention
8135         to :minor-mode-function (bug#4455).
8137 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8139         * startup.el (command-line): Initialize the window-system after
8140         processing the command-line.
8142         * textmodes/page.el (what-page): Make sure we don't inf-loop if
8143         page-delimiter matches the empty string.
8145 2009-09-16  Glenn Morris  <rgm@gnu.org>
8147         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
8148         byte-compile-not-obsolete-var.  It's a list now.
8149         (byte-compile-not-obsolete-funcs): New variable.
8150         (byte-compile-warn-obsolete): Don't warn about functions if they are in
8151         byte-compile-not-obsolete-funcs.
8152         (byte-compile-variable-ref, byte-compile-defvar): Update for
8153         byte-compile-not-obsolete-vars name-change and list nature.
8154         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
8155         and variables behind (f)boundp tests.
8156         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
8158 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
8160         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
8162 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8164         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
8165         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
8166         Don't autoload.
8168 2009-09-15  Stephen Eglen  <stephen@gnu.org>
8170         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
8171         the virtual-buffers, use the name of the buffer specified by
8172         find-file-noselect, as the match may be a symlink.  (This was a
8173         problem if the target and the symlink had different names.)
8175 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8177         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
8179         * desktop.el (desktop-path): Check user-emacs-directory.
8181         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
8183         * loadup.el: Use after-load-functions to GC after loading each file.
8184         Remove the explicit GC calls that used to be sprinkled around.
8186         * subr.el (after-load-functions): New hook.
8187         (do-after-load-evaluation): Run it.  Use string-match-p to detect
8188         `obsolete' packages, rather than painfully extracting the relevant
8189         directory name.
8191 2009-09-15  Glenn Morris  <rgm@gnu.org>
8193         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
8194         free variable `doc'.
8196         * dired.el (dired-mode-map): Add menu entry for async shell command.
8198         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
8199         variables, also consider the .elc files, since the .el files are
8200         normally gzipped (subsequent code locates the .el.gz from the .elc).
8202         * calc/calc-prog.el (arglist): Define for compiler.
8204         * calendar/diary-lib.el (diary-display-function): Change the default to
8205         fancy display.
8206         (body): Define for compiler.
8208         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
8209         (byte-compile-file-form, byte-compile-lambda)
8210         (byte-compile-top-level-body, byte-compile-form)
8211         (byte-compile-variable-ref, byte-compile-setq)
8212         (byte-compile-setq-default, byte-compile-body)
8213         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
8214         (batch-byte-compile): Give some more local variables with common names
8215         a "bytecomp-" prefix to avoid masking warnings about free variables.
8217         * startup.el (command-line-1): Give local variables with common names a
8218         distinguishing prefix, so as not to hide free variable warnings during
8219         bootstrap.
8221         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
8222         clever and add a suffix to make a unique name, just let the user decide
8223         whether or not to overwrite it.  If the input is a directory, write the
8224         default filename to that directory.  (Bug#4388)
8225         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
8226         is a filename-as-a-directory.
8228 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8230         * textmodes/page.el (what-page): Don't move to beginning of line.
8231         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
8233 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
8235         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
8237 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
8239         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
8240         * help.el (help-for-help-internal): Add purecopy calls for text.
8242         * vc.el (top): print-log method now takes an optional SHORTLOG
8243         argument.  Add a new method: root.
8244         (vc-root-diff, vc-print-root-log): New functions.
8245         (vc-log-short-style): New variable.
8246         (vc-print-log-internal): Add support for showing short logs.
8248         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
8249         vc-print-root-log and vc-print-root-diff.
8251         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
8252         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
8253         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
8254         short logs.
8256         * vc-cvs.el (vc-cvs-print-log):
8257         * vc-mtn.el (vc-mtn-print-log):
8258         * vc-rcs.el (vc-rcs-print-log):
8259         * vc-sccs.el (vc-sccs-print-log):
8260         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
8261         that is ignored for now.
8263         * vc-mtn.el (vc-mtn-annotate-command):
8264         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
8266 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8268         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
8269         to function-key-map, and give them ascii-character property.
8270         * term/x-win.el (x-alternatives-map):
8271         * term/ns-win.el (ns-alternatives-map):
8272         * term/internal.el (msdos-key-remapping-map):
8273         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
8275 2009-09-14  Glenn Morris  <rgm@gnu.org>
8277         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
8278         temp-buffers (2009-09-12).
8280 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8282         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
8283         the new read-key function.
8285 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
8287         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
8288         is defined (Bug#4405).
8290 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
8292         * recentf.el (recentf-cleanup): Use a hash table to find
8293         duplicates (Bug#4407).
8295 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
8297         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
8298         kp-0 to ascii equivalents (Bug#4325).
8300 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
8302         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
8304         * eshell/em-hist.el:
8305         * eshell/em-dirs.el (eshell-complete-user-reference):
8306         Declare pcomplete functions and variables to avoid compiler warnings.
8308 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
8310         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
8311         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
8312         * eshell/em-alias.el (eshell-aliases-file):
8313         * eshell/em-hist.el (eshell-history-file-name):
8314         Use expand-file-name instead of concat to make file names (Bug#4308).
8316 2009-09-13  Glenn Morris  <rgm@gnu.org>
8318         * ediff-merg.el (ediff-do-merge):
8319         * filesets.el (filesets-run-cmd):
8320         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
8321         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
8322         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
8323         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
8324         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
8325         Replace empty `let's with `progn'.
8327 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8329         * mail/sendmail.el (send-mail-function):
8330         * tooltip.el (tooltip-mode):
8331         * simple.el (transient-mark-mode):
8332         * rfn-eshadow.el (file-name-shadow-mode):
8333         * frame.el (blink-cursor-mode):
8334         * font-core.el (global-font-lock-mode):
8335         * files.el (temporary-file-directory)
8336         (small-temporary-file-directory, auto-save-file-name-transforms):
8337         * epa-hook.el (auto-encryption-mode):
8338         * composite.el (global-auto-composition-mode):
8339         Use custom-initialize-delay.
8340         * startup.el (command-line): Don't explicitly call
8341         custom-reevaluate-setting for all the above vars.
8342         * custom.el (custom-initialize-safe-set)
8343         (custom-initialize-safe-default): Delete.
8345 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8347         * term/x-win.el (x-initialize-window-system):
8348         * term/w32-win.el (w32-initialize-window-system):
8349         * term/ns-win.el (ns-initialize-window-system): Don't call
8350         mouse-wheel-mode since it's enabled globally by default already.
8352         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
8353         actually define the variable, but only silences the byte-compiler.
8354         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
8355         before looking it up.
8356         (mouse-wheel-scroll-amount): Also reset the bindings if this value
8357         is changed.
8359 2009-09-12  Glenn Morris  <rgm@gnu.org>
8361         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
8362         1000.
8363         (elint-add-required-env): Don't beep on error.
8364         (elint-forms): In case of error, return ENV unchanged.
8365         (elint-init-env): Skip non-list forms.
8366         (elint-log): Handle unknown file positions.
8368 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
8370         * epg.el (epg-make-context): Add autoload cookie.
8371         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
8372         (epg-decrypt-string, epg-start-verify, epg-verify-file)
8373         (epg-verify-string, epg-start-sign, epg-sign-file)
8374         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
8375         (epg-encrypt-string, epg-start-export-keys)
8376         (epg-export-keys-to-file, epg-export-keys-to-string)
8377         (epg-start-import-keys, epg-import-keys-from-file)
8378         (epg-import-keys-from-string, epg-start-receive-keys)
8379         (epg-receive-keys, epg-import-keys-from-server)
8380         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
8381         (epg-sign-keys, epg-start-generate-key)
8382         (epg-generate-key-from-file, epg-generate-key-from-string):
8383         Remove autoload cookie.
8385 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
8387         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
8388         reevaluation of trash-directory.
8390         * mwheel.el: Fix last change.
8391         (mouse-wheel-mode): New defvar.
8392         (mouse-wheel-mode): Remove autoload cookie.
8394 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8396         * mwheel.el (mwheel-installed-bindings): New var.
8397         (mouse-wheel-mode): Use it, so as to make sure we really remove all
8398         the bindings we set last time.  Use custom-initialize-delay.
8399         * loadup.el: Load mwheel after term/*-win.el.
8400         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
8401         and mouse-wheel-up-event now that their first evaluation is done
8402         sufficiently late to be correct.
8404         * startup.el (tutorial-directory): Make it a defcustom.
8405         Use custom-initialize-delay rather than eval-at-startup to set it.
8406         * image.el (image-load-path): Make it a defcustom.
8407         Use custom-initialize-delay rather than eval-at-startup to set it.
8408         * subr.el (eval-at-startup): Remove.
8409         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
8411         * subr.el (do-after-load-evaluation): Warn the user after loading an
8412         obsolete package.
8414 2009-09-12  Glenn Morris  <rgm@gnu.org>
8416         * proced.el (proced-mark-alt): Remove alias.
8417         (proced-mode-map): Remove proced-mark-alt.
8419         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
8420         Elint file and directory.  Remove initialization entry.
8422         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
8423         commands.
8424         (elint-current-buffer): Set mode-line-process.
8425         (elint-init-env): Handle define-derived-mode.
8426         Fix declare-function with unspecified arglist.  Guard against odd
8427         defalias statements (eg iso-insert's 8859-1-map).
8428         (elint-add-required-env): Use a temp buffer.
8429         (elint-form): Just print the function/macro name, not the whole form.
8430         Return env unchanged if we fail to parse a macro.
8431         (elint-forms): Guard against parse errors.
8432         (elint-output): New function, to handle batch mode.
8433         (elint-log-message): Add optional argument.  Use elint-output.
8434         (elint-set-mode-line): New function.
8436 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
8438         * emacs-lisp/elp.el (elp-not-profilable): Add more
8439         functions (Bug#4233).
8441 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
8443         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
8444         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
8446 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
8448         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
8449         (gdb-var-list-children): Use json parsing.
8451 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
8453         * progmodes/js.el (js--proper-indentation): Handle the case where
8454         char-before is null.  Reported by Deniz Dogan.
8456 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
8458         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
8460 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
8462         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
8463         (epg-digest-algorithm-alist): Add SHA224.
8464         (epg-context-set-passphrase-callback)
8465         (epg-context-set-progress-callback): Add description about
8466         callback function.
8468 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8470         * custom.el (custom-delayed-init-variables): New var.
8471         (custom-initialize-delay): New function.
8472         * startup.el (command-line): "Re"evaluate all vars in
8473         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
8474         explicitly any more.
8475         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
8476         to avoid creating a ~/.emacs.d at build-time (bug#4347).
8478         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
8480 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
8482         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
8483         (gdb-var-update-handler): Use json parsing.
8485 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
8487         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
8488         decode annotated text, regardless of language environment.  (Bug#2741)
8490 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8492         * Makefile.in (autoloads): Make rmail.el writable as well.
8494 2009-09-11  Glenn Morris  <rgm@gnu.org>
8496         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
8497         loaddefs.el.
8498         * dired.el: Regenerate with extracted autoloads.
8499         * Makefile.in (autoloads): Make dired.el writable.
8501         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
8502         * ibuffer.el: Regenerate with extracted autoloads.
8503         * Makefile.in (autoloads): Make ibuffer.el writable.
8505         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
8506         * version.el (emacs-copyright, emacs-major-version)
8507         (emacs-minor-version): Reformat doc-strings for make-docfile.
8509         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
8510         functions and variables, since they must be stuff specific to some other
8511         platform.
8512         (apropos-print): Make mouse-click message less specific about button.
8514         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
8515         that records where a macro was defined.
8516         * help-fns.el (describe-function-1): Mention if a function has a
8517         compiler-macro.
8518         * help-mode.el (help-function-cmacro): New button.
8520         * locate.el (top-level): Always require dired.
8521         (locate-mode-map): Initialize inside the defvar.
8523         * net/ange-ftp.el (dired-compress-file): Declare.
8524         (ange-ftp-dired-compress-file): Add doc string.
8526         * term/ns-win.el (x-display-name, x-setup-function-keys):
8527         Unify doc-strings with X versions.
8529 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8531         * emulation/crisp.el (crisp-mode-map): Move initialization
8532         into declaration.
8533         (crisp-mode): Use define-minor-mode.
8535         * progmodes/xscheme.el (xscheme-evaluation-commands):
8536         Put a :advertised-binding property rather than using
8537         advertised-xscheme-send-previous-expression.
8538         (advertised-xscheme-send-previous-expression): Declare obsolete.
8539         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
8540         `advertised-undo'.
8541         (crisp-mode): Add corresponding bindings to
8542         undo's :advertised-binding instead.
8543         * dired.el (dired-mode-map): Put a :advertised-binding property rather
8544         than using dired-advertised-find-file.
8545         (dired-advertised-find-file):
8546         * simple.el (advertised-undo):
8547         * wid-edit.el (advertised-widget-backward): Declare obsolete.
8548         (widget-keymap): Put a :advertised-binding property rather
8549         than using advertised-widget-backward.
8550         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
8551         than using advertised-undo.
8552         * tutorial.el (tutorial--default-keys): Adjust accordingly.
8554 2009-09-10  Simon South  <ssouth@slowcomputing.org>
8556         * progmodes/delphi.el (delphi-tab): Indent region when Transient
8557         Mark mode is enabled and region is active; otherwise indent or
8558         insert TAB as usual.
8559         (delphi-mode): Update description of TAB-key binding.
8561 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8563         * subr.el (define-key-rebound-commands): Mark obsolete.
8564         * startup.el (precompute-menubar-bindings): Remove.
8565         (normal-top-level): Remove obsolete code that tried to precompute
8566         menubar bindings.
8567         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
8568         define-key-rebound-commands and precompute-menubar-bindings.
8570 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
8572         * net/imap.el (imap-interactive-login): Better messages.
8573         (imap-open): Fix bug with renamed buffer on reconnect.
8574         (imap-authenticate): Add buffer-local imap-last-authenticator variable
8575         for easier debugging and cleaner code.  On successful (guessed based on
8576         server capabilities) secondary authentication, set imap-state
8577         correctly.
8578         (imap-last-authenticator): Define imap-last-authenticator as a variable
8579         to avoid warnings.
8581 2009-09-10  Glenn Morris  <rgm@gnu.org>
8583         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
8585         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
8586         (byte-compile-file-form-autoload): Don't warn about unknown functions
8587         where the autoload statement comes after the use.
8588         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
8589         that any handlers inside the body (eg require) are in turn respected.
8591         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
8592         effects.
8594         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
8595         and syntax and abbrev tables basic docs, if they don't have any.
8597         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
8599         * international/mule-cmds.el (top-level): Require cl when compiling.
8600         (view-hello-file): Use default-value rather than
8601         default-enable-multibyte-characters.
8603         * progmodes/fortran.el: Move all safe and risky properties into the
8604         defcustoms.
8606         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
8607         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
8608         * mail/undigest.el:
8609         Put autoloads in rmail.el rather than loaddefs.el.
8610         * mail/rmail.el: Regenerate with extracted autoloads.
8612         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
8613         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
8615 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
8617         Reported in thread for Bug#4375.
8618         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
8619         "-data-evaluate-expression" instead of print.
8620         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
8621         (gdb-tooltip-print): Parse output from above MI command.
8622         (gdb): Revert 2009-08-11 change.  User should detach inferior
8623         manually.
8625         Remove the word "separate" from IO functions as inferior
8626         output is now never displayed in the GUD buffer.
8628 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
8630         * startup.el (command-line-normalize-file-name): On Windows and
8631         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
8633 2009-09-10  Juri Linkov  <juri@jurta.org>
8635         * isearch.el (isearch-text-char-description): Propertize escape
8636         character sequences with the `escape-glyph' face.  (Bug#4344)
8638         * simple.el (shell-command): Set asynchronous process filter to
8639         `comint-output-filter'.  (Bug#4343)
8641         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
8642         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
8643         the list.  Move "asm" to the bottom.
8644         (grep-find-ignored-directories): Add `choice' with nil value
8645         to empty the list easily.
8646         (grep-find-ignored-files): New option.
8647         (grep-files-history): Set to nil by default instead of '("ch" "el").
8648         (grep-compute-defaults): Add "<X>" to `grep-template'.
8649         (grep-read-files): Bind new local variables `default-alias' and
8650         `default-extension'.  Use a list of default values for the file prompt.
8651         (lgrep): Add `--exclude=' command line options composed from
8652         `grep-find-ignored-files'.
8653         (rgrep): Add `-name' command line options composed from
8654         `grep-find-ignored-files'.  (Bug#4301)
8656 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8658         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
8659         (bug#4368).
8661 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8663         * calendar/time-date.el (autoload):
8664         Expand define-obsolete-function-alias into defalias and make-obsolete
8665         for old Emacsen that Gnus supports.
8666         (with-no-warnings): Define it for old Emacsen.
8667         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
8668         is available.
8669         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
8670         float-time is available; suppress compile warning for time-to-seconds.
8672 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
8674         * net/imap.el (imap-message-map): Docstring fix.
8676 2009-09-09  Glenn Morris  <rgm@gnu.org>
8678         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
8679         line numbers too.  (Bug#4374)
8681 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8683         * smerge-mode.el (smerge-remove-props, smerge-refine):
8684         Use with-silent-modifications (bug#4342).
8686         * subr.el (with-silent-modifications): New macro.
8688 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
8690         * files.el (top-level): Require `cl' when compiling.
8692 2009-09-07  Glenn Morris  <rgm@gnu.org>
8694         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
8696         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
8697         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
8699 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
8701         * vc-git.el (vc-git-annotate-command): Use separator to parse
8702         arguments correctly.
8704 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
8706         * proced.el (proced-mode): Doc fix.
8708 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
8710         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
8711         lstat fails.
8712         (tramp-do-file-attributes-with-ls): Check for file existence at
8713         remote end.
8714         (tramp-do-file-attributes-with-stat): Likewise.
8715         (tramp-convert-file-attributes): Return nil when attr is nil.
8717 2009-09-05  Glenn Morris  <rgm@gnu.org>
8719         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
8720         properties to this button.
8721         (diary-fancy-display): Don't extend the button to the final newline.
8722         (diary-fancy-display-mode): Continue to define "q" as a local key.
8724         * calendar/cal-china.el (holiday-chinese): Make it slightly more
8725         efficient.
8727         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
8729         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
8730         (byte-compile-dest-file-function): New option.
8731         (byte-compile-dest-file): Doc fix.
8732         Obey byte-compile-dest-file-function.
8733         (byte-compile-cl-file-p): New function.
8734         (byte-compile-eval): Only suppress noruntime warnings about cl functions
8735         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
8736         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
8737         than for file being previously loaded.
8738         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
8739         (byte-compile-file-form-require): Handle the case where requiring a file
8740         indirectly causes CL to be loaded.
8742 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
8744         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
8745         before killing the old buffer, since by the time `kill-buffer' is
8746         run so many buffer variables have been set to nil that it may not
8747         behave as expected.  (Bug#4061)
8749 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
8751         * files.el (find-alternate-file): If the old buffer is modified
8752         and visiting a file, behave similarly to `kill-buffer' when
8753         killing it, thus reverting to the pre-1.878 behavior; see
8754         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
8755         for discussion.  Also, consult `buffer-file-name' as a variable
8756         not as a function, for consistency with the rest of the code.
8758 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
8760         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
8761         also when adding a new directory.
8763         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
8764         defun.
8766 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8768         * files.el (locate-file-completion-table): Make it provide boundary
8769         information, so partial-completion works better.
8771 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
8773         * mail/footnote.el (Footnote-text-under-cursor):
8774         Check footnote-text-marker-alist before using it (bug#4324).
8776 2009-09-04  Glenn Morris  <rgm@gnu.org>
8778         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
8779         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
8780         * play/solitaire.el, play/tetris.el:
8781         Remove leading * from defcustom and defface docs.
8783         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
8784         necessary.
8785         (diary-fancy-overriding-map): New variable.
8786         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
8787         Use view-mode.
8789         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
8790         goto-line.
8792 2009-09-03  Glenn Morris  <rgm@gnu.org>
8794         * arc-mode.el (archive-mode):
8795         * dos-fns.el (set-default-process-coding-system):
8796         * man.el (Man-getpage-in-background):
8797         * menu-bar.el (menu-bar-describe-menu):
8798         * server.el (server-process-filter):
8799         * startup.el (command-line):
8800         * tar-mode.el (tar-header-block-tokenize, tar-extract):
8801         * w32-fns.el (set-default-process-coding-system):
8802         * x-dnd.el (x-dnd-handle-file-name):
8803         * international/mule-cmds.el (mule-menu-keymap)
8804         (set-default-coding-systems, language-info-alist, set-language-info)
8805         (set-language-environment, standard-display-european-internal)
8806         (set-locale-environment):
8807         * international/mule-diag.el (mule-diag):
8808         * mail/emacsbug.el (report-emacs-bug):
8809         * mail/rmail.el (rmail-mode):
8810         * mail/sendmail.el (mail-setup):
8811         Use default-value rather than default-enable-multibyte-characters.
8813         * progmodes/f90.el: Move all safe properties into the defcustoms.
8814         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
8816         * calendar/appt.el (appt-check):
8817         * calendar/diary-lib.el (diary-set-header, diary-live-p)
8818         (diary-check-diary-file, diary-list-entries)
8819         (diary-include-other-diary-files, diary-simple-display)
8820         (diary-fancy-display, diary-print-entries)
8821         (diary-mark-included-diary-files, diary-make-entry):
8822         Don't call substitute-in-file-name on diary-file.
8824 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
8825             Stefan Monnier  <monnier@iro.umontreal.ca>
8827         * mail/footnote.el (footnote-prefix): Make it a defcustom.
8828         (footnote-mode-map): Move initialization into the declaration.
8829         (footnote-minor-mode-map): Define it rather than changing global-map.
8830         (footnote-mode): Use define-minor-mode.
8832 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
8834         * net/tramp.el (tramp-handle-file-attributes-with-ls)
8835         (tramp-do-file-attributes-with-perl)
8836         (tramp-do-file-attributes-with-stat): Rename from
8837         `tramp-handle-file-attributes-with-*'.
8838         (tramp-handle-file-attributes): Use them.
8839         (tramp-do-directory-files-and-attributes-with-perl)
8840         (tramp-do-directory-files-and-attributes-with-stat): Rename from
8841         `tramp-handle-directory-files-and-attributes-with-*'.
8842         (tramp-handle-directory-files-and-attributes): Use them.
8843         (tramp-method-out-of-band-p): Additional parameter SIZE.
8844         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
8845         (tramp-handle-write-region): Use it.
8846         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
8847         (tramp-handle-vc-registered): Check, whether the first run did
8848         return files to be tested.
8849         (tramp-advice-make-auto-save-file-name): Do not call directly
8850         `tramp-handle-make-auto-save-file-name', because this would bypass
8851         the locking mechanism.
8853         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
8854         (file-remote-p, process-file, start-file-process, set-file-times)
8855         (tramp-compat-file-attributes): Compatibility functions shall not
8856         call directly `tramp-handle-*', because this would bypass the
8857         locking mechanism.
8858         (tramp-compat-number-sequence): New defun.
8860 2009-09-02  Glenn Morris  <rgm@gnu.org>
8862         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
8863         alias for float-time.
8864         (time-to-number-of-days): In Emacs, use float-time.
8865         * net/newst-backend.el (time-add): Suppress warnings from compat
8866         function.
8867         * time.el (emacs-uptime, emacs-init-time):
8868         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
8869         Use float-time rather than time-to-seconds.
8871         * minibuffer.el (completion-initials-expand): Fix typo.
8873         * faces.el (modeline, modeline-inactive, modeline-highlight)
8874         (modeline-buffer-id):
8875         * info.el (info-menu-5): Mark these face aliases as obsolete.
8877 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
8879         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
8880         space ...
8881         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
8882         no "--thread" option.
8883         (gdb-stopped): Don't print "Switched to thread" message when it is
8884         unchanged.
8886 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8888         * minibuffer.el (completion-try-completion)
8889         (completion-all-completions): Remove ill-defined (and
8890         mistakenly installed and luckily never used nor documented)
8891         `completion-styles' property.
8892         (completion-initials-expand, completion-initials-all-completions)
8893         (completion-initials-try-completion): New functions.
8894         (completion-styles-alist): Add doc to each entry.
8895         Add new `initials' entry.
8897 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
8899         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
8900         MI command -var-evaluate-expression.
8901         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
8902         and tweak for case of string child.
8903         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
8905 2009-09-01  Glenn Morris  <rgm@gnu.org>
8907         * add-log.el (change-log-date-face, change-log-name-face)
8908         (change-log-email-face, change-log-file-face, change-log-list-face)
8909         (change-log-conditionals-face, change-log-function-face)
8910         (change-log-acknowledgement-face):
8911         * cus-edit.el (custom-invalid-face, custom-rogue-face)
8912         (custom-modified-face, custom-set-face, custom-changed-face)
8913         (custom-saved-face, custom-button-face, custom-button-pressed-face)
8914         (custom-documentation-face, custom-state-face, custom-comment-face)
8915         (custom-comment-tag-face, custom-variable-tag-face)
8916         (custom-variable-button-face, custom-face-tag-face)
8917         (custom-group-tag-face-1, custom-group-tag-face):
8918         * diff-mode.el (diff-header-face, diff-file-header-face)
8919         (diff-index-face, diff-hunk-header-face, diff-removed-face)
8920         (diff-added-face, diff-changed-face, diff-function-face)
8921         (diff-context-face, diff-nonexistent-face):
8922         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
8923         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
8924         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
8925         (Info-title-4-face):
8926         * isearch.el (isearch-lazy-highlight-face):
8927         * log-view.el (log-view-file-face, log-view-message-face):
8928         * paren.el (show-paren-match-face, show-paren-mismatch-face):
8929         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
8930         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
8931         (cvs-msg-face):
8932         * smerge-mode.el (smerge-mine-face, smerge-other-face)
8933         (smerge-base-face, smerge-markers-face):
8934         * wid-edit.el (widget-documentation-face, widget-button-face)
8935         (widget-field-face, widget-single-line-field-face)
8936         (widget-inactive-face, widget-button-pressed-face):
8937         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
8938         (woman-addition-face):
8939         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
8940         (eshell-ls-executable-face, eshell-ls-readonly-face)
8941         (eshell-ls-unreadable-face, eshell-ls-special-face)
8942         (eshell-ls-missing-face, eshell-ls-archive-face)
8943         (eshell-ls-backup-face, eshell-ls-product-face)
8944         (eshell-ls-clutter-face):
8945         * eshell/em-prompt.el (eshell-prompt-face):
8946         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
8947         * obsolete/old-whitespace.el (whitespace-highlight-face):
8948         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
8949         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
8950         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
8951         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
8952         (antlr-font-lock-literal-face):
8953         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
8954         (ebrowse-root-class-face, ebrowse-file-name-face)
8955         (ebrowse-default-face, ebrowse-member-attribute-face)
8956         (ebrowse-member-class-face, ebrowse-progress-face):
8957         * progmodes/make-mode.el (makefile-space-face):
8958         * progmodes/sh-script.el (sh-heredoc-face):
8959         * textmodes/flyspell.el (flyspell-incorrect-face)
8960         (flyspell-duplicate-face):
8961         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
8962         * textmodes/texinfo.el (texinfo-heading-face):
8963         Mark face aliases with "-face" suffix as obsolete.
8965         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
8966         compiler.
8968         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
8969         (eudc-bob-sound-menu): Use defvar rather than defconst, since
8970         easy-menu-define wants to modify these.
8972         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
8974         * net/browse-url.el (browse-url-file-url):
8975         * term/internal.el (dos-codepage-setup):
8976         Use default-value rather than default-enable-multibyte-characters.
8978         * progmodes/etags.el (etags-goto-tag-location):
8979         * progmodes/flymake.el (flymake-highlight-line)
8980         (flymake-goto-file-and-line, flymake-goto-line):
8981         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
8982         (gdb-goto-breakpoint):
8983         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
8984         * progmodes/python.el (python-find-function)
8985         (python-pdbtrack-track-stack-file):
8986         * progmodes/verilog-mode.el (verilog-surelint-off):
8987         * term/ns-win.el (ns-open-file-select-line):
8988         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
8989         Use forward-line rather than goto-line.
8991         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
8992         * textmodes/reftex-index.el (reftex-display-index):
8993         * textmodes/reftex-ref.el (reftex-offer-label-menu):
8994         * textmodes/reftex-toc.el (reftex-toc):
8995         Remove unnecessary bindings of default-major-mode (all are followed by
8996         major-mode check and possible mode switch).
8998 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
9000         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
9001         Handle watchpoints (bug#4282).
9002         (def-gdb-thread-buffer-command): Enable thread to be selected by
9003         clicking without selecting threads buffer first.
9004         (gdb-current-context-command): Use selected frame so that "up",
9005         "down" etc work in the GUD buffer.
9006         (gdb-update): Find selected frame before rendering stack buffer.
9007         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
9009 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
9011         * progmodes/sym-comp.el (displayed-completions): Remove.
9012         (symbol-complete): Use minibuffer-complete.
9014 2009-08-31  Glenn Morris  <rgm@gnu.org>
9016         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
9018         * apropos.el (apropos-symbols-internal):
9019         Handle (obsolete) face aliases.
9021         * faces.el (describe-face): Adjust the output format to be more like
9022         describe-variable, and to mention (obsolete) face aliases.
9023         Adjust the whitespace so that help-setup-xref works.
9025         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
9026         * calendar/diary-lib.el (diary-button-face):
9027         Mark these face aliases as obsolete.
9029         * calendar/calendar.el (calendar-today): Doc fix.
9031 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
9033         * progmodes/gdb-mi.el (gdb-control-all-threads)
9034         (gdb-control-current-thread): Force tool bar update.
9035         (gdb-non-stop-handler): New function.
9036         (gdb-init-1): Use it to test if non-stop mode is supported.
9037         Remove unused gdbmi buffer type.
9039 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
9041         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
9042         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
9044 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
9046         * comint.el (comint-exec-1): Check command is non-null first.
9047         Part of gdb-mi.el change (2009-08-28).
9049 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9051         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
9053 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
9055         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
9056         instead of `dolist' to avoid a recursive require when bootstrapping.
9058 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9060         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
9062         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
9064         * net/imap.el (imap-send-command): Simplify.
9065         (imap-wait-for-tag): point-max -> buffer-size.
9067         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
9069         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
9070         with constant argument.
9072         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
9074         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
9076         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
9077         Change default, since most of our files don't have a history.
9078         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
9079         the user.
9081         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9082         Add comint-run.
9084         * calc/calc.el: Improve commenting convention.
9085         (calc-digit-map, toplevel): Simplify.
9087         * comint.el (comint-insert-input): Be careful to only set point if we
9088         don't delegate to some other command.
9090         * proced.el (proced-signal-list): Make it an alist.
9091         (proced-grammar-alist): Capitalize names.
9092         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
9093         Disable undo manually and make it read-only.
9094         Use completion-annotate-function.
9096         * minibuffer.el (minibuffer-message): If the current buffer is not
9097         a minibuffer, insert the message in the echo area rather than at the
9098         end of the buffer.
9099         (completion-annotate-function): New variable.
9100         (minibuffer-completion-help): Use it.
9101         (completion--embedded-envvar-table): Environment vars are
9102         always case-sensitive.
9104 2009-08-30  Glenn Morris  <rgm@gnu.org>
9106         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
9107         from fortran-current-defun.
9108         (fortran-beginning-of-subprogram): Be more precise about finding the
9109         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
9110         (fortran-end-of-subprogram): Simplify.
9111         (fortran-current-defun): Use fortran-start-prog-re.
9113 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
9115         * subr.el (do-after-load-evaluation): Simplify.
9117 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
9119         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
9121         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
9122         (vc-rcs-print-log): Use it.
9124         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
9126 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9128         * paths.el (abbrev-file-name): Move to abbrev.el.
9129         * abbrev.el (abbrev-file-name): Move from paths.el.
9130         Obey user-emacs-directory.
9131         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
9132         user-emacs-directory.
9133         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
9134         abbrev-file-name and calc-settings-file any more.
9135         * startup.el (command-line): Recompute abbrev-file-name and
9136         abbreviated-home-dir.
9137         (normal-no-mouse-startup-screen): Improve the generic code and get rid
9138         of the special code for when C-h bindings haven't been changed.
9139         (display-startup-echo-area-message): Use with-current-buffer.
9140         (command-line-1): Use a list of strings, rather than a list of lists
9141         of strings for longopts.
9143         * files.el (get-free-disk-space): Use / for default-directory.
9145         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
9146         Use with-current-buffer.
9148         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
9149         Recognize immutable variables like most-positive-fixnum.
9150         (byte-compile-setq-default): Check and warn if trying to assign
9151         to an immutable variable, or a non-variable.
9153         * progmodes/cc-vars.el (c-comment-continuation-stars):
9154         * progmodes/cc-engine.el (c-looking-at-bos):
9155         * progmodes/cc-cmds.el (c-toggle-auto-state)
9156         (c-forward-into-nomenclature, c-backward-into-nomenclature)
9157         (c-comment-line-break-function): Add version of obsolescence.
9159 2009-08-28  Juri Linkov  <juri@jurta.org>
9161         * files.el (magic-fallback-mode-alist): Add ZIP magic number
9162         associated with `archive-mode'.
9164         * image.el (image-type-header-regexps): Use only JPEG magic number
9165         to determine JPEG images, and don't use `image-jpeg-p' because
9166         Emacs can display non-JFIF non-Exif JPEG images.
9168 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
9170         * arc-mode.el (archive-mode):
9171         * emacs-lisp/re-builder.el (re-builder-unload-function):
9172         Protect against the default value of `major-mode' being nil.
9174 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
9176         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
9177         Fix typos in docstrings.
9179         * progmodes/js.el (js--macro-decl-re): Doc fix.
9180         (js--plain-method-re, js--split-name): Refloc docstring.
9181         (js--class-styles, js--make-merged-item, js--splice-into-items):
9182         Fix typos in docstrings; reflow docstrings.
9183         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
9184         (js--variable-decl-matcher, js--inside-pitem-p)
9185         (js--parse-state-at-point, js--get-all-known-symbols)
9186         (js--symbol-history, js-find-symbol, js--js-references)
9187         (js--moz-interactor, js--js-encode-value, js--read-tab):
9188         Fix typos in docstrings.
9190 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9192         * textmodes/reftex.el (reftex-get-file-buffer-force):
9193         * progmodes/verilog-mode.el (verilog-batch-execute-func):
9194         * emulation/viper.el (viper-go-away, viper-set-hooks):
9195         * emacs-lisp/re-builder.el (re-builder-unload-function):
9196         * emacs-lisp/bytecomp.el (byte-compile-file):
9197         * ses.el (ses-unload-function):
9198         * hexl.el (hexl-find-file):
9199         * files.el (normal-mode):
9200         * ehelp.el (with-electric-help):
9201         * autoinsert.el (auto-insert-alist):
9202         * arc-mode.el (archive-mode):
9203         Use (default-value 'major-mode) instead of default-major-mode.
9205         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
9206         * international/mule.el (load-with-code-conversion):
9207         * emacs-lisp/debug.el (debug):
9208         * ediff-vers.el (ediff-rcs-get-output-buffer):
9209         * dired.el (dired-internal-noselect): Don't let-bind
9210         default-major-mode around code that doesn't use it.
9211         E.g. buffer creation via get-buffer-create doesn't use it.
9213 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
9215         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
9216         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
9217         when writing the temp file.  Otherwise, epa-file gets confused.
9218         (tramp-register-file-name-handlers): Make it a defun.  Move also
9219         `epa-file-handler' to the front of `file-name-handler-alist'.
9221 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9223         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
9224         start right after a ^M.
9225         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
9226         (tramp-completion-file-name-regexp-separate)
9227         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
9228         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
9229         Don't modify last-coding-system-used by accident.
9230         (tramp-completion-file-name-handler): Apply the checks here,
9231         instead during registration.
9232         (tramp-register-file-name-handlers): Renamed from
9233         `tramp-register-file-name-handler'.  Register both
9234         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
9235         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
9237 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
9239         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
9240         Remove variable ...
9241         (gdb-init-1, gdb-display-separate-io-buffer)
9242         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
9243         references to it.
9244         (gdb-inferior-io-mode): Use make-comint-in-buffer.
9245         (gdb-inferior-filter): Use comint-output-filter to stop
9246         echoing and remove ^M characters.
9248 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9250         * emulation/viper-init.el (viper-restore-cursor-type):
9251         * emulation/cua-base.el (cua--update-indications):
9252         Replace default-cursor-type with (default-value 'cursor-type).
9254         * mail/sendmail.el (mail-recover-1):
9255         * international/mule-diag.el (describe-current-coding-system-briefly)
9256         (describe-current-coding-system):
9257         * international/mule-cmds.el (select-safe-coding-system)
9258         (select-message-coding-system)
9259         (set-language-environment-coding-systems, set-locale-environment):
9260         * hexl.el (hexl-insert-multibyte-char):
9261         * dos-w32.el (find-buffer-file-type-coding-system):
9262         * simple.el (what-cursor-position):
9263         Replace uses of default-buffer-file-coding-system
9264         with (default-value 'buffer-file-coding-system).
9266         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
9267         Replace uses of default-cursor-in-non-selected-windows
9268         with (default-value 'cursor-in-non-selected-windows).
9269         Use with-current-buffer.
9271         * mail/feedmail.el: Use CL macros.
9272         (feedmail-run-the-queue, feedmail-send-it-immediately):
9273         * dos-w32.el (find-buffer-file-type): Replace uses of
9274         default-buffer-file-type with (default-value 'buffer-file-type).
9276 2009-08-28  Glenn Morris  <rgm@gnu.org>
9278         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
9279         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
9280         Use default-value of major-mode rather than default-major-mode.
9282 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9284         * Makefile.in (update-elcfiles): Report left over elc files.
9286         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
9287         expand-file-name and with-current-buffer.
9288         (mail-get-names, mail-directory): Use with-current-buffer.
9290         * vc.el (vc-read-revision): New function.
9291         (vc-version-diff, vc-merge): Use it.
9293 2009-08-27  Sam Steingold  <sds@gnu.org>
9295         * simple.el (kill-do-not-save-duplicates): New user option.
9296         (kill-new): When it is non-nil, and the new string is the same as
9297         the latest kill, set replace to t to avoid duplicates in kill-ring.
9299 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
9301         * net/tramp.el (tramp-handle-process-file): Do not flush all
9302         caches when `process-file-side-effects' is set.
9303         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
9304         instead of `tramp-find-file-exists-command'.
9305         Unset `process-file-side-effects'.
9307 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
9309         * net/tramp.el (tramp-methods): New method "rsyncc".
9310         (top): Add completion function for "rsyncc".
9311         (tramp-message-show-message): New defvar.
9312         (tramp-message, tramp-error): Use it.
9313         (tramp-do-copy-or-rename-file-directly): Extend check for direct
9314         remote copying.
9315         (tramp-do-copy-or-rename-file-out-of-band): Handle new
9316         `tramp-methods' entry `copy-env' of "rsyncc".
9317         (tramp-vc-registered-read-file-names): New defconst.
9318         (tramp-vc-registered-file-names): New defvar.
9319         (tramp-handle-vc-registered): Implement optimization strategy.
9320         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
9321         (tramp-vc-file-name-handler): New defun.
9322         (tramp-get-ls-command, tramp-get-test-command)
9323         (tramp-get-file-exists-command, tramp-get-remote-ln)
9324         (tramp-get-remote-perl, tramp-get-remote-stat)
9325         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
9327         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
9328         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
9329         timestamps.
9330         (tramp-get-file-property): Check for timestamps in
9331         `tramp-cache-inhibit-cache'.
9332         (tramp-set-file-property): Write timestamp.
9334 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9336         * language/japan-util.el (japanese-symbol-table): Add entries for
9337         cp932-2-byte.
9339         * international/characters.el: Add category `j' to cp932-2-byte.
9341 2009-08-27  Kenichi Handa  <handa@m17n.org>
9343         * international/fontset.el (build-default-fontset-data): New macro.
9344         (setup-default-fontset): Use build-default-fontset-data for CJK,
9345         tibetan, ethiopic, and ipa.
9347 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9349         * cus-start.el (default-major-mode): Customize `major-mode' instead.
9350         (enable-multibyte-characters): Not customizable any more.
9352         * subr.el (default-mode-line-format, default-header-line-format)
9353         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
9354         (default-direction-reversed, default-truncate-lines)
9355         (default-left-margin, default-tab-width, default-case-fold-search)
9356         (default-left-margin-width, default-right-margin-width)
9357         (default-left-fringe-width, default-right-fringe-width)
9358         (default-fringes-outside-margins, default-scroll-bar-width)
9359         (default-vertical-scroll-bar, default-indicate-empty-lines)
9360         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
9361         (default-fringe-cursor-alist, default-scroll-up-aggressively)
9362         (default-scroll-down-aggressively, default-fill-column)
9363         (default-cursor-type, default-buffer-file-type)
9364         (default-cursor-in-non-selected-windows)
9365         (default-buffer-file-coding-system, default-major-mode)
9366         (default-enable-multibyte-characters): Mark as obsolete.
9368 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
9370         * vc-dir.el (vc-dir-update): Remove debug helper.
9372         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
9374 2009-08-26  Sam Steingold  <sds@gnu.org>
9376         * simple.el (save-interprogram-paste-before-kill): New user option.
9377         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
9378         save the interprogram-paste into kill-ring before overriding it
9379         with the Emacs kill.
9381 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
9383         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
9384         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
9385         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
9386         and move to vc-rcs.el.
9387         (vc-default-next-revision): Rename to vc-rcs-next-revision and
9388         move to vc-rcs.el.
9389         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
9390         (vc-rcs-update-changelog): Remove.
9391         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
9392         and move to vc-rcs.el.
9394         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
9395         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
9396         renaming.
9397         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
9398         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
9399         vc.el, renamed to be RCS specific.
9401         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
9402         New functions.
9403         (vc-cvs-update-changelog): Move here from vc.el.
9405         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
9406         New functions.
9408 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9410         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
9412 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
9414         * vc-git.el (vc-git-register): Use "git add" for directories.
9415         (vc-git-stash, vc-git-stash-show): New functions.
9416         (vc-git-extra-menu-map): Bind them.
9418         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
9419         directory correctly in case the item is a directory itself.
9421         * vc.el: Document the desired behavior for reverted files in the
9422         `added' state.
9423         (vc-default-prettify-state-info): Remove function, unused.
9425         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
9427 2009-08-26  Glenn Morris  <rgm@gnu.org>
9429         * bindings.el (standard-mode-line-format): Reposition dashes in
9430         which-func entry.  (Bug#4217)
9432         * files.el (enable-local-variables, enable-local-eval)
9433         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
9434         the defcustoms.
9435         (auto-mode-alist, ignored-local-variables)
9436         (save-some-buffers-action-alist): Move risky declarations to the
9437         definitions.
9438         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
9439         (font-lock-defaults, format-alist, imenu--index-alist)
9440         (imenu-generic-expression, input-method-alist, minor-mode-alist)
9441         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
9442         (mode-line-modified, mode-line-mule-info, mode-line-position)
9443         (mode-line-process, mode-line-remote, outline-level)
9444         (parse-time-rules, rmail-output-file-alist)
9445         (special-display-buffer-names, vc-mode):
9446         Move risky declarations to the relevant files.
9447         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
9448         (mode-line-modified, mode-line-process, mode-line-position)
9449         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
9450         * font-core.el (font-lock-defaults):
9451         * format.el (format-alist):
9452         * vc-hooks.el (vc-mode):
9453         * window.el (special-display-buffer-names):
9454         * international/mule-cmds.el (input-method-alist):
9455         Define riskiness here (dumped file) rather than in files.el.
9456         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
9457         * imenu.el (imenu-generic-expression, imenu--index-alist):
9458         * outline.el (outline-level):
9459         * time.el (display-time-string):
9460         * calendar/parse-time.el (parse-time-rules):
9461         * mail/rmailout.el (rmail-output-file-alist):
9462         Autoload riskiness here, rather than placing in files.el.
9464 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
9466         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
9468 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
9470         * simple.el (process-file-side-effects): New defvar.
9472         * dired-aux.el (dired-show-file-type):
9473         * vc.el (vc-diff-internal):
9474         * vc-arch.el (vc-arch-diff):
9475         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
9476         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
9477         * vc-git.el (vc-git-registered, vc-git-working-revision)
9478         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
9479         (vc-git--empty-db-p):
9480         * vc-hooks.el (vc-user-login-name):
9481         * vc-svn.el (vc-svn-registered, vc-svn-state)
9482         (vc-svn-dir-extra-headers, vc-svn-find-revision):
9483         * progmodes/grep.el (grep-probe): Let-bind
9484         `process-file-side-effects' with nil.
9486         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
9488         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
9489         daemon.  Replace ping by checking for running service for bluez
9490         and zeroconf.  (Bug#4239)
9492 2009-08-25  Kevin Ryde  <user42@zip.com.au>
9494         * net/dig.el (dig): Add autoload cookie.
9496 2009-08-25  Glenn Morris  <rgm@gnu.org>
9498         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
9499         load-history for absolute file-names.
9500         (byte-compile-file-form-require): Warn about use of the cl package.
9502         * format.el (format-alist): Doc fix.
9504         * play/bubbles.el (top-level): Don't require cl at run-time.
9506         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
9507         run-time cl).
9509 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
9511         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
9512         from cl package.
9513         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
9515 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
9517         * calc/calc-alg.el (math-trig-rewrite)
9518         (math-hyperbolic-trig-rewrite): New functions.
9519         (calc-simplify): Simplify trig functions when asked.
9521 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9523         * diff-mode.el (diff-find-source-location): Avoid goto-line.
9525 2009-08-24  Kenichi Handa  <handa@m17n.org>
9527         * language/ind-util.el (mapthread): Delete it.
9528         (combinatorial): New function.
9529         (indian--puthash-cv): Use combinatorial instead of mapthread.
9531 2009-08-22  Kevin Ryde  <user42@zip.com.au>
9533         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
9534         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
9535         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
9536         Clarify docstring that the value is strings not symbols.
9537         (checkdoc-list-of-strings-p): New function.
9539 2009-08-22  Glenn Morris  <rgm@gnu.org>
9541         * files.el (auto-mode-alist):
9542         * hippie-exp.el (he-concat-directory-file-name):
9543         * lpr.el (lpr-windows-system, printer-name):
9544         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
9545         * ps-print.el (ps-windows-system):
9546         * startup.el (command-line):
9547         * emulation/viper-ex.el (viper-glob-function):
9548         * international/mule-cmds.el (set-language-environment-coding-systems):
9549         * net/ange-ftp.el (ange-ftp-write-region):
9550         * obsolete/fast-lock.el (fast-lock-cache-name):
9551         Remove code for defunct system-types emx, macos, mswindows, next-mach,
9552         unisoft-unix, vax-vms, win32, w32.
9554         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
9555         given name if the pattern is not more specific.
9557         * calendar/lunar.el (lunar-phase-names): New option.
9558         (lunar-phase): Doc fix.
9559         (lunar-cycles-per-year): New constant.
9560         (lunar-index): New function.
9561         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
9562         (lunar-phase-name): Use lunar-phase-names.
9563         (calendar-lunar-phases): Use format.
9564         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
9566         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
9567         Copy imenu-example--name-and-position function here for own use.
9568         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
9570         * bs.el (bs--redisplay):
9571         * cus-edit.el (custom-redraw):
9572         * ibuffer.el (ibuffer-bury-buffer):
9573         * server.el (server-goto-line-column):
9574         * startup.el (command-line-1):
9575         * strokes.el (strokes-xpm-for-stroke):
9576         * term.el (term-display-buffer-line):
9577         * view.el (View-goto-line):
9578         * calc/calc.el (calc-do, calc-trail-buffer):
9579         * play/gamegrid.el (gamegrid-add-score-insecure):
9580         * progmodes/ada-mode.el (ada-compile-goto-error):
9581         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
9582         (ebrowse-select-1st-to-9nth):
9583         * progmodes/cperl-mode.el (cperl-time-fontification):
9584         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
9585         * progmodes/gud.el (gud-display-line):
9586         (idlwave-shell-display-line):
9587         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
9588         * progmodes/make-mode.el (makefile-browser-toggle):
9589         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
9590         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
9591         * textmodes/picture.el (picture-draw-rectangle):
9592         * textmodes/reftex-index.el (reftex-index-goto-letter):
9593         (reftex-select-jump-to-previous):
9594         * textmodes/reftex-sel.el (reftex-find-start-point)
9595         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
9596         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
9597         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
9598         * textmodes/tex-mode.el (tex-compilation-parse-errors):
9599         * textmodes/two-column.el (2C-associated-buffer):
9600         Use forward-line rather than goto-line.
9602         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
9603         goto-line.
9605         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
9606         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
9607         (quick-check-list-to-regexp): Declare.
9609         * progmodes/make-mode.el (makefile-browser-insert-selection):
9610         Use goto-char rather than goto-line.
9612         * progmodes/prolog.el (compilation-error-regexp-alist)
9613         (compilation-forget-errors): Declare.
9615 2009-08-22  Juri Linkov  <juri@jurta.org>
9617         * progmodes/grep.el (lgrep, rgrep): At the beginning
9618         set `dir' to `default-directory' unless `dir' is a non-nil
9619         readable directory.  (Bug#4052)
9620         (lgrep, rgrep): Change a weird way to report an error
9621         from using `read-string' to using `error'.
9622         Instead of using interactive arguments in the function body,
9623         add new argument `confirm'.
9625 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9627         * textmodes/remember.el (remember-buffer):
9628         * progmodes/cperl-mode.el (cperl-vc-header-alist):
9629         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
9630         (icalendar-extract-ical-from-buffer):
9631         * net/newst-treeview.el (newsticker-groups-filename):
9632         * net/newst-backend.el (newsticker-cache-filename):
9633         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
9634         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
9635         (speedbar-add-ignored-path-regexp, speedbar-line-path)
9636         (speedbar-buffers-line-path, speedbar-path-line)
9637         (speedbar-buffers-line-path):
9638         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
9639         (epg-sign-keys):
9640         * epa.el (epa-display-verify-result):
9641         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
9643 2009-08-21  Glenn Morris  <rgm@gnu.org>
9645         * progmodes/js.el (inferior-moz-process): Fix declaration.
9647         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
9649         * obsolete/rnewspost.el (news-mail-reply):
9650         Use goto-char rather than goto-line.
9652         * term/ns-win.el (ns-open-file-select-line):
9653         Use line-beginning-position rather than goto-line.
9655         * apropos.el (apropos-command):
9656         * ehelp.el (electric-helpify):
9657         * printing.el (pr-show-setup):
9658         * strokes.el (strokes-help):
9659         * tutorial.el (tutorial--describe-nonstandard-key)
9660         (tutorial--detailed-help):
9661         * woman.el (woman-mini-help, woman-display-extended-fonts):
9662         * calc/calc-help.el (calc-describe-key):
9663         * emulation/edt.el (edt-electric-helpify):
9664         * international/mule-diag.el (mule-diag):
9665         * play/yow.el (apropos-zippy):
9666         * progmodes/python.el (python-describe-symbol):
9667         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
9668         * textmodes/table.el (*table--cell-describe-mode)
9669         (*table--cell-describe-bindings):
9670         Use help-print-return-message rather than the now obsolete alias.
9672         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
9673         (calendar-cursor-to-visible-date):
9674         * play/5x5.el (5x5-position-cursor):
9675         * play/decipher.el (decipher):
9676         * play/gomoku.el (gomoku-goto-xy):
9677         * play/landmark.el (lm-goto-xy):
9678         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
9679         (mpuz-paint-digit):
9680         Use forward-line, not goto-line.
9682         * mail/rmail.el (rmail-obsolete): Delete custom group.
9683         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
9684         (rmail-remote-password, rmail-remote-password-required):
9685         Remove unneeded :set-after and :set properties.
9687 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
9689         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
9691 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
9693         * loadup.el: Remove leftover macos code.
9695         * vc-git.el (vc-git-annotate-command): Run asynchronously.
9696         Explicitly pass the date format to git blame so that user local
9697         so that the output format can be parsed.
9699 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
9701         * net/dbus.el (top): Don't check for (getenv
9702         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
9704 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
9706         * log-edit.el (log-edit-strip-single-file-name): New var.
9707         (log-edit-insert-changelog): Use it.  Bug#3571
9709 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9711         * subr.el (read-passwd): Use read-key so keypad keys work as well.
9712         Bug#3287
9714         * help.el (help-print-return-message): Rename from
9715         print-help-return-message.
9717         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
9718         cvs-mode-map parent hack.
9719         (log-view-mode): Derive from special-mode.
9721         * linum.el (linum-mode): window-size-change-functions is redundant.
9722         Adapt to new window-configuration-change-hook behavior.
9723         (linum-after-size, linum-after-config): Remove.
9725         * imenu.el (imenu-example--name-and-position)
9726         (imenu-example--lisp-extract-index-name)
9727         (imenu-example--create-lisp-index, imenu-example--create-c-index):
9728         Mark as obsolete.
9730         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
9731         (inferior-prolog-mode): Use it.
9732         (inferior-prolog-load-file): Reset list of errors.
9734 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9736         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
9738         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
9740 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
9742         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
9743         is running already.
9745 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9747         * subr.el (listify-key-sequence-1): Use normal syntax since those
9748         integers are nowadays always represented by the same (positive) number
9749         on all platforms.
9750         (read-key-empty-map): New const.
9751         (read-key-delay): New var.
9752         (read-key): New function.
9753         (force-mode-line-update): Use with-current-buffer.
9754         (locate-user-emacs-file): Don't forget to abbreviate the file name.
9755         (start-process-shell-command, start-file-process-shell-command):
9756         Discourage the use of command-args.
9758 2009-08-19  Glenn Morris  <rgm@gnu.org>
9760         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
9762 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9764         * simple.el (choose-completion-string): Don't rely on
9765         minibuffer-completing-file-name and ad-hoc checks to decide whether
9766         to continue completion or not.
9768         * minibuffer.el (minibuffer-hide-completions): New function.
9769         (completion--do-completion): Use it.
9770         (completions-annotations): New face.
9771         (completion--insert-strings): Use it.
9772         (completion-pcm--delim-wild-regex): Add docstring.
9773         (completion-pcm--string->pattern): Add support for 0-width delimiters
9774         in completion-pcm--delim-wild-regex.
9776 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9778         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
9779         Remove unused var `buffer-modified-p'.
9781         * minibuffer.el (completion--do-completion): Move point for the #b001
9782         case as well (bug#4176).
9783         (minibuffer-complete, minibuffer-complete-word): Don't move point.
9785 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
9787         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
9788         and :session buses.
9790 2009-08-18  Kenichi Handa  <handa@m17n.org>
9792         * international/ucs-normalize.el (ucs-normalize-version):
9793         Change to 1.1.
9794         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
9795         (utf-8-hfs): Make it perform normalization on encoding too.
9797         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
9798         (sentence-end-without-space): Delete duplicated chars.
9799         (sentence-end-base): Likewise.
9801         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
9802         (html-mode): Delete duplicated chars from sentence-end-base.
9804         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
9805         (texinfo-mode): Delete duplicated chars from sentence-end-base.
9807 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
9809         * files.el (hack-one-local-variable): If the mode function is for
9810         a minor mode, pass it an argument (Bug#4148).
9812 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
9814         * net/tramp.el (tramp-register-completion-file-name-handler):
9815         Check also for (member 'partial-completion completion-styles).
9817 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9819         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
9820         abbrev (Bug#3943).
9822 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
9824         * progmodes/cperl-mode.el: Merge upstream 6.2.
9825         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
9826         (cperl-forward-re): Check cperl-brace-recursing.
9827         (cperl-highlight-charclass): New function.
9828         (cperl-find-pods-heres): Use it.
9829         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
9830         (cperl-beautify-regexp-piece): Fix column calculation.
9831         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
9832         (cperl-beautify-level): Don't process entire regexp.
9833         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
9834         calling man.
9835         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
9836         (cperl-init-faces): Build a list in the normal way.
9838 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9840         * calendar/parse-time.el (parse-time-string-chars): Save match
9841         data.
9843 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9845         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
9846         (sql-product): Use it.
9847         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
9848         (sql-set-product): Add completion.
9849         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
9850         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
9851         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
9852         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
9853         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
9854         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
9855         (sql-highlight-db2-keywords): Remove.
9856         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
9857         (sql-highlight-product): Use derived-mode-p.
9858         (sql-set-sqli-buffer): Use with-current-buffer.
9859         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
9860         Simplify.
9862         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
9864         * term.el: Fix commenting convention, turn comments into docstrings.
9866 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
9868         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
9870 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
9872         * calendar/parse-time.el (parse-time-string-chars): Compute using
9873         character classes, to handle non-ascii characters (Bug#3190).
9875 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
9877         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
9878         another heredoc if the user adds another < (Bug#3226).
9880         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
9881         Don't initialize based on window-system (Bug#4124).
9883         * facemenu.el (facemenu-read-color): Use a completion function
9884         that accepts any defined color, such as RGB triplets (Bug#3677).
9886         * files.el (get-free-disk-space): Change fallback default
9887         directory to /.  Expand DIR argument before switching to fallback.
9888         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
9890 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
9892         * files.el (load-library): Doc fix.
9894 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
9896         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
9897         (viper-if-string): Redefine C-s in the minibuffer to insert the last
9898         incremental search string.
9900         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
9901         XEmacs.
9903         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
9904         (ediff-merge-region-is-non-clash)
9905         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
9906         Also check if the job is really a merge job.
9908         * ediff.el (ediff-current-file): New function.
9910 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
9912         * progmodes/js.el: Edit docstrings throughout to follow Emacs
9913         conventions.
9914         (js-insert-and-indent): Delete function.
9915         (js-mode-map): Don't bind keys to js-insert-and-indent.
9916         (js-beginning-of-defun): Rename from js--beginning-of-defun.
9917         (js-end-of-defun): Rename from js--end-of-defun.
9918         (js-auto-indent-flag): Delete variable.
9920 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
9922         * progmodes/js.el: Remove proclaim statement.
9923         Defvar which-func-imenu-joiner-function to silence compiler.
9925         * files.el (auto-mode-alist): Use js-mode for .js files.
9927         * progmodes/js2-mode.el: Remove file.
9929         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
9931         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
9933         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
9935 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
9936             Karl Landstrom  <karl.landstrom@brgeight.se>
9938         * progmodes/js.el: New file.
9940 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
9942         * timezone.el (timezone-parse-date): Add ability to understand ISO
9943         basic format (minimal separators) dates in addition to the
9944         already-supported extended format dates.
9946 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
9948         * international/ucs-normalize.el: Add a `coding' file variable.
9950         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
9952 2009-08-14  Sam Steingold  <sds@gnu.org>
9954         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
9956 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
9958         * faces.el (help-argument-name): Define it here instead of
9959         help-fns.el, because in daemon mode help-fns.el may be loaded when
9960         faces are still uninitialized (Bug#1078).
9962         * help-fns.el (help-argument-name): Move defface to faces.el.
9964 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
9966         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
9967         create buffer with a pty but no process so that GDB can make the
9968         inferior the controlling process.
9970 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
9972         * international/ucs-normalize.el: New file.
9974 2009-08-13  Richard Stallman  <rms@gnu.org>
9976         * mail/rmail.el (rmail-get-attr-names):
9977         Accept an attribute header that is too short.
9979         * mail/rmail.el (rmail-forget-messages):
9980         Ignore nil elt in rmail-message-vector.  Use dotimes.
9982         * progmodes/compile.el (compilation-goto-locus):
9983         Use next-error-move-function.
9985         * simple.el (next-error-move-function): New variable.
9987 2009-08-12  Juri Linkov  <juri@jurta.org>
9989         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
9990         always non-nil.  (Bug#4052)
9992         * replace.el (read-regexp): Return empty string when
9993         `default-value' is nil.
9994         (keep-lines-read-args): Don't use empty string as the
9995         default value for `read-regexp'.  (Bug#2495)
9997 2009-08-12  Juri Linkov  <juri@jurta.org>
9999         * international/mule-cmds.el (ucs-insert): Change arguments
10000         from `arg' to `character', `count', `inherit' to be the same
10001         as in `insert-char'.  Doc fix.  (Bug#4039)
10003         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
10005 2009-08-12  Juri Linkov  <juri@jurta.org>
10007         * files-x.el: New file.
10009         * files.el: Move code that deals with adding/deleting
10010         file/directory-local variables to files-x.el.
10012         * Makefile.in (ELCFILES): Add files-x.elc.
10014 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
10016         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
10017         to use `goto-line'.
10018         (gdb-place-breakpoints, gdb-get-location): Rewritten without
10019         `goto-line'.
10020         (gdb-invalidate-disassembly): Do not refresh upon receiving
10021         'update signal.  Instead, update all disassembly buffers only after
10022         threads list.
10023         (gdb): Send -target-detach when buffer is killed (Bug#3794).
10024         (gdb-starting): Moved -data-list-register-names...
10025         (gdb-stopped): ...here so it's sent when first thread stops.
10026         (gdb-registers-handler-custom): Do nothing if register names are
10027         unknown yet.
10029         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
10030         from `gdb-mi.el' to avoid extra tangling.
10032         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
10033         change which breaks `gud-def' definitions used in `gdb'.
10034         (gdb-update-gud-running): No extra fuss for updating frame number.
10036 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10038         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
10039         (describe-language-environment-map, setup-language-environment-map)
10040         (set-coding-system-map): Move initialization into declaration.
10041         (set-language-info-alist): Last arg to define-key-after can be skipped.
10043         * international/quail.el (quail-completion-1): Simplify.
10044         (quail-define-rules): Use slightly more compact code.
10045         (quail-insert-decode-map): Propertize keys, compact columns.
10047         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10048         Add goto-line.
10050 2009-08-10  Miles Bader  <miles@gnu.org>
10052         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
10053         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
10054         (js2-instance-member, js2-private-member, js2-private-function-call)
10055         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
10056         (js2-magic-paren, js2-external-variable):
10057         Remove "-face" suffix from face names.
10058         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
10059         (js2-highlight-undeclared-vars, js2-peek-token)
10060         (js2-parse-function-params, js2-mode-show-errors)
10061         (js2-mode-show-warnings, js2-make-magic-delimiter)
10062         (js2-mode-highlight-magic-parens): Update to use new face names.
10064 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
10066         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
10067         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
10069 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
10071         * subr.el: Provide hashtable-print-readable.
10073         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
10074         hs-c-like-adjust-block-beginning.
10075         (hs-hide-block-at-point): Stop hiding at the beginning of
10076         hs-block-end-regexp (Bug#700).
10078 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
10080         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
10081         a macro.
10082         (gdb-registers-handler-custom): Do not fail when register names
10083         are unavailable.
10085 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
10087         * progmodes/gdb-mi.el (gdb-control-all-threads)
10088         (gdb-control-current-thread): Interactive setters for
10089         `gdb-gud-control-all-threads' to use in menu.
10090         (gdb-show-run-p): Show «Go» when process is not active.
10091         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
10092         gud/thread.xpm and gud/all.xpm.
10094 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
10096         * net/net-utils.el (net-utils-font-lock-keywords): New var.
10097         (nslookup-font-lock-keywords): Make it a variable.
10098         (net-utils-mode): New mode for viewing diagnostic network output.
10099         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
10100         (net-utils-run-simple): New function.
10101         (ifconfig, iwconfig, netstat, arp, route): Use it.
10103 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
10105         * progmodes/gdb-mi.el (gdb-read-memory-custom)
10106         (gdb-memory-set-address, def-gdb-set-positive-number)
10107         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
10108         after changing settings.
10109         (gdb-invalidate-disassembly): Update when first shown.
10110         (gdb-edit-locals-value): Fixed.
10111         (gdb-registers-handler-custom): Print registers in right order and
10112         allow changing register values (only for current thread yet).
10113         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
10114         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
10115         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
10116         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
10117         info in mode name.
10118         (gdb-registers-mode-map): TAB to switch to locals.
10120 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
10122         * mail/rmail.el (rmail-add-mbox-headers)
10123         (rmail-set-message-counters-counter): Search for
10124         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
10126 2009-08-08  Glenn Morris  <rgm@gnu.org>
10128         * Makefile.in (ELCFILES): Update.
10130 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
10132         * mail/sendmail.el (mail-yank-original): Set
10133         buffer-file-coding-system from the one used by the message whose
10134         text is yanked.
10136         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
10137         to "windows" when "pgnuplot" is used.
10138         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
10139         call accept-process-output if "pgnuplot" is used.
10140         (calc-graph-init): Don't send -display and -geometry to
10141         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
10142         running "pgnuplot -V" with shell-command-to-string.
10144         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
10145         the default.
10147 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
10149         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
10150         org/org-latex.elc.
10152 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
10154         * vc-dispatcher.el (vc-resynch-window): Update comment.
10156         * term.el (term-handle-ansi-escape): Add comments with the
10157         terminfo capabilities implemented.
10159 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
10161         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
10162         (gdb-var-create-handler): Rewritten using JSON parser.
10163         (gdb-propertize-header): Moved earlier.
10164         (gdb-set-header): Removed to avoid duplication.
10165         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
10166         Refresh disassembly buffers only after threads list have been
10167         update.
10168         (gdb-threads-header, gdb-registers-header): Per-buffer header line
10169         variables.
10171 2009-08-04  Juri Linkov  <juri@jurta.org>
10173         * files.el: Commands to add/delete file/directory-local variables.
10174         (read-file-local-variable, read-file-local-variable-value)
10175         (read-file-local-variable-mode, modify-file-local-variable)
10176         (modify-file-local-variable-prop-line)
10177         (modify-dir-local-variable): New functions.
10178         (add-file-local-variable, delete-file-local-variable)
10179         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
10180         (add-dir-local-variable, delete-dir-local-variable)
10181         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
10182         (copy-dir-locals-to-file-locals-prop-line): New commands.
10184 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
10186         * abbrev.el (insert-abbrev-table-description): Prettify output.
10187         Suggested by Karl Chen.
10189 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
10191         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
10192         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
10193         (gdb-overlay-arrow-position, gdb-thread-position)
10194         (gdb-disassembly-position): Declare variables.
10195         (gdb-wait-for-pending): Function now.
10196         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
10197         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
10198         compilation goes smoothly.
10199         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
10200         (gdb-non-stop-setting): New customization setting which replaces
10201         `gdb-non-stop' so changing it doesn't break active GDB session.
10202         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
10203         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
10204         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
10205         (gdb-show-threads-by-default): New customization options.
10206         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
10207         routines.
10208         (gdb-get-buffer-create): Send buffers update signal when they are
10209         created.
10210         (gdb-invalidate-locals, gdb-invalidate-registers)
10211         (gdb-invalidate-breakpoints)
10212         (gdb-invalidate-threads, gdb-invalidate-disassembly)
10213         (gdb-invalidate-memory): Accept update signal.
10214         (gdb-current-context-command): Use --frame option.
10215         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
10216         Implement `gdb-frame-number' selection logic.
10217         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
10218         whether to show GUD toolbar buttons.
10219         (gdb-thread-exited): Unselect current thread when it exits.
10220         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
10221         (gdb-mark-line): Routine which sets overlay arrow or inverses
10222         video on fringeless displays.
10223         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
10224         to build aligned columns of data in GDB buffers and set text
10225         properties line-by-line.
10226         (gdb-invalidate-breakpoints)
10227         (gdb-breakpoints-list-handler-custom)
10228         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
10229         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
10230         (gdb-registers-handler-custom): Align data columns.
10231         (gdb-locals-handler-custom): Now prints data like in variable
10232         declarations.
10233         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
10234         Removed confusing buttons.
10235         (gdb-invalidate-threads): Append --frame.
10236         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
10237         between breakpoints/threads buffers.
10238         (gdb-set-window-buffer): Now can ignore dedicated windows.
10239         (gdb-propertize-header): Use `gdb-set-window-buffer'.
10240         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
10241         (def-gdb-thread-buffer-gud-command): Replaces
10242         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
10243         for fine thread control.
10244         (gdb-preempt-existing-or-display-buffer): New function used to
10245         display bound buffers without breaking window layout.
10246         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
10247         (gdb-select-frame): New version of `gdb-frames-select' which now
10248         sets `gdb-frame-number' so commands may use --frame option instead
10249         of inner debugger state.
10250         (gdb-frame-handler): Do not set `gdb-frame-number'.
10251         (gdb-threads-mode-map): Select threads with mouse.
10253         * progmodes/gud.el (gdb-gud-context-call): Declare function to
10254         avoid compilation warning.
10255         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
10256         `gdb-show-stop-p`.
10258         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
10259         Argument `key' renamed to `buffer-type'.
10260         (gdb-current-context-buffer-name): Do not add thread info to
10261         buffer name when no thread is selected.
10262         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
10263         command (bug 3794).
10264         (gdb-thread-selected): Handle `=thread-selected' notification.
10265         (gdb-wait-for-pending): New macro to deal with congestion problems.
10266         (gdb-breakpoints-list-handler-custom): Don't fail on pending
10267         breakpoints.
10268         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
10269         This fixes problem similar to one described in bug 3947.
10270         (gud-menu-map): More menu items.
10271         (gdb-init-1): Reset `gdb-thread-number' to nil.
10273         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
10274         non-stop settings.
10276         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
10277         (gdb-current-context-command): Do not append --thread if
10278         `gdb-thread-number' is nil.
10279         (gdb-running-threads-count, gdb-stopped-threads-count): New
10280         variables.
10281         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
10282         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
10283         customization options.
10284         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
10285         GUD commands.
10286         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
10287         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
10288         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
10289         set `gdb-thread-number' and update `gud-running' properly.
10290         (gdb-running): Update threads list when new threads appear.
10291         (gdb-stopped): Support non-stop operation and new thread switching
10292         logic.
10293         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
10294         (gdb-json-partial-output): New set of JSON routines.
10295         (def-gdb-auto-update-trigger): New `signal-list' optional
10296         argument.
10297         (gdb-thread-list-handler-custom): Update `gud-running',
10298         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
10299         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
10300         (gdb-continue-thread, gdb-step-thread): New commands for fine
10301         thread execution control.
10302         (gud-menu-map): New menu items to switch non-stop options.
10303         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
10304         (gdb-send): Mimic RET properly (bug 3794).
10306         * progmodes/gdb-mi.el (gdb-rules-name-maker)
10307         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
10308         gdb-buffer-rules.
10309         (def-gdb-auto-update-handler): New nopreserve optional argument.
10310         (gdb-stack-list-frames-custom): Print stack from top to bottom.
10312         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
10313         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
10314         (gdb-parent-mode): New mode to derive other GDB modes from.
10315         (gdb-display-disassembly-for-thread)
10316         (gdb-frame-disassembly-for-thread): New commands for threads
10317         buffer.
10319         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
10320         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
10321         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
10322         (gdb-update): We now store all GDB buffers in a list so that they
10323         can be updated by traversing a list instead of calling invalidate
10324         triggers explicitly.
10325         (def-gdb-trigger-and-handler): New macro to define trigger-handler
10326         pair for GDB buffer.
10327         (gdb-stack-buffer-name): Add thread information.
10328         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
10329         handle pending triggers.
10330         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
10331         (def-gdb-thread-buffer-simple-command)
10332         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
10333         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
10334         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
10335         New commands which show buffers bound to thread.
10336         (gdb-stack-list-locals-regexp): Removed unused regexp.
10338         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
10339         (gdb-locals-buffer-name, gdb-registers-buffer-name)
10340         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
10341         to (gud-comint-buffer) in *-buffer-name functions
10342         because (gdb-get-target-string) already does that.
10343         (gdb-locals-handler-custom, gdb-registers-handler-custom)
10344         (gdb-changed-registers-handler): Rewritten without regexps.
10346         * progmodes/gdb-mi.el: Basic thread selection support.
10347         (gdb-thread-number): New variable.
10348         (gdb-current-context-command): New macro which adds --thread
10349         option to command.
10350         (gdb-threads-mode-map): Select thread with SPC.
10351         (gdb-thread-list-handler-custom): Mark current thread with overlay
10352         arrow.  Synchronize GDB thread and Emacs thread.
10353         (gdb-select-thread): New command which selects current thread.
10354         (gdb-invalidate-frames, gdb-invalidate-locals)
10355         (gdb-invalidate-registers): Use --thread option.
10357 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
10359         * net/tramp.el (top): Make check for tramp-gvfs loading more
10360         robust.  (Bug#3977)
10361         (tramp-handle-insert-file-contents): `unwind-protect' must be
10362         inside `with-parsed-tramp-file-name'.
10364         * net/tramp-gvfs.el (top): Remove superfluous message when loading
10365         fails.
10367 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
10369         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
10370         directory if CLASSPATH is not set.
10372 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
10374         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
10375         New defconst.
10376         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
10378 2009-08-02  Kevin Ryde  <user42@zip.com.au>
10380         * net/newst-backend.el (newsticker--raw-url-list-defaults):
10381         Update freshmeat link.  Delete newsforge.com as it seems gone.
10383 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
10385         * select.el (x-set-selection): Doc fix (Bug#4021).
10387         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
10389         * help-fns.el (describe-variable): Treat list return values from
10390         dir-locals-find-file properly (Bug#4005).
10392 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
10394         * net/tramp.el (tramp-debug-message): Print also microseconds.
10396 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
10398         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
10399         or END is non-nil.
10400         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
10401         (tramp-get-debug-buffer): Change `outline-regexp' according to new
10402         format.
10404         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
10405         (tramp-get-file-property): Use it.
10407         * autorevert.el (auto-revert-handler): Allow
10408         `auto-revert-tail-mode' for remote files.
10410 2009-08-02  Jason Rumney  <jasonr@gnu.org>
10412         * minibuffer.el (read-file-name): Treat confirm options to
10413         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
10415 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
10417         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
10418         (font-lock-variable-name-face, font-lock-constant-face): Darken
10419         the colors for light backgrounds.
10421 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
10423         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
10424         month names.  (Bug#3987)
10426 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
10428         * simple.el (line-move-finish): Pass whole number to
10429         line-move-to-column.
10430         (line-move-visual): Perform hscroll to the recorded position.
10432 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
10434         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
10436 2009-07-29  Alan Mackenzie  <acm@muc.de>
10438         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
10440 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
10442         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
10443         (gdb-place-breakpoints): Use full path when setting breakpoints.
10445 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
10447         * calc/calc.el (calc-mode-map): Add keybinding for
10448         `calc-transpose-lines'.
10450 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
10452         * calc/calc-misc.el (calc-transpose-lines): New function.
10454 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
10456         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
10457         Simplify check for out-of-band methods.
10458         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
10459         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
10461 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
10463         * vc-git.el (vc-git-checkin): Fix typo.
10465 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
10467         * progmodes/js2-mode.el: New file.
10469 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
10471         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
10472         (gud-menu-map): Adjust tooltip accordingly.
10474 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
10476         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
10477         (vc-bzr-log-view-mode): Adjust log-view-file-re.
10479         * add-log.el (change-log-mode-map): Add a menu.
10481 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
10483         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
10484         function returns nil.
10485         (dbus-handle-event): Handle special return value :ignore.
10486         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
10488 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
10490         * view.el (view-mode-enable): Don't define Helper-return-blurb if
10491         it's not needed.
10493 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
10495         Fix Bug#3888:
10497         * w32-vars.el (x-select-enable-clipboard): Doc fix.
10499         * term/pc-win.el (x-display-name, x-colors)
10500         (x-select-enable-clipboard, x-select-text): Doc fix.
10502         * term/common-win.el (x-display-name, x-colors): Doc fix.
10504         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
10505         (xw-defined-colors): Doc fix.
10507         * w32-fns.el (x-select-text, x-setup-function-keys)
10508         (x-get-selection, x-set-selection): Doc fix.
10510         * term/x-win.el (x-select-text, x-setup-function-keys)
10511         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
10513         * select.el (x-set-selection): Doc fix.
10515 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
10517         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
10518         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
10519         "IsNSSSupportAvailable" method is not available.  Reported by
10520         Steve Youngs <steve@sxemacs.org>.
10522 2009-07-24  Kenichi Handa  <handa@m17n.org>
10524         * international/characters.el: Fix setting of category ?C, ?|, ?K,
10525         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
10526         (build-unicode-category-table): Fix range checks.
10528 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
10530         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
10531         the buffer we try to sync is current when calling
10532         vc-resynch-buffer.
10534         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
10535         not show up to date files.
10537 2009-07-24  Glenn Morris  <rgm@gnu.org>
10539         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
10540         Add autoload cookies.  If necessary, initialize.
10541         (elint-log): Handle non-file buffers.
10542         (elint-initialize): Add optional argument to reinitialize.
10543         (elint-find-builtin-variables): Save excursion.
10545 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
10547         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
10548         for Lint.
10550 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
10552         * vc.el (vc-print-log-internal): New function, split out from ...
10553         (vc-print-log): ... here.
10554         (vc-dir-move-to-goal-column): Declare.
10556         * vc-git.el (vc-git-add-signoff): New variable.
10557         (vc-git-checkin): Use it.
10558         (vc-git-toggle-signoff): New function.
10559         (vc-git-extra-menu-map): Bind it to menu.
10560         (vc-git--run-command-string): Accept a nil FILE argument.
10561         (vc-git-stash-list): New function.
10562         (vc-git-dir-extra-headers): Use it.
10564 2009-07-23  Glenn Morris  <rgm@gnu.org>
10566         * help-fns.el (describe-variable): Describe ignored and risky local
10567         variables in a similar way to that in which we describe safe ones.
10569         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
10570         (byte-compile-output-file-form, byte-compile-output-docform)
10571         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
10572         Give some more local variables with common names a "bytecomp-" prefix,
10573         so as not to shadow things during compilation.
10574         * emacs-lisp/cl-macs.el (load-time-value)
10575         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
10576         `outbuffer' to `bytecomp-outbuffer'.
10578         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
10579         since the next two variables cover them automatically now.
10580         (elint-builtin-variables, elint-autoloaded-variables): New.
10581         (elint-unknown-builtin-args): Remove all members, since they can be
10582         parsed automatically now.
10583         (elint-extra-errors): New.
10584         (elint-env-add-env, elint-env-add-macro): Use cadr.
10585         (elint-current-buffer): Use or.  Change final message.
10586         (elint-get-top-forms): Use line-end-position.
10587         (elint-init-env): Use cadr.  Handle autoload, declare-function,
10588         and defalias.
10589         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
10590         (regexp-assoc): Remove unused function.
10591         (elint-top-form): Set elint-current-pos, to record the start of the
10592         top-level form, for compilation-mode.
10593         (elint-form): Trap errors in macro expansion.  Use dolist.
10594         (elint-unbound-variable): Use elint-builtin-variables and
10595         elint-autoloaded-variables.
10596         (elint-get-args): Use cadr, or.
10597         (elint-check-cond-form): Use dolist, cadr.
10598         (elint-check-condition-case-form): Doc fix.  Use cadr.
10599         Use elint-extra-errors.
10600         (elint-log): New function.
10601         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
10602         Distinguish errors and warnings.
10603         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
10604         Use a bytecomp-style format.
10605         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
10606         (elint-get-log-buffer): Use compilation mode.  Disable undo.
10607         Don't truncate lines.
10608         (elint-initialize): Set builtin and autoloaded variable lists.
10609         Only process elint-unknown-builtin-args if non-nil.
10610         (elint-find-builtin-variables, elint-find-autoloaded-variables):
10611         New functions.
10612         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
10614 2009-07-22  Kevin Ryde  <user42@zip.com.au>
10616         * net/newst-backend.el (newsticker--parse-atom-1.0)
10617         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
10618         (newsticker--parse-rss-1.0):
10619         * progmodes/idlwave.el (idlwave-mode):
10620         * progmodes/idlw-shell.el (idlwave-shell-mode):
10621         * progmodes/vera-mode.el (vera-mode):
10622         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
10623         * progmodes/vhdl-mode.el (vhdl-mode):
10624         * textmodes/table.el (table-generate-source)
10625         (table--warn-incompatibility):
10626         Hyperlink urls in docstrings with URL `...'.
10628 2009-07-22  Glenn Morris  <rgm@gnu.org>
10630         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
10631         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
10632         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
10633         Remove leading * from defcustom docs.
10635         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
10637         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
10638         defcustom doc.
10639         (list-load-path-shadows): Optionally, just return shadows as a string.
10641         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
10643 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
10645         * mail/rmailedit.el (rmail-edit-mode): Use
10646         auto-save-include-big-deletions.
10648         * mail/rmail.el (rmail-variables): Use
10649         auto-save-include-big-deletions.
10651         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
10652         changes.
10654 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
10656         * calc/calc.el (calc-undo-length): New variable.
10657         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
10659 2009-07-21  Richard Stallman  <rms@gnu.org>
10661         * files.el (auto-save-mode): Handle buffer-save-size = -2
10662         for toggling mode.
10664 2009-07-21  Glenn Morris  <rgm@gnu.org>
10666         * textmodes/ispell.el (ispell-looking-back): Update declaration.
10668         * calendar/todo-mode.el (calendar-current-date): Update declaration.
10670         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
10671         silence compiler.  Instead...
10672         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
10673         (ps-print-ensure-fontified): Update for above function name changes.
10675         * printing.el (pr-mh-get-msg-num, pr-mh-show)
10676         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
10677         silence compiler.  Instead...
10678         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
10679         (mh-show-buffer): Only define for compiler.
10680         (pr-mh-current-message): Update for above function name changes.
10682         * files.el (abort-if-file-too-large): Explicitly pass `filename'
10683         as an argument.
10684         (find-file-noselect, insert-file-1): Update for above change.
10686         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
10688         * mail/mailclient.el (mailclient-send-it): Fix message.
10690         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
10691         (edebug-eval): Check cl-debug-env is bound.
10692         (print-level, print-circle): Don't redefine built-in variables.
10694         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
10695         (custom-print-vectors): Remove old comments from doc.
10697         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
10698         (emerge-version): Make the variable an obsolete alias for the
10699         emacs-version variable.  Make the function obsolete.
10700         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
10701         Emerge options, rather than merging in into the main Options menu.
10702         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
10703         and auto advance modes.  Disable edit/fast items when not relevant.
10705 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
10707         * term/vt420.el (terminal-init-vt420): Fix typo.
10709 2009-07-20  Sam Steingold  <sds@gnu.org>
10711         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
10712         variable (removed from compile.el on 2004-03-11).
10714 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
10716         * files.el (hack-local-variables-filter): Fix last change.
10718 2009-07-19  Juri Linkov  <juri@jurta.org>
10720         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
10721         (dir-local-variables-alist): New buffer-local variable.
10722         (hack-local-variables-filter): If variable is not dir-local,
10723         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
10724         because file-local overrides dir-local.
10725         (c-postprocess-file-styles) <declare-function>:
10726         Remove obsolete declaration.
10727         (hack-dir-local-variables): Add dir-local variable/value pair to
10728         `dir-local-variables-alist' and remove duplicates.  Doc fix.
10730         * help-fns.el (describe-variable): Add information about
10731         file-local and dir-local variables.
10733 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
10735         * files.el (hack-local-variables-filter): Rewrite.
10737 2009-07-19  Glenn Morris  <rgm@gnu.org>
10739         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
10740         Silence compiler by only defining on XEmacs.
10742         * international/mule.el (auto-coding-regexp-alist): Only match
10743         BABYL... at the start of buffer, not of lines.  (Bug#3790)
10745         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
10746         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
10747         (cal-menu-context-mouse-menu): Doc fix.
10749         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
10751         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
10753 2009-07-18  Juri Linkov  <juri@jurta.org>
10755         * info.el: Virtual Info keyword finder.
10756         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
10757         (Info-finder-file): New variable.
10758         (Info-finder-find-file): New function.
10759         (finder-known-keywords, finder-package-info)
10760         (find-library-name, lm-commentary): Use defvar and
10761         declare-function to silence compiler warnings.
10762         (Info-finder-find-node): New function.
10763         (info-finder): New command.
10765         * subr.el (process-kill-buffer-query-function): New function.
10766         (add-hook)<kill-buffer-query-functions>: Add hook
10767         `process-kill-buffer-query-function'.
10769 2009-07-18  Alan Mackenzie  <acm@muc.de>
10771         * progmodes/cc-mode.el (c-before-hack-hook)
10772         (c-postprocess-file-styles): Give invocation of `c-set-style'
10773         DONT-OVERRIDE parameter of t.  Already set style variables will
10774         thus not be overridden by style settings given by `c-file-syle'.
10776         * files.el (hack-local-variables-filter): Remove entries with
10777         duplicate keys from `file-local-variables-alist'.
10779 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
10781         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
10782         x-set-selection if display-selections-p returns nil for the
10783         current frame.
10785 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
10787         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
10789 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
10791         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
10792         Accept nil in addition to a regexp.
10793         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
10794         Accept nil in addition to a regexp.
10795         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
10796         buffers that have an associated file.  Handle nil values of
10797         desktop-buffers-not-to-save and desktop-files-not-to-save.
10798         (Bug#3833)
10800         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10801         (x-disown-selection-internal): New functions.
10803 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
10805         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
10806         warning.
10807         (gdb-breakpoints-header): Move forward to avoid compiler warning.
10808         (gdb-make-header-line-mouse-map): Remove duplicate definition.
10810 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
10812         * simple.el (set-mark): Revert last change.
10814 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
10816         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
10817         rendering of pngs is not possible instead of messaging a long
10818         description.
10820 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
10822         * w32-fns.el (x-selection-owner-p): New function.
10824         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
10825         (mouse-yank-at-click, mouse-yank-primary): If
10826         select-active-regions is non-nil, deactivate the mark before
10827         insertion.
10829         * simple.el (deactivate-mark, set-mark): Only save selection if we
10830         own it.
10832 2009-07-17  Kenichi Handa  <handa@m17n.org>
10834         * case-table.el (describe-buffer-case-table): Fix for the case
10835         that KEY is a cons.
10837 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
10839         * vc-rcs.el (vc-rcs-find-file-hook):
10840         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
10842 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
10844         * net/tramp.el (tramp-wait-for-output): Handle the case when
10845         commands do not return a newline but a null byte before the shell
10846         prompt.  (Bug#3858)
10848 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10850         * term/ns-win.el (ns-set-alpha): Don't declare.
10851         (ns-set-background-alpha): Remove function.
10853 2009-07-16  Kevin Ryde  <user42@zip.com.au>
10855         * emacs-lisp/copyright.el (copyright-update): Save match-data across
10856         y-or-n-p, for safety.
10858 2009-07-16  Richard Stallman  <rms@gnu.org>
10860         * files.el (auto-save-mode): If buffer-saved-size is -2,
10861         don't clobber it.
10863         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
10864         (rmail-retry-ignored-headers): Add more uninteresting fields.
10866 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
10868         * net/rcirc.el (rcirc): Use history variables.
10869         (rcirc-server-name-history, rcirc-nick-name-history)
10870         (rcirc-server-port-history): New variables.
10872 2009-07-15  Kenichi Handa  <handa@m17n.org>
10874         * international/mule-cmds.el (set-language-environment-charset):
10875         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
10876         ignore them.
10878         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
10879         Delete unibyte-display.
10881 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
10883         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
10885 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
10887         * simple.el (deactivate-mark): Optional argument FORCE.
10888         (set-mark): Use deactivate-mark.
10890         * info.el (Info-search): No need to check transient-mark-mode
10891         before calling deactivate-mark.
10893         * select.el (x-set-selection): Doc fix.
10894         (x-valid-simple-selection-p): Allow buffer values.
10895         (xselect--selection-bounds): Handle buffer values.  Suggested by
10896         David De La Harpe Golden.
10898         * mouse.el (mouse-set-region, mouse-drag-track): Call
10899         copy-region-as-kill before setting the mark, to let
10900         select-active-regions work.
10902 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
10904         * simple.el (deactivate-mark): If select-active-regions is
10905         non-nil, copy the selection data into a string.
10906         (activate-mark): If select-active-regions is non-nil, set the
10907         selection to the current buffer.
10908         (set-mark): Update selection if select-active-regions is non-nil.
10910         * select.el (x-valid-simple-selection-p): Allow buffer values.
10912 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10914         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
10915         and more featureful message-mode.
10917 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
10919         * select.el (x-set-selection): Doc fix.
10920         (x-valid-simple-selection-p): Disallow selection data consisting
10921         of a list or cons of integers, since that is not used.
10922         (xselect--selection-bounds, xselect--int-to-cons): New functions.
10923         (xselect-convert-to-string, xselect-convert-to-length)
10924         (xselect-convert-to-filename, xselect-convert-to-charpos)
10925         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
10927 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
10929         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
10930         output in -break-info command (Emacs bug #3794).
10932 2009-07-14  Glenn Morris  <rgm@gnu.org>
10934         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
10935         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
10936         (edebug-print-length, edebug-print-level, edebug-print-circle)
10937         (edebug-sit-for-seconds, edebug-view-outside)
10938         (edebug-bounce-point, edebug-set-global-break-condition)
10939         (edebug-Go-nonstop-mode, edebug-trace-mode)
10940         (edebug-Trace-fast-mode, edebug-continue-mode)
10941         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
10942         (edebug-visit-eval-list): Doc fixes.
10944         * subr.el (def-edebug-spec): Doc fix.
10946 2009-07-14  Kenichi Handa  <handa@m17n.org>
10948         * international/characters.el: Fix setting of category ?C.
10950 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
10952         * term/ns-win.el (x-select-font): defalias x-select-font to
10953         ns-popup-font-panel instead of generate-fontset-menu.
10955 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
10957         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
10959 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
10961         * arc-mode.el (archive-find-type): Allow for a PK00 string before
10962         the PK\003\004 header (Bug#3770).
10964 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
10966         * pcomplete.el (pcomplete-comint-setup): Check for
10967         shell-dynamic-complete-filename too.
10969 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
10971         * simple.el (temporary-goal-column): Change the value for
10972         line-move-visual to a cons cell.
10973         (line-move-visual): Record or set the window hscroll, if
10974         necessary (Bug#3494).
10975         (line-move-1): Handle cons value of temporary-goal-column.
10977 2009-07-11  Kenichi Handa  <handa@m17n.org>
10979         * international/mule-diag.el (describe-character-set): Don't show
10980         width.
10982 2009-07-10  Sam Steingold  <sds@gnu.org>
10984         * progmodes/compile.el (compilation-mode-font-lock-keywords):
10985         Omake sometimes indents the errors it prints, so allow all
10986         regexps to start with spaces.
10988 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
10990         * cus-edit.el (customize-changed-options-previous-release):
10991         Bump value to 22.1.  (Bug#3804)
10993 2009-07-08  Sam Steingold  <sds@gnu.org>
10995         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
10996         to be a cons cell (test . ignored-directory) to selectively ignore
10997         some directories depending on the location of the search.
10999 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
11001         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
11002         remote user is root, on the local host.
11003         (tramp-local-host-p): Either the local user or the remote user
11004         must be root.  (Bug#3771)
11006 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
11008         * progmodes/gdb-mi.el (gdb): Remove description of
11009         gdb-use-separate-io-buffer.
11010         (menu): Don't allow toggling of or enable
11011         gdb-use-separate-io-buffer from menubar.
11013 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
11015         * mail/unrmail.el (unrmail): Make sure the message ends with two
11016         newlines (Bug#3769).
11018 2009-07-08  Glenn Morris  <rgm@gnu.org>
11020         * calendar/calendar.el (calendar-current-date): Rework previous change.
11022 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
11024         * calendar/calendar.el (calendar-current-date):
11025         Add an optional argument giving an offset from today.
11027 2009-07-08  Glenn Morris  <rgm@gnu.org>
11029         * tutorial.el (tutorial--describe-nonstandard-key):
11030         Adjust the message for when a key has been unbound.
11031         (help-with-tutorial): Hide the arch-tag.
11033 2009-07-08  Kenichi Handa  <handa@m17n.org>
11035         * international/fontset.el (setup-default-fontset): For each
11036         script, append (not set) font-specs.
11038         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
11039         docstring.
11041 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
11043         * progmodes/gdb-mi.el (gdb-init-1): Move sending
11044         -data-list-register-names to ...
11045         (gdb-starting): ... here because GDB 7.0 requires execution to
11046         have started when using this MI command.
11047         (gdb-set-header): New function to distinguish select and
11048         unselected tabs in gdb buffers.
11049         (gdb-propertize-header): New macro that uses gdb-set-header.
11050         (gdb-breakpoints-header, gdb-locals-header): Use it.
11051         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
11053 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
11055         * Makefile.in (ELCFILES): Remove fadr.elc.
11057 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
11059         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
11060         may contain frame information, so `string-match' should be used.
11061         (gdb-update): Disassembly is invalidated through
11062         `gdb-get-selected-frame'.
11063         (gdb-pad-string): New function to pad string with spaces.
11064         (gdb-invalidate-disassembly): Invalidate only if the buffer
11065         exists.
11066         (gdb-disassembly-handler-custom): Column alignment.
11067         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
11068         placing new ones.
11069         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
11070         end of line, too.
11071         (gdb-frame-handler): Match convention to for disassembly buffer
11072         mode name.
11073         (gdb-stack-list-frames-handler): Rewritten without regexps.
11074         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
11075         not highlight breakpoints without line information.
11076         (gdb-input): Add trailing newline to command.
11078         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
11079         buffer properly.
11080         (gdb-breakpoints-list-handler-custom): Replacement for
11081         `gdb-break-list-handler'.  Using real parser instead of regexps
11082         now.
11083         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
11084         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
11085         to place breakpoints.
11086         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
11087         functions.
11088         (gdb-disassembly-handler-custom): Show overlay arrow.
11089         (gdb-disassembly-place-breakpoints): Show breakpoints in
11090         disassembly buffer.
11091         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
11092         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
11093         instead of parsing breakpoints buffer.  Fixed old menu references
11094         in `gud-menu-map'.
11096         * fadr.el: Remove.
11098         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
11099         (gdb-memory-address): New variable which holds top address of
11100         memory page shown in memory buffer.
11101         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
11102         customization variables.
11103         New functions:
11104         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
11105         display the memory buffer.
11106         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
11107         buffer display parameters.
11108         (def-gdb-memory-format, gdb-memory-format-binary)
11109         (gdb-memory-format-octal, gdb-memory-format-unsigned)
11110         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
11111         Functions for setting memory buffer format.
11112         (gdb-memory-unit-word, gdb-memory-unit-halfword)
11113         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
11114         unit size used in memory buffer.
11115         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
11116         to next/previous page of memory buffer.
11117         Now using (bindat-get-field) instead of fadr functions.
11119 2009-07-07  Sam Steingold  <sds@gnu.org>
11121         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
11122         non-top-level files.
11124 2009-07-07  Kenichi Handa  <handa@m17n.org>
11126         * international/mule-cmds.el (reset-language-environment): Put
11127         the highset priority to the charset iso-8859-1.
11129 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
11131         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
11132         to the end of the line when locating the block (Bug#700).
11134 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
11136         * net/tramp.el (tramp-handle-write-region): Flush file properties
11137         in case of short track.
11139 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
11141         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
11142         Coded custom representation of verilog error regular expressions
11143         to work with Emacs-22's new format.
11144         (verilog-error-regexp-xemacs-alist): Coded custom representation
11145         of verilog error regular expressions to work with XEmacs format.
11146         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
11147         error recognition into XEmacs.
11148         (verilog-error-regexp-add-emacs): Hook routine to install verilog
11149         error recognition into Emacs-22.
11151 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
11153         * woman.el: Remove stand-alone closing parentheses.
11154         (woman-file-name, woman2-format-paragraphs)
11155         (woman-leave-blank-lines): Code cleanup.
11156         (woman-use-own-frame): Change default to nil.
11157         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
11158         defaults to inherit from default faces.
11159         (woman2-process-escapes): Consume the newline after a stand-alone
11160         filler character (Bug#3651).
11162 2009-07-06  Glenn Morris  <rgm@gnu.org>
11164         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
11165         (top-level): Move provide to the end.
11166         (ffap): Remove defunct URL from custom group.
11168         * subr.el (eval-after-load): Doc fix.
11170 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
11172         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
11173         `calc-embedded-word' is called twice.
11175 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11177         * files.el (find-alternate-file-other-window, find-alternate-file):
11178         Obey confirm-nonexistent-file-or-buffer.
11180 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
11182         * dired-aux.el (dired-show-file-type): Handle remote files.
11184 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
11186         * desktop.el (desktop-globals-to-save):
11187         Add file-name-history (Bug#2750).
11189 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
11191         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
11193 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
11195         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
11196         property on entire argument since this is what eshell-lisp-command
11197         expects.
11199 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
11201         * net/tramp-gvfs.el (tramp-gvfs-methods)
11202         (tramp-gvfs-zeroconf-domain)
11203         (tramp-bluez-discover-devices-timeout): Add version flag.
11204         (tramp-gvfs-handler-mounted-unmounted)
11205         (tramp-gvfs-connection-mounted-p): Polish handling of
11206         incompatibilities between GVFS 0.2 and 1.0.
11208 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
11210         * cus-start.el (all): Add make-pointer-invisible.
11212 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
11214         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
11215         formatted correctly.
11217 2009-07-02  Juri Linkov  <juri@jurta.org>
11219         * info.el: Virtual Info files and nodes.
11220         (Info-virtual-files, Info-virtual-nodes): New variables.
11221         (Info-current-node-virtual): New variable.
11222         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
11223         New functions.
11224         (Info-file-supports-index-cookies): Use Info-virtual-file-p
11225         to check for a virtual file instead of checking a fixed list
11226         of node names.
11227         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
11228         instead of ad-hoc processing of "dir" and (apropos history toc).
11229         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
11230         instead of ad-hoc processing of "dir" and (apropos history toc).
11231         Reread a file when moving from a virtual node.
11232         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
11233         (Info-directory-toc-nodes, Info-directory-find-file)
11234         (Info-directory-find-node): New functions.
11235         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
11236         (Info-history): Move part of code to
11237         `Info-history-find-node'.
11238         (Info-history-toc-nodes, Info-history-find-file)
11239         (Info-history-find-node): New functions.
11240         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
11241         (Info-toc): Move part of code to `Info-toc-find-node'.
11242         (Info-toc-find-node): New function.
11243         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
11244         the current Info file name to references because now the node
11245         "*TOC*" belongs to the same Info manual.
11246         (Info-toc-build): Rename from `Info-build-toc'.
11247         (Info-toc-nodes): Rename input argument `file' to `filename'.
11248         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
11249         instead of ad-hoc processing of ("dir" apropos history toc).
11250         (Info-index-nodes): Use Info-virtual-file-p
11251         to check for a virtual file instead of checking a fixed list
11252         of node names.
11253         (Info-index-node): Add check for `Info-current-node-virtual'.
11254         Raise `save-match-data' higher up the tree to contain
11255         `search-forward' too (bug fix).
11256         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
11257         (Info-virtual-index-nodes): New variable.
11258         (Info-virtual-index-find-node, Info-virtual-index): New functions.
11259         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
11260         (Info-apropos-file, Info-apropos-nodes): New variables.
11261         (Info-apropos-toc-nodes, Info-apropos-find-file)
11262         (Info-apropos-find-node, Info-apropos-matches): New functions.
11263         (info-apropos): Move part of code to `Info-apropos-find-node' and
11264         `Info-apropos-matches'.
11265         (Info-mode-map): Bind "I" to `Info-virtual-index'.
11266         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
11267         for a virtual file instead of checking a fixed list of node names.
11269         * simple.el (async-shell-command): New command.
11271         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
11273         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
11274         instead of `mount-info'.
11276 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
11278         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
11279         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
11281 2009-07-02  Kenichi Handa  <handa@m17n.org>
11283         * international/mule.el (set-keyboard-coding-system): Force *-unix
11284         coding-system to avoid eol conversion.
11286 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
11288         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
11289         Add handler for `process-file', `shell-command' and
11290         `start-file-process'.
11291         (tramp-gvfs-handle-shell-command)
11292         (tramp-gvfs-handle-start-file-process)
11293         (tramp-gvfs-handle-process-file): New defuns.
11294         (tramp-synce-list-devices): Simplify check for existence of property.
11296 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
11298         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
11300 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
11302         * language/korean.el (set-language-info-alist): Add korean-cp949,
11303         cp949 to spec.
11305 2009-07-01  Kenichi Handa  <handa@m17n.org>
11307         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
11309         * international/encoded-kb.el: Deleted.
11311         * international/mule.el (set-keyboard-coding-system): Perform the
11312         necessary setup here instead of calling encoded-kbd-setup-display.
11314 2009-07-01  Glenn Morris  <rgm@gnu.org>
11316         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
11318 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
11320         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
11322 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
11324         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
11325         Handle also the 'rename case, when setting file modes.  (Bug#3712)
11326         (tramp-default-file-modes): Remove execute permissions.
11328         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
11329         (top): Add a default for "synce" in `tramp-default-user-alist'.
11330         Add completion function for "synce" method.
11331         (tramp-hal-service, tramp-hal-path-manager)
11332         (tramp-hal-interface-manager, tramp-hal-interface-device):
11333         New defconst.
11334         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
11335         (tramp-synce-list-devices, tramp-synce-parse-device-names):
11336         New defuns.
11338         * net/trampver.el: Update release number.
11340 2009-06-30  Kenichi Handa  <handa@m17n.org>
11342         * international/fontset.el (setup-default-fontset): Add CJK fonts
11343         for symbols and the other miscellaneous characters.
11345         * language/korea-util.el (setup-korean-environment-internal):
11346         Make char-width-table suitable for Korean environments.
11347         (exit-korean-environment): Cancel above.
11349         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
11350         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
11351         setup-function to make char-width-table suitable for respective
11352         environments, and an exit-function to cancel that.
11354         * language/japan-util.el (setup-japanese-environment-internal):
11355         Call use-cjk-char-width-table with arg `ja_JP'.
11357         * international/characters.el (cjk-char-width-table): Delete it.
11358         (cjk-char-width-table-list): New variable.
11359         (use-cjk-char-width-table): New arg local-name.
11360         (use-default-char-width-table): Fix for the case that Emacs is
11361         already using the default char-width-table.
11363 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
11365         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
11366         modes mandatory.  (Bug#3712)
11368 2009-06-29  Alan Mackenzie  <acm@muc.de>
11370         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
11371         correction between the visible width of TABs and their number of bytes.
11373 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
11375         * server.el (server-buffer-done): Prevent kill-buffer from
11376         prompting by clearing the buffer modification flag (Bug#3696).
11378 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
11380         * progmodes/verilog-mode.el (verilog-beg-of-statement)
11381         (verilog-endcomment-reason-re): Support unique case and priority case.
11382         (verilog-basic-complete-re): Support localparam lineup.
11383         (verilog-beg-of-statement-1): Fix for robustness, unique case.
11384         (verilog-set-auto-endcomments): Fix for unique case, always_comb
11385         commenting.
11386         (verilog-leap-to-case-head): Now support *nested* unique &
11387         priority case statements.
11388         (verilog-auto-lineup): Make just declarations the default (as it
11389         had been).
11390         (verilog-leap-to-case-head): Support priority/unique case statements.
11391         (verilog-auto-lineup): Rework to give users radio buttons to
11392         select the various styles of automatic lineup.
11393         (verilog-error-regexp-alist): Rework to support the XEmacs style
11394         of error regular expressions from compilers, lint tools &
11395         simulators.  Note that GNU Emacs has made it impossible for a mode
11396         to load such things.
11397         (electric-verilog-terminate-line, verilog-indent-declaration)
11398         (verilog-auto-wiure): Rework for radio button selection of
11399         auto-lineup selection of specification of auto lineup.
11400         (verilog-beg-of-statement-1): Redesign to support proper operation
11401         in additional code, based on testing with auto-lineup.
11402         (verilog-calculate-indent, assignments & declarations)
11403         (verilog-backward-token): Enhance to support auto-lineup of
11404         assignments & declarations.
11405         (verilog-in-directive-p, verilog-at-struct-p): New function for
11406         easy test of whether we are.
11407         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
11408         to support safe execution at almost anyline.
11409         (verilog-calc-1): Properly support indenting deep inside generate
11410         blocks.
11411         (verilog-init-font): Remove definition & use of verilog-init-font,
11412         as it is redundant with font-lock-defaults.
11413         (verilog-mode): Alter the definition of verilog-font-lock-defaults
11414         to avoid circular calls if syntax-ppss is a function (as is the
11415         case now in 22.x GNU Emacs) as that function would sometimes call
11416         itself, leading to (nearly) infinite recursion.
11417         (verilog-ovm-begin-re, verilog-ovm-end-re)
11418         (verilog-ovm-statement-re, verilog-leap-to-head)
11419         (verilog-backward-token): Add support for OVM macros.  Some are
11420         complete statements, and others open and close scopes like begin
11421         and end.
11422         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
11423         (verilog-defun-level-generate-only-re): Really fix the defun-list
11424         compilation issue.
11425         (verilog-calc-1, verilog-beg-of-statement): Enhance support for
11426         coverpoint, constraint and cross statements.
11427         (verilog-defun-level-list, verilog-generate-defun-level-list)
11428         (verilog-all-defun-level-list): Redo these specifications - it is
11429         too hard to support eval-when compile aggregation of lists also
11430         built at when-compile time.
11431         (verilog-defun-level-list): Place defconsts of variables used in
11432         building regular expressions which are built in eval-when-compile
11433         bodies in the same eval-when-compile body to facilitate compile
11434         without load.
11435         (verilog-beg-block-re-ordered): Support indenting
11436         virtual/protected tasks and functions.
11437         (verilog-defun-level-list, verilog-in-generate-region-p)
11438         (verilog-backward-ws&directives, verilog-calc-1): Speed up
11439         indentation of some module items (generate items).
11440         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
11441         across virtual/protected tasks and functions.
11443 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
11445         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
11446         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
11447         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
11448         in concatenations.  Reported by Yishay Belkind.
11449         (verilog-auto-ascii-enum): Support one-hot state machines in
11450         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
11451         (verilog-auto-inst, verilog-auto-inst-port): Include interface
11452         modport in AUTOINST and add vl-modport for users.  Reported by
11453         David Rogoff.
11454         (verilog-auto-inout-module, verilog-auto-inst)
11455         (verilog-decls-get-interfaces, verilog-insert-definition)
11456         (verilog-insert-one-definition, verilog-read-decls)
11457         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
11458         (verilog-sig-modport, verilog-signals-combine-bus)
11459         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
11460         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
11461         Suggested by David Rogoff.
11462         (verilog-repair-open-comma): Fix non-insertion of comma when
11463         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
11464         (verilog-make-width-expression): Simplify [A-1:0] expression
11465         widths to just {A{1'b0}}.
11466         (verilog-mode): Cleanup checkdoc warnings.
11467         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
11468         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
11469         inputs/outputs or data type.  Suggested by Vasu Kandadi.
11470         (next-error-last-buffer): Fix byte-compiler warning.
11471         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
11472         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
11473         or shell command text during AUTO expansion.  Suggested by Tad Truex.
11474         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
11475         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
11476         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
11477         in AUTOINOUT.  Reported by Matthew Lovell.
11478         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
11479         causing use of <= assignments.  Reported by Alex Reed.
11480         (verilog-read-decls): Fix triand, trior, wand, wor to be
11481         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
11482         (verilog-extended-complete-re): Support import "DPI-C" functions.
11483         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
11484         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
11485         (verilog-insert-date, verilog-insert-year)
11486         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
11487         Windows systems.  Reported by Michael Potts.
11488         (verilog-read-module-name): Fix AUTOINST when the child module
11489         declaration's name is a tick define.  Reported by Elliot Mednick.
11490         (verilog-read-decls): Fix V2K parameter bit subscripts getting
11491         passed to next parameter's definition.  Reported by Bruce T.
11492         (verilog-read-decls): Fix detecting "parameter int" when using
11493         AUTOINSTPARAM.  Reported by Bruce T.
11494         (verilog-goto-defun): Fix goto not finding modules unless first
11495         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
11496         (verilog-mode): Expand -f flag arguments on entry to mode so
11497         verilog-goto-defun will work.  Reported by Lawrence Butcher.
11498         (verilog-getopt): Expand environment variables in -f file
11499         arguments.  Suggested by Lawrence Butcher.
11500         (verilog-set-define): Fix "Symbol's value as variable is void"
11501         when reading enumerations.
11502         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
11503         Suggested by Stephen Peltan.
11504         (verilog-read-defines): Fix reading of enumerations in include
11505         files.  Reported by Steve Peltan.
11507 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
11509         * files.el (trash-directory): Fix defcustom type.
11511 2009-06-28  Juri Linkov  <juri@jurta.org>
11513         * help-fns.el (describe-function-1): Correctly locate adviced
11514         functions in hyperlink (Bug#2438).
11516 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
11518         * files.el (trash-directory): Change default to nil.
11519         (move-file-to-trash): If trash-directory is nil and
11520         system-move-file-to-trash is unbound, perform freedesktop-style
11521         trashing.
11523 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
11525         * files.el (move-file-to-trash): Add freedesktop trash
11526         support (Bug#973).
11528 2009-06-28  Glenn Morris  <rgm@gnu.org>
11530         * autorevert.el (global-auto-revert-non-file-buffers)
11531         (global-auto-revert-mode): Doc fixes.
11533 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
11535         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
11537 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
11539         * faces.el (x-handle-named-frame-geometry): Ensure that we have
11540         opened an X connection before calling x-get-resource (Bug#3194).
11542         * play/doctor.el: Remove reference to obsolete website.
11543         (make-doctor-variables): Correct grammar mistake (Bug#2633).
11545 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
11547         Remove find-file-not-found-hook VC method.  (Bug#2757)
11548         * vc-hooks.el (vc-file-not-found-hook)
11549         (vc-default-find-file-not-found-hook): Remove functions.
11550         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
11551         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
11552         * vc.el:
11553         * vc-hg.el:
11554         * vc-git.el: Do not mention find-file-not-found-hook VC method.
11556 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
11558         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
11559         compatibility function for `looking-back'.
11561         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11562         Use `ispell-looking-back'.
11564 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
11566         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
11567         rather than `filename'.
11569 2009-06-23  Miles Bader  <miles@gnu.org>
11571         * face-remap.el (text-scale-set): New function.
11573 2009-06-23  Glenn Morris  <rgm@gnu.org>
11575         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
11577         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
11579         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
11581         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
11583         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
11584         Simplify Persian conditionals.
11586         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
11587         variable `filename'.
11589         * comint.el (comint-insert-input): Doc fix.
11591         * Makefile.in (ELCFILES): Fix typo in previous change.
11593 2009-06-23  Miles Bader  <miles@gnu.org>
11595         * cus-start.el: Add entry for `recenter-redisplay'.
11597 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
11599         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
11600         Add an optional argument for the backend, use it instead of
11601         calling vc-backend.
11602         (vc-mode-line): Add an optional argument for the backend.
11603         Pass the backend to vc-state and vc-working-revision.  Move code for
11604         special handling for vc-state being a buffer to ...
11606         * vc-rcs.el (vc-rcs-find-file-hook):
11607         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
11609         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
11610         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
11611         vc-stay-local-p and vc-mode-line calls.
11613         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
11614         (vc-cvs-diff, vc-cvs-annotate-command)
11615         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
11616         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
11617         vc-mode-line calls.
11619         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
11620         direct comparison.
11621         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
11622         backend when calling vc-mode-line.
11623         (vc-register): Do not create a closure for calling the vc register
11624         function, call it directly.
11626 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
11628         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
11629         to make it obvious item can be clicked.
11631         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
11633 2009-06-23  Kenichi Handa  <handa@m17n.org>
11635         * language/korea-util.el (korean-key-bindings): Change the binding
11636         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
11637         same command.
11639 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
11641         Sync with Tramp 2.1.16.
11643         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
11645         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
11646         when a loading of a package fails.  Completion function for rsync
11647         is `tramp-completion-function-alist-ssh'.
11648         (all): Replace all calls of `split-string' and
11649         `tramp-split-string' by `tramp-compat-split-string'.
11650         (tramp-default-method): Use `tramp-compat-process-running-p'.
11651         (tramp-default-proxies-alist): Allow also Lisp forms.
11652         (tramp-remote-path): Add choice "Private Directories".
11653         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
11654         (tramp-domain-regexp): Allow also "-", "_" and ".".
11655         (tramp-end-of-output): Remove newlines, and add "$" at the end.
11656         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
11657         (tramp-debug-message): Insert header line in debug buffer.
11658         (tramp-handle-directory-files-and-attributes-with-stat):
11659         Care about filenames with spaces, or starting with "-".
11660         (tramp-handle-dired-uncache): New defun.
11661         (tramp-handle-insert-directory): Don't flush the directory from
11662         cache, this is handled by `dired-uncache' now.
11663         (tramp-handle-insert-file-contents): Improve error handling.
11664         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11665         Quote `tramp-end-of-output'.
11666         (tramp-action-password): Improve trace message.
11667         (tramp-check-for-regexp): Both echoes must be present, before removing.
11668         (tramp-open-connection-setup-interactive-shell): Trace coding system.
11669         (tramp-compute-multi-hops): Eval cons cells of
11670         `tramp-default-proxies-alist'.
11671         (tramp-maybe-open-connection): Use the same command pattern for
11672         first hop and further hops.
11673         (tramp-wait-for-output): Remove handling of newlines.
11674         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
11675         (tramp-split-string): Remove function.  It is handled in
11676         tramp-compat now.
11678         * net/tramp-cmds.el (tramp-bug):
11679         Recommend `tramp-cleanup-all-connections' in the bug mail.
11681         * net/tramp-compat.el (tramp-compat-split-string)
11682         (tramp-compat-process-running-p): New defuns.
11684         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
11685         for `dired-uncache'.
11687         * net/tramp-gvfs.el: New package.
11689         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
11690         Add handler for `dired-uncache'.
11691         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
11693         * net/trampver.el: Update release number.  Make version check fit
11694         for SXEmacs 22.
11696 2009-06-22  Jim Meyering  <meyering@redhat.com>
11698         Automatically handle .xz suffix (XZ-compressed files), too.
11699         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
11700         XZ is the successor to LZMA: <http://tukaani.org/xz/>
11702 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
11703             Nick Roberts  <nickrob@snap.net.nz>
11705         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
11706         repository (http://sphinx.net.ru/hg/gdb-mi/).
11708 2009-06-22  Glenn Morris  <rgm@gnu.org>
11710         * files.el (dir-locals-collect-mode-variables): Allow for any number of
11711         `mode' and `eval' entries.  (Bug#3430)
11713         * Makefile.in (ELCFILES): Add fadr.elc.
11715         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
11716         differing behavior of \n and ^ in strings.  (Bug#3385)
11718         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
11720         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
11721         property.
11722         (lisp-indent-function): Make it a defcustom.
11724 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
11726         * progmodes/gdb-ui.el: Replace with ...
11727         * progmodes/gdb-mi.el: ... this file.
11728         * progmodes/gud.el: Modify for gdb-mi.el.
11730 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
11732         * fadr.el: New file.
11734 See ChangeLog.14 for earlier changes.
11736 ;; Local Variables:
11737 ;; coding: utf-8
11738 ;; End:
11740     Copyright (C) 2009, 2010  Free Software Foundation, Inc.
11742   This file is part of GNU Emacs.
11744   GNU Emacs is free software: you can redistribute it and/or modify
11745   it under the terms of the GNU General Public License as published by
11746   the Free Software Foundation, either version 3 of the License, or
11747   (at your option) any later version.
11749   GNU Emacs is distributed in the hope that it will be useful,
11750   but WITHOUT ANY WARRANTY; without even the implied warranty of
11751   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11752   GNU General Public License for more details.
11754   You should have received a copy of the GNU General Public License
11755   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
11757 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1