gnus-html.el: Doc fix for gnus-html-image-url-blocked-p.
[emacs.git] / lisp / ChangeLog
blob7ea8d3aa116810252b2471867a691949bd1cede0
1 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * simple.el (blink-paren-function): Move from C to here.
4         (blink-paren-post-self-insert-function): New function.
5         (post-self-insert-hook): Use it.
7         * emacs-lisp/pcase.el (pcase-split-memq):
8         Fix overenthusiastic optimisation.
9         (pcase-u1): Handle the case of a lambda pred.
11 2010-08-31  Masatake YAMATO  <yamato@redhat.com>
13         * textmodes/nroff-mode.el (nroff-view): New command.
14         (nroff-mode-map): Bind it to C-c C-c.
16 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
18         * emacs-lisp/smie.el (smie-down-list): New command.
20         Remove old indentation and navigation code on octave-mode.
21         * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
22         smie-down-list rather than add a binding for octave-down-block.
23         (octave-mark-block, octave-blink-matching-block-open):
24         Rely on forward-sexp-function.
25         (octave-fill-paragraph): Don't narrow, so you can use
26         indent-according-to-mode.
27         (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
28         (octave-in-block-p, octave-re-search-forward-kw)
29         (octave-re-search-backward-kw, octave-indent-calculate)
30         (octave-end-as-array-index-p, octave-block-end-offset)
31         (octave-scan-blocks, octave-forward-block, octave-backward-block)
32         (octave-down-block, octave-backward-up-block, octave-up-block)
33         (octave-before-magic-comment-p, octave-indent-line): Remove.
35 2010-08-31  Chong Yidong  <cyd@stupidchicken.com>
37         * emacs-lisp/package.el (package--read-archive-file): Just use
38         `read', to avoid copying an additional string.
39         (package-menu-mode): Set header-line-format here.
40         (package-menu-refresh, package-menu-revert): Signal an error if
41         not in the Package Menu.
42         (package-menu-package-list): New var.
43         (package--generate-package-list): Operate on the current buffer;
44         don't assume that it is *Packages*, since the user may rename it.
45         Allow persistent package listings and sort keys using
46         package-menu-package-list and package-menu-package-sort-key.
47         (package-menu--version-predicate): Fix version calculation.
48         (package-menu-sort-by-column): Don't select the window.
49         (package--list-packages): Create the *Packages* buffer.
50         Set package-menu-package-list-key.
51         (list-packages): Sorting by status is now the default.
52         (package-buffer-info): Use match-string-no-properties.
53         (define-package): Add a &rest argument for future proofing, but
54         don't use it yet.
55         (package-install-from-buffer, package-install-buffer-internal):
56         Merge into a single function, package-install-from-buffer.
57         (package-install-file): Change caller.
59         * finder.el: Load finder-inf using `require'.
60         (finder-list-matches): Sorting by status is now the default.
61         (finder-compile-keywords): Simpify printing.
63 2010-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
65         * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
66         (octave-mode-map): Remove special bindings for forward/backward-block
67         and octave-backward-up-block.  Use smie-close-block.
68         (octave-continuation-marker-regexp): New var.
69         (octave-continuation-regexp): Use it.
70         (octave-operator-table, octave-smie-op-levels)
71         (octave-operator-regexp, octave-smie-indent-rules): New vars.
72         (octave-smie-backward-token, octave-smie-forward-token): New funs.
73         (octave-mode): Use SMIE.
74         (octave-close-block): Delete.
76 2010-08-30  Eli Zaretskii  <eliz@gnu.org>
78         * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
79         CLIPBOARD, not in PRIMARY.  (Bug#6944)
81 2010-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
83         * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
84         a list of parents.
85         (smie-indent-column): Allow indirection through variables.
87         * composite.el (save-buffer-state): Delete, unused.
88         * font-lock.el (save-buffer-state): Use with-silent-modifications.
89         (font-lock-default-fontify-region): Use with-syntax-table.
90         * jit-lock.el (with-buffer-unmodified): Remove.
91         (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
93         Use `declare' in defmacros.
94         * window.el (save-selected-window):
95         * subr.el (with-temp-file, with-temp-message, with-syntax-table):
96         * progmodes/python.el (def-python-skeleton):
97         * net/dbus.el (dbus-ignore-errors):
98         * jka-cmpr-hook.el (with-auto-compression-mode):
99         * international/mule.el (with-category-table):
100         * emacs-lisp/timer.el (with-timeout):
101         * emacs-lisp/lisp-mnt.el (lm-with-file):
102         * emacs-lisp/eieio.el (with-slots):
103         * emacs-lisp/easymenu.el (easy-menu-define):
104         * emacs-lisp/debug.el (debugger-env-macro):
105         * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
106         (Multiple-value-call, Multiple-value-prog1):
107         * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
108         (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
109         edebug rule to definition.
110         * emacs-lisp/lisp-mode.el (save-selected-window)
111         (with-current-buffer, combine-after-change-calls)
112         (with-output-to-string, with-temp-file, with-temp-buffer)
113         (with-temp-message, with-syntax-table, read-if, eval-after-load)
114         (dolist, dotimes, when, unless):
115         * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
117 2010-08-29  Chong Yidong  <cyd@stupidchicken.com>
119         * finder.el: Require `package'.
120         (finder-known-keywords): Tweak descriptions.  Retire `oop' keyword.
121         (finder-package-info): Var deleted.
122         (finder-keywords-hash, finder--builtins-alist): New vars.
123         (finder-compile-keywords): Compute package--builtins and
124         finder-keywords-hash instead of finder-keywords-hash, respecting
125         the "Package" header.
126         (finder-unknown-keywords, finder-list-matches):
127         Use finder-keywords-hash and package--list-packages.
128         (finder-mode): Don't set font-lock-defaults.
129         (finder-exit): We don't use "*Finder-package*" and "*Finder
130         Category*" buffers anymore.
132         * emacs-lisp/package.el (package--builtins-base): Var deleted.
133         (package--builtins): Set default value to nil.
134         (package-initialize): Load precomputed value of package--builtins
135         from finder-inf.el.
136         (package-alist, package-compute-transaction)
137         (package-download-transaction): Improve docstring.
138         (package-read-all-archive-contents): Do not change
139         package--builtins here.
140         (list-packages): Make package-list-packages an alias for this.
141         Sort by status by default.
142         (package--list-packages): Add optional PACKAGES arg.
143         (describe-package-1): Use font-lock-face property.  For built-in
144         packages, insert file commentary.
145         (package--generate-package-list): Rename from
146         package-list-packages-internal; all callers changed.  Add optional
147         PACKAGES arg.  Add alphabetical sort fallbacks.
148         (package-menu--version-predicate, package-menu--status-predicate)
149         (package-menu--description-predicate)
150         (package-menu--name-predicate): New functions.
152         * info.el (Info-finder-find-node): Search package-alist instead of
153         finder-package-info.
155 2010-08-29  Chong Yidong  <cyd@stupidchicken.com>
157         * subr.el (version-regexp-alist): Don't use "a" and "b" for
158         "alpha" and "beta".
159         (version-to-list): Handle versions like "10.3d".
161 2010-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
163         * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
164         (macroexp-accumulate): Use `declare'.
166 2010-08-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
168         * whitespace.el (whitespace-style): Adjust type declaration.
170 2010-08-26  Nathan Weizenbaum  <nweiz@cressida.sea.corp.google.com>  (tiny change)
172         * progmodes/js.el: Make indentation more customizable (Bug#6914).
173         (js-paren-indent-offset, js-square-indent-offset)
174         (js-curly-indent-offset): New options.
175         (js--proper-indentation): Use them.
177 2010-08-26  Daniel Colascione  <dan.colascione@gmail.com>
179         * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
180         instead of inspecting font-lock properties (Bug#6916).
182 2010-08-26  David Reitter  <david.reitter@gmail.com>
184         * server.el (server-visit-files): Run pre-command-hook and
185         post-command-hook for each buffer while it is current
186         (Bug#6910).
187         (server-execute): Do not run hooks here.
189 2010-08-26  Michael Albinus  <michael.albinus@gmx.de>
191         Sync with Tramp 2.1.19.
193         * net/trampver.el: Update release number.
195 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
197         * help.el (help-map): Bind `C-h P' to describe-package.
199         * menu-bar.el (menu-bar-describe-menu): Add describe-package.
201         * emacs-lisp/package.el (package-refresh-contents): Catch errors
202         when downloading archives.
203         (describe-package-1): Add package commentary.
204         (package-install-button-action): New function.
205         (package-menu-mode-map): Bind ? to package-menu-describe-package.
206         (package-menu-view-commentary): Function removed.
207         (package-list-packages-internal): Hide the `package' package too.
209 2010-08-25  Kenichi Handa  <handa@m17n.org>
211         * language/misc-lang.el ("Arabic"): New language environment.
212         Setup composition-function-table for Arabic characters.
214         * international/fontset.el (setup-default-fontset): Fix typo for
215         arabic OTF spec (fini->fina).
217 2010-08-25  Jan Djärv  <jan.h.d@swipnet.se>
219         * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
220         on all frames.
222 2010-08-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
224         * whitespace.el: Allow cleaning up blanks without blank
225         visualization (Bug#6651).  Adjust help window for
226         whitespace-toggle-options (Bug#6479).  Allow to use fill-column
227         instead of whitespace-line-column (from EmacsWiki).  New version
228         13.1.
229         (whitespace-style): Added new value 'face.  Adjust docstring.
230         (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
231         foreground property face.
232         (whitespace-line-column): Adjust docstring and type declaration.
233         (whitespace-style-value-list, whitespace-toggle-option-alist)
234         (whitespace-help-text): Adjust const initialization.
235         (whitespace-toggle-options, global-whitespace-toggle-options):
236         Adjust docstring.
237         (whitespace-display-window, whitespace-interactive-char)
238         (whitespace-style-face-p, whitespace-color-on): Adjust code.
239         (whitespace-help-scroll): New fun.
241 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
243         * emacs-lisp/package.el (list-packages): Alias for
244         package-list-packages.
246 2010-08-24  Kevin Ryde  <user42@zip.com.au>
248         * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
249         (Bug#5651).
251         * progmodes/ruby-mode.el (ruby): Add defgroup.
253 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
255         * progmodes/python.el: Add Ipython support (Bug#5390).
256         (python-shell-prompt-alist)
257         (python-shell-continuation-prompt-alist): New options.
258         (python--set-prompt-regexp): New function.
259         (inferior-python-mode, run-python, python-shell): Require
260         ansi-color.  Use python--set-prompt-regexp to set the comint
261         prompt based on the Python interpreter.
262         (python--prompt-regexp): New var.
263         (python-check-comint-prompt)
264         (python-comint-output-filter-function): Use it.
265         (run-python): Use a pipe (Bug#5694).
267 2010-08-24  Fabian Ezequiel Gallina  <galli.87@gmail.com>  (tiny change)
269         * progmodes/python.el (python-send-region): Send a different
270         Python command if Ipython is in use.
271         (python-check-version): Use a Python command to find the version.
273 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
275         * mouse.el (mouse-yank-primary): Avoid setting primary when
276         deactivating the mark (Bug#6872).
278 2010-08-23  Michael Albinus  <michael.albinus@gmx.de>
280         * net/dbus.el: Accept UNIX domain sockets as bus address.
281         (top): Don't initialize `dbus-registered-objects-table' anymore,
282         this is done in dbusbind,c.
283         (dbus-check-event): Adapt test for bus.
284         (dbus-return-values-table, dbus-unregister-service)
285         (dbus-event-bus-name, dbus-introspect, dbus-register-property):
286         Adapt doc string.
288 2010-08-23  Juanma Barranquero  <lekktu@gmail.com>
290         * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
292 2010-08-22  Juri Linkov  <juri@jurta.org>
294         * simple.el (read-extended-command): New function with the logic
295         for `completing-read' moved to Elisp from `execute-extended-command'.
296         Use `function-called-at-point' in `minibuffer-default-add-function'
297         to get a command name for M-n (bug#5364, bug#5214).
299 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
301         * startup.el (command-line-1): Issue warning for ignored arguments
302         --unibyte, etc (Bug#6886).
304 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
306         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
308 2010-08-22  Leo  <sdl.web@gmail.com>
310         Fix buffer-list rename&refresh after after killing a buffer in ido.
311         * lisp/ido.el: Revert Óscar's.
312         (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
313         Remember the buffers at head, rather than their name.
314         * lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.
316 2010-08-22  Kirk Kelsey  <kirk.kelsey@0x4b.net>  (tiny change)
317             Stefan Monnier  <monnier@iro.umontreal.ca>
319         * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
320         extra backslash added to each line (bug#6890).
322 2010-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
324         * subr.el (read-key): Don't echo keystrokes (bug#6883).
326 2010-08-22  Glenn Morris  <rgm@gnu.org>
328         * menu-bar.el (menu-bar-games-menu): Add landmark.
330 2010-08-22  Glenn Morris  <rgm@gnu.org>
332         * align.el (align-regexp): Make group and spacing arguments
333         use the interactive defaults when non-interactive.  (Bug#6698)
335         * mail/rmail.el (rmail-forward): Replace mail-text-start with its
336         expansion, so as not to need sendmail.
337         (mail-text-start): Remove declaration.
338         (rmail-retry-failure): Require sendmail.
340 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
342         * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
344 2010-08-22  Michael Albinus  <michael.albinus@gmx.de>
346         * progmodes/flymake.el (flymake-start-syntax-check-process):
347         Use `start-file-process' in order to let it run also on remote hosts.
349 2010-08-22  Kenichi Handa  <handa@m17n.org>
351         * files.el: Add `word-wrap' as safe local variable.
353 2010-08-22  Glenn Morris  <rgm@gnu.org>
355         * woman.el (woman-translate): Case matters.  (Bug#6849)
357 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
359         * simple.el (kill-region): Doc fix (Bug#6787).
361 2010-08-22  Glenn Morris  <rgm@gnu.org>
363         * calendar/diary-lib.el (diary-header-line-format):
364         Fit it to the window, not the frame.
366 2010-08-22  Andreas Schwab  <schwab@linux-m68k.org>
368         * subr.el (ignore-errors): Add debug declaration.
370 2010-08-22  Geoff Gole  <geoffgole@gmail.com>  (tiny change)
372         * whitespace.el (whitespace-color-off): Remove post-command-hook
373         locally.
375 2010-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
377         * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
379 2010-08-21  Chong Yidong  <cyd@stupidchicken.com>
381         * cus-edit.el (custom-group-value-create): Add extra newline
382         before end line (Bug#6876).
384 2010-08-21  Chong Yidong  <cyd@stupidchicken.com>
386         * mouse.el (mouse-save-then-kill): Don't save region to kill ring
387         when extending it.  Before killing on the second click, check if
388         the buffer is the correct one.  Doc fix.
389         (mouse-secondary-save-then-kill): Allow usage without first
390         calling mouse-start-secondary, by defaulting to point.  Don't save
391         an empty secondary selection.  Doc fix.
393 2010-08-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
395         * whitespace.el: Fix slow cursor movement (Bug#6172).  Reported by
396         Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
397         New version 13.0.
398         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
399         Adjust initialization.
400         (whitespace-bob-marker, whitespace-eob-marker)
401         (whitespace-buffer-changed): New vars.
402         (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
403         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
404         (whitespace-post-command-hook, whitespace-display-char-on):
405         Adjust code.
406         (whitespace-looking-back, whitespace-buffer-changed): New funs.
407         (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
409 2010-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
411         * files.el (locate-file-completion-table): Only list the .el and .elc
412         extensions if there's no other choice (bug#5955).
414         * facemenu.el (facemenu-self-insert-data): New var.
415         (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
416         New functions.
417         (facemenu-add-face): Use them.
419         * simple.el (blink-matching-open): Obey forward-sexp-function.
421 2010-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
423         * simple.el (prog-mode-map): New var.
424         (prog-indent-sexp): New command.
426         * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
428         * progmodes/prolog.el (smie): Require.
430         * emacs-lisp/smie.el (smie-default-backward-token)
431         (smie-default-forward-token): Strip properties.
432         (smie-next-sexp): Be more careful with associative operators.
433         (smie-forward-sexp-command): Generalize.
434         (smie-backward-sexp-command): Simplify.
435         (smie-closer-alist): New var.
436         (smie-close-block): New command.
437         (smie-indent-debug-log): New var.
438         (smie-indent-offset-rule): Add a few more cases.
439         (smie-indent-column): New function.
440         (smie-indent-after-keyword): Use it.
441         (smie-indent-keyword): Use it.
442         Fix up the opener code's point position.
443         (smie-indent-comment): Only applies at BOL.
444         (smie-indent-debug): New command.
446         * emacs-lisp/autoload.el (make-autoload): Preload the macros's
447         declarations that are useful before running the macro.
449 2010-08-18  Joakim Verona  <joakim@verona.se>
451         * image.el (imagemagick-types-inhibit): New variable.
452         (imagemagick-register-types): New function.
453         * image-mode.el (image-transform-properties): New function.
454         (image-transform-set-scale, image-transform-fit-to-height)
455         (image-transform-set-rotation, image-transform-set-resize)
456         (image-transform-fit-to-width, image-transform-fit-to-height):
457         New functions.
458         (image-toggle-display-image): Support image transforms.
460 2010-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
462         * image.el (create-animated-image): Don't add heuristic mask to image
463         (Bug#6839).
465 2010-08-18  Jan Djärv  <jan.h.d@swipnet.se>
467         * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
468         Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
470 2010-08-17  Stefan Monnier  <monnier@iro.umontreal.ca>
472         * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
474         Font-lock '...' strings, plus various simplifications and fixes.
475         * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
476         (octave-font-lock-close-quotes): New function.
477         (octave-font-lock-syntactic-keywords): New var.
478         (octave-mode): Use it.  Set beginning-of-defun-function.
479         (octave-mode-map): Don't override the <foo>-defun commands.
480         (octave-mode-menu): Pass it directly to easy-menu-define;
481         remove (now generic) <foo>-defun commands; use info-lookup-symbol.
482         (octave-block-match-alist): Fix up last change so that
483         octave-close-block uses the more specific keyword.
484         (info-lookup-mode): Silence byte-compiler.
485         (octave-beginning-of-defun): Not interactive any more.
486         Optimize slightly.
487         (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
488         (octave-indent-defun, octave-send-defun): Use mark-defun instead.
489         (octave-completion-at-point-function): Make sure point is within
490         beg..end.
491         (octave-reindent-then-newline-and-indent):
492         Use reindent-then-newline-and-indent.
493         (octave-add-octave-menu): Remove.
495 2010-08-17  Jan Djärv  <jan.h.d@swipnet.se>
497         * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
498         (report-emacs-bug-can-use-xdg-email): New functions.
499         (report-emacs-bug): Set can-xdg-email to result of
500         report-emacs-bug-can-use-xdg-email.  If can-xdg-email bind
501         \C-cm to report-emacs-bug-insert-to-mailer and add help text
502         about it.
504         * net/browse-url.el (browse-url-default-browser): Add cond
505         for browse-url-xdg-open.
506         (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
508 2010-08-17  Glenn Morris  <rgm@gnu.org>
510         * progmodes/cc-engine.el (c-new-BEG, c-new-END)
511         (c-fontify-recorded-types-and-refs): Define for compiler.
512         * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
513         before use.
515         * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
516         Fix format call.
518 2010-08-17  Michael Albinus  <michael.albinus@gmx.de>
520         * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
521         properties.
522         (tramp-handle-process-file): Call the program in a subshell, in
523         order to preserve working directory.
524         (tramp-action-password): Hide password prompt before next run.
525         (tramp-process-actions): Widen connection buffer for the trace.
527 2010-08-16  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
529         * net/rcirc.el (rcirc-log-process-buffers): New option.
530         (rcirc-print): Use it.
531         (rcirc-generate-log-filename): New function.
532         (rcirc-log-filename-function): Change default to
533         rcirc-generate-log-filename (Bug#6828).
535 2010-08-16  Chong Yidong  <cyd@stupidchicken.com>
537         * simple.el (deactivate-mark): If select-active-regions is `only',
538         only set selection for temporarily active regions.
540         * cus-start.el: Change defcustom for select-active-regions.
542 2010-08-15  Chong Yidong  <cyd@stupidchicken.com>
544         * mouse.el (mouse--drag-set-mark-and-point): New function.
545         (mouse-drag-track): Use LOCATION arg to push-mark.
546         Use mouse--drag-set-mark-and-point to take click-count into
547         consideration when updating point and mark (Bug#6840).
549 2010-08-15  Chong Yidong  <cyd@stupidchicken.com>
551         * progmodes/compile.el (compilation-error-regexp-alist-alist):
552         Give the Ruby rule a lower priority than Gnu (Bug#6778).
554 2010-08-14  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
556         * font-lock.el (lisp-font-lock-keywords-2):
557         Add combine-after-change-calls, condition-case-no-debug,
558         with-demoted-errors, and with-silent-modifications (Bug#6025).
560 2010-08-14  Kevin Ryde  <user42@zip.com.au>
562         * emacs-lisp/copyright.el (copyright-update-year)
563         (copyright-update): Temporary switch-to-buffer to ensure the
564         buffer change being queried is visible (Bug#5394).
566 2010-08-14  Tom Tromey  <tromey@redhat.com>
568         * progmodes/etags.el (tags-file-name): Mark safe if stringp
569         (Bug#6733).
571 2010-08-14  Eli Zaretskii  <eliz@gnu.org>
573         * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
574         MS-DOS.  (Bug#6689)
576 2010-08-13  Jan Djärv  <jan.h.d@swipnet.se>
578         * menu-bar.el (menu-bar-set-tool-bar-position): New function.
579         (menu-bar-showhide-tool-bar-menu-customize-enable-left)
580         (menu-bar-showhide-tool-bar-menu-customize-enable-right)
581         (menu-bar-showhide-tool-bar-menu-customize-enable-top)
582         (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
583         Call menu-bar-set-tool-bar-position.
585 2010-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
587         * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
588         comment style (bug#6834).
589         * progmodes/scheme.el (scheme-mode-syntax-table):
590         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
591         "b" flag in "' 14b" syntax.
593         * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
594         for (un)commenting the region and performing completion.
595         (octave-mode-menu): Use standard commands for help and completion.
596         (octave-mode-syntax-table): Support %{..%} comments (sort of).
597         (octave-mode): Use define-derived-mode.
598         Set completion-at-point-functions and don't set columns.
599         Don't disable adaptive-fill-regexp.
600         (octave-describe-major-mode, octave-comment-region)
601         (octave-uncomment-region, octave-comment-indent)
602         (octave-indent-for-comment): Remove.
603         (octave-indent-calculate): Rename from calculate-octave-indent.
604         (octave-indent-line, octave-fill-paragraph): Update caller.
605         (octave-initialize-completions): No need to make an alist.
606         (octave-completion-at-point-function): New function.
607         (octave-complete-symbol): Use it.
608         (octave-insert-defun): Use define-skeleton.
610         * progmodes/octave-mod.el (octave-mode): Set comment-add.
611         (octave-mode-map): Use comment-dwim (bug#6829).
613 2010-08-12  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
615         * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
616         indentation of inserted comment.
618 2010-08-11  Jan Djärv  <jan.h.d@swipnet.se>
620         * faces.el (region): Add type gtk that uses gtk colors.
622         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
623         Handle theme-name change.
625 2010-08-10  Michael R. Mauger  <mmaug@yahoo.com>
627         * progmodes/sql.el: Version 2.5
628         (sql-product-alist): Add :prompt-cont-regexp property for several
629         database products.
630         (sql-prompt-cont-regexp): New variable.
631         (sql-output-newline-count, sql-output-by-send):
632         New variables.  Record number of newlines in input text.
633         (sql-send-string): Handle multiple filters and count newlines.
634         (sql-send-magic-terminator): Count terminator newline.
635         (sql-interactive-remove-continuation-prompt): Filters output to
636         remove continuation prompts; one for each newline.
637         (sql-interactive-mode): Set up new variables, prompt regexp and
638         output filter.
639         (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
640         (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
642 2010-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
644         * emacs-lisp/pcase.el: New file.
646 2010-08-10  Michael Albinus  <michael.albinus@gmx.de>
648         * net/tramp.el (tramp-vc-registered-read-file-names): Read input
649         as here-document, otherwise the command could exceed maximum
650         length of command line.
651         (tramp-handle-vc-registered): Call script accordingly.
652         Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
654 2010-08-10  Kenichi Handa  <handa@m17n.org>
656         * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
657         composable pattern.
659 2010-08-09  Chong Yidong  <cyd@stupidchicken.com>
661         * emacs-lisp/package.el (package-version-split)
662         (package--version-first-nonzero, package-version-compare):
663         Functions removed.
664         (package-directory-list, package-load-all-descriptors)
665         (package--built-in, package-activate, define-package)
666         (package-installed-p, package-compute-transaction)
667         (package-read-all-archive-contents)
668         (package--add-to-archive-contents, package-buffer-info)
669         (package-tar-file-info, package-list-packages-internal):
670         Use version-to-list and version-list-*.
672         * emacs-lisp/package-x.el (package-upload-buffer-internal):
673         Use version-to-list.
674         (package-upload-buffer-internal): Use version-list-<=.
676 2010-08-09  Kenichi Handa  <handa@m17n.org>
678         * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
679         composable pattern.
681 2010-08-08  Chong Yidong  <cyd@stupidchicken.com>
683         * tutorial.el (tutorial--default-keys): C-d is now bound to
684         delete-forward-char (Bug#6826).
686         * mouse.el (mouse-drag-track): Remove accidentally-removed check
687         for `double' value of mouse-1-click-follows-link (Bug#6807).
689 2010-08-08  Johan Bockgård  <bojohan@gnu.org>
691         * replace.el (replace-highlight): Bind isearch-forward and
692         isearch-error, ensuring that highlighting is updated if the user
693         switches the search direction (Bug#6808).
695         * isearch.el (isearch-lazy-highlight-forward): New var.
696         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
697         (isearch-lazy-highlight-update): Use it.
699 2010-08-08  Kenichi Handa  <handa@m17n.org>
701         * international/mule.el (define-charset): Store NAME as :base property.
702         (ctext-non-standard-encodings-table): Pay attention to charset aliases.
703         (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
704         current priority.  Force using the designation of the specific
705         charset by adding `charset' text property.  Improve the whole algorithm.
707 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
709         * emulation/pc-select.el (pc-selection-mode-hook)
710         (copy-region-as-kill-nomark, beginning-of-buffer-mark)
711         (pc-selection-mode): Fix typos in docstrings.
713 2010-08-08  Kenichi Handa  <handa@m17n.org>
715         * language/cyrillic.el: Don't add "microsoft-cp1251" to
716         ctext-non-standard-encodings-alist here.
718         * international/mule.el (ctext-non-standard-encodings-alist):
719         Add "koi8-r" and "microsoft-cp1251".
720         (ctext-standard-encodings): New variable.
721         (ctext-non-standard-encodings-table): List only elements for
722         non-standard encodings.
723         (ctext-pre-write-conversion): Adjust for the above change.
724         Check ctext-standard-encodings.
726         * international/mule-conf.el (compound-text): Doc fix.
727         (ctext-no-compositions): Doc fix.
728         (compound-text-with-extensions): Doc fix.
730 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
732         * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
734 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
736         * progmodes/which-func.el (which-func-format): Split help-echo text
737         into lines, like other mode-line tooltips.
739         * server.el (server-start): When using TCP sockets, force IPv4
740         and use a literal 127.0.0.1 for localhost.  (Related to bug#6781.)
742 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
744         * bindings.el (complete-symbol): Run completion-at-point as a fallback.
746 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
748         * term.el (term-delimiter-argument-list): Reflow docstring.
749         (term-read-input-ring, term-write-input-ring, term-send-input)
750         (term-bol, term-erase-in-display, serial-supported-or-barf):
751         Fix typos in docstrings.
753 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
755         * bindings.el (function-key-map): Add a S-tab => backtab fallback.
757 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
759         * dabbrev.el (dabbrev-completion): Fix typo in docstring.
761 2010-08-08  MON KEY  <monkey@sandpframing.com>  (tiny change)
763         * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
764         Fix typo in docstring (bug#6747).
766 2010-08-08  Leo  <sdl.web@gmail.com>
768         * eshell/esh-io.el (eshell-get-target): Better detection of
769         read-only file (Bug#6762).
771 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
773         * align.el (align-default-spacing): Doc fix.
774         (align-region-heuristic, align-regexp): Fix typos in docstrings.
776 2010-08-08  Stephen Peters <speters@itasoftware.com>
778         * calendar/icalendar.el
779         (icalendar--split-value): Fixed splitting regexp. (Bug#6766)
780         (icalendar--get-weekday-numbers): New
781         (icalendar--convert-recurring-to-diary): Handle multiple byday
782         values in weekly rules. (Bug#6766)
784 2010-08-08  Ulf Jasper  <ulf.jasper@web.de>
786         * calendar/icalendar.el (icalendar-uid-format): Doc fix.
787         (icalendar--create-uid, icalendar-export-region)
788         (icalendar--parse-summary-and-rest): Code formatting.
790 2010-08-08  Jay Belanger  <jay.p.belanger@gmail.com>
792         * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
793         to italicize headers.
794         (calc-highlight-selections-with-faces): New variable.
795         (calc-selected-face, calc-nonselected-face): New faces.
797         * calc/calccomp.el (math-comp-highlight-string): Use
798         `calc-highlight-selections-with-faces' to determine how to highlight
799         sub-formulas.
801         * calc/calc-sel.el (calc-show-selections): Change message to when
802         using faces to highlight selections.
804 2010-08-07  Michael R. Mauger  <mmaug@yahoo.com>
806         * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
807         Add SQLite 3 keywords, functions and datatypes.
808         (sql-interactive-mode): Remove `comint-process-echoes' set to t
809         (Bug#6686).
811 2010-08-07  Chong Yidong  <cyd@stupidchicken.com>
813         * simple.el (select-active-regions): Move to keyboard.c.
814         (deactivate-mark): Used saved-region-selection.
815         (select-active-region): Function removed.
816         (activate-mark, set-mark, push-mark-command)
817         (handle-shift-selection): Don't call it.
818         (keyboard-quit): Avoid adding the region to the window selection.
820         * mouse.el (mouse-drag-track): Remove hacks to deal with old
821         select-active-regions implementation.
822         (mouse-yank-at-click): Doc fix.
824         * cus-start.el: Add custom declaration for select-active-regions.
826 2010-08-07  Eli Zaretskii  <eliz@gnu.org>
828         * simple.el (delete-forward-char): Doc fix.
830         * tutorial.el (help-with-tutorial): Hack safe file-local variables
831         after reading the tutorial.
833 2010-08-06  Alan Mackenzie  <bug-cc-mode@gnu.org>
835         * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
836         for the case that a C style comment has its delimiters alone on
837         their respective lines.
839 2010-08-06  Michael Albinus  <michael.albinus@gmx.de>
841         * net/tramp.el (tramp-handle-start-file-process): Set connection
842         property "vec".
843         (tramp-process-sentinel): Use it for flushing the cache.  We
844         cannot do it via the process buffer, the buffer could be deleted
845         already when running the sentinel.
847 2010-08-06  Jürgen Hötzel  <juergen@archlinux.org>  (tiny change)
849         * comint.el (comint-mode): Make directory tracking functions
850         functional on remote files.  (Bug#6764)
852 2010-08-06  Dan Nicolaescu  <dann@ics.uci.edu>
854         * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
856 2010-08-05  Eli Zaretskii  <eliz@gnu.org>
858         * emacs-lisp/find-gc.el (find-gc-source-files): Rename
859         unexec.c => unexcoff.c.
861         * emacs-lisp/authors.el (authors-fixed-entries): Rename
862         unexec.c => unexcoff.c.
864 2010-08-05  Michael Albinus  <michael.albinus@gmx.de>
866         * net/tramp.el (tramp-handle-dired-uncache): Flush directory
867         cache, not only file cache.
868         (tramp-process-sentinel): New defun.
869         (tramp-handle-start-file-process): Use it, in order to invalidate
870         file caches.
872 2010-08-03  Leo  <sdl.web@gmail.com>
874         * server.el (server-start): Simplify loop.
876 2010-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
878         * frame.el (screen-height, screen-width, set-screen-width)
879         (set-screen-height): Remove ancient compatibility aliases.
881         * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
882         when justifying.  It seems useless and harmful for ncols=1 (bug#6738).
884         * emacs-lisp/timer.el (timer-event-handler): Protect against timers
885         that change current buffer.
887 2010-08-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
889         * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
890         beginning of the string.  Use `string-match-p'.  (Bug#6765)
892 2010-08-01  Jan Djärv  <jan.h.d@swipnet.se>
894         * cus-start.el (x-gtk-use-system-tooltips): New variable.
896 2010-08-01  Chong Yidong  <cyd@stupidchicken.com>
898         * emacs-lisp/package.el (package--list-packages): Fix column alignment.
899         (package--builtins): Tweak descriptions.
900         (package-print-package): Upcase descriptions if necessary.
901         Show all built-in packages in font-lock-builtin-face.
902         (package-list-packages-internal): Omit "emacs" package.
903         Show status of built-in packages as "built-in".
905 2010-07-31  Chong Yidong  <cyd@stupidchicken.com>
907         * mouse.el (mouse-save-then-kill): Doc fix.  Deactivate mark
908         before killing to preserve the primary selection (Bug#6701).
910         * term/x-win.el (x-select-text): Doc fix.
912 2010-07-31  Nathaniel Flath  <flat0103@gmail.com>
914         Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
915         The following functions were modified or created:
917         * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
918         (objc-font-lock-extra-types):
919         * progmodes/cc-mode.el (c-basic-common-init):
920         * progmodes/cc-langs.el (c-make-mode-syntax-table)
921         (c++-make-template-syntax-table)
922         (c-identifier-syntax-modifications, c-symbol-start, c-operators)
923         (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
924         (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
925         (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
926         * progmodes/cc-fonts.el (c-make-inverse-face)
927         (c-basic-matchers-after):
928         * progmodes/cc-engine.el (c-forward-keyword-clause)
929         (c-forward-<>-arglist, c-forward-<>-arglist-recur)
930         (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
931         (c-guess-continued-construct, c-guess-basic-syntax):
933 2010-07-31  Jan Djärv  <jan.h.d@swipnet.se>
935         * faces.el (face-all-attributes): Improve documentation (Bug#6767).
937 2010-07-31  Eli Zaretskii  <eliz@gnu.org>
939         * files.el (bidi-paragraph-direction): Define safe local values.
941         * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
942         language-info-alist.  Remove outdated FIXME in a comment.
944 2010-07-31  Alan Mackenzie  <acm@muc.de>
946         * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
947         Auto-fill broken in C/C++ modes.
949 2010-07-29  Jan Djärv  <jan.h.d@swipnet.se>
951         * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
952         (menu-bar-showhide-tool-bar-menu-customize-disable)
953         (menu-bar-showhide-tool-bar-menu-customize-enable-right)
954         (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
955         (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
956         (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
957         make a menu for Options => toolbar that can move it.
959 2010-07-29  Chong Yidong  <cyd@stupidchicken.com>
961         * emacs-lisp/package-x.el (package--make-rss-entry):
962         (package-maint-add-news-item, package--update-news)
963         (package-upload-buffer-internal): New arg ARCHIVE-URL.
965         * emacs-lisp/package.el (package-archive-url): Rename from
966         package-archive-id.
967         (package-install): Doc fix.
968         (package-download-single, package-download-tar, package-install)
969         (package-menu-view-commentary): Callers changed.
971 2010-07-29  Michael Albinus  <michael.albinus@gmx.de>
973         * net/tramp.el (tramp-handle-start-file-process): Check only for
974         `remote-tty' process property.
975         (tramp-open-shell): Don't check for tty.
976         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
977         process property.
979         * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
980         host.
982 2010-07-28  Chong Yidong  <cyd@stupidchicken.com>
984         * emacs-lisp/package.el (package-load-list, package-archives)
985         (package-archive-contents, package-user-dir)
986         (package-directory-list, package--builtins, package-alist)
987         (package-activated-list, package-obsolete-alist): Mark as risky.
989 2010-07-28  Phil Hagelberg  <phil@evri.com>
991         Add support for non-default package repositories.
992         * emacs-lisp/package.el (package-archive-base): Var deleted.
993         (package-archives): New variable.
994         (package-archive-contents): Doc fix.
995         (package-load-descriptor): Do nothing if descriptor file is missing.
996         (package--write-file-no-coding): New function.
997         (package-unpack-single): Use it.
998         (package-archive-id): New function.
999         (package-download-single, package-download-tar)
1000         (package-menu-view-commentary): Use it.
1001         (package-installed-p): Make second argument optional.
1002         (package-read-all-archive-contents): New function.
1003         (package-initialize): Use it.
1004         (package-read-archive-contents): Add ARCHIVE argument.
1005         (package--add-to-archive-contents): New function.
1006         (package-install): Don't call package-read-archive-contents.
1007         (package--download-one-archive): Store archive file in a
1008         subdirectory of package-user-dir.
1009         (package-menu-execute): Remove spurious line movement.
1011 2010-07-28  Jan Djärv  <jan.h.d@swipnet.se>
1013         * cus-start.el (tool-bar-style): Add text-image-horiz.
1015 2010-07-28  Michael Albinus  <michael.albinus@gmx.de>
1017         * progmodes/gud.el (gud-common-init): Check for remoteness of
1018         `file', and not of `default-directory'.
1020 2010-07-28  Michael Albinus  <michael.albinus@gmx.de>
1022         * net/tramp.el (tramp-methods): Move hostname to the end in all
1023         ssh `tramp-login-args'.
1024         (tramp-verbose): Describe verbose level 9.
1025         (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
1026         (tramp-open-connection-setup-interactive-shell): Trace stty
1027         settings if `tramp-verbose' >= 9.
1028         (tramp-handle-start-file-process): Implement tty setting.
1029         (Bug#4604, Bug#6360)
1031         * net/tramp-cmds.el (tramp-bug): Recommend setting of
1032         `tramp-verbose' to 9.
1034 2010-07-27  Aaron S. Hawley  <ashawley@burlingtontelecom.net>
1036         * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
1037         (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
1038         Remove references to package `lisp-re' (bug#4369).
1040 2010-07-27  Tom Tromey  <tromey@redhat.com>
1042         * progmodes/js.el (js-mode):
1043         * progmodes/make-mode.el (makefile-mode):
1044         * progmodes/simula.el (simula-mode):
1045         * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
1047 2010-07-27  Juanma Barranquero  <lekktu@gmail.com>
1049         * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
1051         * cedet/semantic/db-file.el (object-write): Fix typo in docstring.
1053         * time.el (display-time-day-and-date): Remove spurious * in docstring.
1054         (display-time-world-buffer-name, display-time-world-mode-map):
1055         Fix typos in docstrings.
1057 2010-07-27  Shyam Karanatt  <shyam@swathanthran.in>  (tiny change)
1059         * image-mode.el (image-display-size): New function.
1060         (image-forward-hscroll, image-next-line, image-eol, image-eob)
1061         (image-mode-fit-frame): Use it (Bug#6639).
1063 2010-07-27  Chong Yidong  <cyd@stupidchicken.com>
1065         * dired.el (dired-buffers-for-dir): Handle list values of
1066         dired-directory (Bug#6636).
1068 2010-07-26  Sam Steingold  <sds@gnu.org>
1070         * mouse.el (mouse-yank-primary, mouse-yank-secondary):
1071         Do not call `x-get-selection' the second time, reuse the value.
1073 2010-07-26  Daiki Ueno  <ueno@unixuser.org>
1075         * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
1076         which consist of control chars only.  Suggested by Richard Stallman.
1078 2010-07-25  Daiki Ueno  <ueno@unixuser.org>
1080         * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
1081         exists before passing an error to find-file-not-found-functions
1082         (bug#6723).
1084 2010-07-23  Lukas Huonker  <l.huonker@gmail.com>
1086         * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
1087         Remove leading nil element, adjust values.
1088         (tetris-shapes, tetris-shape-scores):
1089         Change representation of shapes and remove some redundancy.
1090         (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
1091         (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
1092         Adjust for working with new representation of shapes.
1093         (tetris-shape-rotations): New function.
1094         (tetris-move-bottom, tetris-move-left, tetris-move-right)
1095         (tetris-rotate-prev, tetris-rotate-next):
1096         Adjust for working with the new version of tetris-test-shape.
1098 2010-07-23  Markus Triska  <markus.triska@gmx.at>
1100         * progmodes/ps-mode.el: Use comint (bug#5954).
1101         (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
1102         (ps-mode-other-newline): Simplify.
1103         (ps-run-mode): Derive from comint-mode instead of
1104         fundamental-mode, yielding input history etc.
1105         (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
1106         (ps-run-send-string): Adapt for comint-mode.
1107         (ps-run-newline): Remove now unneeded function.
1109 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
1111         * net/tramp.el (tramp-methods): Move hostname to the end in all
1112         plink `tramp-login-args'.
1114 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
1116         * net/tramp.el (tramp-open-shell): New defun.
1117         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
1118         Use it.
1120 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
1122         * net/tramp.el (tramp-file-name-regexp-unified)
1123         (tramp-completion-file-name-regexp-unified): On W32 systems, do
1124         not regard the volume letter as remote filename.  (Bug#5447)
1126 2010-07-23  Juanma Barranquero  <lekktu@gmail.com>
1128         * custom.el (custom-declare-variable): Give a clearer error message
1129         when the docstring is missing (bug#6476).
1131 2010-07-22  Michael R. Mauger  <mmaug@yahoo.com>
1133         * progmodes/sql.el: Version 2.4.  Improved Login prompting.
1134         (sql-login-params): New widget definition.
1135         (sql-oracle-login-params, sql-mysql-login-params)
1136         (sql-solid-login-params, sql-sybase-login-params)
1137         (sql-informix-login-params, sql-ingres-login-params)
1138         (sql-ms-login-params, sql-postgres-login-params)
1139         (sql-interbase-login-params, sql-db2-login-params)
1140         (sql-linter-login-params): Use it.
1141         (sql-sqlite-login-params): Use it; Define "database" parameter as
1142         a file name.
1143         (sql-sqlite-program): Change to "sqlite3".
1144         (sql-comint-sqlite): Make sure database name is complete.
1145         (sql-for-each-login): New function.
1146         (sql-connect, sql-save-connection): Use it.
1147         (sql-get-login-ext): New function.
1148         (sql-get-login): Use it.
1149         (sql-make-alternate-buffer-name): Handle :file parameters.
1151 2010-07-22  Juanma Barranquero  <lekktu@gmail.com>
1153         * dired.el (dired-no-confirm): Document value t and fix defcustom to
1154         accept it (bug#6597).  Suggested by Drew Adams <drew.adams@oracle.com>.
1156 2010-07-22  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1158         * dired.el (dired-mode-map): Use command remapping (bug#6632).
1160 2010-07-22  Lawrence Mitchell  <wence@gmx.li>
1162         * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
1164 2010-07-21  Michael Albinus  <michael.albinus@gmx.de>
1166         * net/tramp.el (tramp-get-ls-command)
1167         (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
1168         instead of "/".
1170 2010-07-20  Michael R. Mauger  <mmaug@yahoo.com>
1172         * progmodes/sql.el: Version 2.3.
1173         (sql-connection-alist): Changed keys from symbols to strings;
1174         enhanced the widget definition.
1175         (sql-mode-menu): Added submenu to select connections.
1176         (sql-interactive-mode-menu): Added "Save Connection" item.
1177         (sql-add-product): Fixed menu item.
1178         (sql-get-product-feature): Improved error handling.
1179         (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
1180         (sql-make-alternate-buffer-name): Simplified.
1181         (sql-product-interactive): Handle missing product.
1182         (sql-connect): Support string keys, minor improvements.
1183         (sql-save-connection): New function.
1184         (sql-connection-menu-filter): New function.
1186 2010-07-20  Michael Albinus  <michael.albinus@gmx.de>
1188         * net/tramp.el (tramp-file-name-handler): Trace 'quit.
1189         (tramp-open-connection-setup-interactive-shell): Apply
1190         workaround for IRIX64 bug.  Move argument of last
1191         `tramp-send-command' where it belongs to.
1193 2010-07-20  Michael Albinus  <michael.albinus@gmx.de>
1195         * net/tramp.el (tramp-perl-file-attributes)
1196         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
1197         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
1198         front of `login-args'.
1200 2010-07-19  Juanma Barranquero  <lekktu@gmail.com>
1202         * time.el (display-time-world-mode): Define with `define-derived-mode'.
1203         Set `show-trailing-whitespace' to nil.
1204         (display-time-world-display): Simplify.
1206 2010-07-18  Alan Mackenzie  <acm@muc.de>
1208         Enhance `c-file-style' in file/directory local variables.
1209         * progmodes/cc-mode.el (c-count-cfss): New function.
1210         (c-before-hack-hook): Call `c-set-style' differently according to
1211         whether c-file-style was set in file or directory local
1212         variables.
1214 2010-07-18  Michael R. Mauger  <mmaug@yahoo.com>
1216         * progmodes/sql.el: Version 2.2.
1217         (sql-product, sql-user, sql-database, sql-server, sql-port): Use
1218         defcustom :safe keyword rather than putting safe-local-variable
1219         property.
1220         (sql-password): Use defcustom :risky keyword rather than putting
1221         risky-local-variable property.
1222         (sql-oracle-login-params, sql-sqlite-login-params)
1223         (sql-solid-login-params, sql-sybase-login-params)
1224         (sql-informix-login-params, sql-ingres-login-params)
1225         (sql-ms-login-params, sql-postgres-login-params)
1226         (sql-interbase-login-params, sql-db2-login-params)
1227         (sql-linter-login-params): Add `port' option.
1228         (sql-get-product-feature): Added NO-INDIRECT parameter.
1229         (sql-comint-oracle, sql-comint-sybase)
1230         (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
1231         (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
1232         (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
1233         (sql-comint-linter): Renamed sql-connect-* functions to
1234         sql-comint-*.
1235         (sql-product-alist, sql-mode-menu): Renamed as above and
1236         :sqli-connect-func to :sqli-comint-func.
1237         (sql-connection): New variable.
1238         (sql-interactive-mode): Set it.
1239         (sql-connection-alist): New variable.
1240         (sql-connect): New function.
1241         (sql--alt-buffer-part, sql--alt-if-not-empty)
1242         (sql-make-alternate-buffer-name): Improved alternative buffer name.
1244 2010-07-17  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1246         * image-mode.el (image-bookmark-make-record): Do not set context
1247         in an image (Bug#6650).
1249 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
1251         * simple.el (select-active-region): New function.
1252         (push-mark-command, set-mark, activate-mark)
1253         (handle-shift-selection): Use it.
1254         (deactivate-mark): Don't check for size of region.
1256         * mouse.el (mouse-drag-track): Use select-active-region.
1258 2010-07-17  Michael Albinus  <michael.albinus@gmx.de>
1260         * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
1261         "--dired" stronger.
1263 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
1265         * term/x-win.el (x-select-enable-primary): Change default to nil.
1266         (x-select-enable-clipboard): Add :version keyword.
1268         * mouse.el (mouse-drag-copy-region):
1269         * simple.el (select-active-regions): Likewise.
1271 2010-07-16  Reiner Steib  <Reiner.Steib@gmx.de>
1273         * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
1274         (vc-coding-system-for-diff): Use it to decide whether to inherit
1275         from the file the EOL format for reading the diffs of that file.
1276         (Bug#4451)
1278 2010-07-16  Eli Zaretskii  <eliz@gnu.org>
1280         * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
1281         unibyte, so compressed attachments are not compressed again.
1283 2010-07-16  Michael Albinus  <michael.albinus@gmx.de>
1285         * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
1286         "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
1287         (tramp-find-shell): Simplify setting connection property.
1288         (tramp-get-ls-command): Make test for "--color=never" stronger.
1290 2010-07-15  Simon South  <ssouth@member.fsf.org>
1292         * progmodes/delphi.el (delphi-previous-indent-of): Indent case
1293         blocks within record declarations (i.e. variant parts) correctly.
1295 2010-07-15  Simon South  <ssouth@member.fsf.org>
1297         * progmodes/delphi.el (delphi-token-at): Give newlines precedence
1298         over literal tokens when parsing so newlines aren't "absorbed" by
1299         single-line comments.  Corrects the indentation of case blocks
1300         that have a comment on the first line.
1302 2010-07-14  Karl Fogel  <kfogel@red-bean.com>
1304         * bookmark.el (bookmark-load-hook): Fix doc string as suggested
1305         by Drew Adams (Bug#5504).
1307 2010-07-14  Jan Djärv  <jan.h.d@swipnet.se>
1309         * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
1310         now that Unicode is used (Bug#6594).
1312 2010-07-14  Chong Yidong  <cyd@stupidchicken.com>
1314         * term/x-win.el (x-select-enable-clipboard): Default to t.
1315         (x-initialize-window-system): Don't overwrite Paste menu item.
1317         * simple.el (select-active-regions): Default to t.
1318         (push-mark-command): Don't overwrite primary with empty string.
1320         * mouse.el: Bind mouse-2 to mouse-yank-primary.
1321         (mouse-drag-copy-region): Default to nil.
1323         * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
1324         Cut/Copy/Paste menu bar items.
1326 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1328         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
1329         Patch applied by Karl Fogel.
1331         * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
1332         and `bookmark-current-buffer' if they have been already set in
1333         another buffer (e.g gnus-art).
1335 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
1336             Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1338         Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
1340         * bookmark.el (bookmark-make-record-default): Allow unneeded
1341         information to be omitted from the record.
1343         Adjust declarations and calls:
1345         * info.el (bookmark-make-record-default): Adjust declaration.
1346         (Info-bookmark-make-record): Adjust call.
1348         * woman.el (bookmark-make-record-default): Adjust declaration.
1349         (woman-bookmark-make-record): Adjust call.
1351         * man.el (bookmark-make-record-default): Adjust declaration.
1352         (Man-bookmark-make-record): Adjust call.
1354         * image-mode.el (bookmark-make-record-default): Adjust declaration.
1356         * doc-view.el (bookmark-make-record-default): Adjust declaration.
1358 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
1360         * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
1361         This is also from Thierry Volpiatto's patch in bug #6444.  However,
1362         because it was extraneous to the functional change in that patch,
1363         and causes a re-indendation, I am committing it separately.
1365 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1367         * bookmark.el (bookmark-show-annotation): Ensure annotations show,
1368         e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
1369         Patch applied by Karl Fogel (Bug#6444).
1371 2010-07-13  Chong Yidong  <cyd@stupidchicken.com>
1373         * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
1375 2010-07-13  Adrian Robert  <Adrian.B.Robert@gmail.com>
1377         * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
1378         Dempsky; bug#5084).  Remove incorrect binding for S-tab.
1379         (ns-alternatives-map): Change S-tab binding to backtab
1380         (bug#6616).
1382         * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
1383         under ns.
1385 2010-07-12  Andreas Schwab  <schwab@linux-m68k.org>
1387         * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
1388         (Bug#5806)
1390         * language/tv-util.el (tai-viet-re): Remove format.
1392 2010-07-12  Kenichi Handa  <handa@m17n.org>
1394         * language/hebrew.el: Remove no-byte-compile declaration.
1395         Change coding: tag to utf-8.  Register hebrew-shape-gstring in
1396         composition-function-table for 3-character looking back.
1397         (hebrew-font-get-precomposed): New function.
1398         (hebrew-shape-gstring): Utilize precomposed glyphs if available.
1400 2010-07-11  Chong Yidong  <cyd@stupidchicken.com>
1402         * mouse.el (mouse-drag-track): Handle select-active-regions
1403         (Bug#6612).
1405 2010-07-11  Magnus Henoch  <magnus.henoch@gmail.com>
1407         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
1408         empty argument to gvfs-copy.
1410 2010-07-10  Glenn Morris  <rgm@gnu.org>
1412         * calendar/calendar.el (calendar-week-end-day): New function.
1413         * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
1414         Respect calendar-week-start-day.  (Bug#6606)
1415         (cal-tex-insert-day-names, cal-tex-insert-blank-days)
1416         (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
1417         (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
1418         respect calendar-week-start-day.
1420 2010-07-10  Chong Yidong  <cyd@stupidchicken.com>
1422         * simple.el (use-region-p): Doc fix (Bug#6607).
1424 2010-07-10  Aleksei Gusev  <aleksei.gusev@gmail.com>  (tiny change)
1426         * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
1427         regexps for cucumber and ruby.
1429 2010-07-08  Daiki Ueno  <ueno@unixuser.org>
1431         * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
1432         (epa-file-insert-file-contents): Hack to prevent
1433         find-file from opening empty buffer when decryption failed
1434         (bug#6568).
1436 2010-07-07  Agustín Martín  <agustin.martin@hispalinux.es>
1438         * textmodes/ispell.el (ispell-alternate-dictionary):
1439         Use file-readable-p.
1440         Return nil if no word-list is found at default locations.
1441         (ispell-complete-word-dict): Default to nil.
1442         (ispell-command-loop): Use 'word-list' when using lookup-words.
1443         (lookup-words): Use ispell-complete-word-dict or
1444         ispell-alternate-dictionary.  Check for word-list availability
1445         and handle errors if needed with better messages (Bug#6539).
1446         (ispell-complete-word): Use ispell-complete-word-dict or
1447         ispell-alternate-dictionary.
1449 2010-07-07  Christoph Scholtes  <cschol2112@gmail.com>
1451         * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
1452         builtins (BufferError, BytesWarning, WindowsError; callables
1453         bin, bytearray, bytes, format, memoryview, next, print; __package__).
1455 2010-07-07  Glenn Morris  <rgm@gnu.org>
1457         * play/zone.el (top-level): Do not require timer, tabify, or cl.
1458         (zone-shift-left): Ignore intangibility, and any errors from
1459         forward-char.
1460         (zone-shift-right): Remove no-op end-of-line.  Ignore intangibility.
1461         (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
1462         deleting, and copying text properties.
1463         (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
1464         (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
1465         to point-max is hard.
1466         (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
1467         (zone-fill-out-screen): Ignore intangibility.
1469 2010-07-05  Chong Yidong  <cyd@stupidchicken.com>
1471         * menu-bar.el (menu-bar-mode):
1472         * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
1473         if it has been set.
1475         * mouse.el (mouse-drag-track): Call mouse-start-end to handle
1476         word/line selection (Bug#6565).
1478 2010-07-04  Juanma Barranquero  <lekktu@gmail.com>
1480         * net/dbus.el (dbus-send-signal): Declare function.
1482 2010-07-04  Michael Albinus  <michael.albinus@gmx.de>
1484         * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
1485         (dbus-register-property): New optional argument EMITS-SIGNAL.
1486         (dbus-property-handler): Send signal "PropertiesChanged" if requested.
1488 2010-07-03  Chong Yidong  <cyd@stupidchicken.com>
1490         * mouse.el (mouse-drag-overlay): Variable deleted.
1491         (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
1492         (mouse--remap-link-click-p): New function.
1493         (mouse-drag-track): Handle dragging by using temporary Transient
1494         Mark mode, instead of a special overlay.
1495         (mouse-kill-ring-save, mouse-save-then-kill): Don't call
1496         mouse-show-mark.
1498         * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
1499         deleted.
1501 2010-07-02  Juri Linkov  <juri@jurta.org>
1503         * autoinsert.el (auto-insert-alist): Fix readability
1504         by using dotted pair notation for lambda.
1506 2010-07-02  Juri Linkov  <juri@jurta.org>
1508         * faces.el (read-face-name): Rename arg `string-describing-default'
1509         to `default'.  Doc fix.  Display the default value in quotes
1510         in the prompt.  With empty input, return the `default' arg,
1511         unless the default value is a string (in which case return nil).
1512         (describe-face): Replace the string `default' arg of `read-face-name'
1513         with the symbol `default'.
1515 2010-07-02  Chong Yidong  <cyd@stupidchicken.com>
1517         * emulation/viper-cmd.el (viper-delete-backward-char)
1518         (viper-del-backward-char-in-insert)
1519         (viper-del-backward-char-in-replace, viper-change)
1520         (viper-backward-indent): Replace delete-backward-char with
1521         delete-char (Bug#6552).
1523 2010-07-01  Chong Yidong  <cyd@stupidchicken.com>
1525         * ruler-mode.el (ruler--save-header-line-format): Fix typos.
1527 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
1529         * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
1530         argument passed to frame-creation-function (Bug#5378).
1532         * faces.el (x-handle-named-frame-geometry)
1533         (x-handle-reverse-video, x-create-frame-with-faces)
1534         (face-set-after-frame-default, tty-create-frame-with-faces): Don't
1535         separately consult default-frame-alist.  It is now passed as the
1536         PARAMETER argument.
1538 2010-06-30  Andreas Schwab  <schwab@linux-m68k.org>
1540         * startup.el (command-line): Don't call tool-bar-setup in a
1541         tty-only build.
1543 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
1545         * ruler-mode.el (ruler--save-header-line-format): New fun.
1546         (ruler-mode): Use it as a setter function, so as not to overwrite
1547         ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
1549 2010-06-29  Chong Yidong  <cyd@stupidchicken.com>
1551         * vc/vc.el (vc-deduce-backend): New fun.  Handle diff buffers.
1552         (vc-root-diff, vc-print-root-log, vc-log-incoming)
1553         (vc-log-outgoing): Use it.
1554         (vc-diff-internal): Set diff-vc-backend.
1556         * vc/diff-mode.el (diff-vc-backend): New var.
1558 2010-06-28  Jan Djärv  <jan.h.d@swipnet.se>
1560         * dynamic-setting.el (font-setting-change-default-font): Remove
1561         call to message.
1563 2010-06-28  Kenichi Handa  <handa@m17n.org>
1565         * international/quail.el (quail-insert-kbd-layout): Fix the
1566         showing of untranslated characters.
1568 2010-06-28  Chong Yidong  <cyd@stupidchicken.com>
1570         * simple.el (delete-active-region): New option.
1571         (delete-backward-char): Implement in Lisp.
1572         (delete-forward-char): New command.
1574         * mouse.el (mouse-region-delete-keys): Deleted.
1575         (mouse-show-mark): Simplify.
1577         * bindings.el (global-map): Bind delete and DEL, the former to
1578         delete-forward-char.
1580 2010-06-27  Lennart Borgman  <lennart.borgman@gmail.com>
1582         * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
1583         (ruby-mode): Bind indent-line-function (Bug#5119).
1585 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
1587         * startup.el (command-line): Recognize "0" X resource value.
1589 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
1591         * startup.el (command-line): Use X resources to set the value of
1592         menu-bar-mode and tool-bar-mode, before calling frame-initialize.
1594         * menu-bar.el (menu-bar-mode):
1595         * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
1596         Set init-value to t.
1598         * frame.el (frame-notice-user-settings): Don't change
1599         default-frame-alist based on menu-bar-mode and tool-bar-mode, or
1600         vice versa (Bug#2249).
1602 2010-06-26  Eli Zaretskii  <eliz@gnu.org>
1604         * w32-fns.el (w32-convert-standard-filename): Doc fix.
1606 2010-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
1608         * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
1609         Make sure `flyspell-word' re-checks word after function run (Bug#6504).
1611         * textmodes/ispell.el (ispell-init-process): Make sure ispell and
1612         default directories are expanded (Bug#6143).
1614 2010-06-24  Juri Linkov  <juri@jurta.org>
1616         * minibuffer.el (completions-format): Change default from nil to
1617         `horizontal'.  Remove `nil' value from :type.  Doc fix.  (Bug#6459)
1619 2010-06-24  Juri Linkov  <juri@jurta.org>
1621         * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
1622         buffer-locally to lambda that re-runs the vc diff command.
1623         (Bug#6447)
1625 2010-06-24  Chong Yidong  <cyd@stupidchicken.com>
1627         * kmacro.el (kmacro-call-macro): Don't issue hint message if the
1628         echo area is in use (Bug#3412).
1630 2010-06-22  Glenn Morris  <rgm@gnu.org>
1632         * textmodes/texinfmt.el (texinfo-format-region)
1633         (texinfo-raise-lower-sections, texinfo-format-separate-node)
1634         (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
1635         (texinfo-format-option, texinfo-noindent):
1636         Use line-beginning-position and line-end-position.
1638         * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
1639         * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
1640         * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
1641         utf-8 characters.
1643 2010-06-21  Karl Fogel  <kfogel@red-bean.com>
1645         * play/zone.el (zone-fall-through-ws): Fix next-line ->
1646         forward-line fallout.
1648 2010-07-06  Chong Yidong  <cyd@stupidchicken.com>
1650         * mouse.el (mouse-appearance-menu): Add docstring.
1652         * help.el (describe-key): Print up-event using key-description.
1654 2010-07-03  Michael Albinus  <michael.albinus@gmx.de>
1656         * net/zeroconf.el (zeroconf-resolve-service)
1657         (zeroconf-service-resolver-handler): Use
1658         `dbus-byte-array-to-string'.
1659         (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
1661 2010-07-03  Jan Moringen  <jan.moringen@uni-bielefeld.de>
1663         * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
1665 2010-06-30  Dan Nicolaescu  <dann@ics.uci.edu>
1667         Avoid displaying files with a nil state in vc-dir.
1668         * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
1669         cases that cause insertion.
1670         (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
1671         with a nil state.
1673 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
1675         * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
1677 2010-06-29  Leo  <sdl.web@gmail.com>
1679         * emacs-lisp/rx.el (rx): Doc fix.  (Bug#6537)
1681 2010-06-27  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
1683         * generic-x.el (bat-generic-mode): Fix regexp for command line
1684         switches (Bug#5719).
1686 2010-06-27  Masatake YAMATO  <yamato@redhat.com>
1688         * htmlfontify.el (hfy-face-attr-for-class): Use append instead
1689         of nconc to avoid pure storage error (Bug#6239).
1691 2010-06-27  Christoph  <cschol2112@googlemail.com>  (tiny change)
1693         * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
1694         (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
1695         bindings of bookmark-automatically-show-annotations (Bug#6515).
1697 2010-06-25  Eli Zaretskii  <eliz@gnu.org>
1699         * arc-mode.el (archive-zip-extract): Don't quote the file name on
1700         MS-Windows and MS-DOS.  (Bug#6467, Bug#6144)
1702 2010-06-24  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
1704         * comint.el (make-comint, make-comint-in-buffer): Mention return
1705         value in the docstrings.  (Bug#6498)
1707 2010-06-24  Yoni Rabkin  <yoni@rabkins.net>
1709         * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
1710         since it is not present when using some non-default switches.
1712 2010-06-23  Karl Fogel  <kfogel@red-bean.com>
1714         * simple.el (compose-mail): Fix doc string to refer to
1715         `compose-mail-user-agent-warnings', instead of to the
1716         nonexistent `compose-mail-check-user-agent'.
1718 2010-06-21  Alan Mackenzie  <bug-cc-mode@gnu.org>
1720         Fix an indentation bug:
1722         * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
1723         (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
1724         of existing values.
1726         * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
1727         (c-clear->-pair-props-if-match-before): now return t when they've
1728         cleared properties, nil otherwise.
1729         (c-before-change-check-<>-operators): Set c-new-beg/end correctly
1730         by taking account of the existing value.
1732         * progmodes/cc-defs.el
1733         (c-clear-char-property-with-value-function): Fix this to clear the
1734         property rather than overwriting it with nil.
1736 2010-06-20  Chong Yidong  <cyd@stupidchicken.com>
1738         * emacs-lisp/package.el (package-print-package): Add link to
1739         package description via describe-package.
1740         (describe-package-1): List package requirements.  Add button to
1741         perform installation.
1742         (package-menu-describe-package): New command.
1744         * help-mode.el (help-package): New button type.
1746 2010-06-19  Chong Yidong  <cyd@stupidchicken.com>
1748         * emacs-lisp/package.el: Move package-list-packages binding to
1749         menu-bar.el.
1750         (describe-package, describe-package-1, package--dir): New funs.
1751         (package-activate-1): Use package--dir.
1753         * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
1755         * help-mode.el (help-package-def): New button type.
1757         * menu-bar.el: Move package-list-packages binding here from
1758         package.el.
1760 2010-06-19  Gustav Hållberg  <gustav@gmail.com>  (tiny change)
1762         * descr-text.el (describe-char): Avoid trailing whitespace.  (Bug#6423)
1764 2010-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1766         * emacs-lisp/edebug.el (edebug-read-list):
1767         Phase out old-style backquotes.
1769 2010-06-17  Juri Linkov  <juri@jurta.org>
1771         * help-mode.el (help-mode): Set buffer-local variable
1772         revert-buffer-function to help-mode-revert-buffer.
1773         (help-mode-revert-buffer): New function.
1775         * info.el (Info-revert-find-node): Check for major-mode Info-mode
1776         before popping to "*info*" (like in other Info functions).
1777         Keep buffer-name in old-buffer-name.  Keep Info-history-forward in
1778         old-history-forward.  Pop to old-buffer-name or "*info*" to
1779         recreate the killed buffer.  Set Info-history-forward from
1780         old-history-forward.
1781         (Info-breadcrumbs-depth): Add :group and :version.
1783 2010-06-17  Dan Nicolaescu  <dann@ics.uci.edu>
1785         * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
1787 2010-06-17  Agustín Martín  <agustin.martin@hispalinux.es>
1789         * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
1790         for languages like Portuguese with pt_{BR,PT} and no plain pt.
1792 2010-06-17  Juanma Barranquero  <lekktu@gmail.com>
1794         * emacs-lisp/package.el (package-menu-mode-map):
1795         Move initialization into declaration.
1797         * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
1799 2010-06-17  Chong Yidong  <cyd@stupidchicken.com>
1801         * emacs-lisp/package.el (package-archive-base): Point to
1802         elpa.gnu.org.
1803         (package-enable, package-load-list): New defcustoms.
1804         (package-user-dir, package-directory-list): Turn into defcustoms.
1805         Don't include package-user-dir in package-directory-list.
1806         (package--builtins-base): Don't include Emacs as a "package".
1807         (package-subdirectory-regexp): New var.
1808         (package-load-all-descriptors, package-compute-transaction)
1809         (package-download-transaction): Obey package-load-list.
1810         (package-activate-1): Rename from package-do-activate.
1811         (package-list-packages-internal): Check package-load-list.
1812         (package-load-descriptor, package-generate-autoloads)
1813         (package-unpack, package-unpack-single)
1814         (package--read-archive-file, package-delete): Use
1815         expand-file-name.
1817         * emacs-lisp/package-x.el: New file.  Package uploading
1818         functionality split out from package.el.
1820         * startup.el (command-line): Load packages after reading init
1821         file.
1823 2010-06-17  Tom Tromey  <tromey@redhat.com>
1825         * emacs-lisp/package.el: New file.
1827 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
1829         Fix vc-annotate for renamed files when using Git.
1830         * vc-git.el (vc-git-find-revision): Deal with empty results from
1831         ls-files.  Doe not pass the object as a file name to cat-file, it
1832         is not a file name.
1833         (vc-git-annotate-command): Pass the file name using -- to avoid
1834         ambiguity with the revision.
1835         (vc-git-previous-revision): Pass a relative file name.
1837 2010-06-22  Glenn Morris  <rgm@gnu.org>
1839         * progmodes/js.el (js-mode-map): Use standard capitalization and
1840         ellipses for menu entries.
1842         * wid-edit.el (widget-complete): Doc fix.
1844 2010-06-22  Jürgen Hötzel  <juergen@hoetzel.info>  (tiny change)
1846         * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
1848 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
1850         Fix annotating other revisions for renamed files in vc-annotate.
1851         * vc-annotate.el (vc-annotate): Add an optional argument for the
1852         VC backend.  Use it when non-nil.
1853         (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
1854         (Bug#6487)
1856         Fix vc-annotate-show-changeset-diff-revision-at-line for git.
1857         * vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
1858         Do not pass the file name to the 'previous-revision call when we
1859         don't want a file diff.  (Bug#6489)
1861 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
1863         Fix finding revisions for renamed files in vc-annotate.
1864         * vc.el (vc-find-revision): Add an optional argument for
1865         the VC backend.  Use it when non-nil.
1866         * vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
1867         backend to vc-find-revision.  (Bug#6487)
1869 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
1871         Fix reading file names in Git annotate buffers.
1872         * vc-git.el (vc-git-annotate-extract-revision-at-line): Remove
1873         trailing whitespace.  Suggested by Eric Hanchrow.  (Bug#6481)
1875 2010-06-20  Alan Mackenzie  <acm@muc.de>
1877         * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
1878         in file local variables, set it first.
1880 2010-06-19  Glenn Morris  <rgm@gnu.org>
1882         * descr-text.el (describe-char-unicode-data): Insert separating
1883         space when needed.  (Bug#6422)
1885         * progmodes/idlwave.el (idlwave-action-and-binding):
1886         Fix typo in 2009-12-03 change.  (Bug#6450)
1888 2010-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1890         * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
1891         handling for `lambda' (misunderstanding).
1893 2010-06-16  Jay Belanger  <jay.p.belanger@gmail.com>
1895         * calc/calc-poly.el (math-accum-factors): Make sure that
1896         constants aren't distributed after they are factored out.
1898 2010-06-16  Juri Linkov  <juri@jurta.org>
1900         * facemenu.el (list-colors-display): Call `pop-to-buffer' before
1901         `list-colors-print'.  (Bug#6332)
1903         * subr.el (read-quoted-char): Fix up last change (bug#6290).
1905 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1907         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
1908         specially, since it's a macro.  Fix up wrong hint passed to maybe-cons.
1910         * font-lock.el (font-lock-major-mode): Rename from
1911         font-lock-mode-major-mode to distinguish it from
1912         global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
1913         (font-lock-set-defaults):
1914         * font-core.el (font-lock-default-function): Adjust users.
1915         (font-lock-mode): Don't set it at all.
1917 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1919         * vc-annotate.el (vc-annotate): Use vc-read-revision.
1921 2010-06-16  Glenn Morris  <rgm@gnu.org>
1923         * calendar/appt.el (appt-time-msg-list): Doc fix.
1924         (appt-check): Let-bind appt-warn-time.
1925         (appt-add): Make the 3rd argument optional.
1926         Simplify argument names.  Doc fix.  Check for integer WARNTIME.
1927         Only add WARNTIME to the output list if non-nil.
1929 2010-06-16  Ivan Kanis  <apple@kanis.eu>
1931         * calendar/appt.el (appt-check): Let the 3rd element of
1932         appt-time-msg-list specify the warning time.
1933         (appt-add): Add new argument with the warning time.  (Bug#5176)
1935 2010-06-16  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
1937         * vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
1938         older than version 1.6.  (Bug#6361)
1940 2010-06-16  Helmut Eller  <eller.helmut@gmail.com>
1942         * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
1943         used by cl-do-arglist.  (Bug#6408)
1945 2010-06-16  Agustín Martín  <agustin.martin@hispalinux.es>
1947         * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
1948         portuguese casechars/not-casechars for missing 'çÇ'.
1949         Suggested by Rolando Pereira (bug#6434).
1951 2010-06-15  Juanma Barranquero  <lekktu@gmail.com>
1953         * facemenu.el (list-colors-sort): Doc fix.
1955 2010-06-15  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
1957         * progmodes/sql.el (sql-connect-mysql): Fix typo.
1959 2010-06-14  Juri Linkov  <juri@jurta.org>
1961         Add sort option `list-colors-sort'.  (Bug#6332)
1962         * facemenu.el (color-rgb-to-hsv): New function.
1963         (list-colors-sort): New defcustom.
1964         (list-colors-sort-key): New function.
1965         (list-colors-display): Doc fix.  Sort list according to the option
1966         `list-colors-sort'.
1967         (list-colors-print): Add HSV values to `help-echo' property of
1968         RGB strings.
1970 2010-06-14  Juri Linkov  <juri@jurta.org>
1972         * compare-w.el: Move to the "vc" subdirectory.
1974 2010-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1976         * image-mode.el (image-mode-map): Remap left-char and right-char.
1978         * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
1980 2010-06-12  Chong Yidong  <cyd@stupidchicken.com>
1982         * term/common-win.el (x-colors): Add all the color names defined
1983         in rgb.txt (Bug#6332).
1985         * facemenu.el (list-colors-print): Don't print extra names if it
1986         will overflow the window width.
1988         * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
1989         change (Bug#6343).
1991 2010-06-12  Eli Zaretskii  <eliz@gnu.org>
1993         * files.el (make-directory): Doc fix (bug#6396).
1995 2010-06-12  Michael Albinus  <michael.albinus@gmx.de>
1997         * net/tramp.el (tramp-remote-process-environment): Protect version
1998         string by apostroph.
1999         (tramp-shell-prompt-pattern): Do not use a shy group in case of
2000         XEmacs.
2001         (tramp-file-name-for-operation): Add `call-process-region'.
2002         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
2004         * net/tramp-compat.el (top): Do not autoload
2005         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
2006         only when `start-file-process' is not bound.
2007         (tramp-advice-file-expand-wildcards): Do not use
2008         `tramp-handle-file-remote-p'.
2009         (tramp-compat-make-temp-file): Handle the case, that
2010         `make-temp-file' has no third argument EXTENSION.
2012 2010-06-11  Juanma Barranquero  <lekktu@gmail.com>
2014         * makefile.w32-in (WINS_BASIC): Include new directory vc.
2016         * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
2018 2010-06-11  Juri Linkov  <juri@jurta.org>
2020         * finder.el (finder-known-keywords): Add keyword "vc"
2021         for version control.
2023         * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
2024         * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
2025         * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
2026         * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
2028 2010-06-11  Juri Linkov  <juri@jurta.org>
2030         Move version control related files to the "vc" subdirectory.
2031         * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
2032         * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
2033         * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
2034         * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
2035         * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
2036         * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
2037         * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
2038         * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
2039         Move files to the "vc" subdirectory.
2041 2010-06-11  Chong Yidong  <cyd@stupidchicken.com>
2043         * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
2044         (Bug#6367).
2046 2010-06-11  Stephen Eglen  <stephen@gnu.org>
2048         * shell.el: Bind `shell-resync-dirs' to M-RET.
2050 2010-06-10  Michael Albinus  <michael.albinus@gmx.de>
2052         * notifications.el: Move file from lisp/net, because it is
2053         supposed to talk locally to the user.
2055 2010-06-10  Julien Danjou  <julien@danjou.info>
2057         * net/notifications.el (notifications-on-action-signal)
2058         (notifications-on-closed-signal): Pass notification id as first
2059         argument to the callback functions.  Add docstrings.
2060         (notifications-notify): Fix docstring.
2062 2010-06-10  Glenn Morris  <rgm@gnu.org>
2064         * emacs-lisp/authors.el (authors-ignored-files)
2065         (authors-valid-file-names): Add some files.
2067 2010-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2069         * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
2070         merge conflict, giving preference to the emacs-23 version of the code.
2072 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2074         * emacs-lisp/advice.el (ad-compile-function):
2075         Define warning-suppress-types before we let-bind it (bug#6275).
2077         * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
2078         declare it, make it buffer-local and permanent-local (bug#6324).
2079         (vc-resynch-window): Adjust name.
2080         * vc-hooks.el (vc-find-file-hook): Adjust name.
2082 2010-06-09  Michael Albinus  <michael.albinus@gmx.de>
2084         * net/notifications.el (notifications-notify): Fix docstring.
2086 2010-06-09  Juanma Barranquero  <lekktu@gmail.com>
2088         Update to Unicode 6.0.0 beta.
2089         * international/charprop.el: Update copyright.
2090         * international/mule-cmds.el (ucs-names): Update character ranges.
2091         * international/uni-bidi.el:
2092         * international/uni-category.el:
2093         * international/uni-combining.el:
2094         * international/uni-comment.el:
2095         * international/uni-decimal.el:
2096         * international/uni-decomposition.el:
2097         * international/uni-digit.el:
2098         * international/uni-lowercase.el:
2099         * international/uni-mirrored.el:
2100         * international/uni-name.el:
2101         * international/uni-numeric.el:
2102         * international/uni-old-name.el:
2103         * international/uni-titlecase.el:
2104         * international/uni-uppercase.el: Regenerate.
2106 2010-06-09  Juanma Barranquero  <lekktu@gmail.com>
2108         * emacs-lisp/smie.el (comment-string-strip): Declare function.
2109         (smie-precs-precedence-table): Fix typo in docstring.
2111         * vc-mtn.el (log-edit-extract-headers): Declare function.
2113         * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
2115         * net/notifications.el (dbus-register-signal): Declare function.
2116         (notifications-notify): Fix typos and reflow docstring.
2118 2010-06-09  Dan Nicolaescu  <dann@ics.uci.edu>
2120         Improve VC create/retrieve tag/branch.
2121         * vc.el (vc-create-tag): Do not read the directory name for VCs
2122         with repository revision granularity.  Adjust the tag/branch
2123         prompt.  Reset VC properties.
2124         (vc-retrieve-tag): Do not read the directory name for VCs
2125         with repository revision granularity.  Reset VC properties.
2127 2010-06-09  Julien Danjou  <julien@danjou.info>
2129         * net/notifications.el: New file.
2131 2010-06-09  Dan Nicolaescu  <dann@ics.uci.edu>
2133         Add optional support for resetting VC properties.
2134         * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
2135         call vc-file-clearprops when true.
2136         (vc-resynch-buffer): Add new optional argument, pass it down.
2137         (vc-resynch-buffers-in-directory): Likewise.
2139         Improve support for special markup in the VC commit message.
2140         * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
2141         * vc-hg.el (vc-hg-checkin): Add support for Date:.
2142         * vc-git.el (vc-git-checkin):
2143         * vc-bzr.el (vc-bzr-checkin): Likewise.
2145 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2147         * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
2148         can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
2150 2010-06-07  Martin Pohlack  <mp26@os.inf.tu-dresden.de>
2152         * iimage.el: Remove images as soon as the underlying text is modified.
2153         (iimage-modification-hook): New function.
2154         (iimage-mode-buffer): Use it.
2156 2010-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2158         * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
2159         smie-indent-offset-after.  Add :prev case.  Make a bit more generic.
2160         (smie-indent-virtual): Remove `virtual' arg.  Update callers.
2161         (smie-indent-keyword): Add handling of open-paren keywords.
2162         (smie-indent-comment-continue): Don't assume comment-continue.
2164 2010-06-07  Martin Rudalics  <rudalics@gmx.at>
2166         * window.el (pop-to-buffer): Remove the conditional that
2167         compares new-window and old-window, so it will reselect
2168         the selected window unconditionally.
2169         http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
2171 2010-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2173         * emacs-lisp/smie.el (smie-indent-offset-after)
2174         (smie-indent-forward-token, smie-indent-backward-token): New functions.
2175         (smie-indent-after-keyword): Use them.
2176         (smie-indent-fixindent): Only applies to the indentation of the BOL.
2177         (smie-indent-keyword): Tweak the black magic.
2178         (smie-indent-comment-continue): Strip comment-continue before use.
2179         (smie-indent-functions): Indent comments before keywords.
2181 2010-06-06  Juri Linkov  <juri@jurta.org>
2183         * isearch.el (isearch-lazy-highlight-search): Fix looping
2184         by checking for empty match.  This syncs this loop with the
2185         similar loop in `isearch-search'.  (Bug#6362)
2187 2010-06-05  Juanma Barranquero  <lekktu@gmail.com>
2189         * net/dbus.el (dbus-register-method): Declare function.
2190         (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
2191         (dbus-introspect): Doc fix.
2192         (dbus-event-bus-name, dbus-introspect-get-interface)
2193         (dbus-introspect-get-argument): Reflow docstrings.
2195 2010-06-05  Dan Nicolaescu  <dann@ics.uci.edu>
2197         vc-log-incoming/vc-log-outgoing fixes for Git.
2198         * vc-git.el (vc-git-log-view-mode): Fix font lock for
2199         incoming/outgoing logs.
2200         (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
2201         instead of vc-git-compute-remote.
2202         (vc-git-compute-remote): Remove.
2204 2010-06-04  Chong Yidong  <cyd@stupidchicken.com>
2206         * term/common-win.el (x-colors): Add "dark green" and "dark
2207         turquoise" (Bug#6332).
2209 2010-06-04  Juri Linkov  <juri@jurta.org>
2211         * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
2212         Instead of setting `replace' to t and replacing the same string
2213         with itself, don't do certain actions when
2214         kill-do-not-save-duplicates is non-nil and string is equal to car
2215         of kill-ring: don't call menu-bar-update-yank-menu, don't push
2216         interprogram-paste strings to kill-ring, and don't push the input
2217         argument `string' to kill-ring.
2218         http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
2220 2010-06-04  Juanma Barranquero  <lekktu@gmail.com>
2222         * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
2224 2010-06-04  Michael Albinus  <michael.albinus@gmx.de>
2226         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
2227         (tramp-gvfs-handler-mounted-unmounted)
2228         (tramp-gvfs-connection-mounted-p): Handle default-location.
2230         * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
2231         move files to trash.
2233 2010-06-04  Juanma Barranquero  <lekktu@gmail.com>
2235         * international/mule-cmds.el (nonascii-insert-offset)
2236         (nonascii-translation-table): Add obsolescence information.
2238         * international/mule.el (make-translation-table-from-vector): Doc fix.
2240 2010-06-03  Eric Ludlam  <zappo@gnu.org>
2242         * cedet/semantic/lex-spp.el
2243         (semantic-lex-spp-table-write-slot-value): Instead of erroring on
2244         invalid values during save, just save a nil (Bug#6324).
2246 2010-06-03  Glenn Morris  <rgm@gnu.org>
2248         * desktop.el (desktop-clear-preserve-buffers):
2249         Add "*Warnings*" buffer.  (Bug#6336)
2251 2010-06-03  Dan Nicolaescu  <dann@ics.uci.edu>
2253         vc-log-incoming/vc-log-outgoing improvements for Git.
2254         * vc-git.el (vc-git-log-outgoing): Use the same format as the
2255         short log.
2256         (vc-git-log-incoming): Likewise.  Run "git fetch" before the log command.
2258         Add bindings for vc-log-incoming and vc-log-outgoing.
2259         * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
2260         and vc-log-outgoing.
2261         * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
2262         and vc-log-outgoing.
2264 2010-06-03  Chong Yidong  <cyd@stupidchicken.com>
2266         * net/rcirc.el (rcirc-sort-nicknames): Remove.
2267         (rcirc-handler-366): Always sort nicknames.
2269 2010-06-03  Juanma Barranquero  <lekktu@gmail.com>
2271         * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
2273 2010-06-03  Chong Yidong  <cyd@stupidchicken.com>
2275         * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
2277 2010-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2279         * net/rcirc.el (rcirc-sort-nicknames): Change default.
2280         (rcirc-sort-nicknames-join): Avoid setq.
2282 2010-06-03  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
2284         * net/rcirc.el (rcirc-sort-nicknames): New custom.
2285         (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
2286         (rcirc-handler-366): Use them.
2288 2010-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2290         Split smie-indent-calculate into more manageable chunks.
2291         * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
2292         (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
2293         (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
2294         (smie-indent-exps): Extract from smie-indent-calculate.
2295         (smie-indent-functions): New var.
2296         (smie-indent-functions): Use them.
2298 2010-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2300         * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
2301         (smie-indent-calculate): Simplify and cleanup.
2303 2010-06-02  Michael Albinus  <michael.albinus@gmx.de>
2305         * net/tramp-gvfs.el (top): Require url-util.
2306         (tramp-gvfs-mount-point): Remove.
2307         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
2308         New defuns.
2309         (with-tramp-dbus-call-method): Format trace message.
2310         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
2311         Implement backup call, when operation on local files fails.
2312         Use progress reporter.  Flush properties of changed files.
2313         (tramp-gvfs-handle-make-directory): Make more traces.
2314         (tramp-gvfs-url-file-name): Hexify file name in url.
2315         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
2316         into account for the resulting file name.
2317         (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
2318         the answer is "no".  See `tramp-gvfs-maybe-open-connection'.
2319         (tramp-gvfs-handler-mounted-unmounted)
2320         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
2321         attribute "default_location".  Set "prefix" property.
2322         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
2323         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
2324         exists.  Raise an error, if not (due to a corresponding answer
2325         "no" in interactive questions, for example).
2327 2010-06-02  Dan Nicolaescu  <dann@ics.uci.edu>
2329         * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
2331 2010-06-01  Juanma Barranquero  <lekktu@gmail.com>
2333         * emacs-lisp/eldoc.el: Add completions for new commands left-* and
2334         right-*.  (Bug#6265)
2336 2010-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
2338         Add support for vc-log-incoming, improve vc-log-outgoing for Git.
2339         * vc-git.el (vc-git-compute-remote): New function.
2340         (vc-git-log-outgoing): Use it instead of hard coding a value.
2341         (vc-git-log-incoming): New function.
2343         Improve state updating for VC tag commands.
2344         * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
2345         to update the state of all buffers in the directory.
2347         * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
2349 2010-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2351         * vc-bzr.el (vc-bzr-revision-completion-table): Apply
2352         `file-directory-p' to the filename part rather than to the whole text.
2354 2010-05-31  Jonathan Marchand  <jonathlela@gmail.com>  (tiny change)
2356         * cedet/ede/cpp-root.el (ede-set-project-variables): Fix feature name
2357         (bug#6231).
2359 2010-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
2361         * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
2363 2010-05-31  Drew Adams  <drew.adams@oracle.com>
2365         * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
2367 2010-05-31  Juanma Barranquero  <lekktu@gmail.com>
2369         * subr.el (momentary-string-display): Just use read-event to read
2370         the exit event (Bug#6238).
2372 2010-05-30  Eli Zaretskii  <eliz@gnu.org>
2374         * international/mule.el (define-coding-system): Doc fix (bug#6313).
2376 2010-05-30  Juanma Barranquero  <lekktu@gmail.com>
2378         * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
2379         Suggested by Eli Zaretskii <eliz@gnu.org>.
2381 2010-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2383         * minibuffer.el (completion-file-name-table): Don't return a boundary
2384         past the end of `string' (bug#6299).
2385         (completion--file-name-table): Delegate to completion-file-name-table
2386         for the `boundaries' case.
2388 2010-05-30  Juanma Barranquero  <lekktu@gmail.com>
2390         * emulation/cua-base.el: Recognize `right-char' and `left-char' as
2391         movement commands.
2393         * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
2394         `path-separator', but maintain compatibility with Emacs 20.2.
2396 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
2398         * server.el (server-process-filter): Receive parent-id argument
2399         from emacsclient.
2400         (server-create-window-system-frame): New arg.  Pass parent-id as
2401         frame parameter.
2403 2010-05-29  Eli Zaretskii  <eliz@gnu.org>
2405         Bidi-sensitive word movement with arrow keys.
2406         * subr.el (right-arrow-command, left-arrow-command): Move to
2407         bindings.el.
2409         * bindings.el (right-char, left-char): Move from subr.el and
2410         rename from right-arrow-command and left-arrow-command.
2411         (right-word, left-word): New functions.
2412         (global-map) <right>: Bind to right-char.
2413         (global-map) <left>: Bind to left-char.
2414         (global-map) <C-right>: Bind to right-word.
2415         (global-map) <C-left>: Bind to left-word.
2417         * ls-lisp.el (ls-lisp-classify-file): New function.
2418         (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
2419         (ls-lisp-classify): Call ls-lisp-classify-file.
2420         (insert-directory): Remove blanks from switches.
2422 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
2424         * ansi-color.el: Delete unused escape sequences (Bug#6085).
2425         (ansi-color-drop-regexp): New constant.
2426         (ansi-color-apply, ansi-color-filter-region)
2427         (ansi-color-apply-on-region): Delete unrecognized control sequences.
2428         (ansi-color-apply): Build string list before calling concat.
2430 2010-05-28  Juri Linkov  <juri@jurta.org>
2432         * image-dired.el (image-dired-dired-toggle-marked-thumbs):
2433         Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
2434         (Bug#5270)
2436 2010-05-28  Michael Albinus  <michael.albinus@gmx.de>
2438         * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
2439         to ignored backtrace functions.
2440         (with-progress-reporter): Expand docstring.
2441         (tramp-handle-delete-file): Implement TRASH argument.
2442         (tramp-get-remote-trash): New defun.
2444 2010-05-28  Michael Albinus  <michael.albinus@gmx.de>
2446         * net/tramp-compat.el (tramp-compat-delete-file): Use
2447         `symbol-value' for backward compatibility.
2449         * net/tramp.el (tramp-handle-make-symbolic-link)
2450         (tramp-handle-load)
2451         (tramp-do-copy-or-rename-file-via-buffer)
2452         (tramp-do-copy-or-rename-file-directly)
2453         (tramp-do-copy-or-rename-file-out-of-band)
2454         (tramp-handle-process-file, tramp-handle-call-process-region)
2455         (tramp-handle-shell-command, tramp-handle-file-local-copy)
2456         (tramp-handle-insert-file-contents, tramp-handle-write-region)
2457         (tramp-delete-temp-file-function): Use `delete-file' instead
2458         of `tramp-compat-delete-file'.
2460         * net/tramp-fish.el (tramp-fish-handle-delete-directory)
2461         (tramp-fish-handle-make-symbolic-link)
2462         (tramp-fish-handle-process-file): Use `delete-file' instead
2463         of `tramp-compat-delete-file'.
2465         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
2466         `delete-file' instead of `tramp-compat-delete-file'.
2468         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
2469         (tramp-gvfs-handle-write-region): Use `delete-file' instead of
2470         `tramp-compat-delete-file'.
2472         * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
2473         `delete-file' instead of `tramp-compat-delete-file'.
2475         * net/tramp-smb.el (tramp-smb-handle-copy-file)
2476         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
2477         (tramp-smb-handle-write-region): Use `delete-file' instead of
2478         `tramp-compat-delete-file'.
2479         (tramp-smb-handle-delete-directory): Use 'trash as arg.
2481 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
2483         * dired.el (dired-delete-file): New arg TRASH.
2484         (dired-internal-do-deletions): New arg TRASH.  Use progress reporter.
2485         (dired-do-flagged-delete, dired-do-delete): Use trash.
2487         * speedbar.el (speedbar-item-delete): Allow trashing.
2489         * files.el (delete-directory): New arg TRASH.
2491         * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
2492         (ange-ftp-rename-remote-to-remote)
2493         (ange-ftp-rename-local-to-remote)
2494         (ange-ftp-rename-remote-to-local, ange-ftp-load)
2495         (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
2496         `delete-file'.
2497         (ange-ftp-delete-directory): Add optional arg to `delete-file', to
2498         allow trashing.
2500         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
2501         handle new TRASH arg of `delete-file'.
2503         * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
2504         (tramp-handle-make-symbolic-link, tramp-handle-load)
2505         (tramp-do-copy-or-rename-file-via-buffer)
2506         (tramp-do-copy-or-rename-file-directly)
2507         (tramp-do-copy-or-rename-file-out-of-band)
2508         (tramp-handle-process-file, tramp-handle-call-process-region)
2509         (tramp-handle-shell-command, tramp-handle-file-local-copy)
2510         (tramp-handle-insert-file-contents, tramp-handle-write-region)
2511         (tramp-delete-temp-file-function): Use null TRASH arg in
2512         tramp-compat-delete-file call.
2514         * net/tramp-fish.el (tramp-fish-handle-delete-directory)
2515         (tramp-fish-handle-delete-file)
2516         (tramp-fish-handle-make-symbolic-link)
2517         (tramp-fish-handle-process-file): Use null TRASH arg in
2518         `tramp-compat-delete-file' call.
2520         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
2521         arg in `tramp-compat-delete-file' call.
2523         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
2524         (tramp-gvfs-handle-write-region): Use null TRASH arg in
2525         `tramp-compat-delete-file' call.
2527         * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
2528         (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
2529         `tramp-compat-delete-file' call.
2531         * net/tramp-smb.el (tramp-smb-handle-copy-file)
2532         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
2533         (tramp-smb-handle-write-region): Use null TRASH arg in
2534         tramp-compat-delete-file call.
2535         (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
2536         (tramp-smb-handle-delete-file): Rename arg.
2538         * diff.el (diff-sentinel):
2539         * epg.el (epg--make-temp-file, epg-decrypt-string)
2540         (epg-verify-string, epg-sign-string, epg-encrypt-string):
2541         * jka-compr.el (jka-compr-partial-uncompress)
2542         (jka-compr-call-process, jka-compr-write-region):
2543         * server.el (server-sentinel): Remove optional arg from
2544         delete-file, reverting 2010-05-03 change.
2546 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
2548         * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
2549         font-lock-constant-face, not obsolete font-lock-reference-face.
2551 2010-05-27  Kenichi Handa  <handa@m17n.org>
2553         * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
2554         element of GSTRING is nil.
2556 2010-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2558         * emacs-lisp/smie.el (smie-forward-token-function)
2559         (smie-backward-token-function): New vars.
2560         (smie-backward-sexp, smie-forward-sexp)
2561         (smie-indent-hanging-p, smie-indent-calculate): Use them.
2562         (smie-default-backward-token): Rename from smie-backward-token and
2563         skip comments.
2564         (smie-default-forward-token): Rename from smie-forward-token and
2565         skip comments.
2566         (smie-next-sexp): Handle nil results from next-token.
2567         (smie-indent-calculate): Add a new case for special `fixindent' comments.
2569 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
2571         * progmodes/verilog-mode.el (verilog-type-font-keywords):
2572         Use font-lock-constant-face, not obsolete font-lock-reference-face.
2574 2010-05-27  Masatake YAMATO  <yamato@redhat.com>
2576         * htmlfontify.el (hfy-face-resolve-face): New function.
2577         (hfy-face-to-style): Use it (Bug#6279).
2579 2010-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2581         * progmodes/ada-xref.el (ada-gnat-parse-gpr):
2582         * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
2584 2010-05-26  Glenn Morris  <rgm@gnu.org>
2586         * emulation/edt.el (edt-load-keys): Use locate-library.
2588 2010-05-25  Chong Yidong  <cyd@stupidchicken.com>
2590         * log-edit.el (log-edit-strip-single-file-name): Default to nil.
2591         (log-edit-changelog-entries): Doc fix.
2592         (log-edit-changelog-insert-entries): Args changed.
2593         Rename relative filenames in ChangeLog entries.  Delete tabs.
2594         (log-edit-insert-changelog-entries): Reorganize return value of
2595         `log-edit-changelog-entries' to pass filenames to
2596         log-edit-changelog-insert-entries.
2598 2010-05-25  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
2600         * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
2601         `image-dired-dired-insert-marked-thumbs' to
2602         `image-dired-dired-toggle-marked-thumbs'.
2604         * image-dired.el: Require cl when compiling.
2605         (image-dired-dired-toggle-marked-thumbs): Rename from
2606         `image-dired-dired-insert-marked-thumbs'.  Add ARG.  Doc fix.
2607         Use interactive spec "P".  Set LOCALP arg of `dired-get-filename'
2608         to 'no-dir.  Skip files whose names don't match
2609         `image-file-name-regexp'.  When file has a thumbnail overlay,
2610         delete it.  (Bug#5270)
2612 2010-05-25  Juri Linkov  <juri@jurta.org>
2614         * image-mode.el (image-mode): Add image-after-revert-hook to
2615         after-revert-hook.
2616         (image-after-revert-hook): New function.  (Bug#5669)
2618 2010-05-25  Juri Linkov  <juri@jurta.org>
2620         * image.el (image-animated-p): When delay between animated images
2621         is 0, set it to 10 (0.1 sec).  (Bug#6258)
2623 2010-05-25  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
2625         * net/tramp.el (tramp-handle-insert-directory): Don't use
2626         `forward-word', its default syntax could be changed.
2628 2010-05-25  Michael Albinus  <michael.albinus@gmx.de>
2630         * net/tramp.el (tramp-progress-reporter-update): New defun.
2631         (with-progress-reporter): Use it.
2632         (tramp-process-actions):
2633         * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
2634         current message, in order to let progress reporter continue
2635         afterwards.  (Bug#6257)
2637 2010-05-25  Glenn Morris  <rgm@gnu.org>
2639         * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
2640         Add :version.
2642 2010-05-25  Ryan Yeske  <rcyeske@gmail.com>
2644         * net/rcirc.el (rcirc-default-user-name): Change to "user".
2645         (rcirc-default-full-name): Change to "unknown".
2646         (rcirc-user-name-history): Add variable.
2648 2010-05-25  Ryan Yeske  <rcyeske@gmail.com>
2649             Jonathan Rockway  <jon@jrock.us>
2651         * net/rcirc.el (rcirc-server-alist): Add :pass.
2652         (rcirc): When prompting for connection parameters, also prompt for
2653         username and password.
2654         (rcirc-connect): Take a PASS argument.  If PASS is non-nil, send
2655         value to server when connecting.
2657 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2659         * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
2660         (smie-merge-prec2s): Pass the tables as separate args.
2661         (smie-bnf-precedence-table): Adjust call accordingly.
2662         (smie-prec2-levels): Set levels at the end.
2664         Replace Lisp calls to delete-backward-char by delete-char.
2665         * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
2666         * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
2667         * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
2668         * calc/calc.el, emacs-cl-extra.el, emacs-cl-loaddefs.el,
2669         * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
2670         * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
2671         * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
2672         * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
2673         * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
2674         * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
2675         * progmodes/ps-mode.el, progmodes/verilog-mode.el,
2676         * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
2677         * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
2678         * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
2679         delete-backward-char by calls to delete-char.
2681 2010-05-25  Kenichi Handa  <handa@m17n.org>
2683         * language/hebrew.el (hebrew-shape-gstring): New function.
2684         Register it in composition-function-table for all Hebrew combining
2685         characters.
2687 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2689         * epa.el (epa--select-keys): Don't explicitly delete the window since
2690         that can fail (e.g. sole window in frame).  Use dedication instead.
2692 2010-05-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
2694         * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
2696 2010-05-22  Chong Yidong  <cyd@stupidchicken.com>
2698         * image.el (image-refresh): Define as an alias for image-flush.
2700         * image-mode.el (image-toggle-display-image): Caller changed.
2702 2010-05-21  Juri Linkov  <juri@jurta.org>
2704         * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
2705         Remove "all" from grep-files-aliases.  Split grep-files-aliases by
2706         whitespace, call wildcard-to-regexp on substrings and concat them
2707         with "\\|".  (Bug#6114)
2709 2010-05-21  Alan Mackenzie  <acm@muc.de>
2711         * progmodes/cc-engine.el (c-parse-state-get-strategy):
2712         Replace parameter `here' with `here-' and `here-plus', which sandwich
2713         any pertinent CPP construct.
2714         (c-remove-stale-state-cache-backwards): Fix a bug which happens
2715         when doing (c-parse-state) in a CPP construct: Exclude any "new"
2716         CPP construct from taking part in the scanning.
2718 2010-05-21  Michael Albinus  <michael.albinus@gmx.de>
2720         * net/tramp.el (tramp-do-copy-or-rename-file)
2721         (tramp-handle-file-local-copy, tramp-maybe-open-connection):
2722         Tune `with-progress-reporter' messages.
2723         (tramp-handle-vc-registered):
2724         * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
2725         (tramp-fish-handle-insert-file-contents)
2726         (tramp-fish-maybe-open-connection):
2727         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
2728         * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
2729         (tramp-imap-handle-insert-file-contents)
2730         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
2732 2010-05-21  Juanma Barranquero  <lekktu@gmail.com>
2734         * add-log.el (change-log-font-lock-keywords):
2735         Highlight all authors in multi-author entries.
2737         * smerge-mode.el (smerge-refine-ignore-whitespace)
2738         (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
2739         Fix typos in docstrings.
2740         (smerge-resolve, smerge-refine-subst): Reflow docstrings.
2742 2010-05-21  Glenn Morris  <rgm@gnu.org>
2744         * progmodes/fortran.el (fortran-mode):
2745         * progmodes/f90.el (f90-mode): Derive from prog-mode.
2747         * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
2748         having a relative path in src/Makefile.in.
2750 2010-05-20  Kevin Ryde  <user42@zip.com.au>
2752         * help-mode.el (help-make-xrefs): For Info node links turn
2753         newlines into spaces.  Link node names with newlines are matched
2754         by help-xref-info-regexp and buttonized, this change ensures they
2755         can be followed successfully with RET.  (Bug#6206)
2757 2010-05-20  Juri Linkov  <juri@jurta.org>
2759         * locate.el (locate): Use pop-to-buffer instead of
2760         switch-to-buffer-other-window.  (Bug#6204)
2762 2010-05-20  Juri Linkov  <juri@jurta.org>
2764         * replace.el (replace-highlight): Fix lazy-highlighting
2765         for `M-s w str M-% str RET'.
2767 2009-12-15  Masatake YAMATO  <yamato@redhat.com>
2769         * isearch.el (isearch-yank-word-or-char): Pull next subword
2770         when `subword-mode' is activated.  (Bug#6220)
2772 2010-05-20  Mark A. Hershberger  <mah@everybody.org>
2774         * isearch.el (isearch-update-post-hook): New hook.
2775         (isearch-update): Use the new hook.  (Bug#6225)
2777 2010-05-20  Juri Linkov  <juri@jurta.org>
2779         * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
2780         [f1], [help], and (char-to-string help-char) instead of "\C-h".
2781         (Bug#6222)
2783 2010-05-20  Juri Linkov  <juri@jurta.org>
2785         * isearch.el (isearch-yank-string): Use isearch-process-search-string.
2786         (Bug#6223)
2788 2010-05-20  Juri Linkov  <juri@jurta.org>
2790         * dired-x.el (dired-jump, dired-jump-other-window): Add arg
2791         FILE-NAME to read from the minibuffer when called interactively
2792         with prefix argument instead of using buffer-file-name.
2793         http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
2795         * dired.el: Update autoloads.
2797 2010-05-20  Chong Yidong  <cyd@stupidchicken.com>
2799         * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
2800         nxml-finish-element, for consistency with SGML mode.
2802         * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
2803         octave-close-block.
2805 2010-05-20  Juanma Barranquero  <lekktu@gmail.com>
2807         * composite.el: Require cl when compiling.
2808         (reference-point-alist, compose-gstring-for-graphic)
2809         (compose-gstring-for-terminal): Fix typos in docstrings.
2811 2010-05-19  Juri Linkov  <juri@jurta.org>
2813         * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
2814         set-window-parameter.
2816 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
2818         * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
2819         where appropriate.
2820         (tramp-maybe-open-connection): Use it.
2822 2010-05-19  Eli Zaretskii  <eliz@gnu.org>
2824         * simple.el (move-end-of-line): Make sure we are at line beginning
2825         before backing up to end of previous line.
2827 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
2829         * password-cache.el (password-cache-remove): Fix docstring.
2831         * net/secrets.el: Autoload the widget functions.
2832         (secrets-search-items, secrets-create-item)
2833         (secrets-get-attributes, secrets-expand-item): Attributes will be
2834         stored on the password database without leading ":", as all other
2835         clients do as well.
2836         (secrets-mode): Fix docstring.
2837         (secrets-show-secrets): Provide it as autoloaded command only when
2838         D-Bus support is available.  Check existence of Secret Service API.
2840 2010-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2842         * indent.el (indent-region): Deactivate region (bug#6200).
2844 2010-05-19  Glenn Morris  <rgm@gnu.org>
2846         * vc-dir.el (vc-dir): Don't pop-up-windows.  (Bug#6204)
2848 2010-05-19  Kenichi Handa  <handa@m17n.org>
2850         * composite.el: Register compose-gstring-for-graphic in
2851         composition-function-table only for combining characters (Mn, Mc, Me).
2853 2010-05-18  Jay Belanger  <jay.p.belanger@gmail.com>
2855         * calc/calc-trail.el (calc-trail-isearch-forward)
2856         (calc-trail-isearch-backward): Ensure that the new window
2857         point is set correctly.
2859 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2861         * subr.el (read-quoted-char): Resolve modifiers after key
2862         remapping (bug#6212).
2864 2010-05-18  Michael Albinus  <michael.albinus@gmx.de>
2866         Add visualization code for secrets.
2867         * net/secrets.el (secrets-mode): New major mode.
2868         (secrets-show-secrets, secrets-show-collections)
2869         (secrets-expand-collection, secrets-expand-item)
2870         (secrets-tree-widget-after-toggle-function)
2871         (secrets-tree-widget-show-password): New defuns.
2873 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2875         * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
2876         (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
2877         handled in smie-next-sexp.
2878         (smie-indent-calculate): Provide a starting indentation (so the
2879         recursion is well-founded ;-).
2881         Fix handling of non-associative equal levels.
2882         * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
2883         when it's not needed.
2884         (smie-op-left, smie-op-right): New functions.
2885         (smie-next-sexp): New function, extracted from smie-backward-sexp.
2886         Better handle equal levels to distinguish the associative case from
2887         the "multi-keyword construct" case.
2888         (smie-backward-sexp, smie-forward-sexp): Use it.
2890 2010-05-18  Juanma Barranquero  <lekktu@gmail.com>
2892         * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
2894         * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
2895         (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
2897 2010-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2899         Provide a simple generic indentation engine and use it for Prolog.
2900         * emacs-lisp/smie.el: New file.
2901         * progmodes/prolog.el (prolog-smie-op-levels)
2902         (prolog-smie-indent-rules): New var.
2903         (prolog-mode-variables): Use them to configure SMIE.
2904         (prolog-indent-line, prolog-indent-level): Remove.
2906 2010-05-17  Jay Belanger  <jay.p.belanger@gmail.com>
2908         * calc/calc-vec.el (math-vector-avg): Put the vector elements in
2909         order before computing the averages.
2911 2010-05-16  Jay Belanger  <jay.p.belanger@gmail.com>
2913         * calc/calc-vec.el (calc-histogram):
2914         (calcFunc-histogram): Allow vectors as inputs.
2915         (math-vector-avg): New function.
2917         * calc/calc-ext.el (math-group-float): Have the number of digits
2918         being grouped depend on the radix (Bug#6189).
2920 2010-05-15  Ken Raeburn  <raeburn@raeburn.org>
2922         * version.el (emacs-copyright, emacs-version): Don't define here,
2923         now that emacs.c defines it.
2925 2010-05-15  Eli Zaretskii  <eliz@gnu.org>
2927         * international/mule-cmds.el (mule-menu-keymap): Fix definition of
2928         "Describe Language Environment" menu item.
2930         * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
2932         Bidi-sensitive movement with arrow keys.
2933         * subr.el (right-arrow-command, left-arrow-command): New functions.
2935         * bindings.el (global-map): Bind them to right and left arrow keys.
2937         Don't override standard definition of convert-standard-filename.
2938         * files.el (convert-standard-filename): Call
2939         w32-convert-standard-filename and dos-convert-standard-filename on
2940         the corresponding systems.
2942         * w32-fns.el (w32-convert-standard-filename): Rename from
2943         convert-standard-filename.  Doc fix.
2945         * dos-fns.el (dos-convert-standard-filename): Doc fix.
2946         (convert-standard-filename): Don't defalias.
2947         (register-name-alist, make-register, register-value)
2948         (set-register-value, intdos): Obsolete aliases for the
2949         corresponding dos-* functions and variables.
2950         (dos-intdos): Add a doc string.
2952 2010-05-15  Jay Belanger  <jay.p.belanger@gmail.com>
2954         * calc/calc-aent.el (math-read-token, math-find-user-tokens):
2955         * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
2956         (math-compose-tex-func):
2957         * calc/calccomp.el (math-compose-expr):
2958         * calc/calc-ext.el (math-format-flat-expr-fancy):
2959         * calc/calc-store.el (calc-read-var-name):
2960         * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
2962         * calc/calc.el (var-π, var-φ, var-γ): New variables.
2963         * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
2964         * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
2965         (math-standard-units): Add units.
2967 2010-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2969         * progmodes/asm-mode.el (asm-mode):
2970         * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
2972         * pcomplete.el (pcomplete-completions-at-point): New function,
2973         extracted from pcomplete-std-complete.
2974         (pcomplete-std-complete): Use it.
2976 2010-05-15  Glenn Morris  <rgm@gnu.org>
2978         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2979         Remove references to CVS, RCS and Old directories.
2981 2010-05-14  Jay Belanger  <jay.p.belanger@gmail.com>
2983         * calc/calc-bin.el (math-format-twos-complement): Group digits when
2984         appropriate.
2986 2010-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2988         * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
2989         (sh-mode-syntax-table): Give it a default value instead.
2990         (sh-header-marker): Make buffer-local.
2991         (sh-mode): Move make-local-variable to the corresponding setq.
2992         (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
2993         Use complete-with-action.
2995         * simple.el (prog-mode): New (abstract) major mode.
2996         * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
2997         * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
2999 2010-05-14  Juanma Barranquero  <lekktu@gmail.com>
3001         * progmodes/sql.el (sql-oracle-program): Reflow docstring.
3002         (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
3003         (sql-add-product-keywords, sql-highlight-product, sql-set-product)
3004         (sql-make-alternate-buffer-name, sql-placeholders-filter)
3005         (sql-escape-newlines-filter, sql-input-sender)
3006         (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
3008 2010-05-13  Chong Yidong  <cyd@stupidchicken.com>
3010         Add TeX open-block and close-block keybindings to SGML, and vice versa.
3012         * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
3013         latex-open-block and C-c / to latex-close-block.
3015         * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
3016         and C-c C-e to sgml-close-tag.
3018 2010-05-13  Michael Albinus  <michael.albinus@gmx.de>
3020         * net/tramp.el (with-progress-reporter): Create reporter object
3021         only when the message would be displayed.  Handle nested calls.
3022         (tramp-handle-load, tramp-handle-file-local-copy)
3023         (tramp-handle-insert-file-contents, tramp-handle-write-region)
3024         (tramp-maybe-send-script, tramp-find-shell):
3025         Use `with-progress-reporter'.
3026         (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
3027         Fix message text.
3029         * net/tramp-smb.el (tramp-smb-handle-copy-file)
3030         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3031         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
3032         Use `with-progress-reporter'.
3034 2010-05-13  Agustín Martín  <agustin.martin@hispalinux.es>
3036         * textmodes/ispell.el (ispell-init-process): Do not kill ispell
3037         process everytime when spellchecking from the minibuffer (bug#6143).
3039 2010-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3041         * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
3043         * dos-fns.el: Add "dos-" prefix for namespace control.
3044         (convert-standard-filename): Define as alias for
3045         dos-convert-standard-filename but only if applicable.
3047 2010-05-12  Alan Mackenzie  <acm@muc.de>
3049         * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
3050         Push the mark at the start of these functions when appropriate.
3052 2010-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3054         * minibuffer.el (completion-cycle-threshold): New custom var.
3055         (completion--do-completion): Use it.
3056         (minibuffer-complete): Use cycling if appropriate.
3058 2010-05-11  Juanma Barranquero  <lekktu@gmail.com>
3060         * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
3061         buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
3063 2010-05-11  Juri Linkov  <juri@jurta.org>
3065         * scroll-all.el (scroll-all-check-to-scroll):
3066         Add `scroll-up-command' and `scroll-down-command' (bug#6164).
3068 2010-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3070         * iimage.el (iimage-mode-map): Move initialization into declaration.
3071         (iimage-mode-buffer): Use with-silent-modifications.
3072         Simplify calling convention.  Adjust callers.
3073         (iimage-mode): Don't run hook redundantly.
3075         * minibuffer.el (completion-pcm--pattern->regex):
3076         Fix last change (bug#6160).
3078 2010-05-10  Juri Linkov  <juri@jurta.org>
3080         Remove nodes visited during Isearch from the Info history.
3081         * info.el (Info-isearch-initial-history)
3082         (Info-isearch-initial-history-list): New variables.
3083         (Info-isearch-start): Record initial values of
3084         Info-isearch-initial-history and Info-isearch-initial-history-list.
3085         Add Info-isearch-end to isearch-mode-end-hook.
3086         (Info-isearch-end): New function.
3088 2010-05-10  Michael Albinus  <michael.albinus@gmx.de>
3090         * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
3091         format string, in order to work around a bug in pdksh.
3092         Reported by Gilles Pion <gpion@lfdj.com>.
3093         (tramp-handle-verify-visited-file-modtime): Do not send a command
3094         when the connection is not established.
3095         (tramp-handle-set-file-times): Simplify the check for utc.
3097 2010-05-10  Juanma Barranquero  <lekktu@gmail.com>
3099         Fix use of `filter-buffer-substring' (rework previous change).
3100         * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
3101         (cua-repeat-replace-region):
3102         * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
3103         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
3104         (cua-cut-region-to-global-mark): Use it.
3106 2010-05-09  Michael R. Mauger  <mmaug@yahoo.com>
3108         * progmodes/sql.el: Version 2.1.
3109         (sql-product-alist): Redesign structure of product info.
3110         (sql-product, sql-user, sql-server, sql-database): Safe variables.
3111         (sql-port, sql-port-history): New variables.
3112         (sql-interactive-product): New variable.
3113         (sql-send-terminator): New variable.
3114         (sql-imenu-generic-expression): Add "Types" imenu entry.
3115         (sql-oracle-login-params, sql-sqlite-login-params)
3116         (sql-mysql-login-params, sql-solid-login-params)
3117         (sql-sybase-login-params, sql-informix-login-params)
3118         (sql-ingres-login-params, sql-ms-login-params)
3119         (sql-postgres-login-params, sql-interbase-login-params)
3120         (sql-db2-login-params, sql-linter-login-params)
3121         (sql-oracle-scan-on): New variables.
3122         (sql-mode-map): Add C-c C-i to start interactive mode.
3123         (sql-mode-menu): Update existing menu entries.
3124         (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
3125         (sql-mode-oracle-font-lock-keywords)
3126         (sql-mode-postgres-font-lock-keywords)
3127         (sql-mode-ms-font-lock-keywords)
3128         (sql-mode-sybase-font-lock-keywords)
3129         (sql-mode-informix-font-lock-keywords)
3130         (sql-mode-interbase-font-lock-keywords)
3131         (sql-mode-ingres-font-lock-keywords)
3132         (sql-mode-solid-font-lock-keywords)
3133         (sql-mode-mysql-font-lock-keywords)
3134         (sql-mode-sqlite-font-lock-keywords)
3135         (sql-mode-db2-font-lock-keywords)
3136         (sql-mode-linter-font-lock-keywords): Update initialization to
3137         reduce run-time complexity.
3138         (sql-add-product, sql-del-product): New functions.
3139         (sql-set-product-feature, sql-get-product-feature): New functions.
3140         (sql-product-font-lock): Update product API.
3141         (sql-add-product-keywords): New function.
3142         (sql-highlight-product): Update product API.
3143         (sql-help-list-products): New function.
3144         (sql-help): Dynamically lists free and non-free products.
3145         (sql-get-login): Correct bug in handling history and added
3146         prompt for port.
3147         (sql-copy-column): Copy without properties.
3148         (sqli-input-sender): Apply filters to SQLi input.
3149         (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
3150         Implement as a filter.
3151         (sql-escape-newlines-filter): Implement as a filter.
3152         (sql-remove-tabs-filter): New function.
3153         (sql-send-magic-terminator): New function.
3154         (sql-send-string): Implement magic terminator.
3155         (sql-send-region): Use `sql-send-string'.
3156         (sql-interactive-mode): Use product API.
3157         (sql-product-interactive): Use product API.
3158         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
3159         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
3160         (sql-db2, sql-linter): Use `sql-product-interactive'.
3161         (sql-connect): New function.
3162         (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
3163         (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
3164         (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
3165         (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
3166         Use `sql-connect'.
3168 2010-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3170         * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
3171         New custom variable.
3172         (completion-pcm--string->pattern): Use it.
3173         (completion-pcm--pattern->regex, completion-pcm--pattern->string):
3174         Make it handle any symbol as `any'.
3175         (completion-pcm--merge-completions): Extract common suffix for the new
3176         `prefix' symbol as well.
3177         (completion-substring--all-completions): Use the new `prefix' symbol.
3179 2010-05-09  Michael Albinus  <michael.albinus@gmx.de>
3181         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
3182         not bound.
3183         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
3184         (tramp-compat-funcall): New defmacro.
3185         (tramp-compat-line-beginning-position)
3186         (tramp-compat-line-end-position)
3187         (tramp-compat-temporary-file-directory)
3188         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
3189         (tramp-compat-copy-file, tramp-compat-copy-directory)
3190         (tramp-compat-delete-file, tramp-compat-delete-directory)
3191         (tramp-compat-number-sequence, tramp-compat-process-running-p)
3192         * net/tramp.el (top, with-progress-reporter)
3193         (tramp-rfn-eshadow-setup-minibuffer)
3194         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
3195         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
3196         (tramp-completion-mode-p, tramp-check-for-regexp)
3197         (tramp-open-connection-setup-interactive-shell)
3198         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
3199         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
3200         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
3201         * net/tramp-cmds.el (tramp-cleanup-all-connections)
3202         (tramp-reporter-dump-variable, tramp-load-report-modules)
3203         (tramp-append-tramp-buffers)
3204         * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
3206         * net/tramp-imap.el (top): Autoload `epg-make-context'.
3208 2010-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3210         * progmodes/compile.el (compilation-buffer-modtime): Rename from
3211         buffer-modtime.  Adjust users.
3213 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
3215         * international/mule.el (auto-coding-alist): Only purecopy
3216         car of each item, not the whole list (Bug#6083).
3218 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
3220         * progmodes/js.el (js-mode): Make paragraph variables local before
3221         calling c-setup-paragraph-variables (Bug#6071).
3223 2010-05-08  Eli Zaretskii  <eliz@gnu.org>
3225         * composite.el (compose-region, reference-point-alist): Fix typos
3226         in the doc strings.
3228 2010-05-08  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
3230         * calc/calc-graph.el (calc-graph-plot): Use the proper form for
3231         gnuplot's "set" command.
3233 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
3235         * abbrev.el (last-abbrev-text): Doc fix.
3236         (abbrev-prefix-mark): Don't escape parenthesis.
3238 2010-05-08  Andreas Schwab  <schwab@linux-m68k.org>
3240         * composite.el (find-composition): Doc fix.
3242 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
3244         * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
3245         (sql-oracle-program, sql-sqlite-options)
3246         (sql-query-placeholders-and-send): Doc fixes.
3247         (sql-set-product, sql-interactive-mode): Reflow docstrings.
3248         (sql-imenu-generic-expression, sql-buffer)
3249         (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
3250         (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
3251         (sql-mode-sybase-font-lock-keywords)
3252         (sql-mode-informix-font-lock-keywords)
3253         (sql-mode-interbase-font-lock-keywords)
3254         (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
3255         (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
3256         (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
3257         (sql-product-feature, sql-highlight-product)
3258         (comint-line-beginning-position, sql-rename-buffer)
3259         (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
3260         (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
3261         (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
3262         Fix typos in docstrings.
3264 2010-05-08  Juri Linkov  <juri@jurta.org>
3266         * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
3267         property instead of `invisible' and `after-string' (bug#5998).
3269 2010-05-08  Juri Linkov  <juri@jurta.org>
3271         * image-mode.el (image-mode-as-text): Fix typo in docstring.
3273 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
3275         * filecache.el (file-cache-add-directory-list)
3276         (file-cache-add-directory-recursively): Fix typos in docstrings.
3278 2010-05-08  Kenichi Handa  <handa@m17n.org>
3280         * language/indian.el (gurmukhi-composable-pattern): Fix typo.
3281         (gujarati-composable-pattern): Fix typo.
3283 2010-05-08  Kenichi Handa  <handa@m17n.org>
3285         * language/indian.el (oriya-composable-pattern)
3286         (tamil-composable-pattern, malayalam-composable-pattern):
3287         Add two-part vowels to "v" (vowel sign).
3289 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
3291         * files.el (copy-directory): Handle symlinks (Bug#5982).
3293 2010-05-08  Dan Nicolaescu  <dann@ics.uci.edu>
3295         * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
3296         (vc-hg-working-revision): Likewise.  Use hg parents, not hg parent
3297         (Bug#5846).
3299 2010-05-08  Glenn Morris  <rgm@gnu.org>
3301         * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
3303         * minibuffer.el (completion-at-point): Doc fix.
3305 2010-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3307         * electric.el (Electric-command-loop): Minor tweak.
3309         * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
3310         better with dedicated windows.
3312 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
3314         * Version 23.2 released.
3316 2010-05-07  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
3317             Stefan Monnier  <monnier@iro.umontreal.ca>
3319         Highlight vendor specific properties.
3320         * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
3321         (css-proprietary-property): New face.
3322         (css-font-lock-keywords): Use them.
3324 2010-05-07  Eli Zaretskii  <eliz@gnu.org>
3326         * cus-start.el (all): Add native condition for tool-bar-* symbols.
3328 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3330         * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
3331         * files.el (auto-mode-alist): Remove redundant entries.
3333         * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
3334         * simple.el (auto-save-mode): Move from files.el.
3335         * minibuffer.el (completion--common-suffix): Fix copy&paste error.
3337 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
3339         * lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
3341 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3343         * mail/binhex.el (binhex-decode-region-internal)
3344         * mail/uudecode.el (uudecode-decode-region-internal)
3345         * net/dns.el (dns-read-string-name, dns-write, dns-read)
3346         (dns-read-type, dns-query)
3347         * pgg-parse.el (pgg-parse-armor)
3348         * pgg.el (pgg-verify-region)
3349         * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
3350         XEmacs.
3352         * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
3354 2010-05-07  Juanma Barranquero  <lekktu@gmail.com>
3356         * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
3358         Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
3359         * emulation/cua-base.el (cua-repeat-replace-region):
3360         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
3361         (cua-cut-region-to-global-mark):
3362         Remove text properties with `set-text-properties'.
3364 2010-05-06  Michael Albinus  <michael.albinus@gmx.de>
3366         * net/tramp.el (top, with-progress-reporter):
3367         Use `symbol-function' inside `funcall'.
3369         * net/tramp-compat.el (tramp-compat-file-attributes)
3370         (tramp-compat-delete-file, tramp-compat-delete-directory):
3371         Handle only `wrong-number-of-arguments' error.
3373         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
3374         (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
3375         inside `funcall'.
3377 2010-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3379         * minibuffer.el (completion--sreverse, completion--common-suffix):
3380         New functions.
3381         (completion-pcm--merge-completions): Extract common suffix when safe.
3383         * emacs-lisp/easy-mmode.el (define-minor-mode):
3384         Make :variable more flexible.
3385         * files.el (auto-save-mode): Use it to define using define-minor-mode.
3387 2010-05-05  Juri Linkov  <juri@jurta.org>
3389         Add `slow' and `history' tags to the desktop data.
3391         * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
3392         (Info-virtual-files) [*Apropos*]: Add `slow' tag.
3393         (Info-finder-find-node): Require `finder.el' to be able
3394         to restore node from the desktop.
3395         (Info-desktop-buffer-misc-data): Save all nodes.  Save additional
3396         data `Info-history' and `slow' tag in the assoc list.
3397         (Info-restore-desktop-buffer): Don't restore nodes with the
3398         `slow' tag.  Restore `Info-history'.
3400 2010-05-05  Michael Albinus  <michael.albinus@gmx.de>
3402         Add FORCE argument to `delete-file'.
3404         * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
3405         forcing to delete the temporary file.
3406         (ange-ftp-delete-file): Add FORCE arg.
3407         (ange-ftp-rename-remote-to-remote)
3408         (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
3409         (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
3410         Force file deletion.
3412         * net/tramp-compat.el (tramp-compat-delete-file): New defun.
3414         * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
3415         (tramp-handle-make-symbolic-link, tramp-handle-load)
3416         (tramp-do-copy-or-rename-file-via-buffer)
3417         (tramp-do-copy-or-rename-file-directly)
3418         (tramp-do-copy-or-rename-file-out-of-band)
3419         (tramp-handle-process-file, tramp-handle-call-process-region)
3420         (tramp-handle-shell-command, tramp-handle-file-local-copy)
3421         (tramp-handle-insert-file-contents, tramp-handle-write-region)
3422         (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
3424         * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
3425         (tramp-fish-handle-make-symbolic-link)
3426         (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
3428         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
3429         Use `tramp-compat-delete-file'.
3431         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
3432         (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
3434         * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
3435         (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
3437         * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
3438         (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
3439         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
3440         `tramp-compat-delete-file'.
3442 2010-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3444         Minor cleanups.
3445         * subr.el (add-minor-mode): Use push.
3446         * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
3447         * emulation/edt.el (edt-select-mode): Simplify.
3449         Use define-minor-mode in more cases.
3450         * term/tvi970.el (tvi970-set-keypad-mode):
3451         * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
3452         (normal-erase-is-backspace-mode):
3453         * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
3454         (set-scroll-bar-mode-1): (Re)move to its sole caller.
3455         (get-scroll-bar-mode): New function.
3456         * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
3458         Use define-minor-mode for less obvious cases.
3459         * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
3460         * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
3461         * international/iso-ascii.el (iso-ascii-mode):
3462         * frame.el (auto-raise-mode, auto-lower-mode):
3463         * composite.el (global-auto-composition-mode): Use define-minor-mode.
3465 2010-05-04  Michael Albinus  <michael.albinus@gmx.de>
3467         * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
3468         in order to see error messages for failed logins.
3470 2010-05-03  Chong Yidong  <cyd@stupidchicken.com>
3472         * diff.el (diff-sentinel):
3474         * epg.el (epg--make-temp-file, epg-decrypt-string)
3475         (epg-verify-string, epg-sign-string, epg-encrypt-string):
3477         * jka-compr.el (jka-compr-partial-uncompress)
3478         (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
3480         * server.el (server-sentinel): Use delete-file's new FORCE arg
3481         (Bug#6070).
3483 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3485         Use define-minor-mode where applicable.
3486         * view.el (view-mode):
3487         * type-break.el (type-break-query-mode)
3488         (type-break-mode-line-message-mode):
3489         * textmodes/reftex.el (reftex-mode):
3490         * term/vt100.el (vt100-wide-mode):
3491         * tar-mode.el (tar-subfile-mode):
3492         * savehist.el (savehist-mode):
3493         * ibuf-ext.el (ibuffer-auto-mode):
3494         * composite.el (auto-composition-mode):
3495         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
3496         Use define-minor-mode.
3497         (vhdl-mode): Use static mode-line format.
3498         (vhdl-mode-line-update): Delete.
3499         (vhdl-create-mode-menu, vhdl-activate-customizations)
3500         (vhdl-hs-minor-mode): Don't bother calling it.
3502 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3504         * simple.el (with-wrapper-hook): Move.
3505         (buffer-substring-filters): Mark obsolete.
3506         (filter-buffer-substring-functions): New variable.
3507         (filter-buffer-substring): Use it.  Remove unused arg `noprops'.
3509         Use a mode-line spec rather than a static string in Semantic.
3510         * cedet/semantic/util-modes.el:
3511         (semantic-minor-modes-format): New var to replace...
3512         (semantic-minor-modes-status): Remove.
3513         (semantic-mode-line-update): Construct a mode-line spec rather than
3514         a static string so that mouse buttons can be used on individual minor
3515         modes and so that semantic-mode-line-update only needs to be called
3516         when global settings are changed.
3517         (semantic-add-minor-mode, semantic-toggle-minor-mode-globally):
3518         Call semantic-mode-line-update.
3519         (semantic-toggle-minor-mode-globally): Don't assume mode is on
3520         minor-mode-alist, check semantic-minor-mode-alist as well.
3521         (semantic-stickyfunc-mode, semantic-show-parser-state-auto-marker)
3522         (semantic-show-parser-state-marker, semantic-show-parser-state-mode)
3523         (semantic-show-unmatched-syntax-mode, semantic-highlight-edits-mode):
3524         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
3525         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
3526         (define-semantic-idle-service, semantic-idle-summary-mode):
3527         * cedet/semantic/decorate/mode.el (semantic-decoration-mode):
3528         Don't call semantic-mode-line-update any more.
3530 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3532         Use define-minor-mode in CEDET where applicable.
3534         * cedet/srecode/mode.el (srecode-minor-mode,global-srecode-minor-mode):
3535         Use define-minor-mode.
3537         * cedet/semantic/util-modes.el (semantic-add-minor-mode):
3538         Remove unused arg `keymap' and code redundant with define-minor-mode.
3539         (semantic-toggle-minor-mode-globally): Only handle arg -1 and 1.
3540         (semantic-stickyfunc-mode, global-semantic-show-unmatched-syntax-mode)
3541         (semantic-highlight-func-mode, global-semantic-show-parser-state-mode)
3542         (global-semantic-highlight-edits-mode, semantic-highlight-edits-mode)
3543         (semantic-show-unmatched-syntax-mode, semantic-show-parser-state-mode)
3544         (global-semantic-stickyfunc-mode, global-semantic-highlight-func-mode):
3545         Use define-minor-mode.
3546         (semantic-stickyfunc-mode-setup, semantic-highlight-edits-mode-setup)
3547         (semantic-show-unmatched-syntax-mode-setup)
3548         (semantic-show-parser-state-mode-setup)
3549         (semantic-highlight-func-mode-setup): Inline into sole caller.
3551         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
3552         (semantic-mru-bookmark-mode): Use define-minor-mode.
3553         (semantic-mru-bookmark-mode-setup): Inline into sole caller.
3555         * cedet/semantic/idle.el (define-semantic-idle-service):
3556         Use define-minor-mode and inline setup function into its sole caller.
3557         (semantic-idle-scheduler-mode-setup)
3558         (semantic-idle-summary-mode-setup): Inline into sole caller.
3559         (global-semantic-idle-scheduler-mode, semantic-idle-scheduler-mode):
3560         Use define-minor-mode.
3562         * cedet/semantic/decorate/mode.el (global-semantic-decoration-mode)
3563         (semantic-decoration-mode): Use define-minor-mode.
3564         (semantic-decoration-mode-setup): Inline into sole caller.
3566         * cedet/ede/dired.el (ede-dired-minor-mode): Initialize in declaration.
3567         (ede-dired-minor-mode): Use define-minor-mode and derived-mode-p.
3568         (ede-dired-add-to-target): Use dolist.
3570 2010-05-01  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
3571             Michael Albinus  <michael.albinus@gmx.de>
3573         Implement compression for inline methods.
3575         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
3576         (tramp-copy-size-limit): Allow also nil.
3577         (tramp-inline-compress-commands): New defconst.
3578         (tramp-find-inline-compress, tramp-get-inline-compress)
3579         (tramp-get-inline-coding): New defuns.
3580         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
3581         replaced by `tramp-get-inline-coding'.
3582         (tramp-handle-file-local-copy, tramp-handle-write-region)
3583         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
3585 2010-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3587         * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
3588         Remove unused functions.
3590         * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
3591         Set find-tag-default-function as a variable rather than a property.
3593         * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
3594         * progmodes/etags.el (tags-completion-at-point-function):
3595         Remove left over interactive spec.  Add autoloading stub.
3596         (complete-tag): Use tags-completion-at-point-function.
3598 2010-04-30  Chong Yidong  <cyd@stupidchicken.com>
3600         * minibuffer.el (tags-completion-at-point-function): Fix return value.
3602 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
3604         * ido.el (ido-init-completion-maps): Remove C-v binding.
3605         (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
3607 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
3609         * minibuffer.el (tags-completion-at-point-function): New function.
3610         (completion-at-point-functions): Use it.
3612         * cedet/semantic.el (semantic-completion-at-point-function):
3613         New function.
3614         (semantic-mode): Use semantic-completion-at-point-function for
3615         completion-at-point-functions instead.
3617         * progmodes/etags.el (complete-tag): Revert last change.
3619 2010-04-29  Alan Mackenzie  <acm@muc.de>
3621         * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
3622         off-by-one error (in end of macro position).
3624 2010-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3626         * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
3627         firefox is absent.  Don't autoload.
3628         (browse-url-galeon-program): Don't autoload.
3630 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
3632         * bindings.el (complete-symbol): Move into minibuffer.el.
3634         * minibuffer.el (complete-tag): Move from etags.el.  If tags
3635         completion cannot be performed, return nil instead of signalling
3636         an error.
3637         (completion-at-point): Make it an alias for complete-symbol.
3638         (complete-symbol): Move from bindings.el, and replace with the
3639         body of completion-at-point.
3641         * progmodes/etags.el (complete-tag): Move to minibuffer.el.
3643         * cedet/semantic.el (semantic-mode): When enabled, add
3644         semantic-ia-complete-symbol to completion-at-point-functions.
3646         * cedet/semantic/ia.el (semantic-ia-complete-symbol): Return nil
3647         if Semantic is not active.
3649 2010-04-28  Michael Albinus  <michael.albinus@gmx.de>
3651         * net/tramp.el (tramp-remote-selinux-p): New defun.
3652         (tramp-handle-file-selinux-context)
3653         (tramp-handle-set-file-selinux-context): Use it.
3655 2010-04-28  Sam Steingold  <sds@gnu.org>
3657         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
3658         `safe-local-variable' if the value is a string or a symbol with
3659         the property `bug-reference-url-format'.
3661 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
3663         * progmodes/bug-reference.el (bug-reference-url-format):
3664         Revert 2010-04-27 change due to security risk.
3666 2010-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3668         Make it possible to locally disable a globally enabled mode.
3669         * simple.el (fundamental-mode): Run fundamental-mode-hook.
3670         * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
3671         rather than kill-all-local-variables so it runs fundamental-mode-hook.
3672         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
3673         Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
3674         that subsequent hooks get a chance to disable it.
3676 2010-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3678         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
3679         Avoid re-enabling a minor mode after the user turned the minor mode
3680         off if MODE-enable-in-buffers is run twice (typically once from
3681         fundamental-mode's after-change-major-mode-hook and a second time from
3682         run-mode-hook's own after-change-major-mode-hook).
3684         * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
3686 2010-04-27  Sam Steingold  <sds@gnu.org>
3688         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
3689         `safe-local-variable' if the value is a string or a function, as
3690         documented and implemented on 2010-04-02.
3692 2010-04-27  Juanma Barranquero  <lekktu@gmail.com>
3694         * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
3695         when method is 'kill.
3697 2010-04-27  Agustín Martín  <agustin.martin@hispalinux.es>
3699         * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
3700         condition in default directory check.
3701         (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
3702         Kill ispell process when killing its associated buffer.
3704 2010-04-27  Jan Djärv  <jan.h.d@swipnet.se>
3706         * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
3707         but we aren't using it.
3709 2010-04-25  Jan Djärv  <jan.h.d@swipnet.se>
3711         * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
3712         checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
3714 2010-04-24  Glenn Morris  <rgm@gnu.org>
3716         * emacs-lisp/authors.el (authors-obsolete-files-regexps):
3717         Ignore VCS-ignore files, and deleted nextstep preferences files.
3718         (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
3719         (authors-ambiguous-files): New list.
3720         (authors-valid-file-names): Add some deleted files.
3721         (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
3722         (authors-disambiguate-file-name): New function.  (Bug#5501)
3723         (authors-canonical-file-name): Doc fix.
3724         Don't warn about obsolete files.
3725         (authors-canonical-file-name, authors-scan-el):
3726         Use authors-disambiguate-file-name.
3728         * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
3729         Add autoload cookies.
3730         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
3731         (generated-autoload-file): Set file-local value to "htmlfontify.el".
3732         * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
3733         They have definitions / compiler macros in cl.el.
3734         (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
3735         Replace manual autoloads with generated ones.
3736         (htmlfontify-unload-rgb-file): Remove autoload.
3737         * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
3739 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3741         * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
3742         (byte-compile-setq-default): Optimize for the
3743         single-var case and don't call byte-compile-form in this case to avoid
3744         inf-loop with byte-compile-set-default.
3746         * progmodes/compile.el (compilation-start): Abbreviate default directory.
3748 2010-04-23  Michael Albinus  <michael.albinus@gmx.de>
3750         Implement SELINUX backends.
3752         * net/tramp.el (tramp-file-name-handler-alist):
3753         Add `file-selinux-context' and `set-file-selinux-context'.
3754         (tramp-handle-file-selinux-context)
3755         (tramp-handle-set-file-selinux-context): New defuns.
3756         (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
3757         Handle PRESERVE-SELINUX-CONTEXT.
3759         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3760         Add `file-selinux-context' and `set-file-selinux-context'.
3761         (tramp-gvfs-handle-file-selinux-context)
3762         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
3763         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
3765         * net/ange-ftp.el (ange-ftp-copy-file):
3766         * net/tramp-fish.el (tramp-fish-handle-copy-file):
3767         * net/tramp-imap.el (tramp-imap-handle-copy-file):
3768         * net/tramp-smb.el (tramp-smb-handle-copy-file):
3769         Add PRESERVE-SELINUX-CONTEXT.
3771 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
3773         Synchronize with Tramp repository.
3775         * net/tramp.el (with-connection-property, tramp-completion-mode-p)
3776         (tramp-action-process-alive, tramp-action-out-of-band)
3777         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
3778         (tramp-exists-file-name-handler): Fix docstring.
3779         (with-progress-reporter): New defmacro.
3780         (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
3781         (tramp-maybe-open-connection): Use it.
3783 2010-04-22  Noah Lavine  <noah549@gmail.com>  (tiny change)
3785         Detect ssh 'ControlMaster' argument automatically in some cases.
3787         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
3788         (tramp-default-method): Use it.
3790 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
3792         * net/tramp.el (tramp-handle-copy-file): Add new optional
3793         parameter `preserve-selinux-context'.
3794         (tramp-file-name-for-operation): Add `set-file-selinux-context'.
3796 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
3798         * net/tramp.el (tramp-completion-handle-file-name-all-completions):
3799         Ensure, that non remote files are still checked.  Oops.
3801 2010-04-21  Michael Albinus  <michael.albinus@gmx.de>
3803         Fix Bug#5840.
3805         * icomplete.el (icomplete-completions): Use `non-essential'.
3807         * net/tramp.el (tramp-connectable-p): New defun.
3808         (tramp-handle-expand-file-name)
3809         (tramp-completion-handle-file-name-all-completions)
3810         (tramp-completion-handle-file-name-completion): Use it.
3812 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3814         * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
3816 2010-04-21  Jan Djärv  <jan.h.d@swipnet.se>
3818         * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
3820         * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
3822         * loadup.el: Load dynamic-setting.el if feature dynamic-setting
3823         is present.
3825         * info.el (info-tool-bar-map): Add labels.
3827         * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
3829         * cus-edit.el (custom-commands): Add labels for tool bar.
3830         (custom-buffer-create-internal, Custom-mode): Adjust for
3831         labels in custom-commands.
3833         * dynamic-setting.el: Renamed from font-setting.el.
3835 2010-04-21  John Wiegley  <jwiegley@gmail.com>
3837         * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
3838         toggles the use of virtual buffers.
3839         (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
3840         (ido-toggle-virtual-buffers): New function.
3842 2010-04-21  Juanma Barranquero  <lekktu@gmail.com>
3844         Use `define-derived-mode'; fix window selection; doc fixes.
3845         * play/tetris.el (tetris, tetris-update-speed-function)
3846         (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
3847         (tetris-move-left, tetris-move-right, tetris-rotate-prev)
3848         (tetris-rotate-next, tetris-end-game, tetris-start-game)
3849         (tetris-pause-game): Fix typos in docstrings.
3850         (tetris-mode-map, tetris-null-map):
3851         Move initialization into declaration.
3852         (tetris-mode): Define with `define-derived-mode';
3853         set show-trailing-whitespace to nil.
3854         (tetris): Prefer window already displaying the "*Tetris*" buffer.
3856 2010-04-21  Karel Klíč  <kklic@redhat.com>
3858         * files.el (backup-buffer): Handle SELinux context, and return it
3859         if a backup was made by renaming.
3860         (backup-buffer-copy): Set SELinux context to the target file.
3861         (basic-save-buffer): Set SELinux context of the newly written file.
3862         (basic-save-buffer-1): Now it also returns any SELinux context.
3863         (basic-save-buffer-2): Set SELinux context of the newly created file,
3864         and return it.
3865         * net/tramp.el (tramp-file-name-for-operation):
3866         Add file-selinux-context.
3868 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3870         Make the log-edit comments use RFC822 format throughout.
3872         * vc.el (vc-checkin, vc-modify-change-comment):
3873         Adjust to new vc-start/finish-logentry.
3874         (vc-find-conflicted-file): New command.
3875         (vc-transfer-file): Adjust to new vc-checkin.
3876         (vc-next-action): Improve scoping.
3878         * vc-hg.el (vc-hg-log-edit-mode): Remove.
3879         (vc-hg-checkin): Remove extra arg.  Use log-edit-extract-headers.
3881         * vc-git.el (vc-git-log-edit-mode): Remove.
3882         (vc-git-checkin): Remove extra arg.  Use log-edit-extract-headers.
3883         (vc-git-commits-coding-system): Rename from git-commits-coding-system.
3885         * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
3886         (vc-start-logentry): Remove argument `extra'.
3887         (vc-finish-logentry): Remove extra args.
3889         * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
3890         (vc-bzr-checkin): Remove extra arg.  Use log-edit-extract-headers.
3891         (vc-bzr-conflicted-files): New function.
3893         * log-edit.el (log-edit-extra-flags)
3894         (log-edit-before-checkin-process): Remove.
3895         (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
3896         (log-edit-headers-alist): New var.
3897         (log-edit-header-contents-regexp): New const.
3898         (log-edit-match-to-eoh): New function.
3899         (log-edit-font-lock-keywords): Use them.
3900         (log-edit): Insert a "Summary:" header as default.
3901         (log-edit-mode): Mark font-lock rules as case-insensitive.
3902         (log-edit-done): Cleanup headers.
3903         (log-view-process-buffer): Remove.
3904         (log-edit-extract-headers): New function to replace it.
3906 2010-04-20  Juanma Barranquero  <lekktu@gmail.com>
3908         * subr.el (default-direction-reversed): Remove obsolescence info.
3910 2010-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3912         * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
3913         windows/frames.
3915         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
3916         I.e. include text after point in the completion region.
3917         Also, return nil when we're not after/in a symbol.
3919         * international/mule-cmds.el (view-hello-file): Don't fiddle with the
3920         default enable-multibyte-characters.
3922 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3924         * international/mule.el: Help the user choose a valid coding-system.
3925         (read-buffer-file-coding-system): New function.
3926         (set-buffer-file-coding-system): Use it.  Prompt the user if the
3927         coding-system cannot encode all the chars.
3929         * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
3930         (vc-bzr-shelve-show, vc-bzr-shelve-apply)
3931         (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
3932         Don't use *vc-bzr-shelve*.
3934 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
3936         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables):
3937         Don't destroy list before using it.
3939 2010-04-19  Dan Nicolaescu  <dann@ics.uci.edu>
3941         Fix the version number for added files.
3942         * vc-hg.el (vc-hg-working-revision): Check if the file is
3943         registered after hg parent fails (Bug#5961).
3945 2010-04-19  Glenn Morris  <rgm@gnu.org>
3947         * htmlfontify.el (htmlfontify-buffer)
3948         (htmlfontify-copy-and-link-dir): Autoload entry points.
3950 2010-04-19  Magnus Henoch  <magnus.henoch@gmail.com>
3952         * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
3953         name relative to the project root (Bug#5960).
3955 2010-04-19  Glenn Morris  <rgm@gnu.org>
3957         * vc-git.el (vc-git-print-log): Doc fix.
3959 2010-04-19  Óscar Fuentes  <ofv@wanadoo.es>
3961         * ido.el (ido-file-internal): Fix 2009-12-02 change.
3963 2010-04-19  Christoph  <cschol2112@googlemail.com>  (tiny change)
3965         * progmodes/grep.el (grep-compute-defaults): Fix handling of host
3966         default settings (Bug#5928).
3968 2010-04-19  Glenn Morris  <rgm@gnu.org>
3970         * progmodes/fortran.el (fortran-match-and-skip-declaration):
3971         New function.
3972         (fortran-font-lock-keywords-3): Use it.  (Bug#1385)
3974 2010-04-19  Kenichi Handa  <handa@m17n.org>
3976         * language/indian.el (malayalam-composable-pattern): Fix previous
3977         change (add U+0D4D "SIGN VIRAMA").
3978         (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
3979         (tamil-composable-pattern): Fix typo in the regexp.
3980         (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
3981         (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
3982         (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
3984 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
3986         * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
3987         paragraph-separate (Bug#5821).
3989 2010-04-19  Juri Linkov  <juri@jurta.org>
3991         Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
3993         * info.el (Info-find-node-2): Comment out code that skips
3994         breadcrumbs line.
3995         (Info-mouse-follow-link): New command.
3996         (Info-link-keymap): New keymap.
3997         (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
3998         Return a string with links instead of inserting breadcrumbs
3999         to the Info buffer.
4000         (Info-fontify-node): Comment out code that inserts breadcrumbs.
4001         Instead of putting the `invisible' text property over the Info
4002         header, make an overlay over the Info header with the `invisible'
4003         property and `after-string' set to the string returned by
4004         `Info-breadcrumbs'.
4006 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
4008         * help.el (help-window-setup-finish): Doc fix (Bug#5830).
4009         Reported by monkey@sandpframing.com.
4011 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4013         * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
4014         (tmm-get-keymap): Add key-binding shortcuts now that they're not
4015         available in the "keyseq cache" any more.
4017         * custom.el (defcustom): Add edebug spec.
4019 2010-04-18  Juri Linkov  <juri@jurta.org>
4021         Test for special mode-class in view-buffer instead of view-file (bug#5513).
4023         * view.el (view-file, view-buffer): Move test for special mode-class
4024         from view-file to view-buffer.
4026         * tar-mode.el (tar-extract): Turn if's into one cond
4027         like in arc-mode.el.
4029 2010-04-18  Juri Linkov  <juri@jurta.org>
4031         Add 7z archive format support (bug#5475).
4033         * arc-mode.el (archive-zip-extract): Try to find 7z executable.
4034         (archive-7z-extract): New defcustom.
4035         (archive-find-type): Add magic string for 7z.
4036         (archive-extract-by-stdout): Add new optional arg `stderr-file'.
4037         If `stderr-file' is non-nil, use `(t stderr-file)' for the
4038         `buffer' arg of `call-process'.
4039         (archive-zip-extract): Check `archive-zip-extract' for "7z" and
4040         call the function `archive-7z-extract' with the variable
4041         `archive-7z-extract' let-bound to `archive-zip-extract'.
4042         (archive-7z-summarize, archive-7z-extract): New functions.
4044         * international/mule.el (auto-coding-alist):
4045         * files.el (auto-mode-alist): Add 7z file extension.
4047 2010-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4049         * loadup.el: Setup hash-cons for pure data.
4051         Fix duplicate entries in cedet's loaddefs.el files.
4052         * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
4053         Should make most file-local generated-autoload-file unnecessary.
4054         (print-readably): Silence warnings.
4055         (autoload-find-destination): Take load-name as an arg to make sure
4056         it's the same as the one that will be in the file.
4057         (autoload-generate-file-autoloads): Adjust to above changes.
4058         Try to make the dataflow a bit simpler.
4060         * cvs-status.el (cvs-refontify): Remove unused.
4062 2010-04-18  Jay Belanger  <jay.p.belanger@gmail.com>
4064         * calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
4066         * calc-bin.el (calc-radix): Have the "O" option turn on
4067         twos-complement mode.
4069 2010-04-17  Jay Belanger  <jay.p.belanger@gmail.com>
4071         * calc-ext.el (calc-init-extensions): Add keybinding for 'calc-option'.
4072         Add `calc-option-prefix-help' to calc-help autoloads.
4073         (calc-inverse): Add "Option" to message, as appropriate.
4074         (calc-hyperbolic): Add "Option" to message, as appropriate.
4075         (calc-option, calc-is-option): New functions.
4077         * calc-help.el (calc-full-help): Add `calc-option-help'.
4078         (calc-option-prefix-help): New function.
4080         * calc-misc.el (calc-help): Add "Option" entry.
4082         * calc.el (calc-local-var-list): Add `calc-option-flag'.
4083         (calc-option-flag): New variable.
4084         (calc-do): Set `calc-option-flag to nil.
4085         (calc-set-mode-line): Add "Opt " as appropriate.
4087 2010-04-16  Juri Linkov  <juri@jurta.org>
4089         Move scrolling commands from simple.el to window.el
4090         because their primitives are implemented in window.c.
4092         * simple.el (scroll-error-top-bottom)
4093         (scroll-up-command, scroll-down-command, scroll-up-line)
4094         (scroll-down-line, scroll-other-window-down)
4095         (beginning-of-buffer-other-window, end-of-buffer-other-window):
4096         * window.el (scroll-error-top-bottom)
4097         (scroll-up-command, scroll-down-command, scroll-up-line)
4098         (scroll-down-line, scroll-other-window-down)
4099         (beginning-of-buffer-other-window, end-of-buffer-other-window):
4100         Move from simple.el to window.el because their primitives are
4101         implemented in window.c.
4103 2010-04-16  Juri Linkov  <juri@jurta.org>
4105         * isearch.el (isearch-lookup-scroll-key): Check both
4106         `isearch-scroll' and `scroll-command' properties.
4107         (scroll-up, scroll-down): Remove `isearch-scroll' property.
4109         * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
4111         * simple.el (scroll-up-command, scroll-down-command)
4112         (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
4114 2010-04-15  Juri Linkov  <juri@jurta.org>
4116         * simple.el (scroll-up-command, scroll-down-command)
4117         (scroll-up-line, scroll-down-line): Put `scroll-command'
4118         property on the these symbols.  Remove them from
4119         `scroll-preserve-screen-position-commands'.
4121         * mwheel.el (mwheel-scroll): Put `scroll-command' and
4122         `isearch-scroll' properties on the `mwheel-scroll' symbol.
4123         Remove it from `scroll-preserve-screen-position-commands'.
4125         * isearch.el (isearch-allow-scroll): Doc fix.
4127 2010-04-15  Michael Albinus  <michael.albinus@gmx.de>
4129         * net/tramp.el (tramp-error-with-buffer): Don't show the
4130         connection buffer when we are in completion mode.
4131         (tramp-file-name-handler): Catch the error for some operations
4132         when we are in completion mode.  This gives the user the chance to
4133         correct the file name in the minibuffer.
4135 2010-04-15  Glenn Morris  <rgm@gnu.org>
4137         * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
4139 2010-04-15  Juanma Barranquero  <lekktu@gmail.com>
4141         Simplify by using `define-derived-mode'.
4142         * info.el (Info-mode):
4143         * calendar/todo-mode.el (todo-mode):
4144         * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
4145         (gomoku-mode-map): Move initialization into declaration.
4147 2010-04-14  Michael Albinus  <michael.albinus@gmx.de>
4149         Fix Bug#5840.
4150         * ido.el (ido-file-name-all-completions-1):
4151         * minibuffer.el (minibuffer-completion-help):
4152         * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
4154 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4156         * simple.el (non-essential): New var.
4158         Add a new field `location' to bookmarks for non-file bookmarks.
4159         * bookmark.el (bookmark-location): Use the new field, if present.
4160         (bookmark-insert-location): Undo last change, not needed any more.
4161         * man.el (Man-bookmark-make-record):
4162         * woman.el (woman-bookmark-make-record): Add `location' field.
4164 2010-04-14  Juri Linkov  <juri@jurta.org>
4166         * simple.el (scroll-error-top-bottom): New defcustom.
4167         (scroll-up-command, scroll-down-command): Use it.  Doc fix.
4169         * emulation/pc-select.el (pc-select-override-scroll-error):
4170         Obsolete in favor of `scroll-error-top-bottom'.
4172 2010-04-14  Juri Linkov  <juri@jurta.org>
4174         * tutorial.el (tutorial--default-keys): Rebind `C-v' to
4175         `scroll-up-command' and `M-v' to `scroll-down-command'.
4177         * emulation/cua-rect.el (cua--init-rectangles):
4178         * forms.el (forms--change-commands):
4179         * image-mode.el (image-mode-map):
4180         Remap scroll-down-command and scroll-up-command
4181         in addition to scroll-down and scroll-up.
4183 2010-04-14  Juri Linkov  <juri@jurta.org>
4185         * mwheel.el (scroll-preserve-screen-position-commands):
4186         Add mwheel-scroll to this list of commands.
4188         * simple.el (scroll-preserve-screen-position-commands):
4189         Add scroll-up-command, scroll-down-command, scroll-up-line,
4190         scroll-down-line to this list of commands.
4192 2010-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4194         * obsolete/complete.el: Move from lisp/complete.el.
4196         * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
4198         * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
4199         to the minor mode function now turns the mode ON unconditionally.
4201 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4203         * vc-dir.el (vc-dir-kill-line): New command.
4204         (vc-dir-mode-map): Bind it to C-k.
4206         * bookmark.el (bookmark-insert-location): Handle a nil filename.
4208         * woman.el: Add bookmark declarations to silence the compiler.
4209         (bookmark-prop-get): Use `man-args' rather than `filename' as a first
4210         step to compatibility between man and woman bookmarks.
4211         Adjust for Man-default-bookmark-title renaming.
4212         (woman-bookmark-jump): Adjust accordingly.  Don't forget to autoload.
4214         * man.el: Add bookmark declarations to silence the compiler.
4215         (Man-name-local-regexp): Make it match NAME as well.
4216         (Man-getpage-in-background): Return the buffer.
4217         (Man-notify-when-ready): Use `case'.
4218         (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
4219         Don't hardcode "NAME".  Simplify.
4220         (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
4221         Rename from Man-bookmark-make-record.
4222         (Man-bookmark-jump): Rename from man-bookmark-jump.  Simplify now that
4223         we have the actual man-args.  Use Man-getpage-in-background rather
4224         than `man' since the arg is already processed.  Let bookmark.el do the
4225         window handling.  Only wait for the relevant process.
4226         Don't forget to autoload.
4228         * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
4230 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4232         * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
4233         New functions.
4234         (woman-mode): Setup bookmark support.
4236         * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
4237         (man-bookmark-jump): New functions.
4238         (Man-mode): Setup bookmark support.
4240 2010-04-10  Jari Aalto  <jari.aalto@cante.net>
4242         * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
4243         recognize ssh-keygen prompt (Bug#2817).
4245 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
4247         * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
4249 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
4251         Synchronize with Tramp repository.
4253         * net/tramp.el (tramp-completion-function-alist)
4254         (tramp-file-name-regexp, tramp-chunksize)
4255         (tramp-local-coding-commands, tramp-remote-coding-commands):
4256         Fix docstring.
4257         (tramp-remote-process-environment): Use `format' instead of `concat'.
4258         (tramp-handle-directory-files-and-attributes)
4259         (tramp-get-remote-path): Use `copy-tree'.
4260         (tramp-handle-file-name-all-completions): Backward/ XEmacs
4261         compatibility: Use `completion-ignore-case' if
4262         `read-file-name-completion-ignore-case' does not exist.
4263         (tramp-do-copy-or-rename-file-directly): Do not use
4264         `tramp-handle-file-remote-p'.
4265         (tramp-do-copy-or-rename-file-out-of-band):
4266         Use `tramp-compat-delete-directory'.
4267         (tramp-do-copy-or-rename-file-out-of-band)
4268         (tramp-compute-multi-hops, tramp-maybe-open-connection):
4269         Use `format-spec-make'.
4270         (tramp-find-foreign-file-name-handler)
4271         (tramp-advice-make-auto-save-file-name)
4272         (tramp-set-auto-save-file-modes): Remove superfluous check for
4273         `stringp'.  This is done inside `tramp-tramp-file-p'.
4274         (tramp-debug-outline-regexp): New defconst.
4275         (tramp-get-debug-buffer): Use it.
4276         (tramp-check-for-regexp): Use (forward-line 1).
4277         (tramp-set-auto-save-file-modes): Adapt version check.
4279         * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
4280         Wrap call of `featurep' for 2nd argument.
4281         (tramp-compat-make-temp-file): Simplify fallback implementation.
4282         (tramp-compat-copy-tree): Remove function.
4283         (tramp-compat-delete-directory): Provide implementation for older
4284         Emacsen.
4286         * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
4287         Do not use `tramp-fish-handle-file-attributes.
4289         * net/trampver.el: Update release number.
4291 2010-04-10  Glenn Morris  <rgm@gnu.org>
4293         * progmodes/compile.el (compilation-save-buffers-predicate):
4294         Add missing :version tag.
4296 2010-04-09  Sam Steingold  <sds@gnu.org>
4298         * progmodes/compile.el (compilation-save-buffers-predicate):
4299         Remove the "autoload" cookie.
4301         * progmodes/bug-reference.el (turn-on-bug-reference-mode)
4302         (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
4303         and `bug-reference-prog-mode' can be used in hooks directly.
4305 2010-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
4307         Add --author support to git commit.
4308         * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
4309         (vc-git-log-edit-mode): New minor mode.
4310         (log-edit-mode, log-edit-extra-flags, log-edit-mode):
4311         New declarations.
4313 2010-04-09  Eric Raymond  <esr@snark.thyrsus.com>
4315         * vc-hooks.el, vc-git.el: Improve documentation comments.
4317 2010-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4319         Fix some of the problems in defsubst* (bug#5728).
4320         * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
4321         (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
4323 2010-04-07  Sam Steingold  <sds@gnu.org>
4325         * progmodes/compile.el (compilation-save-buffers-predicate):
4326         New custom variable.
4327         (compile, recompile): Pass it to `save-some-buffers'.
4329 2010-04-07  Jan Djärv  <jan.h.d@swipnet.se>
4331         * wid-edit.el (widget-choose): Move cursor to the second line of
4332         the buffer (Bug#5695).
4334 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
4336         Add new VC methods: vc-log-incoming and vc-log-outgoing.
4337         * vc.el (vc-print-log-setup-buttons): New function split out from
4338         vc-print-log-internal.
4339         (vc-log-internal-common): New function, a parametrized version of
4340         vc-print-log-internal.
4341         (vc-print-log-internal): Just call vc-log-internal-common with the
4342         right arguments.
4343         (vc-incoming-outgoing-internal):
4344         (vc-log-incoming, vc-log-outgoing): New functions.
4345         (vc-log-view-type): New permanent local variable.
4347         * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
4349         * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
4350         of the dynamic bound vc-short-log.
4351         (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
4353         * vc-git.el (vc-git-log-outgoing): New function.
4354         (vc-git-log-view-mode): Use vc-log-view-type instead
4355         of the dynamic bound vc-short-log.
4357         * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
4358         of the dynamic bound vc-short-log.  Highlight the tag.
4359         (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
4360         (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
4361         (vc-hg-incoming-mode): Remove.
4362         (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
4364 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
4366         Fix default-directory for vc-root-diff.
4367         * vc.el (vc-root-diff): Bind default-directory to the root
4368         directory for the diff command.
4370 2010-04-07  Michael McNamara  <mac@mail.brushroad.com>
4372         * progmodes/verilog-mode.el (verilog-forward-sexp):
4373         (verilog-calc-1): Support "disable fork" and "fork wait" multi
4374         word keywords, suggested by Steve Pearlmutter.
4375         (verilog-pretty-declarations): Support lineup of declarations in
4376         port lists.
4377         (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
4378         fix bug for /* / comments.
4379         (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
4380         Speed up and simplfy as this is never called with a bound.
4381         (verilog-pretty-declarations): Enhance to line up declarations
4382         inside a parameter list, suggested by Alan Morgan.
4383         (verilog-pretty-expr): Tune assignment regular expression match
4384         string for corner cases; also use markers instead of character
4385         number as indent changes the later.
4387 2010-04-07  Wilson Snyder  <wsnyder@wsnyder.org>
4389         * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
4390         as missing keyword.
4391         (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
4392         causing truncation of AUTOWIRE signals.  Reported by Bruce Tennant.
4393         (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
4394         AUTO_TEMPLATEs needing multiple array bits.  Suggested by Bruce
4395         Tennant.
4396         (verilog-keywords):
4397         (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
4398         1800-2009 keywords, including "global.".
4400 2010-04-06  John Wiegley  <jwiegley@gmail.com>
4402         * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
4403         appearing in buffer list (if a live buffer name matched a recentf
4404         file basename).  Should use uniquify to offer a real solution.
4406 2010-04-06  John Wiegley  <jwiegley@gmail.com>
4408         * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
4409         comment to code, and add a :version tag.
4410         (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
4412 2010-04-06  Juanma Barranquero  <lekktu@gmail.com>
4414         Enable recentf-mode if using virtual buffers.
4415         * ido.el (recentf-list): Declare for byte-compiler.
4416         (ido-virtual-buffers): Move up to silence byte-compiler. Add docstring.
4417         (ido-make-buffer-list): Simplify.
4418         (ido-add-virtual-buffers-to-list): Simplify.  Enable recentf-mode.
4420 2010-04-05  Juri Linkov  <juri@jurta.org>
4422         Scrolling commands which scroll a line instead of full screen.
4423         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
4425         * simple.el (scroll-up-line, scroll-down-line): New commands.
4426         Put property isearch-scroll=t on them.
4428         * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
4429         Remove commands.
4431 2010-04-05  Juri Linkov  <juri@jurta.org>
4433         Scrolling commands which do not signal errors at top/bottom.
4434         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
4436         * simple.el (scroll-up-command, scroll-down-command): New commands.
4437         Put property isearch-scroll=t on them.
4439         * bindings.el (global-map): Rebind [prior] from `scroll-down' to
4440         `scroll-down-command' and [next] from `scroll-up' to
4441         `scroll-up-command'.
4443         * emulation/cua-base.el: Put property CUA=move on
4444         `scroll-up-command' and `scroll-down-command'.
4445         (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
4446         and `scroll-down-command' to `cua-scroll-down'.
4448 2010-04-05  Juanma Barranquero  <lekktu@gmail.com>
4450         * help.el (describe-mode): Return nil.
4452 2010-04-04  John Wiegley  <jwiegley@gmail.com>
4454         * ido.el (ido-use-virtual-buffers): New variable to indicate
4455         whether "virtual buffer" support is enabled for IDO.
4456         (ido-virtual): Face used to indicate virtual buffers in the list.
4457         (ido-buffer-internal): If a buffer is chosen, and no such buffer
4458         exists, but a virtual buffer of that name does (which would be why
4459         it was in the list), recreate the buffer by reopening the file.
4460         (ido-make-buffer-list): If virtual buffers are being used, call
4461         `ido-add-virtual-buffers-to-list' before the make list hook.
4462         (ido-virtual-buffers): New variable which contains a copy of the
4463         current contents of the `recentf-list', albeit pared down for the
4464         sake of speed, and with proper faces applied.
4465         (ido-add-virtual-buffers-to-list): Using the `recentf-list',
4466         create a list of "virtual buffers" to present to the user in
4467         addition to the currently open set.  Note that this logic could
4468         get rather slow if that list is too large.  With the default
4469         `recentf-max-saved-items' of 200, there is little speed penalty.
4471 2010-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4473         * font-lock.el: Require CL when compiling.
4474         (font-lock-turn-on-thing-lock): Use `case'.
4476 2010-04-03  Eli Zaretskii  <eliz@gnu.org>
4478         * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
4479         Zaretskii.
4481 2010-04-02  Juanma Barranquero  <lekktu@gmail.com>
4483         * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
4484         (semantic-create-imenu-directory-index): Fix typos in docstrings.
4485         (semantic-imenu-goto-function): Reflow docstring.
4487 2010-04-02  Juri Linkov  <juri@jurta.org>
4489         * ehelp.el (electric-help-orig-major-mode):
4490         New buffer-local variable.
4491         (electric-help-mode): Set it to original major-mode.  Doc fix.
4492         (with-electric-help): Use `electric-help-orig-major-mode' instead
4493         of (default-value 'major-mode).  Doc fix.
4494         http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
4496 2010-04-02  Sam Steingold  <sds@gnu.org>
4498         * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
4499         `vc-hg-command' with a list of flags.
4501         * progmodes/bug-reference.el (bug-reference-bug-regexp):
4502         Also accept "patch" and "RFE".
4503         (bug-reference-fontify): `bug-reference-url-format' can also be a
4504         function to be able to handle the bug kind.
4505         (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
4507 2010-04-02  Jan Djärv  <jan.h.d@swipnet.se>
4509         * tmm.el (tmm-get-keymap): Check with symbolp before passing
4510         value to fboundp, it may not be a symbol.
4512 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
4514         * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
4516 2010-03-31  Juri Linkov  <juri@jurta.org>
4518         * simple.el (next-line, previous-line): Re-throw a signal
4519         with `signal' instead of using `ding'.
4520         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
4522 2010-03-31  Juri Linkov  <juri@jurta.org>
4524         * simple.el (keyboard-escape-quit): Raise deselecting the active
4525         region higher than exiting the minibuffer.
4526         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
4528 2010-03-31  Juri Linkov  <juri@jurta.org>
4530         * image.el (image-animated-p): Use `image-metadata' instead of
4531         `image-extension-data'.  Get GIF extenstion data from metadata
4532         property `extension-data'.
4534 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
4536         * simple.el (append-to-buffer): Simplify.
4538 2010-03-31  Tomas Abrahamsson  <tab@lysator.liu.se>
4540         * textmodes/artist.el (artist-mode): Fix typo in docstring.
4541         Reported by Alex Schröder <kensanata@gmail.com>.  (Bug#5807)
4543 2010-03-31  Kenichi Handa  <handa@m17n.org>
4545         * language/sinhala.el (composition-function-table): Fix regexp for
4546         the new Unicode specification.
4548         * language/indian.el (devanagari-composable-pattern)
4549         (tamil-composable-pattern, kannada-composable-pattern)
4550         (malayalam-composable-pattern): Adjust for the new Unicode
4551         specification.
4552         (bengali-composable-pattern, gurmukhi-composable-pattern)
4553         (gujarati-composable-pattern, oriya-composable-pattern)
4554         (telugu-composable-pattern): New variables to cope with the new
4555         Unicode specification.  Use them in composition-function-table.
4557 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
4559         Make tmm-menubar work for the Buffers menu again (bug#5726).
4560         * tmm.el (tmm-prompt): Also handle keymap entries in the form of
4561         vectors rather than cons cells, as used in menu-bar-update-buffers.
4563 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
4565         * progmodes/js.el (js-auto-indent-flag, js-mode-map)
4566         (js-insert-and-indent): Revert 2009-08-15 change, restoring
4567         electric punctuation for "{}();,:" (Bug#5586).
4569         * mail/sendmail.el (mail-default-directory): Doc fix.
4571 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
4573         * mail/sendmail.el (mail-default-directory): Doc fix.
4575 2010-03-31  Eli Zaretskii  <eliz@gnu.org>
4577         * subr.el (version-regexp-alist, version-to-list)
4578         (version-list-<, version-list-=, version-list-<=)
4579         (version-list-not-zero, version<, version<=, version=): Doc fix.
4580         (Bug#5744).
4582 2010-02-31  Dan Nicolaescu  <dann@ics.uci.edu>
4584         * vc.el (vc-root-diff): Doc fix.
4586 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
4588         * vc.el (vc-print-log, vc-print-root-log): Doc fix.
4590         * simple.el (append-to-buffer): Fix last change.
4592 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
4594         * simple.el (append-to-buffer): Ensure that point is preserved if
4595         BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
4596         (Bug#5749)
4598 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
4600         * files.el (auto-mode-case-fold): Change default to t.
4602 2010-03-30  Juri Linkov  <juri@jurta.org>
4604         * dired-x.el (dired-omit-mode): Doc fix.
4606 2010-03-30  Juri Linkov  <juri@jurta.org>
4608         * replace.el (occur-accumulate-lines): Move occur-engine related
4609         functions `occur-accumulate-lines' and `occur-engine-add-prefix'
4610         to be located after `occur-engine'.
4612 2010-03-30  Juri Linkov  <juri@jurta.org>
4614         Make occur handle multi-line matches cleanly with context.
4615         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
4617         * replace.el (occur-accumulate-lines): Add optional arg `pt'.
4618         (occur-engine): Add local variables `ret', `prev-after-lines',
4619         `prev-lines'.  Use more arguments for `occur-context-lines'.
4620         Set first elem of its returned list to `data', and the second elem
4621         to `prev-after-lines'.  Don't print the separator line.
4622         In the end, print remaining context after-lines.
4623         (occur-context-lines): Add new arguments `begpt', `endpt',
4624         `lines', `prev-lines', `prev-after-lines'.  Rewrite to combine
4625         after-lines of the previous match with before-lines of the
4626         current match and not overlap them.  Return a list with two
4627         values: the output line and the list of context after-lines.
4629 2010-03-30  Juri Linkov  <juri@jurta.org>
4631         * replace.el (occur-accumulate-lines): Fix a bug where the first
4632         context line at the beginning of the buffer was missing.
4634 2010-03-30  Eli Zaretskii  <eliz@gnu.org>
4636         * files.el: Make bidi-display-reordering safe variable for boolean
4637         values.
4639 2010-03-29  Phil Hagelberg  <phil@evri.com>
4640             Chong Yidong  <cyd@stupidchicken.com>
4642         * subr.el: Extend progress reporters to perform "spinning".
4643         (progress-reporter-update, progress-reporter-do-update):
4644         Handle non-numeric value arguments.
4645         (progress-reporter--pulse-characters): New var.
4647 2010-03-28  Chong Yidong  <cyd@stupidchicken.com>
4649         * progmodes/compile.el (compilation-start): Fix regexp detection
4650         of initial cd command (Bug#5771).
4652 2010-03-28  Stefan Guath  <stefan@automata.se>  (tiny change)
4654         * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
4656 2010-03-27  Nick Roberts  <nickrob@snap.net.nz>
4658         Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
4659         * lisp/progmodes/gdb-mi.el: Restore.
4660         * lisp/progmodes/gdb-ui.el: Remove.
4661         * lisp/progmodes/gud.el: Re-accommodate for gdb-mi.el.
4663 2010-03-25  Glenn Morris  <rgm@gnu.org>
4665         * desktop.el (desktop-save-buffer-p): Don't mistakenly include
4666         all dired buffers, even tramp ones.  (Bug#5755)
4668 2010-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4670         Add "union tags" in mpc.el.
4671         * mpc.el: Remove backward compatibility code.
4672         (mpc-browser-tags): Change default.
4673         (mpc--find-memoize-union-tags): New var.
4674         (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
4675         (mpc-cmd-find): Handle the case where the playlist does not exist.
4676         Handle union-tags.
4677         (mpc-cmd-list): Use mpc-cmd-special-tag-p.  Handle union-tags.
4678         (mpc-cmd-add): Use mpc-cmd-flush.
4679         (mpc-tagbrowser-tag-name): New fun.
4680         (mpc-tagbrowser-buf): Use it.
4681         (mpc-songs-refresh): Use cond.  Move to point-min as a fallback.
4683 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4685         Misc cleanup.
4686         * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
4687         Use replace-regexp-in-string.
4688         (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
4689         (makefile-imake-mode-syntax-table): Move init into defvar.
4690         (makefile-mode): Use define-derived-mode.
4692         * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
4693         (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
4694         not be present any more.
4696 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
4698         * faces.el (set-face-attribute): Fix typo in docstring.
4699         (face-valid-attribute-values): Reflow docstring.
4701         * cedet/srecode/table.el (srecode-template-table): Fix docstring typo.
4703 2010-03-24  Glenn Morris  <rgm@gnu.org>
4705         * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
4707 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
4709         * indent.el (indent-for-tab-command): Doc fix.
4711 2010-03-24  Alan Mackenzie  <acm@muc.de>
4713         * progmodes/cc-engine.el (c-remove-stale-state-cache):
4714         Fix off-by-one error.  Fixes bug #5747.
4716 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
4718         * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
4719         (image-dired-read-comment): Doc fix.
4721         * json.el (json-object-type, json-array-type, json-key-type)
4722         (json-false, json-null, json-read-number):
4723         * minibuffer.el (completion-in-region-functions):
4724         * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
4725         (cal-tex-cursor-week):
4726         * emacs-lisp/trace.el (trace-function):
4727         * eshell/em-basic.el (eshell/printnl):
4728         * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
4729         (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
4730         * obsolete/levents.el (allocate-event, event-key, event-object)
4731         (event-point, event-process, event-timestamp, event-to-character)
4732         (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
4733         * textmodes/reftex-vars.el (reftex-index-macros-builtin)
4734         (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
4735         (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
4736         (reftex-highlight-selection): Fix typos in docstrings.
4738 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
4740         * minibuffer.el (completion-in-region-functions): Fix docstring typos.
4742 2010-03-24  Glenn Morris  <rgm@gnu.org>
4744         * mail/rmail.el (rmail-highlight-face): Restore option deleted
4745         2008-02-13 without comment; mark it obsolete.
4746         (rmail-highlight-headers): Use rmail-highlight-face once more.
4748 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
4750         * woman.el (woman2-process-escapes): Only consume the newline if
4751         the filler character is on a line by itself (Bug#5729).
4753 2010-03-24  Kenichi Handa  <handa@m17n.org>
4755         * language/indian.el (devanagari-composable-pattern): Add more
4756         consonants.
4758 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
4760         * net/trampver.el: Update release number.
4762 2010-03-24  Glenn Morris  <rgm@gnu.org>
4764         * Makefile.in (ELCFILES): Add cedet/semantic/imenu.el.
4766 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
4768         * net/tramp.el (tramp-find-executable):
4769         Use `tramp-get-connection-buffer'.  Make the regexp for checking
4770         output of "wc -l" more robust.
4771         (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
4772         (tramp-open-connection-setup-interactive-shell): Remove workaround
4773         for OpenSolaris bug, it is not needed anymore.
4775 2010-03-24  Eric M. Ludlam  <zappo@gnu.org>
4777         * cedet/semantic/imenu.el: New file, from the CEDET repository
4778         (Bug#5412).
4780 2010-03-24  Glenn Morris  <rgm@gnu.org>
4782         * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie.  (Bug#4427)
4784 2010-03-24  Wilson Snyder  <wsnyder@wsnyder.org>
4786         * files.el (auto-mode-alist): Accept more verilog file patterns.
4788 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4790         * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
4792 2010-03-24  Glenn Morris  <rgm@gnu.org>
4794         * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
4795         log-edit-before-checkin-process.
4797         * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
4799         * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
4801         * vc-dispatcher.el (vc-start-logentry): Doc fix.
4802         (log-view-process-buffer, log-edit-extra-flags): Declare.
4804         * log-edit.el (log-edit-before-checkin-process): Doc fix.
4806         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
4807         Consistently check ede-object is bound throughout.
4809         * cedet/ede/project-am.el (ede-shell-run-something): Declare.
4811 2010-03-23  Sam Steingold  <sds@gnu.org>
4813         Fix bug#5620: recalculate all markers on compilation buffer
4814         modifications, not on file modifications.
4815         * progmodes/compile.el (buffer-modtime): New buffer-local variable:
4816         the buffer modification time, for buffers not associated with files.
4817         (compilation-mode): Create it.
4818         (compilation-filter): Update it.
4819         (compilation-next-error-function): Use it instead of
4820         `visited-file-modtime' for timestamp.
4822 2010-03-23  Juri Linkov  <juri@jurta.org>
4824         Implement Occur multi-line matches.
4825         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
4827         * replace.el (occur): Doc fix.
4828         (occur-engine): Set `begpt' to the beginning of the first line.
4829         Set `endpt' to the end of the last match line.  At first, count
4830         line numbers between `origpt' and `begpt'.  Split out code from
4831         `out-line' variable to new let-bindings `match-prefix' and
4832         `match-str'.  In `out-line' add non-numeric prefix to all
4833         non-first lines of multi-line matches.  Finally, count lines
4834         between `begpt' and `endpt' and add to `lines'.
4836 2010-03-23  Juri Linkov  <juri@jurta.org>
4838         * replace.el (occur-accumulate-lines, occur-engine):
4839         Use `occur-engine-line' instead of duplicate code.
4840         (occur-engine-line): New function created from duplicate code
4841         in `occur-accumulate-lines' and `occur-engine'.
4843         * replace.el (occur-engine-line): Add optional arg `keep-props'.
4844         (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
4846 2010-03-23  Juri Linkov  <juri@jurta.org>
4848         * finder.el: Remove TODO tasks.
4850         * info.el (Info-finder-find-node): Add node "all"
4851         with all package info.  Handle a list of multiple keywords
4852         separated by comma.
4853         (info-finder): In interactive use with a prefix argument,
4854         use `completing-read-multiple' to read a list of keywords
4855         separated by comma.
4857 2010-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4859         Add a new completion style `substring'.
4860         * minibuffer.el (completion-basic--pattern): New function.
4861         (completion-basic-try-completion, completion-basic-all-completions):
4862         Use it.
4863         (completion-substring--all-completions)
4864         (completion-substring-try-completion)
4865         (completion-substring-all-completions): New functions.
4866         (completion-styles-alist): New style `substring'.
4868 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4870         Get rid of .elc files after removal of the corresponding .el.
4871         * Makefile.in (compile-clean): New target.
4872         (compile-main): Use it.
4874 2010-03-22  Jan Djärv  <jan.h.d@swipnet.se>
4876         * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
4877         don't do make there.  When compiling with separate object dir, there
4878         is no Makefile there.
4880 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4882         Get rid of the ELCFILES abomination, again.
4883         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
4884         (all, compile): Don't call compile-last.
4885         (compile-main): Build the "elcfiles" list dynamically.
4886         (compile-targets): New (internal) target.
4888 2010-03-21  Andreas Schwab  <schwab@linux-m68k.org>
4890         * Makefile.in (top_srcdir): Define.
4891         (abs_top_builddir): Define.
4892         (srcdir): Don't append `/..'.
4893         (EMACS): Use ${abs_top_builddir}.
4894         (all, compile, compile-always, compile-last): Don't set emacswd.
4895         (update-subdirs, update-authors): Use $(top_srcdir) instead of
4896         $(srcdir).
4897         (lisp): Use $(srcdir) instead of @srcdir@.
4899 2010-03-21  Juri Linkov  <juri@jurta.org>
4901         Fix message of multi-line occur regexps and multi-buffer header lines.
4902         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
4904         * replace.el (occur-1): Don't display regexp if it is longer
4905         than window-width.  Use `query-replace-descr' to display regexp.
4906         (occur-engine): Don't display regexp in the buffer header for
4907         multi-buffer occur.  Display a separate header line with total
4908         match count and regexp for multi-buffer occur.
4909         Use `query-replace-descr' to display regexp.
4911 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
4913         * net/secrets.el: Fix parenthesis.
4914         (secrets-enabled): Fix parenthesis.
4916 2010-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4918         Use more relative file and directory names.
4919         * Makefile.in (EMACS): Arrange for it to work when we chdir.
4920         (setwins, setwins_almost, setwins_for_subdirs):
4921         Don't `cd'; output relative names.
4922         (all, compile, compile-always, compile-last): Set emacswd.
4923         (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
4924         Just cd to the lisp source dir so we can use relative file names.
4926         * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
4928 2010-03-20  Glenn Morris  <rgm@gnu.org>
4930         * textmodes/rst.el: Use faces for font-lock customization, and make the
4931         old -face variables obsolete.
4932         (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
4933         (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
4934         (rst-block-face, rst-external-face, rst-definition-face)
4935         (rst-directive-face, rst-comment-face, rst-emphasis1-face)
4936         (rst-emphasis2-face, rst-literal-face, rst-reference-face):
4937         Make obsolete.
4938         (rst-font-lock-keywords-function): Update for above changes.
4940 2010-03-20  Juri Linkov  <juri@jurta.org>
4942         * s-region.el:
4943         * obsolete/s-region.el: Move to obsolete.
4945 2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
4947         * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
4949 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
4951         * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
4953 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
4955         Add special markup processing for commit logs.
4956         * log-edit.el (log-edit-extra-flags): New variable.
4957         (log-edit): Add new argument MODE.  Use that mode when non-nil
4958         instead of the log-view-mode.
4959         (log-view-process-buffer): New function.
4961         * vc.el: Document that the checkin method takes optional
4962         arguments.  Document new backend specific method: log-view-mode.
4963         (vc-default-log-edit-mode): New function.
4964         (vc-checkin): Use a backend specific log-view-mode.
4965         Pass extra arguments to the checkin method.
4966         (vc-modify-change-comment): Pass a dummy extra argument.
4968         * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
4969         log-edit.
4970         (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
4971         (vc-finish-logentry): Process the log buffer before passing it
4972         down.  Pass log-edit-extra-flags.
4974         * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
4975         command.
4976         (log-edit-extra-flags, log-edit-before-checkin-process):
4977         New declarations.
4979         * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
4980         command.
4981         (log-edit-extra-flags, log-edit-before-checkin-process):
4982         New declarations.
4983         (vc-hg-log-edit-mode): New derived mode.
4985         * vc-arch.el (vc-arch-checkin):
4986         * vc-cvs.el (vc-cvs-checkin):
4987         * vc-git.el (vc-git-checkin):
4988         * vc-mtn.el (vc-mtn-checkin):
4989         * vc-rcs.el (vc-rcs-checkin):
4990         * vc-sccs.el (vc-sccs-checkin):
4991         * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
4993 2010-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4995         * outline.el (hide-sublevels): Don't hide trailing newline (and fix
4996         parent typo).
4998 2010-03-19  Glenn Morris  <rgm@gnu.org>
5000         * password-cache.el (password-cache, password-cache-expiry): Autoload.
5002 2010-03-18  Glenn Morris  <rgm@gnu.org>
5004         * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
5006         * replace.el (query-replace-history): Give it a doc string.
5007         (map-query-replace-regexp): Use query-replace-from-history-variable
5008         and query-replace-to-history-variable.
5010         * mail/hashcash.el (declare-function): Remove duplicate definition.
5012         * mail/emacsbug.el (report-emacs-bug-pretest-address):
5013         Make it an obsolete alias for report-emacs-bug-address.
5014         (message-strip-special-text-properties): Declare.
5015         (report-emacs-bug): Remove test for a pretest bug address.
5016         Combine message-mode-specific code.
5018         * mail/supercite.el: Don't require sendmail.
5019         (mh-in-header-p): Declare rather than using with-no-warnings.
5020         (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
5021         mail-header-end.  Don't bind mysterious variable `kill-lines-magic'.
5023         * calendar/cal-french.el: Convert to utf-8.
5025         * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
5026         Emacs scripts.
5028 2010-03-16  Michael Albinus  <michael.albinus@gmx.de>
5030         * net/secrets.el (secrets-enabled): New variable.  Use it instead
5031         of a subfeature.
5033 2010-03-15  Michael Albinus  <michael.albinus@gmx.de>
5035         * net/secrets.el (top): Register the D-Bus signals only when the
5036         service "org.freedesktop.secrets" can be pinged.
5037         Provide subfeature `enabled'.
5039 2010-03-14  Juri Linkov  <juri@jurta.org>
5041         Add finder unknown keywords.
5043         * finder.el (finder-unknown-keywords): New function.
5045         * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
5046         to create a Finder node with unknown keywords.
5048 2010-03-14  Juri Linkov  <juri@jurta.org>
5050         * finder.el (finder-compile-keywords): Replace `princ' with
5051         `prin1' on a list of symbols interned from keyword strings.
5053         * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
5054         a comma, then split keywords using a comma and optional whitespace.
5055         Otherwise, split by whitespace.
5057         * complete.el:
5058         * face-remap.el:
5059         * log-view.el:
5060         * net/hmac-def.el:
5061         * net/hmac-md5.el:
5062         * net/netrc.el:
5063         * progmodes/mixal-mode.el: Fix keywords.
5065 2010-03-13  Michael Albinus  <michael.albinus@gmx.de>
5067         * Makefile.in (ELCFILES): Add net/secrets.elc.
5069         * net/secrets.el: New file.
5071 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
5073         * facemenu.el (list-colors-display, list-colors-print): New arg
5074         callback.  Use it to allow selecting colors.
5076         * wid-edit.el (widget-image-insert): Insert image prop even if the
5077         current display is non-graphic.
5078         (widget-field-value-set): New fun.
5079         (editable-field): Use it.
5080         (widget-field-value-get): Clean up unused var.
5081         (widget-color-value-create, widget-color--choose-action):
5082         New funs.  Allow using list-colors-display to choose color.
5084 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
5086         * cus-edit.el: Resort topmost custom groups.
5087         (custom-buffer-sort-alphabetically): Default to t.
5088         (customize-apropos): Use apropos-parse-pattern.
5089         (custom-search-field): New var.
5090         (custom-buffer-create-internal): Add custom-apropos search field.
5091         (custom-add-parent-links): Don't display parent doc.
5092         (custom-group-value-create): Don't sort top-level custom group.
5093         (custom-magic-value-create): Show visibility button before option name.
5095         (custom-variable-state): New fun, from custom-variable-state-set.
5096         (custom-variable-state-set): Use it.
5097         (custom-group-value-create): Hide options with standard values
5098         using the :hidden-states property.  Use progress reporter.
5100         (custom-show): Simplify.
5101         (custom-visibility): Disable images by default.
5102         (custom-variable): New property :hidden-states.
5103         (custom-variable-value-create): Enable images for
5104         custom-visibility widgets.  Use :hidden-states property to
5105         determine initial visibility.
5107         * wid-edit.el (widget-image-find): Give images center ascent.
5108         (visibility): Add :on-image and :off-image properties.
5109         (widget-visibility-value-create): Use them.
5111 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
5113         * cus-edit.el (processes): Remove from development group.
5114         (oop, hypermedia): Delete group.
5115         (comm): Promote to top-level group.
5117         * net/browse-url.el (browse-url):
5118         * net/xesam.el (xesam):
5119         * net/tramp.el (tramp):
5120         * net/goto-addr.el (goto-address):
5121         * net/ange-ftp.el (ange-ftp): Put in comm group.
5123         * view.el (view): Remove from editing group.
5125         * uniquify.el (uniquify): Put in files group.
5127         * net/browse-url.el (browse-url):
5128         * ps-print.el (postscript): Put in external group.
5130         * cus-edit.el (outlines):
5131         * textmodes/text-mode.el (text-mode-hook):
5132         * textmodes/table.el (table):
5133         * textmodes/picture.el (picture):
5134         * outline.el (outlines): Put in wp group.
5136         * nxml/nxml-mode.el (nxml): Remove from wp group.
5138         * net/tramp-imap.el (tramp-imap): Put in tramp group.
5140         * mail/metamail.el (metamail): Remove from hypermedia group.
5142         * cus-edit.el (abbrev):
5143         * whitespace.el (whitespace):
5144         * vcursor.el (vcursor):
5145         * reveal.el (reveal):
5146         * hl-line.el (hl-line): Put in convenience group.
5148         * epg-config.el (epg): Put in data group.
5150         * emulation/pc-select.el (pc-select): Put in emulations group.
5152         * calculator.el (calculator): Put in applications group.
5154 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
5156         Add .dir-locals.el support for file-less buffers.
5157         * files.el (hack-local-variables): Split out code to apply local
5158         variable settings ...
5159         (hack-local-variables-apply): ... here.  New function.
5160         (hack-dir-local-variables): Use the default directory for when the
5161         buffer does not have an associated file.
5162         (hack-dir-local-variables-non-file-buffer): New function.
5163         * diff-mode.el (diff-mode):
5164         * vc-annotate.el (vc-annotate-mode):
5165         * vc-dir.el (vc-dir-mode):
5166         * log-edit.el (log-edit-mode):
5167         * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
5169 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
5171         Add support for shelving snapshots and for showing shelves.
5172         * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
5173         (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
5174         New functions.
5175         (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
5176         (vc-bzr-extra-menu-map): Map them.
5178 2010-03-11  Glenn Morris  <rgm@gnu.org>
5180         * cus-edit.el (customize-changed-options-previous-release):
5181         Bump to 23.1.
5183         * image.el (image-animate-max-time): Fix :version tag.
5185 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
5187         * Branch for 23.2.
5189 2010-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5191         * vc-git.el (vc-git-revision-table): Include remote branches.
5193 2010-03-10  Kim F. Storm  <storm@cua.dk>
5195         Animated image API.
5196         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
5198         * image.el (image-animate-max-time): New defcustom.
5199         (image-animated-types): New defconst.
5200         (create-animated-image, image-animate-timer)
5201         (image-animate-start, image-animate-stop, image-animate-timeout)
5202         (image-animated-p): New functions.
5204         * image-mode.el (image-toggle-display-image):
5205         Replace `create-image' with `create-animated-image'.
5207 2010-03-09  Miles Bader  <miles@gnu.org>
5209         * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
5210         instead of "format:"; this ensures that the output is
5211         newline-terminated.
5213 2010-03-08  Chong Yidong  <cyd@stupidchicken.com>
5215         * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
5216         that all errors are caught, and that the return value is always a
5217         list (Bug#5692).
5219 2010-03-08  Kenichi Handa  <handa@m17n.org>
5221         * language/misc-lang.el (windows-1256): New coding system.
5222         (cp1256): New alias of windows-1256 (bug#5690).
5224 2010-03-07  Andreas Schwab  <schwab@linux-m68k.org>
5226         * mail/rfc822.el (rfc822-addresses): Move catch clause down around
5227         call to rfc822-bad-address.  (Bug#5692)
5229 2010-03-07  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
5231         * vc-git.el (vc-git-annotate-extract-revision-at-line):
5232         Use vc-git-root as default directory for revision path (Bug#5657).
5234 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
5236         * calculator.el (calculator): Don't bind split-window-keep-point
5237         (Bug#5674).
5239 2010-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5241         * vc-git.el: Re-flow to fit into 80 columns.
5242         (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
5243         Remove spurious `quote' element in each case alternative.
5244         (vc-git-show-log-entry): Use prog1.
5245         (vc-git-after-dir-status-stage): Remove unused var `remaining'.
5247 2010-03-06  Glenn Morris  <rgm@gnu.org>
5249         * cedet/semantic/grammar.el (semantic-grammar-header-template):
5250         Update template copyright to GPLv3+.
5252 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5254         * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
5256 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
5258         * macros.el (insert-kbd-macro): Look up keyboard macro using the
5259         definition, not the name (Bug#5481).
5261 2010-03-03  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
5263         * subr.el (momentary-string-display): Don't overwrite the MESSAGE
5264         argument with a local variable.  (Bug#5670)
5266 2010-03-02  Juri Linkov  <juri@jurta.org>
5268         * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
5270 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
5272         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
5273         error when FILENAME and NEWNAME are existing remote directories.
5275         * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
5276         parameter DIR-FLAG.
5278 2010-03-02  Glenn Morris  <rgm@gnu.org>
5280         * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
5281         of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
5283 2010-03-01  Kenichi Handa  <handa@m17n.org>
5285         * language/burmese.el (burmese-composable-pattern): Rename from
5286         myanmar-composable-pattern.
5288         * international/characters.el (script-list):
5289         * international/fontset.el (script-representative-chars):
5290         Change myanmar to burmese.
5291         (otf-script-alist): Likewise.
5292         (setup-default-fontset): Likewise.  Re-fix :otf spec.
5294 2010-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5296         * menu-bar.el (menu-bar-manuals-menu): Fix typo.
5298 2010-02-28  Jan Djärv  <jan.h.d@swipnet.se>
5300         * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
5302 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
5304         * net/tramp.el (tramp-handle-write-region): START can be a string.
5305         Take care in the checks.  Reported by Dan Davison
5306         <davison@stats.ox.ac.uk>.
5308 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
5310         * net/dbus.el (dbus-introspect, dbus-get-property)
5311         (dbus-set-property, dbus-get-all-properties):
5312         Use `dbus-call-method' when noninteractive.  (Bug#5645)
5314 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
5316         * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
5317         * emacs-lisp/elint.el (elint-add-required-env):
5318         * cedet/semantic/db-find.el
5319         (semanticdb-find-translate-path-brutish-default):
5320         * cedet/ede/make.el (ede-make-check-version):
5321         * calendar/icalendar.el (icalendar--add-diary-entry):
5322         * calc/calcalg2.el (math-tracing-integral):
5323         * files.el (recover-session-finish): Use with-current-buffer
5324         instead of save-excursion.
5326 2010-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5328         Fix in-buffer completion when after-change-functions modify the buffer.
5329         * minibuffer.el (completion--replace): New function.
5330         (completion--do-completion): Use it and use relative movement.
5332 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
5334         * international/fontset.el (setup-default-fontset): Fix :otf spec.
5336 2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
5338         * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
5339         Allow the characters _<> in the stack entry (Bug#5653).
5341 2010-02-26  Kenichi Handa  <handa@m17n.org>
5343         * language/burmese.el: Fix entries in composition-function-table.
5344         (myanmar-composable-pattern): New variable.
5346         * international/fontset.el (setup-default-fontset): Add an entry
5347         for myanmar.
5349         * international/characters.el (script-list): Add Myanmar
5350         Extended-A.
5352 2010-02-26  Glenn Morris  <rgm@gnu.org>
5354         * custom.el (custom-initialize-delay): Doc fix.
5356         * mail/sendmail.el (send-mail-function): Autoload the call
5357         to custom-initialize-delay, not otherwise preserved in loaddefs.el.
5359 2010-02-24  Chong Yidong  <cyd@stupidchicken.com>
5361         * files.el (hack-local-variables-filter): For eval forms, also
5362         check safe-local-variable-p (Bug#5636).
5364 2010-02-24  Eduard Wiebe  <usenet@pusto.de>
5366         * javascript.el (wisent-javascript-jv-expand-tag): Avoid c(ad)ddr
5367         and use c(ad)r of cddr (Bug#5640).
5369 2010-02-22  Michael Albinus  <michael.albinus@gmx.de>
5371         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
5372         setting the modes by `ignore-errors'.  It might fail, for example
5373         if the file is not owned by the user but the group.
5374         (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
5376 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
5378         * files.el (directory-listing-before-filename-regexp): Use
5379         stricter matching for iso-style dates, to avoid false matches with
5380         date-like filenames (Bug#5597).
5382         * htmlfontify.el (htmlfontify): Doc fix.
5384         * eshell/eshell.el (eshell): Doc fix.
5386         * startup.el (fancy-about-screen): In mode-line, apply
5387         mode-line-buffer-id face only to the buffer name (Bug#5613).
5389 2010-02-20  Kevin Ryde  <user42@zip.com.au>
5391         * progmodes/compile.el (compilation-error-regexp-alist-alist):
5392         In `watcom' anchor regexp to start of line, to avoid slowness
5393         (Bug#5599).
5395 2010-02-20  Eli Zaretskii  <eliz@gnu.org>
5397         * subr.el (remove-yank-excluded-properties): Explain in a comment
5398         why `category' property is removed.
5400 2010-02-19  Chong Yidong  <cyd@stupidchicken.com>
5402         * isearch.el (isearch-update-post-hook, isearch-update): Revert
5403         2010-02-17 change.
5405 2010-02-19  Ulf Jasper  <ulf.jasper@web.de>
5407         * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
5408         (icalendar--convert-weekly-to-ical)
5409         (icalendar--convert-yearly-to-ical)
5410         (icalendar--convert-block-to-ical)
5411         (icalendar--convert-cyclic-to-ical)
5412         (icalendar--convert-anniversary-to-ical): Take care of time
5413         specifications where hour has 1-digit only (Bug#5549).
5415 2010-02-19  Nick Roberts  <nickrob@snap.net.nz>
5417         * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
5418         of disassemble output in GDB 7.1.
5420 2010-02-19  Glenn Morris  <rgm@gnu.org>
5422         * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
5423         property.  (Bug#5593)
5425 2010-02-18  Sam Steingold  <sds@gnu.org>
5427         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
5429 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5431         Use abbreviated file names in bookmarks (bug#5591).
5432         * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
5433         calls to expand-file-name.
5434         (bookmark-relocate): Use abbreviated file names in bookmarks.
5435         (bookmark-load): Use abbreviated file names in messages.
5437 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
5439         * net/tramp.el (tramp-handle-directory-files): When FULL, do not
5440         expand "." and "..".  Reported by Thierry Volpiatto
5441         <thierry.volpiatto@gmail.com>.
5443 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
5445         * net/tramp.el (tramp-handle-insert-file-contents): Set always the
5446         permissions of the temporary file to "0600".  In case the remote
5447         file has no read permissions for the owner, there might be
5448         problems otherwise.  Reported by Ole Laursen <olau@iola.dk>.
5450 22010-02-18  Glenn Morris  <rgm@gnu.org>
5452         * emacs-lisp/authors.el (authors-renamed-files-alist):
5453         Add entries for INSTALL.CVS.
5455 2010-02-17  Mark A. Hershberger  <mah@everybody.org>
5457         * vc-bzr.el: Fix typo in Known Bugs section.
5459         * isearch.el (isearch-update-post-hook): New hook.
5460         (isearch-update): Use the new hook.
5462 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
5464         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
5465         Fix errors in copying directories.
5466         (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
5467         (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
5468         (tramp-handle-delete-file)
5469         (tramp-handle-dired-recursive-delete-directory)
5470         (tramp-handle-write-region): Flush also the cache for the upper
5471         directory.
5473 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
5475         * simple.el (save-interprogram-paste-before-kill): Doc fix.
5477         * cus-edit.el (hardware): Doc fix.
5479         * man.el (man): Add to external custom group.
5481         * delim-col.el (columns): Move to wp custom group.
5483         * doc-view.el (doc-view): Add to data custom group.
5485         * cedet/data-debug.el (data-debug): Move to extensions group.
5487         * cedet/ede.el (ede):
5488         * cedet/srecode.el (srecode):
5489         * cedet/semantic.el (semantic): Put in tools and extensions group.
5491         * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
5493         * textmodes/flyspell.el (flyspell-word): Obey the offset specified
5494         by ispell-parse-output (Bug#5575).
5496 2010-02-16  Kenichi Handa  <handa@m17n.org>
5498         * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
5499         (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
5500         (skkdic-convert): Use `euc-japan' coding system for writing.
5502 2010-02-16  Glenn Morris  <rgm@gnu.org>
5504         * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
5505         tex-main-file before using it.  (Bug#5562)
5507 2010-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5509         * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
5510         warnings, since it is annoying for the user to see them each time he
5511         runs the code.
5513 2010-02-15  Michael Albinus  <michael.albinus@gmx.de>
5515         * net/tramp.el (tramp-process-actions, tramp-read-passwd):
5516         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
5517         instead of PROC for caching "first-password-request".  Otherwise,
5518         new processes would not profit from passwords already entered.
5520         * net/tramp-cache.el (tramp-dump-connection-properties):
5521         Don't save "first-password-request" property.
5523 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
5525         * outline.el (outline-head-from-level):
5526         * simple.el (with-wrapper-hook):
5527         * cedet/ede.el (ede-run-target, project-delete-target)
5528         (project-dist-files, ede-name, ede-documentation, ede-parent-project)
5529         (ede-adebug-project, ede-adebug-project-parent)
5530         (ede-adebug-project-root):
5531         * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
5532         (elint-defun, elint-buffer-env, elint-top-form-logged)
5533         (elint-unbound-variable):
5534         * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
5535         Fix typos in docstrings.
5537 2010-02-14  Michael Albinus  <michael.albinus@gmx.de>
5539         * files.el (insert-directory): When WILDCARD-REGEXP and
5540         FULL-DIRECTORY-P are nil, insert the file entry instead of the
5541         whole directory.  (Bug#5551)
5543         * net/ange-ftp.el (ange-ftp-insert-directory): Insert "  " for
5544         dired's alignment sanity.  (Bug#5516)
5546 2010-02-14  Juri Linkov  <juri@jurta.org>
5548         * man.el (Man-fontify-manpage, Man-cleanup-manpage):
5549         Remove remaining ^H with their preceding chars.  (Bug#5566)
5551 2010-02-13  Glenn Morris  <rgm@gnu.org>
5553         * simple.el (transpose-subr): Give it a doc-string.
5555         * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
5556         Doc fixes.
5558 2010-02-12  Juri Linkov  <juri@jurta.org>
5560         * arc-mode.el (archive-unique-fname): Make directories for nested
5561         archives.  (Bug#5540)
5563 2010-02-12  Juri Linkov  <juri@jurta.org>
5565         * ffap.el (dired-at-point): Fix docstring.  (Bug#5565)
5567 2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5569         * subr.el (copy-overlay): Handle deleted overlays.
5571         * man.el (Man-completion-table): Don't signal an error if we can't run
5572         manual-program (bug#4056).
5574 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
5576         * textmodes/artist.el (artist-mt): Fix typos in docstring.
5578 2010-02-10  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5580         * info.el (Info-bookmark-jump): Simplify.
5582         * bookmark.el (bookmark-handle-bookmark): Catch the right error.
5583         (bookmark-default-handler): Accept new bookmark field `buffer'.
5585 2010-02-10  Chong Yidong  <cyd@stupidchicken.com>
5587         * iswitchb.el (iswitchb-completions): Revert last change.
5589 2010-02-10  Michael Albinus  <michael.albinus@gmx.de>
5591         * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
5592         FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
5593         This prevents file names like "~/" being listed literally.
5595 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
5597         * term/xterm.el (xterm-maybe-set-dark-background-mode):
5598         Remove dead code.  (Bug#5546)
5600 2010-02-09  Chong Yidong  <cyd@stupidchicken.com>
5602         * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
5603         correctly (Bug#5548).
5605 2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
5607         * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
5608         (ada-adjust-case): Don't adjust case in hexadecimal number literals.
5610 2010-02-08  Kenichi Handa  <handa@m17n.org>
5612         * international/mule-util.el (with-coding-priority): Add autoload
5613         cookie for putting `lisp-indent-function'.
5615 2010-02-07  Glenn Morris  <rgm@gnu.org>
5617         * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
5618         Move F2003 named interfaces from keywords-2 to keywords-1, and
5619         use function-name-face rather than constant-face.
5620         Simplify "abstract interface" regexp.
5622 2010-02-07  Chong Yidong  <cyd@stupidchicken.com>
5624         * eshell/esh-util.el (eshell-file-attributes): New optional arg
5625         ID-FORMAT.  Pass it to `file-attributes'.
5627         * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
5629 2010-02-07  sj  <prime.wizard+emacs@gmail.com>  (tiny change)
5631         * faces.el (set-face-attribute): Allow calling
5632         internal-set-lisp-face-attribute with 'unspecified family and
5633         foundry argument (Bug#5536).
5635 2010-02-07  Glenn Morris  <rgm@gnu.org>
5637         * progmodes/f90.el (f90-font-lock-keywords-2)
5638         (f90-looking-at-type-like, f90-looking-at-program-block-end):
5639         Handle F2003 named interfaces.
5641 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
5643         * progmodes/cc-mode.el (c-common-init): Bind temporary variables
5644         beg and end before calling c-get-state-before-change-functions.
5646 2010-02-06  Dan Nicolaescu  <dann@ics.uci.edu>
5648         * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
5650 2010-02-05  Juri Linkov  <juri@jurta.org>
5652         * doc-view.el (doc-view-mode):
5653         * image-mode.el (image-mode): Put property mode-class=special.
5654         (Bug#4896)
5656 2010-02-05  Mark A. Hershberger  <mah@everybody.org>
5658         * vc-svn.el (vc-svn-revision-table): New function.
5660 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
5662         * net/ange-ftp.el (ange-ftp-insert-directory):
5663         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
5664         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
5665         Handle also directories.  (Bug#5478)
5667 2010-02-05  Glenn Morris  <rgm@gnu.org>
5669         * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
5671 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
5673         * startup.el (command-line-1): Convert options beginning with a
5674         single dash as well (Bug#5519).
5676 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5678         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
5679         * minibuffer.el (completion-initials-expand): Only check the presence
5680         of delims *within* the boundaries, since otherwise the / delim is
5681         always found for files.
5683         Fix up various corner case problems.
5684         * doc-view.el (doc-view-last-page-number): New function.
5685         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
5686         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
5687         (doc-view-kill-proc): Avoid inf-loop in freak cases.
5688         (doc-view-reconvert-doc): Use the new recursive delete-directory.
5689         (doc-view-convert-current-doc): Don't create the resolution.el file
5690         here any more.
5691         (doc-view-pdf/ps->png): Do it here instead.
5692         (doc-view-already-converted-p): Check that resolution.el is present.
5693         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
5694         windows that are not yet showing images.
5696 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
5698         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
5699         `dired-uncache' for every elemnt which is an absolute file name.
5701         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
5702         directory, handle its directory component.
5703         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
5704         function is called permanently and creates noise, otherwise.
5706         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
5707         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
5708         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
5710 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
5712         * macros.el (apply-macro-to-region-lines):
5713         Minor simplification.  (Bug#5485)
5715 2010-02-04  Glenn Morris  <rgm@gnu.org>
5717         * mail/rmail.el (rmail-show-message-1): Handle malformed
5718         quoted-printable text.  (Bug#5441)
5720         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
5722         * simple.el (visual-line-mode): Capitalize lighter.
5724 2010-02-03  John Wiegley  <jwiegley@gmail.com>
5726         * iswitchb.el (iswitchb-completions): Add bookmark files to the
5727         list of files considered for "virtual buffer" completions.
5729 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
5731         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
5732         also in case of (and (not full) (not wildcard)).  This is needed
5733         when dired is called with a list of files, which are not in
5734         `default-directory'.  (Bug#5478)
5736 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5738         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
5740 2010-02-02  Juri Linkov  <juri@jurta.org>
5742         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
5743         from unidiff to allow function-line after @@.
5745 2010-02-02  Juri Linkov  <juri@jurta.org>
5747         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
5748         '(RCS SCCS) with inverted condition.
5750 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
5752         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
5753         messages.
5755 2010-02-01  Juri Linkov  <juri@jurta.org>
5757         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
5758         compare with "pkunzip" and "pkzip" instead of only "pkzip".
5759         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
5760         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
5762 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5764         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
5765         (doc-view-revert-buffer): New command.
5766         (doc-view-mode-map): Use it.
5768 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
5770         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
5771         pending merge is detected.
5773 2010-01-31  Juri Linkov  <juri@jurta.org>
5775         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
5776         beginning of interactive spec like all other grep commands do.
5777         Put "all" in front of "gz".  (Bug#5260)
5779 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
5781         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
5783 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
5785         * dirtrack.el (dirtrack): Warn instead of signalling error if the
5786         regexp is incorrect (Bug#5476).
5788 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
5790         * net/tramp.el (tramp-handle-insert-directory): Handle also
5791         symlinks, when FILENAME is not in `default-directory'.
5793 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
5795         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
5796         FILE is not in `default-directory'.  (Bug#5478)
5798         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
5799         of SWITCHES.  Handle the case, FILENAME is not in
5800         `default-directory'.  (Bug#5478)
5801         (tramp-register-file-name-handlers): Add safe-magic property.
5803 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
5805         * arc-mode.el (archive-zip-extract): Quote the argument passed to
5806         unzip (Bug#5475).
5808 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
5810         * progmodes/flymake.el (flymake-allowed-file-name-masks)
5811         (flymake-master-make-header-init): Add other C++ filename masks.
5812         (flymake-find-possible-master-files)
5813         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
5815 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
5817         Fix some busybox annoyances.
5819         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
5820         not responding." string.
5821         (tramp-open-connection-setup-interactive-shell): Dump stty
5822         settings.  Enable "neveropen" arg for all `tramp-send-command'
5823         calls.  Handle "=" in variable values properly.
5824         (tramp-find-inline-encoding): Raise an error, when no encoding is
5825         found.
5826         (tramp-wait-for-output): Check, whether PROC buffer is available.
5827         Remove spurious " ^H" sequences, sent by busybox.
5828         (tramp-get-ls-command): Suppress coloring, if possible.
5830 2010-01-28  Glenn Morris  <rgm@gnu.org>
5832         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
5834         * log-edit.el (log-edit-strip-single-file-name): Add missing
5835         :safe, :group, and :version tags.
5837 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
5839         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
5840         buffers.  (Bug#5477)
5842 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
5844         * files.el (delete-directory): Handle moving to trash without
5845         first doing recursion (Bug#5436).
5847 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
5849         * vc-hooks.el (vc-path): Mark as obsolete.
5851 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
5853         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
5854         names too.
5856         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
5857         for the short log.
5858         (vc-bzr-log-view-mode): Adjust regexp for the above change.
5860 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
5862         * progmodes/python.el: Replace reference to obsolete c-subword-mode.
5864         * vc-bzr.el (vc-bzr-revision-table): New function.
5866 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
5868         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
5869         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
5871 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
5873         Remove support for adding --signoff on commit.
5874         Future support will use an incompatible generic mechanism.
5875         * vc-git.el (vc-git-add-signoff): Remove variable.
5876         (vc-git-toggle-signoff): Remove function.
5877         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
5879         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
5880         from xterm-set-background-mode.  Return t if the background mode
5881         was set.
5882         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
5883         earlier, call it again in case the background mode has changed.
5885 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
5887         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
5888         (Bug#3541).
5890 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
5892         * emacs-lisp/assoc.el (aelement): Doc fix.
5893         (aput, adelete, amake): Use lexical-let (Bug#5450).
5895 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
5897         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
5898         is the same as subprogram call, not declaration.  (Bug#5435).
5900 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
5902         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
5903         (tramp-smb-maybe-open-connection): Use it.
5905 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
5907         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
5909 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5911         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
5912         just because we see "encoding: 8bit".
5913         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
5915 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
5917         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
5919 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
5921         * jka-compr.el (jka-compr-load): If load-file is not in
5922         load-history, try its file-truename version.  (bug#5447)
5924 2010-01-21  Alan Mackenzie  <acm@muc.de>
5926         Fix a situation where deletion of a cpp construct throws an error.
5927         * progmodes/cc-engine.el (c-invalidate-state-cache):
5928         Before invoking c-with-all-but-one-cpps-commented-out, check that the
5929         special cpp construct is still in the buffer.
5930         (c-parse-state): Record the special cpp with markers, not numbers.
5932 2010-01-21  Kenichi Handa  <handa@m17n.org>
5934         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
5935         process last-command-event, as it is now decoded first (Bug#5380).
5937 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
5939         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
5941 2010-01-20  Glenn Morris  <rgm@gnu.org>
5943         * indent.el (tab-always-indent): Fix custom-type.
5945 2010-01-19  Alan Mackenzie  <acm@muc.de>
5947         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
5948         buffer throws "args out of range".
5949         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
5950         playing the role of delimiter.
5952 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
5954         * progmodes/ada-mode.el: Fix bug#5400.
5955         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
5956         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
5957         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
5958         Improve comments in "is" portion.  Handle null procedure declaration.
5959         (ada-move-to-end): Improve doc string.
5961 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
5963         * ido.el (ido-cur-list): Initialize to nil.
5964         Remove obsolete information from commentary.
5965         (ido-choice-list): Initialize to nil.
5966         (ido-get-bufname): Reject minibuffers.
5967         (ido-make-buffer-list): If "default" is a nonexistent
5968         buffer, ignore it, as per the function's comment.
5969         (ido-kill-buffer-internal): New function.
5970         (ido-kill-buffer-at-head): Use it.
5971         (ido-visit-buffer): Likewise.
5973 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
5975         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
5977 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
5979         * cedet/ede/locate.el (ede-locate-file-in-project)
5980         (ede-locate-file-in-project-impl): Fix typos in docstrings.
5981         (ede-enable-locate-on-project): Fix typos in error messages.
5983         * cedet/semantic/util-modes.el (semantic-unmatched-syntax-face)
5984         (semantic-stickyfunc-old-hlf, semantic-stickyfunc-header-line-format)
5985         (semantic-stickyfunc-sticky-classes, semantic-highlight-func-mode-setup)
5986         (semantic-stickyfunc-fetch-stickyline): Fix typos in docstrings.
5987         (semantic-stickyfunc-popup-menu, semantic-highlight-func-popup-menu):
5988         Fix typos in menu help.
5990         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
5991         Fix typos in chart titles.
5993         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
5994         * cedet/semantic.el (semantic-require-version, semantic--buffer-cache)
5995         (semantic-unmatched-syntax-cache-check, semantic-unmatched-syntax-hook)
5996         (semantic--before-fetch-tags-hook, semantic-new-buffer-fcn-was-run)
5997         (semantic--umatched-syntax-needs-refresh-p, semantic-elapsed-time)
5998         (semantic-parse-stream, semantic-parse-region)
5999         (semantic-parse-region-default, semantic--set-buffer-cache)
6000         (semantic-minimum-working-buffer-size, semantic-refresh-tags-safe)
6001         (semantic-bovinate-toplevel, semantic-load-system-cache-loaded)
6002         (semantic-default-submodes):
6003         * cedet/semantic/db-ebrowse.el (semanticdb-table-ebrowse)
6004         (semanticdb-create-ebrowse-database)
6005         (semanticdb-find-tags-for-completion-method)
6006         (semanticdb-find-tags-by-class-method)
6007         (semanticdb-deep-find-tags-by-name-method)
6008         (semanticdb-deep-find-tags-for-completion-method):
6009         * cedet/semantic/db-el.el (semanticdb-elisp-mapatom-collector)
6010         (semanticdb-find-tags-by-name-method, emacs-lisp-mode)
6011         (semanticdb-find-tags-for-completion-method)
6012         (semanticdb-find-tags-by-class-method)
6013         (semanticdb-deep-find-tags-for-completion-method):
6014         * cedet/semantic/db-find.el (semanticdb-find-translate-path)
6015         (semanticdb-find-need-cache-update-p, semanticdb-find-result-with-nil-p)
6016         (semanticdb-find-scanned-include-tags, semanticdb-find-tags-collector)
6017         (semanticdb-find-tags-by-name-method)
6018         (semanticdb-find-tags-by-name-regexp-method)
6019         (semanticdb-find-tags-for-completion-method)
6020         (semanticdb-find-tags-by-class-method)
6021         (semanticdb-find-tags-external-children-of-type-method)
6022         (semanticdb-find-tags-subclasses-of-type-method)
6023         (semanticdb-deep-find-tags-by-name-method)
6024         (semanticdb-deep-find-tags-by-name-regexp-method)
6025         (semanticdb-deep-find-tags-for-completion-method):
6026         * cedet/semantic/db-global.el (semanticdb-enable-gnu-global-hook)
6027         (semanticdb-enable-gnu-global-in-buffer)
6028         (semanticdb-find-tags-for-completion-method)
6029         (semanticdb-deep-find-tags-by-name-method)
6030         (semanticdb-deep-find-tags-for-completion-method):
6031         * cedet/semantic/db-javascript.el (semanticdb-javascript-tags)
6032         (javascript-mode, semanticdb-find-translate-path)
6033         (semanticdb-find-tags-for-completion-method)
6034         (semanticdb-find-tags-by-class-method)
6035         (semanticdb-deep-find-tags-by-name-method)
6036         (semanticdb-deep-find-tags-for-completion-method)
6037         (semanticdb-find-tags-external-children-of-type-method):
6038         * cedet/semantic/idle.el (semantic-idle-work-core-handler)
6039         (define-semantic-idle-service, semantic-idle-summary-useful-context-p)
6040         (global-semantic-idle-scheduler-mode):
6041         * cedet/srecode/dictionary.el (srecode-field-value)
6042         (srecode-dictionary-add-section-dictionary):
6043         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
6044         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
6045         (describe-class, eieio-describe-generic, describe-generic):
6046         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
6047         (eieio-speedbar-expand):
6048         * emulation/viper-cmd.el (viper-exec-form-in-vi)
6049         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
6050         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
6051         (viper-del-backward-char-in-replace, viper-backward-indent)
6052         (viper-brac-function, viper-register-to-point, viper-submit-report):
6053         * net/tramp.el (tramp-remote-coding-commands):
6054         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
6055         Fix typos in docstrings.
6057 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
6059         * mail/sendmail.el (mail-yank-original): Set the mark if the
6060         specified function for yanking does not do it.
6062 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
6064         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
6066         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
6067         resyncing a directory.
6069 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
6071         * progmodes/ada-mode.el: Fix bug#1920.
6072         (ada-ident-re): Delete ., allow multibyte characters.
6073         (ada-goto-label-re): New; matches goto labels.
6074         (ada-block-label-re): New; matches block labels.
6075         (ada-label-re): New; matches both.
6076         (ada-named-block-re): Deleted; callers changed to use
6077         `ada-block-label-re' instead.
6078         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
6079         Use `ada-block-label-re'.
6080         (ada-indent-on-previous-lines): Improve handling of goto labels.
6081         (ada-get-indent-block-start): Special-case block label.
6082         (ada-get-indent-label): Split into `ada-indent-block-label' and
6083         `ada-indent-goto-label'.
6084         (ada-goto-stmt-start, ada-goto-next-non-ws):
6085         Optionally ignore goto labels.
6086         (ada-goto-next-word): Simplify.
6087         (ada-indent-newline-indent-conditional): Insert newline before
6088         trying to fix indentation; doc fix.
6090 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
6092         * calc/calc.el (calc-command-flags): Give it an initial value.
6094 2010-01-17  Glenn Morris  <rgm@gnu.org>
6096         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): Doc fix.
6098 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
6100         * cedet/semantic.el (semantic-mode):
6101         * files.el (minibuffer-with-setup-hook):
6102         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
6103         (artist-key-draw-continously, artist-key-do-continously-continously)
6104         (artist-key-set-point-continously, artist-mouse-draw-continously):
6105         Fix typos in docstrings.
6107 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
6109         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
6110         return t (Bug#3898).
6112 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
6114         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
6115         can parse the output of the external commands (Bug#5279).
6117 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
6119         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
6121 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
6123         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
6125         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
6127         * startup.el (command-line): Remove unused --icon-type arg.
6128         Handle --display arg, passing it to command-line-1 (Bug#5392).
6130 2010-01-16  Mario Lang  <mlang@delysid.org>
6132         * cedet/ede/cpp-root.el (ede-cpp-root-project):
6133         * cedet/ede/files.el (ede-expand-filename):
6134         * cedet/ede/simple.el (ede-simple-project):
6135         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
6136         (semantic-complete-inline-tag-engine):
6137         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
6138         * cedet/semantic/db-global.el (semanticdb-equivalent-mode):
6139         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
6140         * cedet/semantic/db.el (semanticdb-equivalent-mode):
6141         * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe):
6142         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
6143         * emacs-lisp/chart.el (chart-translate-namezone):
6144         * textmodes/artist.el (artist-compute-popup-menu-table):
6145         Remove duplicated words in doc-strings.
6147 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
6149         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
6150         to mairix-search to suppress threading (Bug#5342).
6152 2010-01-15  Kenichi Handa  <handa@m17n.org>
6154         * international/mule-cmds.el (canonicalize-coding-system-name):
6155         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
6157 2010-01-15  Glenn Morris  <rgm@gnu.org>
6159         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
6161         * wid-edit.el (widget-keymap): Doc fix.
6163         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
6164         former seems to be more widely accepted by various svn versions.
6166 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
6168         * find-cmd.el (find-constituents):
6169         * vc-arch.el (vc-arch-root):
6170         * window.el (window-body-height, pop-up-frames):
6171         * cedet/semantic/edit.el (semantic-reparse-needed-change-hook)
6172         (semantic-no-reparse-needed-change-hook):
6173         * cedet/srecode/insert.el (srecode-resolve-argument-list)
6174         (srecode-template-inserter-blank, srecode-template-inserter-variable)
6175         (srecode-template-inserter-ask, srecode-template-inserter-width)
6176         (srecode-template-inserter-section-start)
6177         (srecode-template-inserter-section-end, srecode-insert-method):
6178         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
6179         * progmodes/ada-stmt.el (ada-if):
6180         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
6181         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
6182         (ispell-encoding8-command, ispell-aspell-supports-utf8)
6183         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
6185         * progmodes/flymake.el (flymake-post-syntax-check):
6186         Fix typo in error message.
6188 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
6190         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
6191         which is always a string.  (Bug#5313)
6193 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
6195         * progmodes/ada-xref.el (ada-default-prj-properties):
6196         Simplify previous change.
6198 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
6200         * progmodes/ada-xref.el (ada-default-prj-properties):
6201         Default ada_project_path to $ADA_PROJECT_PATH.
6203 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
6205         * progmodes/ada-mode.el (ada-create-keymap):
6206         Override `narrow-to-defun' with `ada-narrow-to-defun'.
6208 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
6210         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
6211         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
6212         (ada-get-current-indent, ada-imenu-generic-expression)
6213         (ada-which-function): Check for it.
6215 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
6217         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
6218         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
6220 2010-01-14  Glenn Morris  <rgm@gnu.org>
6222         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
6224 2010-01-14  Kenichi Handa  <handa@m17n.org>
6226         * composite.el (auto-composition-mode): Make it a buffer local
6227         variable (permanent-local).
6228         (auto-composition-function): Set the default value to
6229         auto-compose-chars.
6230         (auto-composition-mode): Make it a simple function, not a minor mode.
6231         (global-auto-composition-mode): Likewise.
6232         (turn-on-auto-composition-if-enabled): Delete it.
6234 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
6236         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
6238 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
6240         * files.el (copy-directory): Compute target for recursive
6241         directories with identical names.  (Bug#5343)
6243 2010-01-12  Glenn Morris  <rgm@gnu.org>
6245         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
6246         it to bug-gnu-emacs rather than emacs-pretest-bug.
6248 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
6250         * cedet/data-debug.el (data-debug): Fix customization group reference.
6252 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
6254         * cedet/semantic/analyze.el (semantic-analyze-push-error)
6255         (semantic-analyze-context, semantic-analyze-context-assignment)
6256         (semantic-analyze-find-tag-sequence, semantic-analyze-find-tag):
6257         * cedet/semantic/java.el (java-mode, semantic-tag-include-filename)
6258         (semantic-java-doc-keywords-map):
6259         * cedet/semantic/bovine/c.el (c-mode, semantic-c-member-of-autocast)
6260         (semantic-lex-c-nested-namespace-ignore-second, semantic-parse-region)
6261         (semantic-c-parse-lexical-token, semantic-c-debug-mode-init-pch)
6262         (semantic-c-classname, semantic-format-tag-uml-prototype)
6263         (semantic-c-dereference-namespace, semantic-analyze-type-constants):
6264         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string)
6265         (semantic-emacs-lisp-obsoleted-doc, semantic-up-context)
6266         (semantic-get-local-variables, semantic-end-of-command)
6267         (semantic-beginning-of-command, semantic-ctxt-current-class-list)
6268         (lisp-mode):
6269         * cedet/semantic/bovine/make.el (makefile-mode):
6270         * cedet/semantic/wisent/python.el (wisent-python-string-re)
6271         (wisent-python-implicit-line-joining-p, wisent-python-forward-string)
6272         (wisent-python-lex-beginning-of-line, wisent-python-lex-end-of-line)
6273         (semantic-lex, semantic-get-local-variables, python-mode):
6274         * cedet/semantic/wisent/python-wy.el (wisent-python-wy--keyword-table):
6275         * cedet/srecode/extract.el (srecode-extract-state-set)
6276         (srecode-extract-method): Fix typos in docstrings.
6278 2010-01-11  Sam Steingold  <sds@gnu.org>
6280         * imenu.el (imenu-default-create-index-function): Detect infinite
6281         loops caused by imenu-prev-index-position-function.
6283 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
6285         * htmlfontify.el (htmlfontify-load-rgb-file)
6286         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
6287         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
6288         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
6289         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
6290         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
6291         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
6292         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
6293         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
6294         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
6295         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
6296         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
6297         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
6298         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
6299         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
6300         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
6301         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
6302         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
6303         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
6304         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
6305         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
6306         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
6307         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
6308         backslash-quoting from parentheses, etc.
6310 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
6312         * progmodes/js.el: Autoload javascript-mode alias.
6314 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
6316         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
6317         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
6318         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
6319         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
6320         Fix typos in docstrings.
6321         (ffap-url-regexp): Doc fix.
6322         (ffap-at-mouse): Fix typo in message.
6324 2010-01-11  Glenn Morris  <rgm@gnu.org>
6326         * version.el (emacs-copyright): Set copyright year to 2010.
6328 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6330         * format.el (format-annotate-function): Only set
6331         write-region-post-annotation-function after running to-fn so as not to
6332         affect nested write-region calls (bug#5273).
6334 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
6336         * cedet/semantic.el (semantic-new-buffer-setup-functions):
6337         Add python parser.
6339         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
6340         wisent/python.el.
6342 2010-01-10  Richard Kim  <emacs18@gmail.com>
6344         * cedet/semantic/wisent/python-wy.el:
6345         * cedet/semantic/wisent/python.el: New files.
6347 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
6349         * man.el (Man-goto-section): Signal error if the section is not
6350         found (Bug#5317).
6352 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
6354         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
6355         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
6357 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
6359         * progmodes/compile.el: Don't treat compile-command as safe if
6360         compilation-read-command might be nil (Bug#4218).
6362 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
6364         * startup.el (command-line-1): Use orig-argi to check for ignored X and
6365         NS options.
6367 2010-01-08  Kenichi Handa  <handa@m17n.org>
6369         * international/fontset.el (build-default-fontset-data):
6370         Exclude characters in scripts kana, hangul, han, or cjk-misc.
6372 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
6374         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
6375         to `create-file-buffer' as it expects, not just a buffer name.
6376         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
6377         to help uniquify.  (Bug#3224)
6379 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
6381         * font-setting.el (font-setting-change-default-font): Use user-spec
6382         instead of name.
6384 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
6386         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
6388 2010-01-05  Tom Tromey  <tromey@redhat.com>
6390         * progmodes/python.el (python-font-lock-keywords):
6391         Handle qualified decorators (Bug#881).
6393 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
6395         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
6396         in a lightweight checkout.
6398 2010-01-05  Kenichi Handa  <handa@m17n.org>
6400         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
6402 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
6404         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
6406 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
6408         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
6409         checkouts.  (Bug#618)
6410         (vc-bzr-log-view-mode): Also highlight the author.
6411         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
6412         (vc-bzr-shelve-menu-map):
6413         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
6414         (vc-bzr-shelve-apply): Make prompt more explicit.
6416 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
6418         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
6419         They are valid characters in URL paths (rfc3986), and at least
6420         Firefox does not understand the encoded version (Bug#3166).
6422 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
6424         * progmodes/octave-mod.el (octave-end-keywords)
6425         (octave-block-begin-or-end-regexp, octave-block-match-alist):
6426         Add "end" keyword (Bug#3061).
6427         (octave-end-as-array-index-p): New function.
6428         (calculate-octave-indent): Use it.
6430 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
6432         * bookmark.el: Consistently put the text property on the bookmark name.
6433         (bookmark-bmenu-marks-width): Bump back to 2, to include
6434         annotation marks.
6435         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
6436         property on the bookmark name, instead of not putting it at all.
6437         (bookmark-bmenu-list): Fix where we put the text property.
6439 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
6441         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
6442         for showing buffer modified state (as added in the previous change).
6444 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
6446         * bookmark.el: Show modified state of bookmark buffer more accurately.
6447         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
6448         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
6449         (with-buffer-modified-unmodified): New macro.
6450         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
6451         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
6452         Use new macro to preserve the buffer modified state.
6454 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
6456         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
6457         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
6458         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
6459         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
6460         (bookmark-bmenu-rename, bookmark-bmenu-locate)
6461         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
6462         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
6464 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
6466         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6467         Make the lines in the generated doc string shorter.  (Bug#4668)
6469 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
6471         * net/rcirc.el: Add follow-link binding (Bug#4738).
6473 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
6475         * Makefile.in (bzr-update): Rename from cvs-update.
6476         (cvs-update): New target for backward compatibility.
6478         * makefile.w32-in (bzr-update): Rename from cvs-update.
6479         (cvs-update): New target for backward compatibility.
6481 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
6483         * bookmark.el: Remove gratuitous gratitude.
6485 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
6487         * bookmark.el (bookmark-bmenu-any-marks): New function.
6488         (bookmark-bmenu-save): Clear buffer modification if no marks.
6490 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
6492         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
6493         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
6494         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
6495         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
6497         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
6498         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
6499         To: emacs-devel {_AT_} gnu.org
6500         Subject: bookmark.el bug report
6501         Date: Mon, 28 Dec 2009 14:19:16 +0800
6502         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
6504 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
6506         * bookmark.el: Improvements suggested by Drew Adams:
6507         (bookmark-bmenu-ensure-position): New name for
6508         `bookmark-bmenu-check-position'.  Just ensure the position,
6509         don't return any meaningful value.
6510         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
6511         New constants.
6513 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
6515         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
6516         (bookmark-yank-point, bookmark-bmenu-check-position):
6517         Fix typos in docstrings.
6518         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
6519         (bookmark-name-from-full-record, bookmark-get-position)
6520         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
6521         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
6522         Remove useless quoting of parenthesis, etc. in docstrings.
6524         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
6525         (ediff-append-custom-diff): Fix typo in error message.
6526         (ediff-meta-mark-equal-files): Fix typos in messages.
6528         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
6530         * cedet/semantic/db-typecache.el (semanticdb-typecache-find-default):
6531         Fix typo in docstring.
6533         * net/imap-hash.el (imap-hash-make): Doc fix.
6534         (imap-hash-test): Fix typo in error message; reflow docstring.
6535         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
6536         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
6537         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
6538         Fix typos in docstrings.
6539         (imap-hash-open-connection): Fix typo in error message.
6541         * play/gomoku.el (gomoku): Fix typos in docstring.
6543         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
6544         (gdb-jsonify-buffer): Fix typos in docstring.
6545         (gdb-goto-breakpoint): Fix typo in error message.
6546         ("Display Other Windows"): Fix typo in help message.
6547         (gdb-speedbar-expand-node): Fix typo in question.
6549         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
6550         (idlwave-html-system-help-location, idlwave-html-help-location)
6551         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
6552         (idlwave-help-browser-generic-args, idlwave-help-directory)
6553         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
6554         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
6555         (idlwave-online-help, idlwave-help-html-link)
6556         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
6557         Fix typos in docstrings.
6558         (idlwave-help-with-source, idlwave-help-find-routine-definition):
6559         Reflow docstrings.
6560         (idlwave-help-assistant-start): Fix typo in error message.
6562         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
6563         (octave-electric-space): Fix typos in docstrings.
6565 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
6567         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
6569 2010-01-01  Juri Linkov  <juri@jurta.org>
6571         * comint.el (comint-input-ring-size): Make it a defcustom and
6572         increase the default to 500 (Bug#5148).
6574 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
6576         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
6577         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
6578         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
6580 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
6582         Show working revision correctly for mercurial.
6583         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
6584         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
6586 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
6588         Declare some functions for the byte-compiler.
6589         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
6590         (speedbar-timer-fn, speedbar-change-expand-button-char)
6591         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
6593 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
6595         This changeset reverts GDB Graphical Interface to use annotations.
6596         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
6598 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
6600         Make vc-dir work on subdirectories of the bzr root.
6601         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
6602         file names relative to it.
6603         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
6604         relative directory to vc-bzr-after-dir-status.
6606 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
6608         * font-lock.el (font-lock-refresh-defaults): New function, which
6609         can be used to let font-lock react to external changes in
6610         variables like font-lock-defaults and keywords.
6611         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
6613 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
6615         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
6617         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
6619 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
6621         Supersede color.diff settings in git log (bug#5211).
6623         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
6624         escape chars in its output when the user has color.diff set to `always'.
6625         This fix works on git 1.4.2 and newer (released on 2006-08-13).
6627 2009-12-26  Kevin Ryde  <user42@zip.com.au>
6629         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
6630         node.  Keep previous "Index" name to work with past coreutils too.
6632         * man.el (man): Revise docstring a bit to show -a and -l as
6633         examples.  Add -k description since support for it has otherwise
6634         been a secret.  (Further to bug#3717.)
6635         (Man-bgproc-sentinel): When "-k foo" produces no output show error
6636         "no matches" rather than "Can't find manpage", as the latter reads
6637         like -k was interpreted as a page name, which is not so.  (Bug#5431)
6639 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
6641         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
6642         switches.  Check also for //SUBDIRED// line.
6644 2009-12-25  Kenichi Handa  <handa@m17n.org>
6646         * language/indian.el (devanagari-composable-pattern): Fixed to
6647         handle ZWNJ and ZWJ.  Use it in composition-function-table for
6648         Devanagari.
6649         (malayalam-composable-pattern): Fix previous change.
6651 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6653         * ps-print.el (ps-face-attributes): It was not returning the
6654         attribute face for faces specified as string.  Reported by harven
6655         <harven@free.fr>.  (Bug#5254)
6656         (ps-print-version): New version 7.3.5.
6658 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
6660         * calendar/icalendar.el (icalendar--convert-tz-offset):
6661         Fix timezone names.
6662         (icalendar--convert-tz-offset): Fix the "last-day-problem".
6663         (icalendar--add-diary-entry): Remove the trailing blank that
6664         diary-make-entry inserts.
6666 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
6668         Make `file-expand-wildcards' work for remote files.
6670         * files.el (file-expand-wildcards): In case of remote files, check
6671         only local file name part for wildcards.  Provide feature 'files
6672         and subfeature 'remote-wildcards.  (Bug#5198)
6674         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
6675         if there is already an established connection.
6676         (tramp-advice-file-expand-wildcards): Remove it.
6678         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
6679         (tramp-advice-file-expand-wildcards): Move from tramp.el.
6680         Activate advice for older GNU Emacs versions.  (Bug#5237)
6682 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
6684         Some doc fixes (more needed).
6686         * find-cmd.el (find-constituents): Reflow docstring.
6687         (find-cmd, find-prune, find-command): Fix typos in docstrings.
6688         (find-generic): Doc fix.
6690 2009-12-17  Juri Linkov  <juri@jurta.org>
6692         Fix regression from 23.1 to allow multiple modes in Local Variables.
6694         * files.el (hack-local-variables-filter): While ignoring duplicates,
6695         don't take `mode' into account.
6696         (hack-local-variables-filter, hack-dir-local-variables):
6697         Don't remove duplicate `mode' from local-variables-alist (like `eval').
6699 2009-12-17  Juri Linkov  <juri@jurta.org>
6701         Make `dired-diff' safer.  (Bug#5225)
6703         * dired-aux.el (dired-diff): Signal an error when `file' equals to
6704         `current' or when `file' is a directory of the `current' file.
6706 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
6708         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
6709         unconditionally preloaded files.
6711 2009-12-16  Juri Linkov  <juri@jurta.org>
6713         Revert to old 23.1 logic of using the file at the mark as default.
6714         * dired-aux.el (dired-diff): Use the file at the mark as default
6715         if it's not the same as the current file, and the target dir is
6716         the current dir or the mark is active.  Add the current file
6717         as the arg of `dired-dwim-target-defaults'.  Use the default file
6718         in the prompt.  (Bug#5225)
6720 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
6722         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
6723         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
6724         (tramp-check-for-regexp): Check also, when an echoing shell stops
6725         to echo sent commands.
6727 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
6729         * Makefile.in: Revert last change (Bug#5191).
6731 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
6733         * vc-hg.el (vc-hg-print-log): Fix argument order.
6734         (vc-hg-working-revision): Make sure the command is executed in a
6735         known environment so that we can parse the output.  (Bug#4417)
6737 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
6739         * progmodes/python.el (python-symbol-completions): Remove text
6740         properties from symbol string before calling python-send-receive.
6742 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
6744         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
6745         when there are values for both file and line.  (Bug#5060)
6747 2009-12-14  Juri Linkov  <juri@jurta.org>
6749         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
6750         whitespace after the file name of the first line of unified format,
6751         because git-diff doesn't output whitespace and file modification time
6752         after the file name.
6754 2009-12-14  David Kastrup  <dak@gnu.org>
6756         * info.el (Info-hide-cookies-node): Before hiding a cookie,
6757         check if it already has the `display' property added by
6758         `Info-display-images-node', and not put the `invisible' property
6759         in this case.
6761 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
6763         * cedet/semantic/mru-bookmark.el (global-semantic-mru-bookmark-mode)
6764         (semantic-mru-bookmark-mode): Doc fixes.
6766         * cedet/semantic/db.el (semanticdb-cache-get): Use error instead
6767         of assert.
6769 2009-12-13  Glenn Morris  <rgm@gnu.org>
6771         * mail/emacsbug.el (message-sort-headers): Define for compiler.
6772         (report-emacs-bug): In message-mode, sort manually before storing
6773         original report text.  (Bug#5178)
6774         Remove superfluous save-excursion.
6776 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
6778         * net/dbus.el (dbus-property-handler): Filter lambda forms out
6779         when responding to "GetAll" properties.
6781 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
6783         * simple.el (compose-mail): Remove mail-setup-with-from from
6784         customization checks.
6786 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
6788         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
6789         RAR archives created on Unix systems.
6791 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6793         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
6794         the varalias that was accidentally removed by the 2009-11-19 change
6795         (bug#5186).
6797 2009-12-12  Kenichi Handa  <handa@m17n.org>
6799         * language/indian.el (indian-compose-regexp): New function.
6800         (malayalam-composable-pattern): Fix the pattern.
6801         (composition-function-table): Set malayalam-composable-pattern for
6802         Malayalam characters.
6804 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
6806         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
6807         rather than down-mouse-1, based on follow-link conventions.
6809         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
6810         are compiled.
6812 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
6814         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
6815         (verilog-vmm-statement-re, verilog-ovm-statement-re)
6816         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
6817         (verilog-leap-to-head, verilog-backward-token):
6818         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
6820 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
6822         * progmodes/verilog-mode.el (verilog-auto-lineup)
6823         (verilog-nameable-item-re): Cleanup user-visible spelling and
6824         documentation errors.  One reported by Gary Delp.
6825         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
6826         (verilog-read-decls): Fix AUTOWIRE with types declared in a
6827         package, bug195.  Reported by Pierre-David Pfister.
6829 2009-12-11  Glenn Morris  <rgm@gnu.org>
6831         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
6833         * mail/emacsbug.el: No longer require sendmail.
6834         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
6835         (report-emacs-bug-orig-text): Doc fix.
6836         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
6837         New local variables, to adapt to different mail-user-agents.
6838         (report-emacs-bug): Fix test for a gnu.org address.
6839         Use overlays for emphasis, since font-lock defeats 'face property.
6840         Pretest bugs also end up at the newsgroup these days.
6841         Stop message-mode stripping text properties.
6842         Set and use the new buffer-local variables.
6843         (report-emacs-bug-hook): Add doc-string.
6844         Remove some unnecessary save-excursions and simplify.
6845         Use the appropriate hook and send-command.
6847         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
6848         capitalization of some menu entries.
6850 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
6852         * whitespace.el (whitespace-display-char-on):
6853         Ensure `buffer-display-table' is unique when two or more windows are
6854         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
6855         New version 12.1.
6857 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
6859         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
6860         characters in the Attribute field.
6862 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
6864         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
6866 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6868         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
6869         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6870         Disregard autoload-excludes.
6871         (update-directory-autoloads): Obey autoload-excludes here instead.
6872         But don't store its contents in no-autoloads and remove entries that
6873         refer to excludes files.
6875 2009-12-10  Glenn Morris  <rgm@gnu.org>
6877         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
6878         (expand-mail-aliases): Define for compiler.
6880         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
6881         Define for compiler.
6883         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
6884         appropriate for the mail-user-agent in use.
6886 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
6888         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
6890 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
6892         Fix short log parsing and fontification.
6893         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
6894         Fix fontification for the [merge] label.
6896 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
6898         Drop some properties to avoid surprises (bug#5002).
6899         * htmlfontify.el (hfy-ignored-properties): New defcustom.
6900         (hfy-fontify-buffer): Use it.
6902 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6904         Minor cleanup.
6905         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
6906         Adjust all callers.
6907         (ffap-locate-file): Remove unused arg `dir-ok' and make other
6908         args compulsory.  Adjust callers.
6909         (ffap-gopher-at-point): Remove unused var `name'.
6911         Get rid of the ELCFILES abomination.
6912         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
6913         (compile-elcfiles): New phony target.
6914         (compile-main): Compute ELCFILES dynamically.
6915         (compile-clean): New target to remove left-over elc files.
6916         (compile, all): Use it.
6918 2009-12-09  Kenichi Handa  <handa@etlken>
6920         * international/mule-diag.el: Require help-mode instead of help-fns.
6922 2009-12-09  Kenichi Handa  <handa@m17n.org>
6924         * international/mule-cmds.el (ucs-names): Supply sufficiently
6925         fine ranges instead of pre-calculating accurate ranges.
6926         Iterate with bigger gc-cons-threshold.
6928 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
6930         Add support for stashing a snapshot of the current tree.
6931         * vc-git.el (vc-git-stash-snapshot): New function.
6932         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
6934 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
6936         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
6937         instead of `(beginning|end)-of-line'.
6939 2009-12-08  Glenn Morris  <rgm@gnu.org>
6941         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
6943         * Makefile.in (ELCFILES): Regenerate.
6945 2009-12-07  Juri Linkov  <juri@jurta.org>
6947         Don't lazy-highlight the comint output in history Isearch mode.
6949         * comint.el (comint-history-isearch-search): Instead of
6950         `comint-line-beginning-position', use `comint-after-pmark-p'
6951         to check if point if before the process mark, and go to
6952         `process-mark' in this case.
6954 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6956         * textmodes/tex-mode.el (latex-complete)
6957         (latex-indent-or-complete): Remove.
6958         (latex-mode): Set completion-at-point-functions instead.
6960         Provide a standard completion command and hook it into TAB.
6961         * minibuffer.el (completion-at-point-functions): New var.
6962         (completion-at-point): New command.
6963         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
6964         * progmodes/python.el (python-mode-map): Use completion-at-point.
6965         (python-completion-at-point): Rename from python-partial-symbol and
6966         adjust for use in completion-at-point-functions.
6967         (python-mode): Setup completion-at-point for Python completion.
6968         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
6969         extracted from lisp-complete-symbol.
6970         (lisp-complete-symbol): Use it.
6971         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
6972         setup completion-at-point for Elisp completion.
6973         (emacs-lisp-mode-map, lisp-interaction-mode-map):
6974         Use completion-at-point.
6975         * ielm.el (ielm-map): Use completion-at-point.
6976         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
6977         * progmodes/sym-comp.el: Move to...
6978         * obsolete/sym-comp.el: Move from progmodes.
6980 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
6982         Prevent save-buffer in Rmail buffers from using the coding-system
6983         of the current message, and from clobbering the encoding mnemonics
6984         in the mode line (Bug#4623).
6986         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
6987         flag, too.
6988         (rmail-message-encoding): New variable.
6989         (rmail-write-region-annotate): Record the encoding of the current
6990         message in rmail-message-encoding.
6991         (rmail-after-save-hook): New function, restores the encoding of
6992         the current message after the message collection is saved.
6994 2009-12-07  Juri Linkov  <juri@jurta.org>
6996         * progmodes/grep.el (grep-read-files): Use `completing-read'
6997         instead of `read-string'.  Set its `collection' arg to
6998         `read-file-name-internal'.  (Bug#4301)
7000 2009-12-07  Juri Linkov  <juri@jurta.org>
7002         Correctly restore original Isearch point.  (Bug#4994)
7004         * isearch.el (isearch-mode): Move `isearch-push-state' after
7005         `(run-hooks 'isearch-mode-hook)'.
7006         (isearch-cancel): When `isearch-push-state-function' is defined,
7007         let-bind `isearch-cmds' to the first state (the last element of
7008         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
7009         function and restores the original point).  Otherwise, move point
7010         to `isearch-opoint'.
7012 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7014         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
7015         chars that don't have names, so the table can be built much faster at
7016         run-time.
7018 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
7020         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
7021         change.  Suggested by David Kastrup.
7023         * simple.el (compose-mail): Check for incompatibilities and warn.
7024         (compose-mail-user-agent-warnings): New option.
7026 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
7028         Support showing a single log entry from vc-annotate.
7029         * vc.el (print-log): Add a new argument: START-REVISION.
7030         (vc-print-log-internal): Add a new optional argument and
7031         pass it to the backend.
7032         (vc-print-log, vc-print-root-log): Adjust callers.
7033         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
7034         buffer already displays the requested log entry, use it.
7035         Otherwise display only the log entry in question.
7036         * vc-svn.el (vc-svn-print-log):
7037         * vc-mtn.el (vc-mtn-print-log):
7038         * vc-hg.el (vc-hg-state):
7039         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
7040         (vc-git-show-log-entry): Return t on success.
7041         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
7042         (vc-bzr-show-log-entry): Return t on success.
7043         * vc-rcs.el (vc-rcs-print-log):
7044         * vc-sccs.el (vc-sccs-print-log):
7045         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
7047 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
7049         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
7050         Add menus to the meta mode.  (Bug#5043)
7052 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
7054         * ediff-init.el (ediff-event-key): Use event-to-character instead of
7055         event-key.
7057         * ediff.el (ediff-buffers-internal): Add unwind-protect.
7059 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
7061         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
7062         Berbain <raphael.berbain@gmail.com>.
7064         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
7065         characters.
7066         (tramp-initial-end-of-output): New defconst.
7067         (tramp-methods, tramp-find-shell)
7068         (tramp-open-connection-setup-interactive-shell)
7069         (tramp-maybe-open-connection): Use it.
7070         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
7071         existence of `#' and `$'.
7073         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
7074         `tramp-initial-end-of-output'.
7076 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
7078         Get the background mode from the terminal for xterm, and set
7079         faces accordingly.
7080         * term/xterm.el (xterm-set-background-mode): New function.
7081         (terminal-init-xterm): Use it in case xterm supports background
7082         color queries.  Recompute faces after getting the background
7083         color.
7085 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
7087         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
7088         number comment back on its own line, for easier parsing.
7090 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7092         Make it work for non-file buffers (bug#5102).
7093         * doc-view.el (doc-view-current-cache-dir):
7094         Use doc-view-buffer-file-name rather than buffer-file-name.
7095         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
7097 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
7099         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
7100         author field is too short.
7102 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
7104         * vc-git.el (vc-git-print-log): Handle a limit argument.
7105         Display the short log in graph form and with labels.
7106         (vc-git-log-view-mode): Handle labels.
7108         Make vc-revert change VC state from 'added to 'unregistered.
7109         * vc-git.el (vc-git-revert): Call git reset first.
7111 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
7113         * net/newst-backend.el, net/newst-plainview.el:
7114         * net/newst-reader.el, net/newst-ticker.el:
7115         * net/newst-treeview.el, net/newsticker.el:
7116         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
7118 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
7120         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
7122         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
7123         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
7124         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
7125         Update annotation regexp.
7127         * simple.el (beginning-of-visual-line): Constrain to field
7128         boundaries (Bug#5106).
7130 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
7132         * xml.el (xml-substitute-numeric-entities): Move
7133         newsticker--decode-numeric-entities in newst-backend.el to
7134         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
7135         * net/newst-backend.el (newsticker--parse-generic-feed)
7136         (newsticker--parse-generic-items)
7137         (newsticker--decode-numeric-entities): Move
7138         newsticker--decode-numeric-entities in newst-backend.el to
7139         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
7141 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
7143         * progmodes/js.el (js--js-not): Add null to the list of values.
7145 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
7147         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
7149 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7151         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
7152         delimiter if it is at the end of the current line.
7153         (bibtex-generate-url-list): Fix docstring.
7155 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7157         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
7158         minibuffer's content with itself.
7159         Fold the confirm-after-completion case into the `confirm' case.
7160         (completion-pcm-word-delimiters): Add : and / to the delimiters.
7162 2009-12-06  Kevin Ryde  <user42@zip.com.au>
7164         * ffap.el (ffap-rfc-path): Make this a defcustom since
7165         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
7167         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
7168         manuals, similar to existing setup for help-mode.  (Bug#3913.)
7170 2009-12-05  Juri Linkov  <juri@jurta.org>
7172         Save and restore dired buffer's point positions too.  (Bug#4880)
7174         * dired.el (dired-save-positions): Return in the first element
7175         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
7176         Doc fix.
7177         (dired-restore-positions): First restore buffer's position.
7178         While restoring window's positions, check if window still displays
7179         the original buffer.
7181 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
7183         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
7184         if possible.
7186         * cedet/semantic/ia.el (semantic-ia-complete-symbol):
7187         Make argument optional.
7189         * shell.el (shell): Require ansi-color (Bug#5113).
7191         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
7193         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
7195 2009-12-05  Alan Mackenzie  <acm@muc.de>
7197         * progmodes/cc-mode.el (c-before-hack-hook)
7198         (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
7199         `c-file-style' to work again.  This reversion restores the current
7200         software to its state in Emacs 23.1.  (Bug#4146)
7202 2009-12-05  Kevin Ryde  <user42@zip.com.au>
7204         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
7205         comment-start-skip to comment-end-skip as comment (Bug#4781).
7207 2009-12-05  Juri Linkov  <juri@jurta.org>
7209         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
7210         for virtual nodes.  (Bug#4147)
7211         (Info-find-node-2): Set `Info-current-node-virtual' to nil
7212         when moving from a virtual node.
7213         (Info-mode-menu): Add `Info-virtual-index' to the menu.
7214         (Info-mode): Add `Info-virtual-index' to the docstring.
7216 2009-12-05  Eric Ludlam  <zappo@gnu.org>
7218         * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
7219         Describe project macro symbols.
7221         * cedet/semantic/complete.el (semantic-complete-do-completion):
7222         Don't call semantic-collector-current-exact-match.
7224         * cedet/ede.el (ede-apply-preprocessor-map): Accept lists of
7225         ede-objects as targets.
7227         * cedet/ede/pmake.el (ede-proj-makefile-insert-variables): Output
7228         a target's object list even if compiler vars are already in the
7229         Makefile.
7231         * cedet/ede/emacs.el (ede-preprocessor-map): Add config.h to the
7232         list of headers producing necessary macros.
7234 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7236         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
7237         track of the buffer position of the end of a BibTeX entry as this
7238         position may change during reformatting.
7239         (bibtex-format-entry): Remove whitespace before processing
7240         numerical fields so that we recognize the latter properly.
7241         (bibtex-reformat): Do not use push which changes the global value
7242         of bibtex-entry-format.
7243         (bibtex-field-braces-alist, bibtex-field-strings-alist)
7244         (bibtex-field-re-init): Replace only space characters by regexp
7245         for whitespace.
7246         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
7247         (bibtex-initialize): Also update bibtex-strings.
7248         (bibtex-kill-field): Preserve white space at end of entry.
7249         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
7250         Update bibtex-reference-keys.
7252 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7254         * minibuffer.el (completion-pcm--merge-try): Also consider placing
7255         point after a star, if that's the only place where modifications can
7256         make progress.
7258 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
7260         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
7261         in docstrings.
7263 2009-12-04  Juri Linkov  <juri@jurta.org>
7265         * proced.el (proced): Call `(proced-update t)' to update process
7266         information instead of only running proced-post-display-hook.
7267         (proced-send-signal): Add a leading space to the buffer name
7268         " *Marked Processes*" to make this buffer ephemeral.
7270 2009-12-04  Juri Linkov  <juri@jurta.org>
7272         * dired.el (dired-auto-revert-buffer): New defcustom.
7273         (dired-internal-noselect): Use it.
7275 2009-12-04  Juri Linkov  <juri@jurta.org>
7277         Change roles of modes and functions in image-mode.el (Bug#5062).
7279         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
7280         in `auto-mode-alist'.
7281         (image-mode-previous-major-mode): New variable.
7282         (image-minor-mode-map): Rename from `image-mode-text-map'.
7283         (image-mode): Move graceful error-handling code from
7284         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
7285         (image-minor-mode): Remove all image-handling code.
7286         Replace `image-mode-text-map' with `image-minor-mode-map'.
7287         Check for `image-type' in mode-line format string.
7288         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
7289         (image-mode-as-text): New function with most code from
7290         `image-mode-maybe'.
7291         (image-toggle-display-text): Move code that removes image
7292         properties from `image-toggle-display' to here.
7293         (image-toggle-display-image): New function with code that adds
7294         image properties copied from `image-toggle-display'.
7295         (image-toggle-display): Remove most code with leaving only code
7296         that toggles between `image-mode-as-text' and `image-mode'.
7298 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
7300         * net/newst-treeview.el
7301         (newsticker--treeview-list-highlight-start): Restored call to
7302         save-excursion: Selected item was stuck.
7303         (newsticker--treeview-list-select): New.
7304         (newsticker--treeview-item-show-text)
7305         (newsticker--treeview-item-show)
7306         (newsticker--treeview-item-update): Use new
7307         newsticker-treeview-item-mode.
7308         (newsticker-treeview-update): Keep current item.
7309         (newsticker-treeview-next-new-or-immortal-item): Doc change.
7310         (newsticker--treeview-first-feed): Doc change.
7311         (newsticker-treeview-list-menu)
7312         (newsticker-treeview-item-menu): Added menu entries.
7313         (newsticker-treeview-item-mode): New.
7315         * net/newst-backend.el (newsticker-customize): Delete other
7316         windows.
7318 2009-12-04  Sam Steingold  <sds@gnu.org>
7320         * log-view.el (log-view-mode-map): "q" calls quit-window,
7321         like in all the other non-self-insert buffers.
7323 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7325         Minor cleanup.
7326         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
7327         key decoding rather than do it manually via last-input-event +
7328         ascii-character.
7329         (term-exec): Use delete-and-extract-region.
7330         (term-handle-ansi-terminal-messages): Remove unused var `end'.
7331         (term-process-pager): Remove unused var `i'.
7332         (term-dynamic-simple-complete): Make obsolete.
7333         (serial-update-config-menu): Remove unused vars `y' and `str'.
7334         (term-update-mode-line): Remove unused var `temp'.
7336 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
7338         Limit the number of log entries displayed by default.
7339         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
7340         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
7341         using a prefix argument.
7343 2009-12-03  Glenn Morris  <rgm@gnu.org>
7345         * progmodes/idlwave.el (class): Restore still useful declaration.
7347 2009-12-03  Alan Mackenzie  <acm@muc.de>
7349         Enhance `c-parse-state' to run efficiently in "brace deserts".
7351         * progmodes/cc-mode.el (c-basic-common-init):
7352         Call c-state-cache-init.
7353         (c-neutralize-syntax-in-and-mark-CPP): Rename from
7354         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
7355         placing `category' properties value 'c-cpp-delimiter at its boundaries.
7357         * progmodes/cc-langs.el (c-before-font-lock-function):
7358         c-extend-and-neutralize-syntax-in-CPP has been renamed
7359         c-neutralize-syntax-in-and-mark-CPP.
7361         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
7362         with `category' properties now, not `syntax-table' ones.
7364         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
7365         enhanced (but slower) version of c-end-of-macro that won't land
7366         inside a literal or on another awkward character.
7367         (c-state-cache-too-far, c-state-cache-start)
7368         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
7369         (c-state-nonlit-pos-cache-limit, c-state-point-min)
7370         (c-state-point-min-lit-type, c-state-point-min-lit-start)
7371         (c-state-min-scan-pos, c-state-brace-pair-desert)
7372         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
7373         buffer local variables.
7374         (c-state-literal-at, c-state-lit-beg)
7375         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
7376         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
7377         (c-state-cache-top-paren, c-state-cache-after-top-paren)
7378         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
7379         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
7380         (c-renarrow-state-cache)
7381         (c-append-lower-brace-pair-to-state-cache)
7382         (c-state-push-any-brace-pair, c-append-to-state-cache)
7383         (c-remove-stale-state-cache)
7384         (c-remove-stale-state-cache-backwards, c-state-cache-init)
7385         (c-invalidate-state-cache-1, c-parse-state-1)
7386         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
7387         (c-parse-state): Enhance and refactor.
7388         (c-debug-parse-state): Amend to deal with all the new variables.
7390         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
7391         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
7392         modify to use category text properties rather than syntax-table ones.
7393         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
7394         to switch off/on the syntactic paren property of C++ template
7395         delimiters using the category property.
7396         (c-with-<->-as-parens-suppressed): Macro to invoke code with
7397         template delims suppressed.
7398         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
7399         New constant/macros which apply category properties to the start
7400         and end of preprocessor constructs.
7401         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
7402         "comment out" the syntactic value of characters in preprocessor
7403         constructs.
7404         (c-with-cpps-commented-out)
7405         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
7406         with characters in all or all but one preprocessor constructs
7407         "commented out".
7409 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
7411         * proced.el (proced-filter-alist): Use regexp-quote.
7413 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
7415         Cleanup.
7416         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
7417         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
7418         arguments.  Expand `default-directory'.
7420         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
7421         the benefit of returning an expanded localname.
7422         (tramp-tramp-file-p): Handle the case NAME is not a string.
7424 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
7426         Add support for bzr shelve/unshelve.
7427         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
7428         (vc-bzr-extra-menu-map): New variables.
7429         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
7430         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
7431         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
7432         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
7433         (vc-bzr-dir-extra-headers): Display shelves.
7435         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
7437 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7439         * textmodes/bibtex.el (bibtex-complete-internal):
7440         Use completion-in-region.
7441         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
7443 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
7445         Support applying stashes.  Improve UI.
7446         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
7447         (vc-git-stash-apply, vc-git-stash-pop)
7448         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
7449         (vc-git-stash-menu): New functions.
7450         (vc-git-stash-menu-map): New variable.
7451         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
7453 2009-12-03  Glenn Morris  <rgm@gnu.org>
7455         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
7456         (vc-print-log-internal): Fix previous change.
7457         (vc-revert): Correct pluralization.
7459 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7461         * progmodes/make-mode.el (makefile-special-targets-list): No need for
7462         it to be an alist any more.
7463         (makefile-complete): Use completion-in-region.
7465         * progmodes/octave-mod.el (octave-complete-symbol):
7466         Use completion-in-region.
7468         Misc cleanup.
7469         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
7470         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
7471         (idlwave-complete-class): Don't quote lambda.
7472         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
7473         (idlwave-mode-map): Move initialization into declaration.
7474         (idlwave-action-and-binding): Use backquotes.
7475         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
7476         Simplify.
7477         (idlwave-is-pointer-dereference): Remove unused var `pos'.
7478         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
7479         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
7480         `parts', and `all-parts'.
7481         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
7482         (idlwave-convert-xml-system-routine-info): Remove unused string
7483         `version-string'.
7484         (idlwave-display-user-catalog-widget): Use dolist.
7485         (idlwave-scanning-lib): Declare dynamically-scoped var.
7486         (idlwave-scan-library-catalogs): Remove unused var `flags'.
7487         (completion-highlight-first-word-only): Declare to silence bytecomp.
7488         (idlwave-popup-select): Tighten scope of `resp'.
7489         (idlwave-find-struct-tag): Remove unused var `beg'.
7490         (idlwave-after-load-rinfo-hook): Declare.
7491         (idlwave-sintern-class-info): Remove unused var `taglist'.
7492         (idlwave-find-class-definition): Remove unused var `list'.
7493         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
7494         (idlwave-what-module-find-class): Remove unused var `classes'.
7496 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
7498         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
7500 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7502         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
7503         buffers visited.  Remove redundant current-buffer-saving.
7505 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7507         Use completion-in-buffer and remove uses of dynamic scoping.
7508         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
7509         (pascal-buffer-to-use, pascal-flag): Don't declare.
7510         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
7511         (pascal-get-completion-decl, pascal-keyword-completion):
7512         Add `pascal-str' argument, save-excursion,
7513         return the found completions, and don't filter with pascal-pred.
7514         (pascal-completion-cache): New var.
7515         (pascal-completion): Don't switch buffer any more (it was never
7516         necessary).  Don't save-excursion any more (it's done by the called
7517         subroutines).  Use a cache to avoid redundant computations.
7518         Use complete-with-action rather than pascal-completion-response and
7519         let it apply the predicate as well.
7520         (pascal-complete-word): Use completion-in-buffer when
7521         pascal-toggle-completions is nil.
7522         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
7523         not used any more.
7524         (pascal-comp-defun): Don't change buffer any more.
7525         Use complete-with-action rather than pascal-completion-response and
7526         let it apply the predicate as well.
7527         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
7528         when neded.
7530 2009-12-02  Kenichi Handa  <handa@m17n.org>
7532         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
7533         shape for all Indic scripts.
7535 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7537         Use completion-in-buffer.
7538         * wid-edit.el (widget-field-text-end): New function.
7539         (widget-field-value-get): Use it.
7540         (widget-string-complete, widget-file-complete)
7541         (widget-color-complete): Use it and completion-in-region.
7542         (widget-complete): Don't narrow the buffer.
7544 2009-12-02  Glenn Morris  <rgm@gnu.org>
7546         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
7547         (rmail-select-summary): Use rmail-pop-to-buffer.
7548         * mail/rmailsum.el: Replace all pop-to-buffer calls with
7549         rmail-pop-to-buffer, to prevent horizontal splits.
7551         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
7552         save-excursion with save-current-buffer.
7553         Widen before searching.  (Bug#5093)
7554         (diary-list-sexp-entries): Remove superfluous save-excursion.
7556 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
7558         * woman.el (woman-make-bufname): Handle man-pages with "." in the
7559         name.  (Bug#5038)
7561 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
7563         * ido.el (ido-file-internal): Handle filenames at point that do
7564         not have a directory part.  (Bug#5049)
7566 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
7568         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
7569         (mpc-songs-jump-to, mpc-resume): Doc fixes.
7571 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
7573         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
7574         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
7575         any more.
7577 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7579         * comint.el (comint-insert-input): Ignore clicks to the right of
7580         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
7582         * vc.el (vc-print-log-internal): Don't wait for the process to
7583         terminate before setting up the major mode.
7585         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
7586         in case.
7588         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
7589         the last element.
7591         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
7593 2009-12-01  Glenn Morris  <rgm@gnu.org>
7595         * window.el (window--display-buffer-2): Fix previous changes.
7597 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
7599         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
7601 2009-12-01  Glenn Morris  <rgm@gnu.org>
7603         * Makefile.in (ELCFILES): Add mpc.elc.
7605 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7607         * mpc.el: New file.
7609 2009-12-01  Glenn Morris  <rgm@gnu.org>
7611         * window.el (window-to-use): Define for compiler.
7613         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
7614         consistent with others (no final period).
7616         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
7617         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
7619 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
7621         Make vc-print-log buttons work.
7622         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
7624 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
7626         * savehist.el (savehist-autosave-interval): Allow setting to nil
7627         through customize.  (Bug#5056)
7629 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
7631         Fix references to jit-lock properties.
7632         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
7633         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
7634         (perl-font-lock-special-syntactic-constructs):
7635         Quote jit-lock-defer-multiline property.
7637 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
7639         * vc-git.el (vc-git-registered): Call vc-git-root only once.
7641 2009-11-30  Juri Linkov  <juri@jurta.org>
7643         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
7644         value `buffer' of `multi-isearch-next-buffer-current-function'.
7645         Use `(current-buffer)' when `buffer' is nil.
7646         (multi-isearch-next-buffer-from-list): Don't fallback to
7647         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
7649 2009-11-30  Juri Linkov  <juri@jurta.org>
7651         * misearch.el (multi-isearch-read-buffers): Move canonicalization
7652         of buffers with `get-buffer' to `multi-isearch-buffers'.
7653         (multi-isearch-buffers, multi-isearch-buffers-regexp):
7654         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
7655         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
7656         FILES with `expand-file-name' converting relative file names
7657         to absolute.  Doc fix.  (Bug#4727)
7659 2009-11-30  Juri Linkov  <juri@jurta.org>
7661         * misearch.el (multi-isearch-read-buffers)
7662         (multi-isearch-read-matching-buffers): New functions.
7663         (multi-isearch-buffers, multi-isearch-buffers-regexp):
7664         Use them in the `interactive' spec.  Doc fix.
7665         (multi-isearch-read-files, multi-isearch-read-matching-files):
7666         New functions.
7667         (multi-isearch-files, multi-isearch-files-regexp):
7668         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
7670 2009-11-30  Juri Linkov  <juri@jurta.org>
7672         * doc-view.el (doc-view-continuous):
7673         Rename from `doc-view-continuous-mode'.
7674         (doc-view-menu): Move "Toggle display" to the top.
7675         Add submenu "Continuous" with radio buttons "Off"/"On"
7676         and "Save as Default".
7677         (doc-view-scroll-up-or-next-page)
7678         (doc-view-scroll-down-or-previous-page)
7679         (doc-view-next-line-or-next-page)
7680         (doc-view-previous-line-or-previous-page): Rename
7681         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
7683 2009-11-30  Juri Linkov  <juri@jurta.org>
7685         * comint.el (comint-mode-map): Rebind `M-r' from
7686         `comint-previous-matching-input' to
7687         `comint-history-isearch-backward-regexp'.
7688         Unbind `M-s' to allow global key binding `M-s'.
7689         Add menu items for `comint-history-isearch-backward' and
7690         `comint-history-isearch-backward-regexp'.  (Bug#3746)
7692 2009-11-30  Juri Linkov  <juri@jurta.org>
7694         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
7695         For def=recenter, replace `recenter' with `recenter-top-bottom'
7696         that is called with `this-command' and `last-command' let-bound
7697         to `recenter-top-bottom'.  When the last `def' was not `recenter',
7698         set `recenter-last-op' to nil.  (Bug#4981)
7700 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7702         Minor cleanup and simplification.
7703         * filecache.el (file-cache-add-directory)
7704         (file-cache-add-directory-recursively)
7705         (file-cache-add-from-file-cache-buffer)
7706         (file-cache-delete-file-regexp, file-cache-delete-directory)
7707         (file-cache-files-matching-internal, file-cache-display): Use dolist.
7708         (file-cache-temp-minibuffer-message): Delete function.
7709         (file-cache-minibuffer-complete): Use minibuffer-message instead.
7711         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
7712         Don't signal an error when bumping into EOB in tr, s, or y.
7714 2009-11-29  Juri Linkov  <juri@jurta.org>
7716         * startup.el (fancy-about-text): Fix wording of Guided Tour.
7717         (Bug#4960)
7719         * descr-text.el (describe-char-unidata-list): Use lowercase name
7720         for "Unicode name" like in other tags.
7722 2009-11-29  Juri Linkov  <juri@jurta.org>
7724         * ediff-util.el (ediff-minibuffer-with-setup-hook):
7725         New compatibility macro.
7726         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
7728 2009-11-29  Juri Linkov  <juri@jurta.org>
7730         Add defcustom to define the cycling order of `recenter-top-bottom'.
7731         (Bug#4981)
7733         * window.el (recenter-last-op): Doc fix.
7734         (recenter-positions): New defcustom.
7735         (recenter-top-bottom): Rewrite to use `recenter-positions'.
7736         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
7738 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
7740         Improve integration of Tramp and ange-ftp in eshell.
7742         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
7743         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
7744         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
7746         * eshell/esh-util.el (top): Require also Tramp when compiling.
7747         (eshell-directory-files-and-attributes): Check for FTP remote
7748         connection.
7749         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
7750         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
7751         (eshell-file-attributes): Handle ".".  Return `entry'.
7753         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
7754         (ange-ftp-directory-files-and-attributes)
7755         (ange-ftp-real-directory-files-and-attributes): New defuns.
7757         * net/tramp.el (tramp-maybe-open-connection): Open the remote
7758         shell with "exec" when possible.  This prevents trailing prompts
7759         in `start-file-process'.
7761 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7763         Try and remove assumptions about point-min==1.
7764         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
7765         (rng-compute-mode-line-string): Show the validation percentage in
7766         terms of the narrowed text, not the widened text.
7767         (rng-do-some-validation): Don't catch internal errors when debugging.
7768         (rng-first-error): Simplify.
7769         (rng-after-change-function): Remove work around.  AFAIK the bug has
7770         been fixed a while ago.
7772         * image-mode.el (image-minor-mode): Exit more gracefully when the image
7773         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
7775         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
7777         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
7778         `cd' doesn't always do it for us (bug#5067).
7780         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
7781         on 2009-10-25 as part of some other change (bug#5067).
7783 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7785         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
7786         `suspicious'.
7787         (byte-compile-warnings): Use byte-compile-warning-types.
7788         (byte-compile-save-excursion): Warn about use of set-buffer right
7789         after save-excursion.
7791         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
7792         the excursion as well.
7794 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
7796         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
7797         providing a Tramp related implementation of "su" and "sudo".
7798         (eshell-unix-initialize): Add "su" and "sudo".
7800 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
7802         * net/socks.el (socks-send-command): Convert binary request to
7803         unibyte before sending.  This fixes mishandling of some port
7804         numbers such as 129.
7806 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
7808         * help.el (describe-bindings-internal): Remove `interactive'.
7810         * man.el (Man-completion-table): Trim a terminating "(".
7811         Remove the space between name page a section.
7812         Add the command's description on the `help-echo' property.
7813         Remove `process-connection-type' binding since it's unused by
7814         call-process.
7815         Provide completion for the "<section> <name>" format as well.
7816         (Man-default-man-entry): Remove spurious var shadowing the argument.
7818 2009-11-26  Kevin Ryde  <user42@zip.com.au>
7820         * log-view.el: Add "Keywords: tools", since its other keywords
7821         aren't in finder-known-keywords, and following vc.el.
7823         * sha1.el (sha1-string-external): default-directory "/" in case
7824         otherwise non-existent.  process-connection-type pipe for touch of
7825         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
7827 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7829         Misc coding convention cleanups.
7830         * htmlfontify.el (hfy-init-kludge-hook): Rename from
7831         hfy-init-kludge-hooks.
7832         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
7833         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
7834         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
7835         and push.
7836         (hfy-slant, hfy-weight): Use tables rather than code.
7837         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
7838         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
7839         (hfy-face-attr-for-class): Initialize `face-spec' directly.
7840         (hfy-face-to-css): Remove `nconc' with single arg.
7841         (hfy-p-to-face-lennart): Use `or'.
7842         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
7843         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
7844         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
7845         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
7846         (hfy-force-fontification): Use run-hooks.
7848 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
7850         Various minor fixes.
7851         * htmlfontify.el (hfy-default-header): Add toggle_invis since
7852         Javascript belongs in the header, not the body.
7853         (hfy-javascript): Remove.
7854         (hfy-fontify-buffer): Don't insert it any more.
7855         (hfy-face-at): Handle (face0 face1 face2) style face properties.
7856         Fix bug in invis handling when there were no invis props in a chunk.
7858 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7860         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
7862 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
7864         * finder.el (finder-mode-map): Add a menu.
7866 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
7868         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
7869         "unsigned" structs.
7871         (verilog-leap-to-head, verilog-backward-token): Handle "disable
7872         fork" statement better.
7874 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
7876         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
7877         (verilog-delete-auto, verilog-delete-empty-auto-pair)
7878         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
7879         Reported by Clay Douglass.
7881         (verilog-auto-inst, verilog-auto-star-safe)
7882         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
7883         Fix removing "// Interfaces" when saving .* expansions.  Reported by
7884         Pierre-David Pfister.
7886 2009-11-26  Glenn Morris  <rgm@gnu.org>
7888         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
7889         the scope.
7891 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
7893         * vc-annotate.el (vc-annotate-revision-previous-to-line):
7894         Really use previous revision.
7896 2009-11-25  Kevin Ryde  <user42@zip.com.au>
7898         * man.el (Man-completion-table): default-directory "/" in case
7899         doesn't otherwise exist.  process-environment COLUMNS=999 so as
7900         not to truncate long names.  process-connection-type pipe to avoid
7901         any chance of hitting the pseudo-tty TIOCGWINSZ.
7902         (man): completion-ignore-case t for friendliness and since man
7903         itself is case-insensitive on the command line.
7904         Further to Bug#3717.
7906         * arc-mode.el: Add "Keywords: files", so the details in its
7907         commentary can be reached from finder-by-keyword.
7908         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
7909         editing mode, but it's comms related and sgml-mode.el has "comm"
7910         on that basis too.
7911         * textmodes/bibtex-style.el: Add "Keywords: tex".
7912         * international/isearch-x.el, international/ja-dic-cnv.el:
7913         * international/ja-dic-utl.el, international/kkc.el:
7914         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
7916 2009-11-25  Juri Linkov  <juri@jurta.org>
7918         * man.el (Man-completion-table): Modify regexp to include
7919         section names to completion strings.  (Bug#3717)
7921 2009-11-25  Juri Linkov  <juri@jurta.org>
7923         Search recursively in gzipped files.  (Bug#4982)
7925         * progmodes/grep.el (grep-highlight-matches): Add new options
7926         `always' and `auto'.  Doc fix.
7927         (grep-process-setup): Check `grep-highlight-matches' for
7928         `auto-detect' to determine the need to compute grep defaults.
7929         Move Windows/DOS specific --colors settings handling
7930         to `grep-compute-defaults'.  Check `grep-highlight-matches'
7931         to get the value of "--color=".
7932         (grep-compute-defaults): Compute `grep-highlight-matches' when it
7933         has the value `auto-detect'.  Move Windows/DOS specific settings
7934         from `grep-process-setup'.
7935         (zrgrep): New command with alias `rzgrep'.
7937 2009-11-25  Juri Linkov  <juri@jurta.org>
7939         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
7940         to nil instead of switching off view-mode.  (Bug#4896)
7942 2009-11-25  Juri Linkov  <juri@jurta.org>
7944         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
7946         * mwheel.el (mwheel-scroll-up-function)
7947         (mwheel-scroll-down-function): New defvars.
7948         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
7949         `scroll-up', and `mwheel-scroll-down-function' instead of
7950         `scroll-down'.
7952         * doc-view.el (doc-view-scroll-up-or-next-page)
7953         (doc-view-scroll-down-or-previous-page): Add optional ARG.
7954         Use this ARG in the call to image-scroll-up/image-scroll-down.
7955         Change `interactive' spec to "P".  Goto next/previous page only
7956         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
7957         SPC/DEL case).  Doc fix.
7958         (doc-view-next-line-or-next-page)
7959         (doc-view-previous-line-or-previous-page): Rename arg to ARG
7960         for consistency.
7961         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
7962         `doc-view-scroll-up-or-next-page', and buffer-local
7963         `mwheel-scroll-down-function' to
7964         `doc-view-scroll-down-or-previous-page'.
7966 2009-11-25  Juri Linkov  <juri@jurta.org>
7968         Provide additional default values (directories at other Dired
7969         windows) via M-n in the minibuffer of some Dired commands.
7971         * dired-aux.el (dired-diff, dired-compare-directories)
7972         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
7973         `minibuffer-default' in `minibuffer-with-setup-hook'.
7974         (dired-dwim-target-directory): Find a window that displays Dired
7975         buffer instead of failing when the next window is not Dired.
7976         Use `get-window-with-predicate' to find for the next Dired window.
7977         (dired-dwim-target-defaults): New function.
7979         * ediff-util.el (ediff-read-file-name):
7980         Use `dired-dwim-target-defaults' to set `minibuffer-default'
7981         in `minibuffer-with-setup-hook'.
7983 2009-11-25  Juri Linkov  <juri@jurta.org>
7985         Provide additional default values (file name at point or at the
7986         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
7988         * minibuffer.el (read-file-name-defaults): New function.
7989         (read-file-name): Reset `minibuffer-default' to nil when
7990         it duplicates initial input `insdef'.
7991         Bind `minibuffer-default-add-function' to lambda that
7992         calls `read-file-name-defaults' in `minibuffer-selected-window'.
7993         (minibuffer-insert-file-name-at-point): New command.
7995         * files.el (file-name-at-point-functions): New defcustom.
7996         (find-file-default): Remove defvar.
7997         (find-file-read-args): Don't use `find-file-default'.
7998         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
7999         to `read-file-name'.
8000         (find-file-literally): Use `read-file-name' with
8001         `confirm-nonexistent-file-or-buffer'.
8003         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
8005         * dired.el (dired-read-dir-and-switches):
8006         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
8007         to `read-file-name'.
8008         (dired-file-name-at-point): New function.
8009         (dired-mode): Add hook `dired-file-name-at-point' to
8010         `file-name-at-point-functions'.
8012 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8014         Really make the *Completions* window soft-dedicated (bug#5030).
8015         * window.el (window--display-buffer-2): Add `dedicated' argument.
8016         (display-buffer): Pass it when needed so the dedicated flag is set
8017         after calling set-window-buffer, which would otherwise reset it.
8019 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8021         * progmodes/meta-mode.el (meta-complete-symbol):
8022         * progmodes/etags.el (complete-tag):
8023         * mail/mailabbrev.el (mail-abbrev-complete-alias):
8024         Use completion-in-region.
8026         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
8027         (dabbrev-completion): Use completion-in-region.
8028         (dabbrev--abbrev-at-point): Simplify regexp.
8030         * abbrev.el (abbrev--before-point): Use word-motion functions
8031         if :regexp is not specified (bug#5031).
8033         * subr.el (string-prefix-p): New function.
8035         * man.el (Man-completion-cache): New var.
8036         (Man-completion-table): Use it.
8038         * vc.el (vc-print-log-internal): Make `limit' optional for better
8039         compatibility (e.g. with vc-annotate.el).
8041 2009-11-24  Kevin Ryde  <user42@zip.com.au>
8043         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
8044         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
8046         * emacs-lisp/elint.el (elint-add-required-env): Better error message
8047         when .el source file not found or other error.
8049 2009-11-24  Markus Triska  <markus.triska@gmx.at>
8051         * linum.el (linum-update-window): Ignore intangible (bug#4996).
8053 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8055         Handle the [back] button properly (bug#4979).
8056         * descr-text.el (describe-text-properties): Add a `buffer' argument.
8057         Use help-setup-xref, help-buffer, and with-help-window.
8058         (describe-char): Add `buffer' argument.
8059         Pass proper command to help-setup-xref.  Don't meddle with
8060         help-xref-stack-item directly.
8061         (describe-text-category): Use with-help-window and help-buffer.
8063         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
8064         for the displayed buffer (bug#4887).
8066         * man.el (Man-completion-table): New function.
8067         (man): Use it.
8069 2009-11-24  David Reitter  <david.reitter@gmail.com>
8071         * vc-git.el (vc-git-registered): Use checkout directory (where
8072         .git is) rather than the file's directory and a relative path spec
8073         to work around a bug in git.
8075 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
8077         Improve handling of processes on remote hosts.
8079         * eshell/esh-util.el (eshell-path-env): New defvar.
8080         (eshell-parse-colon-path): New defun.
8081         (eshell-file-attributes): Use `eshell-parse-colon-path'.
8083         * eshell/esh-ext.el (eshell-search-path):
8084         Use `eshell-parse-colon-path'.
8085         (eshell-remote-command): Remove argument HANDLER.
8086         (eshell-external-command): Check for FTP remote connection.
8088         * eshell/esh-proc.el (eshell-gather-process-output):
8089         Use `file-truename', in order to start also symlinked files.
8090         Apply `start-file-process' instead of `start-process'.
8091         Shorten `command' to the local file name part.
8093         * eshell/em-cmpl.el (eshell-complete-commands-list):
8094         Use `eshell-parse-colon-path'.
8096         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
8098         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
8099         to `eshell-directory-change-hook'.
8101 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
8103         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
8104         because it could be enabled automatically if view-read-only is non-nil.
8106 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
8108         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
8109         made on 2009-11-22.
8111 2009-11-24  Glenn Morris  <rgm@gnu.org>
8113         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
8114         deleted variable bookmark-bmenu-bookmark-column.
8116         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
8117         Move after definition of global-semantic-idle-tag-highlight-mode.
8119 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
8121         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
8123 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
8125         * net/browse-url.el (browse-url-filename-alist): On Windows, add
8126         two slashes to the "file:" prefix.
8127         (browse-url-file-url): De-munge Cygwin filenames before passing
8128         them to Windows browser.
8129         (browse-url-default-windows-browser): Use call-process.
8131 2009-11-23  Juri Linkov  <juri@jurta.org>
8133         Implement DocView Continuous mode.  (Bug#4896)
8134         * doc-view.el (doc-view-continuous-mode): New defcustom.
8135         (doc-view-mode-map): Bind C-n/<down> to
8136         `doc-view-next-line-or-next-page', C-p/<up> to
8137         `doc-view-previous-line-or-previous-page'.
8138         (doc-view-next-line-or-next-page)
8139         (doc-view-previous-line-or-previous-page): New commands.
8141 2009-11-23  Juri Linkov  <juri@jurta.org>
8143         Implement Isearch in comint input history.  (Bug#3746)
8144         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
8145         `isearch-mode-hook'.
8146         (comint-history-isearch): New defcustom.
8147         (comint-history-isearch-backward)
8148         (comint-history-isearch-backward-regexp): New commands.
8149         (comint-history-isearch-message-overlay): New buffer-local variable.
8150         (comint-history-isearch-setup, comint-history-isearch-end)
8151         (comint-goto-input, comint-history-isearch-search)
8152         (comint-history-isearch-message, comint-history-isearch-wrap)
8153         (comint-history-isearch-push-state)
8154         (comint-history-isearch-pop-state): New functions.
8156 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
8158         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
8159         return.
8160         (tramp-handle-make-symbolic-link)
8161         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
8162         Quote file names.
8163         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
8164         (tramp-handle-process-file): Use it.
8166 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8168         * window.el (move-to-window-line-last-op): Remove.
8169         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
8171 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
8173         Make M-r mirror the new cycling behavior of C-l.
8174         * window.el (move-to-window-line-last-op): New var.
8175         (move-to-window-line-top-bottom): New command.
8176         (global-map): Bind M-r move-to-window-line-top-bottom.
8178 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
8180         * dired-x.el (dired-guess-shell-alist-default):
8181         Support xz format.  (Bug#4953)
8183 2009-11-22  Chong Yidong  <cyd@stupidchicken.com>
8185         * cedet/srecode/map.el (srecode-get-maps):
8186         * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
8187         * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
8188         * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
8189         (semantic-toggle-decoration-style):
8190         * cedet/semantic/decorate/include.el
8191         (semantic-decoration-include-describe)
8192         (semantic-decoration-unknown-include-describe)
8193         (semantic-decoration-unparsed-include-describe)
8194         (semantic-decoration-all-include-summary):
8195         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
8196         * cedet/semantic/analyze/complete.el
8197         (semantic-analyze-possible-completions):
8198         * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
8199         (semantic-show-unmatched-syntax-mode)
8200         (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
8201         (semantic-highlight-func-mode):
8202         * cedet/semantic/util.el (semantic-describe-buffer):
8203         * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
8204         (semantic-symref-find-tags-by-name)
8205         (semantic-symref-find-tags-by-regexp)
8206         (semantic-symref-find-tags-by-completion)
8207         (semantic-symref-find-file-references-by-name)
8208         (semantic-symref-find-text):
8209         * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
8210         (senator-yank-tag):
8211         * cedet/semantic/scope.el (semantic-calculate-scope):
8212         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
8213         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
8214         (define-semantic-idle-service):
8215         * cedet/semantic/complete.el (semantic-complete-analyze-inline)
8216         (semantic-complete-analyze-inline-idle):
8217         * cedet/semantic/analyze.el (semantic-analyze-current-context):
8218         * cedet/mode-local.el (describe-mode-local-bindings)
8219         (describe-mode-local-bindings-in-mode):
8220         * cedet/ede/make.el (ede-make-check-version):
8221         * cedet/ede/locate.el (ede-enable-locate-on-project):
8222         * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
8223         (cedet-idutils-version-check):
8224         * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
8225         (cedet-gnu-global-version-check):
8226         * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
8227         (cedet-cscope-version-check): Use called-interactively-p instead
8228         of interactive-p.
8230         * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
8231         Use semantic-format-tag-prototype.
8233 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
8235         * emulation/viper-cmd.el: Use viper-last-command-char instead of
8236         last-command-char/last-command-event.
8237         (viper-prefix-arg-value): Do correct conversion of event-char for
8238         XEmacs.
8240         * emulation/viper-util.el, emulation/viper.el:
8241         Use viper-last-command-char instead of
8242         last-command-char/last-command-event.
8244         * ediff-init.el, ediff-mult.el, ediff-util.el:
8245         Replace last-command-char and last-command-event
8246         with (ediff-last-command-char) everywhere.
8248         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
8249         created in fundamental mode.
8251         * ediff.el (ediff-version): Revert the change of interactive-p to
8252         called-interactively-p.
8254 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
8256         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
8257         generation from word-movement command names.
8259 2009-11-21  Chong Yidong  <cyd@stupidchicken.com>
8261         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
8262         (semantic-complete-jump-local, semantic-complete-jump):
8263         Improve prompt string.
8265 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
8267         * cus-start.el (all): Add native condition for font-use-system-font.
8269 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
8271         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
8272         Correct the patch from 2009-11-18.  (Bug#3910)
8274 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
8276         * progmodes/subword.el: Rename from lisp/subword.el.
8278         * subword.el: Rename to progmodes/subword.el.
8280         * Makefile.in (ELCFILES): Adapt to subword.el move.
8282 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
8283             Stefan Monnier  <monnier@iro.umontreal.ca>
8285         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
8286         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
8287         (bookmark-bmenu-show-filenames): Use push.
8288         (bookmark-bmenu-hide-filenames): Use local var instead of
8289         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
8290         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
8291         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
8292         filenames now that the bookmark names are always available.
8294 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8296         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
8297         (bookmark-search-pattern): Move and leave unbound.
8298         (bookmark-bmenu-mode-map): Change binding.
8299         (bookmark-read-search-input): Simplify.
8300         Don't use text-char-description.  Don't error on non-char events.
8301         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
8302         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
8303         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
8304         Use a local var for the timer.
8305         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
8306         (i.e. bookmark-bmenu-search).
8308 2009-11-21  Glenn Morris  <rgm@gnu.org>
8310         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
8312 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
8314         * net/browse-url.el (browse-url-default-windows-browser):
8315         Use cygstart for cygwin.
8317 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
8319         * bookmark.el: Formatting and doc fixes only:
8320         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
8321         (bookmark-bmenu-search): Wrap to fit within 80 columns.
8322         Minor grammar and punctuation fixes in doc string.
8323         (bookmark-read-search-input): Adjust to fit within 80 columns.
8325 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
8327         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
8328         (c-backward-into-nomenclature): Adapt to subword renaming.
8330         * subword.el (subword-forward, subword-backward, subword-mark)
8331         (subword-kill, subword-backward-kill, subword-transpose)
8332         (subword-downcase, subword-upcase, subword-capitalize)
8333         (subword-forward-internal, subword-backward-internal):
8334         Rename from forward-subword, backward-subword, mark-subword,
8335         kill-subword, backward-kill-subword, transpose-subwords,
8336         downcase-subword, upcase-subword, capitalize-subword,
8337         forward-subword-internal, backward-subword-internal.
8339 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
8341         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
8342         New options.
8343         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
8344         New vars.
8345         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
8346         (bookmark-bmenu-filter-alist-by-regexp)
8347         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
8348         (bookmark-bmenu-search): New command.
8349         (bookmark-bmenu-mode-map): Bind it.
8351 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
8353         * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
8355         * cedet/semantic/idle.el (define-semantic-idle-service)
8356         (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
8358 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
8360         * progmodes/cc-cmds.el: declare-functioned forward-subword and
8361         backward-subword to quit the byte-compiler.
8363         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
8365         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
8367         * progmodes/cc-cmds.el (c-update-modeline)
8368         (c-forward-into-nomenclature, c-backward-into-nomenclature):
8369         Refer to subword.el functions instead of cc-subword.el.
8371         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
8372         subword.el functions instead of cc-subword.el.
8374         * progmodes/cc-subword.el: Rename to subword.el.
8375         * subword.el: Rename from progmodes/cc-subword.el.
8376         (subword-mode-map): Rename from c-subword-mode-map.
8377         (subword-mode): Rename from c-subword-mode.
8378         (global-subword-mode): New global minor mode.
8379         (forward-subword): Rename from c-forward-subword.
8380         (backward-subword): Rename from c-backward-subword.
8381         (mark-subword): Rename from c-mark-subword.
8382         (kill-subword): Rename from c-kill-subword.
8383         (backward-kill-subword): Rename from c-backward-kill-subword.
8384         (transpose-subwords): Rename from c-tranpose-subword.
8385         (downcase-subword): Rename from c-downcase-subword.
8386         (capitalize-subword): Rename from c-capitalize-subword.
8387         (forward-subword-internal): Rename from c-forward-subword-internal.
8388         (backward-subword-internal): Rename from c-backward-subword-internal.
8390 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
8392         * vc.el (vc-deduce-fileset): Allow non-state changing operations
8393         from a dired buffer.
8394         (vc-dired-deduce-fileset): New function.
8395         (vc-root-diff, vc-print-root-log): Use it.
8397         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
8398         nil LIMIT argument to vc-print-log-internal.
8400 2009-11-20  Glenn Morris  <rgm@gnu.org>
8402         * Makefile.in (ELCFILES): Regenerate.
8404 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
8406         * cedet/cedet.el (cedet-menu-map): Re-order menu items.
8408         * cedet/semantic.el: Enable idle-mode menu items only if
8409         global-semantic-idle-scheduler-mode is enabled.
8410         (semantic-default-submodes): Doc fix.
8412         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
8413         When turning off, disable other idle modes.
8415 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
8417         * calc/calc.el (calc-set-mode-line):
8418         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
8419         (math-format-number): Rename `math-format-complement-signed' to
8420         `math-format-twos-complement'.
8422         * calc/calc-bin.el (math-format-twos-complement): Rename from
8423         math-format-complement-signed.
8424         (calc-radix): Rename `calc-complement-signed-mode' to
8425         `calc-twos-complement-mode'.
8426         (calc-octal-radix, calc-hex-radix): Add an argument for
8427         two's complement.
8429         * calc/calc-embed.el (calc-embedded-mode-vars):
8430         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
8432         * calc/calc-ext.el (calc-init-extensions):
8433         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
8434         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
8436         * calc/calc-units.el (math-build-units-table-buffer):
8437         Let `calc-twos-complement-mode' be nil.
8439         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
8440         entries.
8442         * calc/calc-vec.el (calcFunc-vunpack):
8443         * calc/calc-aent.el (calc-do-calc-eval):
8444         * calc/calc-forms.el (math-format-date):
8445         * calc/calc-graph.el (calc-graph-plot):
8446         * calc/calc-math.el (math-use-emacs-fn):
8447         * calc/calccomp.el (math-compose-expr):
8448         Let `calc-twos-complement-mode' be nil.
8450 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8452         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
8453         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
8454         * minibuffer.el (completion-in-region-functions): New hook.
8455         (completion-in-region): New function.
8456         * emacs-lisp/lisp.el (lisp-complete-symbol):
8457         * pcomplete.el (pcomplete-std-complete): Use it.
8459 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8461         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
8462         (latex-complete-alist): New vars.
8463         (latex-string-prefix-p, latex-complete-bibtex-keys)
8464         (latex-complete-envnames, latex-complete-refkeys)
8465         (latex-complete-data): New functions.
8466         (latex-complete, latex-indent-or-complete): New commands.
8468         * window.el (display-buffer-mark-dedicated): New var.
8469         (display-buffer): Obey it.
8470         * minibuffer.el (minibuffer-completion-help): Use it.
8472         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
8474         * filecache.el (file-cache-add-file): Use push and cons.
8475         (file-cache-delete-file-regexp): Use push.
8476         (file-cache-complete): Use completion-in-region.
8478         * simple.el (with-wrapper-hook): Fix thinko.
8480         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
8481         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
8482         Use with-current-buffer and string-to-number.
8483         (hfy-fallback-colour-values): Use assoc-string.
8484         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
8485         (hfy-face-at): Remove unused var `found-face'.
8486         (hfy-compile-stylesheet): Remove unused var `css'.
8487         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
8488         and `orig-buffer'.
8489         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
8490         Use with-current-buffer.
8491         (hfy-text-p): Use expand-file-name and fewer setq.
8493 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
8495         * htmlfontify.el, hfy-cmap.el: New files.
8497 2009-11-19  Juri Linkov  <juri@jurta.org>
8499         * minibuffer.el (completions-format): New defcustom.
8500         (completion--insert-strings): Implement vertical format.
8502         * simple.el (switch-to-completions): Move point to the first
8503         completion when point was at the beginning of the buffer.
8505 2009-11-19  Juri Linkov  <juri@jurta.org>
8507         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
8509         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
8511 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
8513         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
8514         (mail-signature): Change default to t.
8515         (mail-from-style): Deprecate `system-default' value.
8516         (mail-insert-from-field): For default value of mail-from-style,
8517         default to `angles' unless `angles' needs quoting and `parens'
8518         does not.
8519         (mail-citation-prefix-regexp): Use citation regexp from
8520         message-mode.
8522 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
8524         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
8525         Set variables for computing the prompt for reading password.
8527 2009-11-19  Glenn Morris  <rgm@gnu.org>
8529         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
8531         * textmodes/flyspell.el (sgml-lexical-context): Declare.
8533         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
8534         (newsticker-treeview-listwindow-height): Fix custom type.
8536 2009-11-19  Kenichi Handa  <handa@m17n.org>
8538         * descr-text.el (describe-char-padded-string): Compose with TAB
8539         only if there's a font for CH.
8540         (describe-char): Fix the condition for detecting a trivial composition.
8542 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
8544         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
8545         more accurate version of the regexp.  (Bug#3910)
8547 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
8549         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
8551 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
8553         * font-setting.el (font-use-system-font): Declare for byte-compiler.
8554         (font-setting-change-default-font): Fix typo in docstring.
8556 2009-11-18  Alan Mackenzie  <acm@muc.de>
8558         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
8560 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
8562         * font-setting.el (font-use-system-font): Move ...
8564         * cus-start.el (all): ... to here.
8566 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
8568         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
8569         Don't set `ad-return-value' if `ad-do-it' doesn't.
8571         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
8572         modification time.
8574 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
8576         * menu-bar.el: Put "Use system font" in Option-menu.
8577         (menu-bar-options-save): Add font-use-system-font.
8579         * loadup.el: If feature system-font-setting or font-render-setting is
8580         there, load font-setting.
8582         * Makefile.in (ELCFILES): Add font-settings.el.
8583         * font-setting.el: New file.
8585 2009-11-17  Glenn Morris  <rgm@gnu.org>
8587         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
8589         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
8590         Preserve point in the list buffer.  (Bug#4939)
8591         Use point-at-eol.
8592         (newsticker--treeview-list-update-highlight)
8593         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
8595 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
8597         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
8598         Remove.
8600         * calc/calc-ext.el (calc-init-extensions): Remove references to
8601         symclip.
8603         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
8605         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
8606         * calc/calc-help.el (calc-b-prefix-help): Remove references to
8607         `calc-symclip'.
8609 2009-11-16  Kevin Ryde  <user42@zip.com.au>
8611         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
8612         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
8614         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
8615         (lm-keywords-list): Allow comma-only separator like "foo,bar".
8616         Ignore trailing spaces by omit-nulls to split-string (fixing
8617         regression from Emacs 21 due to the incompatible split-string
8618         change).  (Bug #4928.)
8620 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
8622         * vc.el (vc-log-show-limit): Default to 2000.
8623         (vc-print-log-internal): Insert buttons to request more entries
8624         when limiting the output.
8626         * vc-sccs.el (vc-sccs-print-log):
8627         * vc-rcs.el (vc-rcs-print-log):
8628         * vc-cvs.el (vc-cvs-print-log):
8629         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
8630         LIMIT is non-nil.
8632 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
8634         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
8635         error when `tramp-gvfs-dbus-event-vector' is set.
8636         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
8638 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8640         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
8642 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
8644         * net/dbus.el (dbus-unregister-service): New defun.
8645         (dbus-register-property): Register the handlers of
8646         "org.freedesktop.DBus.Properties" for SERVICE.
8647         (dbus-property-handler): Fix docstring.
8649 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8651         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
8652         Quote doc string reference in defvaralias as it is not in special form.
8653         (byte-compile-output-docform): Doc fix.
8655 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
8657         * calc/calc.el (math-2-word-size, math-half-2-word-size)
8658         (calc-complement-signed-mode): New variables.
8659         (calc-set-mode-line): Add indicator for twos-complements.
8660         (math-format-number): Format twos-complement notation.
8662         * calc/calc-bin.el (calc-word-size): Reset the variables
8663         `math-2-word-size' and `math-half-2-word-size'.
8664         (math-format-complement-signed, math-symclip, calcFunc-symclip)
8665         (calc-symclip): New functions.
8667         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
8669         * calc/calc-embed.el (calc-embedded-mode-vars):
8670         Add `calc-complement-signed-mode' to the list of modes.
8672         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
8673         (calc-b-oper-keys): Add `calc-symclip' to list.
8675         * calc/calc-ext.el (math-read-number-fancy): Read complement
8676         signed numbers.
8677         (calc-init-extensions): Add binding for `calc-symclip'.
8678         Add autoload for `calcFunc-symclip' and `calc-symclip'.
8680         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
8681         `calc-symclip'.
8682         (calc-modes-menu): Add item for twos complement mode.
8684         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
8686 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
8688         * register.el (jump-to-register, insert-register): Handle Semantic
8689         tags.  From commented-out advice in semantic/senator.el.
8691 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
8693         * vc.el (vc-log-show-limit): New variable.
8694         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
8695         when using a prefix argument.
8696         (vc-print-log-internal): Add new argument LIMIT.
8698         * vc-svn.el (vc-svn-print-log):
8699         * vc-mtn.el (vc-mtn-print-log):
8700         * vc-hg.el (vc-hg-print-log):
8701         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
8702         pass it to the log command when set.  Make the BUFFER argument
8703         non-optional.
8705         * vc-sccs.el (vc-sccs-print-log):
8706         * vc-rcs.el (vc-rcs-print-log):
8707         * vc-git.el (vc-git-print-log):
8708         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
8709         ignore it.  Make the BUFFER argument non-optional
8711         * bindings.el (mode-line-buffer-identification): Do not purecopy.
8713 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
8715         * dired.el (dired-mode-map): Move encryption items to "Operate"
8716         menu (Bug#4703).
8718         * strokes.el (strokes-update-window-configuration): Make strokes
8719         buffer current before erasing (Bug#4906).
8721         * cedet/semantic/idle.el (semantic-idle-summary-mode)
8722         (semantic-idle-summary-mode): Define using define-minor-mode
8723         instead of define-semantic-idle-service.
8724         (semantic-idle-summary-mode): New function.
8725         (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
8726         that mouse motion does not reset the echo area.
8728 2009-11-15  Juri Linkov  <juri@jurta.org>
8730         * simple.el (set-mark-default-inactive): Add :type, :group
8731         and :version.  (Bug#4876)
8733 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
8735         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
8736         (archive-unique-fname): ... here.  (Bug#4929)
8738 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8740         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
8741         with a real fix.
8743         * novice.el (disabled-command-function): Add useful args.
8744         Setup the help buffer so that [back] works.
8745         Remove redundant call to help-mode.
8746         (disabled-command-function): Use `case'.
8747         (en/disable-command): New function extracted from enable-command.
8748         (enable-command, disable-command): Use it.
8750 2009-11-14  Glenn Morris  <rgm@gnu.org>
8752         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
8753         constants.  (Bug#4913)
8755         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
8757 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
8759         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
8760         defined in C that have no doc-strings.  (Bug#1063)
8762 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
8764         * cus-edit.el (data, files):
8765         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
8767 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
8769         * simple.el (shell-command): Doc fix (Bug#4891).
8771         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
8773 2009-11-14  Glenn Morris  <rgm@gnu.org>
8775         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
8776         statements for vc-diff, emerge-quit, and rmail-cease-edit.
8777         If they are already loaded, eval-after-load will do the right thing.
8779         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
8780         compiling.
8782         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
8784         * simple.el (x-selection-owner-p): Declare.
8785         (read-mail-command): Use custom radio type rather than choice.
8786         (completion-no-auto-exit): Doc fix.
8788         * custom.el (defgroup):
8789         * epg-config.el (epg): Doc fixes.
8791 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
8793         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
8794         * international/ccl.el (define-ccl-program): Do not purecopy the
8795         docstring, defconst does it anyway.
8797 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8799         * add-log.el (add-change-log-entry): Avoid displaying the changelog
8800         a second time.
8802         * x-dnd.el (x-dnd-maybe-call-test-function):
8803         * window.el (split-window-vertically):
8804         * whitespace.el (whitespace-help-on):
8805         * vc-rcs.el (vc-rcs-consult-headers):
8806         * userlock.el (ask-user-about-lock-help)
8807         (ask-user-about-supersession-help):
8808         * type-break.el (type-break-force-mode-line-update):
8809         * time-stamp.el (time-stamp-conv-warn):
8810         * terminal.el (te-set-output-log, te-more-break, te-filter)
8811         (te-sentinel, terminal-emulator):
8812         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
8813         (term-write-input-ring, term-check-source, term-start-output-log):
8814         (term-display-buffer-line, term-dynamic-list-completions):
8815         (term-ansi-make-term, serial-term):
8816         * subr.el (selective-display):
8817         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
8818         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
8819         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
8820         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
8821         (speedbar-remove-localized-speedbar-support)
8822         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
8823         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
8824         (speedbar-buffers-line-directory):
8825         * simple.el (shell-command-on-region, append-to-buffer)
8826         (prepend-to-buffer):
8827         * shadowfile.el (shadow-save-todo-file):
8828         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
8829         (scroll-bar-maybe-set-window-start):
8830         * sb-image.el (speedbar-image-dump):
8831         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
8832         (load-save-place-alist-from-file):
8833         * ps-samp.el (ps-print-message-from-summary):
8834         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
8835         (ps-background-image, ps-begin-job, ps-do-despool):
8836         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
8837         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
8838         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
8839         (pr-call-process, pr-file-list, pr-interface-save):
8840         * novice.el (disabled-command-function)
8841         (enable-command, disable-command):
8842         * mouse.el (mouse-buffer-menu-alist):
8843         * mouse-copy.el (mouse-kill-preserving-secondary):
8844         * macros.el (kbd-macro-query):
8845         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
8846         * informat.el (batch-info-validate):
8847         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
8848         * hippie-exp.el (try-expand-dabbrev-visible):
8849         * help-mode.el (help-make-xrefs):
8850         * help-fns.el (describe-variable):
8851         * generic-x.el (bat-generic-mode-run-as-comint):
8852         * finder.el (finder-mouse-select):
8853         * find-dired.el (find-dired-sentinel):
8854         * filesets.el (filesets-file-close):
8855         * files.el (list-directory):
8856         * faces.el (list-faces-display, describe-face):
8857         * facemenu.el (list-colors-display):
8858         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
8859         * epg.el (epg--process-filter, epg-cancel):
8860         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
8861         (epa--read-signature-type):
8862         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
8863         (emerge-file-names):
8864         * ehelp.el (electric-helpify):
8865         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
8866         * ediff-vers.el (rcs-ediff-view-revision):
8867         * ediff-util.el (ediff-setup):
8868         * ediff-mult.el (ediff-append-custom-diff):
8869         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
8870         (ediff-wordify):
8871         * echistory.el (Electric-command-history-redo-expression):
8872         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
8873         * disp-table.el (describe-display-table):
8874         * dired.el (dired-find-buffer-nocreate):
8875         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
8876         * dabbrev.el (dabbrev--same-major-mode-p):
8877         * chistory.el (list-command-history):
8878         * apropos.el (apropos-documentation):
8879         * allout.el (allout-obtain-passphrase):
8880         (allout-copy-exposed-to-buffer):
8881         (allout-verify-passphrase): Use with-current-buffer.
8883 2009-11-13  Glenn Morris  <rgm@gnu.org>
8885         * Makefile.in (ELCFILES): Regenerate.
8887 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
8889         * net/dbus.el (dbus-registered-objects-table): Rename from
8890         `dbus-registered-functions-table', because it contains also properties.
8891         (dbus-unregister-object): Unregister also properties.
8892         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
8893         Use a timeout of 500 msec, in order to not block.
8894         (dbus-register-property, dbus-property-handler): New defuns.
8896 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8898         * simple.el (minibuffer-default-add-completions): Drop deprecated
8899         4th arg.
8901 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
8903         * textmodes/artist.el (artist-mouse-choose-operation):
8904         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
8905         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
8906         (artist-compute-up-event-key): New function.
8907         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
8909 2009-11-13  Kenichi Handa  <handa@m17n.org>
8911         * language/japan-util.el: Make sure that the value of jisx0208
8912         property is jisx0208 character.
8914 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
8916         * international/mule.el (auto-coding-regexp-alist): Only purecopy
8917         car or each item, not the whole list.
8919 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8921         * minibuffer.el (minibuffer-completion-help):
8922         Use minibuffer-hide-completions.
8924 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
8926         * dired.el (dired-save-positions, dired-restore-positions): New funs.
8927         (dired-revert): Use them (bug#4880).
8929 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
8931         * tooltip.el (tooltip-frame-parameters): Undo previous change.
8933 2009-11-12  Juri Linkov  <juri@jurta.org>
8935         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
8936         New functions.
8937         (find-file-literally-at-point): Alias of `ffap-literally'.
8939 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
8941         * textmodes/ispell.el (ispell-skip-region-alist):
8942         * textmodes/css-mode.el (auto-mode-alist):
8943         * progmodes/compile.el (auto-mode-alist):
8944         * international/mule.el (ctext-non-standard-encodings-alist)
8945         (ctext-non-standard-encodings-regexp):
8946         * simple.el (shell-command-switch, text-read-only):
8947         * replace.el (occur-mode-map):
8948         * paths.el (rmail-file-name):
8949         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
8950         * find-file.el (ff-special-constructs):
8951         * files.el (file-name-handler-alist):
8952         * composite.el: Purecopy strings.
8954         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
8956 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
8958         * widget.el (define-widget): Purecopy the docstring.
8959         * international/mule-cmds.el (charset): Do not purecopy the
8960         docstring here, define-widget does it.
8962         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
8963         * textmodes/bibtex-style.el (auto-mode-alist):
8964         * progmodes/inf-lisp.el (inferior-lisp-prompt):
8965         * progmodes/compile.el (compile-command):
8966         * language/korea-util.el (default-korean-keyboard):
8967         * international/mule-conf.el (file-coding-system-alist):
8968         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
8969         * tooltip.el (tooltip-frame-parameters):
8970         * newcomment.el (comment-end, comment-padding):
8971         * dired.el (dired-trivial-filenames):
8972         * comint.el (comint-file-name-prefix): Purecopy initial values.
8974 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
8976         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
8977         (tramp-advice-minibuffer-electric-tilde): Unload advices via
8978         `tramp-unload'.
8979         (tramp-advice-make-auto-save-file-name)
8980         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
8981         after removing the advice.
8983 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
8985         * progmodes/grep.el (grep-regexp-alist):
8986         * international/mule-cmds.el (iso-2022-control-alist):
8987         * emacs-lisp/timer.el (timer-duration-words):
8988         * subr.el (version-separator, version-regexp-alist):
8989         * minibuffer.el (completion-styles-alist):
8990         * faces.el (face-attribute-name-alist, list-faces-sample-text):
8991         Change defvars to defconsts.
8993         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
8994         * loadup.el ("international/mule-conf"): Load the byte compiled version.
8995         * international/mule-conf.el: Allow to be byte compiled.
8997         * international/mule.el (define-charset): Purecopy props.
8998         (load-with-code-conversion): Purecopy doc string and file name.
8999         (put-charset-property): Purecopy strings.
9000         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
9002         * international/mule-cmds.el (register-input-method): Purecopy arguments.
9003         (define-char-code-property): Correctly purecopy the table.
9005         * international/ccl.el (define-ccl-program): Purecopy the docstring.
9007         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
9009         * subr.el (add-hook): Purecopy strings.
9010         (eval-after-load): Purecopy load-history-regexp and the form.
9012         * custom.el (custom-declare-group): Purecopy load-file-name.
9014         * subr.el (menu-bar-separator): New defconst.
9015         * net/eudc.el (eudc-tools-menu):
9016         * international/mule-cmds.el (set-coding-system-map)
9017         (mule-menu-keymap):
9018         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
9019         * vc-hooks.el (vc-menu-map):
9020         * replace.el (occur-mode-map):
9021         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
9022         (menu-bar-edit-menu, menu-bar-goto-menu)
9023         (menu-bar-custom-menu, menu-bar-showhide-menu)
9024         (menu-bar-options-menu, menu-bar-tools-menu)
9025         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
9026         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
9027         (menu-bar-help-menu):
9028         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
9029         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
9031         * term/x-win.el (x-gtk-stock-map):
9032         * progmodes/vera-mode.el (auto-mode-alist):
9033         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
9034         (inferior-lisp-program, inferior-lisp-load-command):
9035         * progmodes/hideshow.el (hs-special-modes-alist):
9036         * progmodes/gud.el (same-window-regexps):
9037         * progmodes/grep.el (grep-program, find-program, xargs-program):
9038         * net/telnet.el (same-window-regexps):
9039         * net/rlogin.el (same-window-regexps):
9040         * language/ethiopic.el (font-ccl-encoder-alist):
9041         * vc-sccs.el (vc-sccs-master-templates):
9042         * vc-rcs.el (vc-rcs-master-templates):
9043         * subr.el (cl-assertion-failed):
9044         * simple.el (next-error-overlay-arrow-position):
9045         * lpr.el (lpr-command):
9046         * locate.el (locate-ls-subdir-switches):
9047         * info.el (same-window-regexps, info)
9048         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
9049         * image-mode.el (image-mode, auto-mode-alist):
9050         * hippie-exp.el (hippie-expand-ignore-buffers):
9051         * format.el (format-alist):
9052         * find-dired.el (find-ls-subdir-switches, find-grep-options)
9053         (find-name-arg):
9054         * facemenu.el (facemenu-keybindings):
9055         * dired.el (dired-listing-switches, dired-chown-program):
9056         * diff.el (diff-switches, diff-command):
9057         * cus-edit.el (same-window-regexps):
9058         * bindings.el (mode-line-mule-info)
9059         (mode-line-buffer-identification): Purecopy strings.
9061 2009-11-11  Juri Linkov  <juri@jurta.org>
9063         * simple.el (dired-get-filename) <declare-function>:
9064         Tell the byte-compiler about dired-get-filename.
9065         (shell-command): In Dired mode, get filename from the current line
9066         as the default value.
9068 2009-11-10  Glenn Morris  <rgm@gnu.org>
9070         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
9071         * calendar/holidays.el, progmodes/cperl-mode.el:
9072         Update x-popup-menu declarations.
9074         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
9075         (list-load-path-shadows): Use dolist.
9076         (list-load-path-shadows): Use with-current-buffer.
9078 2009-11-10  Juri Linkov  <juri@jurta.org>
9080         * minibuffer.el (read-file-name): Support a list of default values
9081         in `default-filename'.  Use the first file name where only one
9082         element is required.  Doc fix.
9084 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
9086         * net/dbus.el (dbus-unregister-object): Release service, if no
9087         other method is registered for it.
9089 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
9091         * bookmark.el (bookmark-completing-read): Sort bookmark names if
9092         bookmark-sort-flag is non-nil (Bug#4653).
9094 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
9096         * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
9097         the progress reporter entirely.
9099         * emulation/cua-base.el: Add CUA property to some CC mode commands
9100         (Bug#4100).
9102 2009-11-08  Kevin Ryde  <user42@zip.com.au>
9104         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
9105         at end of sentence (Bug#4818).
9107 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
9109         * progmodes/compile.el (compilation-error-regexp-alist-alist):
9110         Handle "see declaration of" MSFT statements (Bug#4100).
9112 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
9114         * net/tramp.el (tramp-advice-make-auto-save-file-name)
9115         (tramp-advice-file-expand-wildcards): Unload via
9116         `ad-remove-advice'.
9118         * net/trampver.el: Update release number.
9120 2009-11-08  Kevin Ryde  <user42@zip.com.au>
9122         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
9123         `ad-do-it'.
9125 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
9127         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
9128         in order to keep context in SELinux.
9130 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
9132         * dired-aux.el (dired-query): Place cursor in echo area and allow
9133         C-g.
9135         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
9136         menu item if not on a directory (Bug#4701).
9138 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
9140         Sync with Tramp 2.1.17.
9142         * net/tramp.el (tramp-handle-copy-directory): Don't use
9143         `file-remote-p' (due to compatibility).
9145         * net/tramp-compat.el (tramp-compat-copy-directory)
9146         (tramp-compat-delete-directory): New defuns.
9148         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
9149         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
9150         `tramp-compat-delete-directory'.
9152         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
9153         (tramp-smb-handle-delete-directory): Use
9154         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
9156         * net/trampver.el: Update release number.
9158 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
9160         * tar-mode.el (tar-copy): Call write-region on the right buffer
9161         (Bug#4857).
9163         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
9164         by hand, if necessary (Bug#4878).
9166 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
9168         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
9169         align size column (Bug#4839).
9171         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
9172         statement.
9174 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
9176         * progmodes/ld-script.el (auto-mode-alist):
9177         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
9179         * cus-face.el (custom-declare-face): Purecopy face spec.
9181 2009-11-06  Kenichi Handa  <handa@m17n.org>
9183         * international/uni-bidi.el: Re-generated.
9184         * international/uni-category.el: Re-generated.
9185         * international/uni-combining.el: Re-generated.
9186         * international/uni-mirrored.el: Re-generated.
9188 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
9190         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
9191         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
9192         (tex-start-options, slitex-run-command, latex-run-command)
9193         (tex-run-command, tex-directory):
9194         * textmodes/ispell.el (ispell-html-skip-alists)
9195         (ispell-tex-skip-alists, ispell-tex-skip-alists):
9196         * textmodes/fill.el (adaptive-fill-first-line-regexp):
9197         (adaptive-fill-regexp):
9198         * textmodes/dns-mode.el (auto-mode-alist):
9199         * progmodes/python.el (interpreter-mode-alist):
9200         * progmodes/etags.el (tags-compression-info-list):
9201         * progmodes/etags.el (tags-file-name):
9202         * net/browse-url.el (browse-url-galeon-program)
9203         (browse-url-firefox-program):
9204         * mail/sendmail.el (mail-signature-file)
9205         (mail-citation-prefix-regexp):
9206         * international/mule-conf.el (eight-bit):
9207         * international/latexenc.el (latex-inputenc-coding-alist):
9208         * international/fontset.el (x-pixel-size-width-font-regexp):
9209         * emacs-lisp/warnings.el (warning-type-format):
9210         * emacs-lisp/trace.el (trace-buffer):
9211         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
9212         (emacs-lisp-mode-map):
9213         * calendar/holidays.el (holiday-solar-holidays)
9214         (holiday-bahai-holidays, holiday-islamic-holidays)
9215         (holiday-christian-holidays, holiday-hebrew-holidays)
9216         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
9217         (hebrew-holidays-1, holiday-oriental-holidays)
9218         (holiday-general-holidays):
9219         * x-dnd.el (x-dnd-known-types):
9220         * tool-bar.el (tool-bar):
9221         * startup.el (site-run-file):
9222         * shell.el (shell-dumb-shell-regexp):
9223         * rfn-eshadow.el (file-name-shadow-tty-properties)
9224         (file-name-shadow-properties):
9225         * paths.el (remote-shell-program, news-directory):
9226         * mouse.el ([C-down-mouse-3]):
9227         * menu-bar.el (menu-bar-tools-menu):
9228         * jka-cmpr-hook.el (jka-compr-load-suffixes)
9229         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
9230         (jka-compr-compression-info-list):
9231         * isearch.el (search-whitespace-regexp):
9232         * image-file.el (image-file-name-extensions):
9233         * find-dired.el (find-ls-option):
9234         * files.el (directory-listing-before-filename-regexp)
9235         (directory-free-space-args, insert-directory-program)
9236         (list-directory-brief-switches, magic-fallback-mode-alist)
9237         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
9238         (automount-dir-prefix):
9239         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
9240         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
9241         (face-font-registry-alternatives, face-font-registry-alternatives)
9242         (face-font-family-alternatives):
9243         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
9244         (facemenu-foreground-menu, facemenu-face-menu):
9245         * epa-hook.el (epa-file-name-regexp):
9246         * dnd.el (dnd-protocol-alist):
9247         * textmodes/rst.el (auto-mode-alist):
9248         * button.el (default-button): Purecopy strings.
9250 2009-11-06  Glenn Morris  <rgm@gnu.org>
9252         * Makefile.in (ELCFILES): Update.
9254 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9256         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
9257         * emacs-lisp/levents.el: Move to obsolete/levents.el.
9259         * nxml/xsd-regexp.el (xsdre-gen-categories):
9260         * nxml/xmltok.el (xmltok-parse-entity):
9261         * nxml/rng-parse.el (rng-parse-validate-file):
9262         * nxml/rng-maint.el (rng-format-manual)
9263         (rng-manual-output-force-new-line):
9264         * nxml/rng-loc.el (rng-save-schema-location-1):
9265         * nxml/rng-cmpct.el (rng-c-parse-file):
9266         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
9267         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
9269 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
9271         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
9272         Remove extra save-excursions and make-variable-buffer-local's.
9273         Suggested by Stefan Monnier.
9275         (verilog-getopt-file, verilog-module-inside-filename-p)
9276         (verilog-set-define): Merge GNU 1.35 and repair changes from
9277         switching to using with-current-buffer.
9279         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
9280         being treated as a number and confusing AUTORESET.
9281         Reported by Dan Dever.
9283         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
9284         Add verilog-auto-ignore-concat to fix backward compatibility with
9285         older verilog-modes.  Reported by Dan Katz.
9287         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
9288         containing closing anchors "...$".
9290         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
9291         Reported by Wade Smith.
9293         (verilog-batch-execute-func): Comment on function usage.
9295 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
9297         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
9298         for labels.
9300         (verilog-label-re, verilog-calc-1): Support proper indent of named
9301         asserts.
9303         (verilog-backward-token, verilog-basic-complete-re)
9304         (verilog-beg-of-statement, verilog-indent-re): Support proper
9305         indent of the assert statement at the beginning of a block of text.
9307         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
9308         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
9309         tokens as begins.
9311 2009-11-05  Glenn Morris  <rgm@gnu.org>
9313         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
9314         Emacs 19.  (Bug#1531)
9315         (byte-compile-fix-header): Update for the above change.
9316         Drop test for epoch::version.
9318         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
9319         * cus-dep.el (custom-make-dependencies):
9320         * finder.el (finder-compile-keywords):
9321         Use autoload-rubric's feature argument.
9323         * calendar/diary-lib.el (top-level): Make load behave more like require.
9325         * vc-git.el (vc-git-stash-map): Move definition before use.
9327 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
9329         * custom.el (custom-declare-group): Purecopy standard-value.
9330         (custom-declare-group): Purecopy custom-prefix.
9332         * international/mule.el (load-with-code-conversion):
9333         Call do-after-load-evaluation unconditionally.
9335         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
9337 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9339         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
9341 2009-11-04  Glenn Morris  <rgm@gnu.org>
9343         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
9344         (byte-compile-compatibility): Remove option.
9345         (byte-compile-close-variables, byte-compile-fix-header)
9346         (byte-compile-insert-header, byte-compile-output-docform)
9347         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
9348         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
9349         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
9350         (byte-compile-insert, byte-compile-defun):
9351         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
9352         (byte-defop-compiler19): Remove.
9353         Without byte-compile-compatibility, the 'emacs19-opcode property is not
9354         used by anything.  Replace all calls with byte-defop-compiler.
9356 2009-11-04  Juri Linkov  <juri@jurta.org>
9358         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
9359         (menu-bar-options-menu): Don't quote the `prop' arg of
9360         `menu-bar-make-mm-toggle'.
9362 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
9364         * calendar/calendar.el (cal-loaddefs):
9365         * calendar/diary-lib.el (diary-loaddefs):
9366         * calendar/holidays.el (hol-loaddefs):
9367         * eshell/esh-module.el (esh-groups): Load rather than require.
9369 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9371         * calendar/todo-mode.el (todo-add-category): Don't hardcode
9372         point-min==1.
9373         (todo-top-priorities): Only display-buffer when called interactively.
9374         (todo-item-start): Don't save excursion point.
9375         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
9376         (todo-insert-item-here, todo-file-item, todo-remove-item):
9377         Adjust uses of todo-item-start and todo-item-end.
9379         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
9380         (autoload-rubric): Don't use any more.
9381         * cedet/semantic/fw.el (semantic/loaddefs):
9382         * cedet/srecode.el (srecode/loaddefs):
9383         * cedet/ede.el (ede/loaddefs): Load rather than require.
9384         * cedet/ede/cpp-root.el:
9385         * cedet/ede/emacs.el:
9386         * cedet/ede/files.el:
9387         * cedet/ede/linux.el:
9388         * cedet/ede/locate.el:
9389         * cedet/ede/make.el:
9390         * cedet/ede/shell.el:
9391         * cedet/ede/speedbar.el:
9392         * cedet/ede/system.el:
9393         * cedet/ede/util.el:
9394         * cedet/semantic/analyze.el:
9395         * cedet/semantic/bovine.el:
9396         * cedet/semantic/complete.el:
9397         * cedet/semantic/ctxt.el:
9398         * cedet/semantic/db-file.el:
9399         * cedet/semantic/db-find.el:
9400         * cedet/semantic/db-global.el:
9401         * cedet/semantic/db-mode.el:
9402         * cedet/semantic/db-typecache.el:
9403         * cedet/semantic/db.el:
9404         * cedet/semantic/debug.el:
9405         * cedet/semantic/dep.el:
9406         * cedet/semantic/doc.el:
9407         * cedet/semantic/edit.el:
9408         * cedet/semantic/find.el:
9409         * cedet/semantic/format.el:
9410         * cedet/semantic/html.el:
9411         * cedet/semantic/ia-sb.el:
9412         * cedet/semantic/ia.el:
9413         * cedet/semantic/idle.el:
9414         * cedet/semantic/lex-spp.el:
9415         * cedet/semantic/lex.el:
9416         * cedet/semantic/mru-bookmark.el:
9417         * cedet/semantic/scope.el:
9418         * cedet/semantic/senator.el:
9419         * cedet/semantic/sort.el:
9420         * cedet/semantic/symref.el:
9421         * cedet/semantic/tag-file.el:
9422         * cedet/semantic/tag-ls.el:
9423         * cedet/semantic/tag-write.el:
9424         * cedet/semantic/tag.el:
9425         * cedet/semantic/util-modes.el:
9426         * cedet/semantic/analyze/complete.el:
9427         * cedet/semantic/analyze/refs.el:
9428         * cedet/semantic/bovine/c.el:
9429         * cedet/semantic/bovine/gcc.el:
9430         * cedet/semantic/bovine/make.el:
9431         * cedet/semantic/bovine/scm.el:
9432         * cedet/semantic/decorate/include.el:
9433         * cedet/semantic/decorate/mode.el:
9434         * cedet/semantic/symref/cscope.el:
9435         * cedet/semantic/symref/global.el:
9436         * cedet/semantic/symref/grep.el:
9437         * cedet/semantic/symref/idutils.el:
9438         * cedet/semantic/symref/list.el:
9439         * cedet/semantic/wisent/java-tags.el:
9440         * cedet/semantic/wisent/javascript.el:
9441         * cedet/srecode/compile.el:
9442         * cedet/srecode/cpp.el:
9443         * cedet/srecode/document.el:
9444         * cedet/srecode/el.el:
9445         * cedet/srecode/expandproto.el:
9446         * cedet/srecode/getset.el:
9447         * cedet/srecode/insert.el:
9448         * cedet/srecode/java.el:
9449         * cedet/srecode/map.el:
9450         * cedet/srecode/mode.el:
9451         * cedet/srecode/template.el:
9452         * cedet/srecode/texi.el: Remove the file-local setting of
9453         generated-autoload-feature.
9455         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
9456         and only put a prop if it is non-nil.
9458 2009-11-03  Juri Linkov  <juri@jurta.org>
9460         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
9461         (menu-bar-options-menu): Fix list quoting (Bug#4429).
9463         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
9464         and "Menu" to make top-level menu item visually one unit (like
9465         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
9466         multi-word menu items).  Fix :help string for quit-window.
9468 2009-11-03  Glenn Morris  <rgm@gnu.org>
9470         * cedet/mode-local.el (with-mode-local): Doc fix.
9472         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
9473         (byte-compile-file-form-define-abbrev-table)
9474         (byte-compile-file-form-custom-declare-variable)
9475         (byte-compile-variable-ref, byte-compile-defvar):
9476         Whether or not a warning is enabled should only affect whether we issue
9477         the warning, not whether or not we collect the relevant data.
9478         Eg warnings can be turned on and off throughout the course of a file.
9480         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
9481         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
9483 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9485         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
9486         * play/mpuz.el (mpuz-create-buffer):
9487         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
9488         (lm-print-y,s,noise, lm-print-w0, lm-init):
9489         * play/gomoku.el (gomoku-prompt-for-move):
9490         * play/fortune.el (fortune-in-buffer):
9491         * play/dissociate.el (dissociated-press):
9492         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
9493         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
9494         * mail/supercite.el (sc-eref-show):
9495         * mail/smtpmail.el (smtpmail-send-it):
9496         * mail/rmailsum.el (rmail-summary-next-labeled-message)
9497         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
9498         (rmail-summary-undelete-many, rmail-summary-rmail-update)
9499         (rmail-summary-goto-msg, rmail-summary-expunge)
9500         (rmail-summary-get-new-mail, rmail-summary-search-backward)
9501         (rmail-summary-add-label, rmail-summary-output-menu)
9502         (rmail-summary-output-body):
9503         * mail/rfc822.el (rfc822-addresses):
9504         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
9505         * mail/mailpost.el (post-mail-send-it):
9506         * mail/hashcash.el (hashcash-generate-payment):
9507         * mail/feedmail.el (feedmail-run-the-queue)
9508         (feedmail-queue-send-edit-prompt-help-first)
9509         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
9510         (feedmail-deduce-address-list):
9511         * eshell/esh-ext.el (eshell-remote-command):
9512         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
9513         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
9514         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
9515         (viper-save-string-in-file, viper-valid-marker):
9516         * emulation/viper-keym.el (viper-toggle-key):
9517         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
9518         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
9519         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
9520         * emulation/viper-cmd.el (viper-exec-form-in-vi)
9521         (viper-exec-form-in-emacs, viper-brac-function):
9522         * emulation/viper.el (viper-delocalize-var):
9523         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
9524         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
9525         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
9526         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
9527         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
9528         * emulation/edt.el (edt-electric-helpify):
9529         * emulation/cua-rect.el (cua--rectangle-aux-replace):
9530         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
9531         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
9532         (cua-indent-to-global-mark-column):
9533         * calendar/diary-lib.el (calendar-mark-1):
9534         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
9535         Use with-current-buffer.
9536         * emulation/viper.el (viper-delocalize-var): Use dolist.
9538 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
9540         * comint.el (comint-replace-by-expanded-history-before-point):
9541         Replace !! with the previous input string literally (Bug#1795).
9543 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
9545         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
9546         to be made up of whitespace.
9548 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
9550         * minibuffer.el (read-file-name): Don't use file dialogs for
9551         remote directories (Bug#99).
9553 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
9555         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
9557 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
9559         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
9560         instead of deleting the window or frame.
9562 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
9564         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
9565         Support face colors.
9567         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
9568         New function.  Support face colors (Bug#1168).
9569         (tex-common-initialization): Use it.
9571         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
9572         mode allows it (Bug#1168).
9574 2009-10-31  Juri Linkov  <juri@jurta.org>
9576         * facemenu.el (list-colors-display): Don't mark buffer as
9577         modified (Bug#3948).
9579 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
9581         * international/mule-diag.el (list-character-sets-1): Minor
9582         message fix (Bug#3526).
9584         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
9585         face property (Bug#4834).
9586         (etags-list-tags, etags-tags-apropos-additional)
9587         (etags-tags-apropos, tags-select-tags-table): Add follow-link
9588         property.
9590         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
9591         items.
9593         * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
9594         items.
9596         * cedet/ede.el (ede-minor-mode):
9597         * cedet/semantic.el (semantic-mode): Toggle menu separators.
9599 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
9601         * textmodes/two-column.el (2C-split):
9602         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
9603         * textmodes/tex-mode.el (tex-set-buffer-directory):
9604         * textmodes/spell.el (spell-region, spell-string):
9605         * textmodes/reftex.el (reftex-erase-buffer):
9606         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
9607         * textmodes/reftex-toc.el (reftex-toc-promote-action):
9608         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
9609         (reftex-select-item):
9610         * textmodes/reftex-ref.el (reftex-label-info-update)
9611         (reftex-offer-label-menu):
9612         * textmodes/reftex-index.el (reftex-index-change-entry)
9613         (reftex-index-phrases-info):
9614         * textmodes/reftex-global.el (reftex-create-tags-file)
9615         (reftex-save-all-document-buffers, reftex-ensure-write-access):
9616         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
9617         (reftex-view-crossref-from-bibtex):
9618         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
9619         (reftex-extract-bib-entries-from-thebibliography)
9620         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
9621         * textmodes/refbib.el (r2b-capitalize-title):
9622         (r2b-convert-buffer, r2b-help):
9623         * textmodes/page-ext.el (pages-directory)
9624         (pages-directory-goto-with-mouse):
9625         * textmodes/bibtex.el (bibtex-validate-globally):
9626         * textmodes/bib-mode.el (bib-capitalize-title):
9627         * textmodes/artist.el (artist-clear-buffer, artist-system):
9628         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
9629         (local-set-scheme-interaction-buffer, xscheme-process-filter)
9630         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
9631         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
9632         (xscheme-send-control-g-interrupt, xscheme-start-process)
9633         (xscheme-process-sentinel, xscheme-cd):
9634         * progmodes/verilog-mode.el (verilog-read-always-signals)
9635         (verilog-set-define, verilog-getopt-file)
9636         (verilog-module-inside-filename-p):
9637         * progmodes/sh-script.el:
9638         * progmodes/python.el (python-pdbtrack-get-source-buffer)
9639         (python-pdbtrack-grub-for-buffer, python-execute-file):
9640         * progmodes/octave-inf.el (inferior-octave):
9641         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
9642         (idlwave-shell-compile-helper-routines, idlwave-set-local)
9643         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
9644         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
9645         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
9646         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
9647         (idlwave-shell-filter, idlwave-shell-examine-highlight)
9648         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
9649         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
9650         (idlwave-shell-examine-display, idlwave-shell-run-region)
9651         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
9652         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
9653         * progmodes/idlw-help.el (idlwave-help-get-special-help)
9654         (idlwave-help-get-help-buffer):
9655         * progmodes/gud.el (gud-basic-call, gud-find-class)
9656         (gud-tooltip-activate-mouse-motions-if-enabled):
9657         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
9658         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
9659         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
9660         (ebrowse-tags-next-file):
9661         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
9662         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
9663         (ebnf-eps-finish-and-write):
9664         * progmodes/cpp.el (cpp-edit-save):
9665         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
9666         * progmodes/cc-defs.el (c-emacs-features):
9667         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
9668         (antlr-directory-dependencies):
9669         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
9670         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
9671         (ada-find-any-references, ada-make-filename-from-adaname)
9672         (ada-make-body-gnatstub):
9673         * obsolete/rnews.el (news-list-news-groups):
9674         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
9675         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
9676         * net/rcirc.el (rcirc-debug):
9677         * net/newst-treeview.el (newsticker--treeview-list-add-item)
9678         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
9679         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
9680         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
9681         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
9682         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
9683         (newsticker--treeview-list-clear-highlight)
9684         (newsticker--treeview-list-update-highlight)
9685         (newsticker--treeview-list-highlight-start)
9686         (newsticker--treeview-tree-update-highlight)
9687         (newsticker--treeview-get-selected-item)
9688         (newsticker-treeview-mark-list-items-old)
9689         (newsticker--treeview-set-current-node):
9690         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
9691         * net/newst-backend.el (newsticker--get-news-by-funcall)
9692         (newsticker--get-news-by-wget, newsticker--image-get)
9693         (newsticker--image-sentinel):
9694         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
9695         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
9696         (eudc-ph-close-session):
9697         * net/eudc.el (eudc-save-options):
9698         * language/thai-word.el (thai-update-word-table):
9699         * language/japan-util.el (japanese-string-conversion):
9700         * international/titdic-cnv.el (tsang-quick-converter)
9701         (ziranma-converter, ctlau-converter):
9702         * international/mule-cmds.el (describe-language-environment):
9703         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
9704         (skkdic-convert-postfix, skkdic-convert-prefix):
9705         (skkdic-convert-okuri-nasi, skkdic-convert):
9706         * emacs-lisp/re-builder.el (reb-update-overlays):
9707         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
9708         * emacs-lisp/gulp.el (gulp-send-requests):
9709         * emacs-lisp/find-gc.el (trace-call-tree):
9710         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
9711         (eieio-describe-generic):
9712         * emacs-lisp/eieio-base.el (eieio-persistent-read):
9713         * emacs-lisp/edebug.el (edebug-outside-excursion):
9714         * emacs-lisp/debug.el (debugger-make-xrefs):
9715         * emacs-lisp/cust-print.el (custom-prin1-to-string):
9716         * emacs-lisp/chart.el (chart-new-buffer):
9717         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
9718         Use with-current-buffer.
9719         * textmodes/artist.el (artist-system): Don't call
9720         copy-sequence on a fresh string.
9721         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
9723 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
9725         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
9726         is no item to edit.  (Bug#4820)
9727         (todo-top-priorities): Restore point and restore narrowing in Todo
9728         buffer.  (Bug#4820)
9730 2009-10-31  Glenn Morris  <rgm@gnu.org>
9732         * net/ange-ftp.el (top-level): Don't require dired when compiling.
9733         (comint-last-output-start, comint-last-input-start)
9734         (comint-last-input-end): Don't defvar when compiling.
9735         (ange-ftp-process-file): Use bound-and-true-p.
9737         * pcmpl-rpm.el (top-level): Move provide statement to end.
9738         (pcmpl-rpm): Remove unused custom group.
9740         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
9742         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
9744         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
9745         (byte-compile-warnings): Add `constants' as an option.
9746         (byte-compile-callargs-warn, byte-compile-arglist-warn)
9747         (display-call-tree): Update for byte-compile-fdefinition possibly
9748         returning `(macro lambda ...)'.  (Bug#4778)
9749         (byte-compile-variable-ref, byte-compile-setq-default):
9750         Respect `constants' member of byte-compile-warnings.
9752         * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
9753         Use mapc rather than mapcar because the return value is never used.
9755         * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
9756         * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
9757         * cedet/semantic/html.el:
9758         Suppress harmless warnings about setting up semantic-imenu (not
9759         part of Emacs) variables.
9761 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9763         * vc-bzr.el (vc-bzr-revision-keywords): New var.
9764         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
9765         to "submit:".
9767         * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
9768         * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
9769         * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
9770         * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
9771         * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
9772         * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
9773         (semantic-analyzer-debug-global-symbol)
9774         (semantic-analyzer-debug-missing-innertype)
9775         (semantic-analyzer-debug-insert-include-summary):
9776         * cedet/semantic/util.el (semantic-file-tag-table):
9777         (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
9778         (semantic-recursive-find-nonterminal-by-name):
9779         * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
9780         * cedet/semantic/tag-file.el (semantic-prototype-file):
9781         * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
9782         * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
9783         * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
9784         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
9785         (semantic-idle-summary-maybe-highlight):
9786         * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
9787         (semantic-ia-sb-tag-info):
9788         * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
9789         * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
9790         * cedet/semantic/ede-grammar.el (project-compile-target):
9791         (ede-proj-makefile-insert-variables):
9792         * cedet/semantic/debug.el (semantic-debug-set-parser-location):
9793         (semantic-debug-set-source-location, semantic-debug-interface-layout)
9794         (semantic-debug-mode, semantic-debug):
9795         * cedet/semantic/db.el (semanticdb-needs-refresh-p):
9796         * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
9797         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
9798         * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
9799         (semanticdb-find-translate-path-includes--internal)
9800         (semanticdb-reset-log, semanticdb-find-log-activity):
9801         * cedet/semantic/db-file.el (object-write):
9802         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
9803         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
9804         (semanticdb-create-ebrowse-database):
9805         * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
9806         * cedet/semantic/complete.el (semantic-displayor-focus-request)
9807         (semantic-collector-calculate-completions-raw)
9808         (semantic-complete-read-tag-analyzer):
9809         * cedet/semantic/analyze.el (semantic-analyze-pulse):
9810         * cedet/ede/util.el (ede-update-version-in-source):
9811         * cedet/ede/proj.el (project-delete-target):
9812         * cedet/ede/proj-elisp.el (ede-update-version-in-source)
9813         (ede-proj-flush-autoconf):
9814         * cedet/ede/pconf.el (ede-proj-configure-synchronize)
9815         (ede-proj-configure-synchronize):
9816         * cedet/ede/locate.el (ede-locate-file-in-project-impl):
9817         * cedet/ede/linux.el (ede-linux-version):
9818         * cedet/ede/emacs.el (ede-emacs-version):
9819         * cedet/ede/dired.el (ede-dired-add-to-target):
9820         * cedet/ede.el (ede-buffer-header-file, ede-find-target)
9821         (ede-buffer-documentation-files, ede-project-buffers, ede-set)
9822         (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
9823         * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
9824         (cedet-idutils-lid-call, cedet-idutils-expand-filename)
9825         (cedet-idutils-version-check):
9826         * cedet/cedet-global.el (cedet-gnu-global-call):
9827         (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
9828         (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
9829         * cedet/cedet-cscope.el (cedet-cscope-call)
9830         (cedet-cscope-expand-filename, cedet-cscope-version-check):
9831         Use with-current-buffer.
9832         * cedet/ede.el (ede-make-project-local-variable)
9833         (ede-set-project-variables, ede-set): Use dolist.
9835 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
9837         * textmodes/ispell.el (ispell-skip-region-alist):
9838         * international/mule-conf.el (eight-bit):
9839         * international/fontset.el (font-encoding-alist):
9840         * startup.el (pure-space-overflow-message):
9841         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
9842         * paths.el (gnus-nntp-service, rmail-spool-directory)
9843         (term-file-prefix):
9844         * files.el (save-some-buffers-action-alist):
9845         * cmuscheme.el (same-window-buffer-names):
9846         * ielm.el (same-window-buffer-names):
9847         * shell.el (same-window-buffer-names):
9848         * mail/sendmail.el (same-window-buffer-names):
9849         * progmodes/inf-lisp.el (same-window-buffer-names):
9850         * bindings.el (mode-line-client)
9851         (mode-line-column-line-number-mode-map):
9852         * language/tibetan.el (tibetan-precomposition-rule-regexp)
9853         (tibetan-precomposed-regexp): Purecopy string arguments.
9855 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9857         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
9858         (calcDigit-nondigit):
9859         * calc/calc-yank.el (calc-copy-to-buffer):
9860         * calc/calc-units.el (calc-invalidate-units-table):
9861         * calc/calc-trail.el (calc-trail-yank):
9862         * calc/calc-store.el (calc-insert-variables):
9863         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
9864         * calc/calc-prog.el (calc-read-parse-table):
9865         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
9866         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
9867         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
9868         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
9869         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
9870         (calc-graph-name, calc-graph-find-command, calc-graph-view)
9871         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
9872         * calc/calc-ext.el (calc-realign):
9873         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
9874         (calc-embedded-finish-edit, calc-embedded-make-info)
9875         (calc-embedded-finish-command, calc-embedded-stack-change):
9876         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
9878         * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
9879         (overload-docstring-extension): Use that info.
9880         * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
9881         * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
9882         * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
9883         (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
9884         (semantic-nonterminal-full-name): Add the new `when' info.
9885         * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
9886         `assert'.
9888         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
9889         shell-dynamic-complete-filename in preference to
9890         comint-dynamic-complete-filename.
9892         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
9893         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
9894         Don't consider whether the display supports colors.
9895         (bookmark-import-new-list): Use dolist.
9896         (bookmark-bmenu-mode-map): Move initialization into declaration.
9897         (bookmark-bmenu-list): Use dolist, simplify.
9898         (bookmark-show-all-annotations): Use save-selected-window and dolist.
9899         (menu-bar-final-items): Use push.
9901 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
9903         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
9904         it works on remote files.
9905         (vc-hg-diff): Don't pass any `--cwd' argument.
9907 2009-10-27  Kevin Ryde  <user42@zip.com.au>
9909         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
9910         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
9911         (Further to Bug#3921).
9913 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
9915         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
9916         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
9917         calling `tramp-imap-put-file'.  Add file size to the call.
9918         (tramp-imap-get-file-entries): Compute also user name, file size,
9919         and date.
9920         (tramp-imap-handle-insert-directory): Insert uid and gid.
9921         (tramp-imap-handle-file-attributes): Transform uid and gid
9922         according to `id-format'.
9923         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
9924         size in header X-Size.
9926 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
9928         * simple.el (transpose-subr): Give clearer error when the mark
9929         is not set.  (Bug#4807)
9931 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
9933         * net/tramp.el (tramp-perl-file-truename): New defconst.
9934         Perl code contributed by yary <not.com@gmail.com> (tiny change).
9935         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
9936         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
9937         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
9939         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
9940         Ignore `dired-call-process'.
9941         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
9943 2009-10-26  Julian Scheid  <julians37@gmail.com>
9945         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
9946         (tramp-get-remote-readlink): New defun.
9947         (tramp-handle-file-truename): Use it.
9948         (tramp-handle-file-exists-p): Check file-attributes cache, assume
9949         file exists if cache value present.
9950         (tramp-check-cached-permissions): New defun.
9951         (tramp-handle-file-readable-p): Use it.
9952         (tramp-handle-file-writable-p): Likewise.
9953         (tramp-handle-file-executable-p): Likewise.
9954         (tramp-handle-file-name-all-completions): Try using Perl to get
9955         partial completions.  When perl not available, combine `cd' and
9956         `ls' into single remote operation and use shell expansion to get
9957         partial remote directory contents.  Set `file-exists-p' cache for
9958         directory and any files returned by ls.  Change cache handling to
9959         support partial directory contents.  Use error message emitted by
9960         remote `cd' or Perl code for local tramp-error.
9961         (tramp-do-copy-or-rename-file-directly): Avoid separate
9962         tramp-send-command-and-check call.
9963         (tramp-handle-process-file): Merge three remote ops into one.
9964         Do not flush all caches when `process-file-side-effects' is set.
9965         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
9966         file-attributes shows uid/gid to be set already.
9968 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
9970         * textmodes/tex-mode.el (tex-dvi-view-command)
9971         (tex-show-queue-command, tex-open-quote):
9972         * progmodes/ruby-mode.el (auto-mode-alist)
9973         (interpreter-mode-alist): Purecopy strings.
9975         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
9977         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
9978         string for the hook, keymap and abbrev table.
9980         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
9982         * x-dnd.el (x-dnd-xdnd-to-action):
9983         * startup.el (fancy-startup-text, fancy-about-text): Change to
9984         defconst from defvar.
9986         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
9988         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
9989         Purecopy initialization strings.
9991         * mail/sendmail.el (mail-header-separator)
9992         (mail-personal-alias-file):
9993         * mail/rmail.el (rmail-default-dont-reply-to-names)
9994         (rmail-ignored-headers, rmail-retry-ignored-headers)
9995         (rmail-highlighted-headers, rmail-secondary-file-directory)
9996         (rmail-secondary-file-regexp):
9997         * files.el (null-device, file-name-invalid-regexp)
9998         (locate-dominating-stop-dir-regexp)
9999         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
10000         (interpreter-mode-alist): Use mapcar instead of mapc.
10002         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
10004         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
10005         (completion-ignored-extensions):
10006         (debug-ignored-errors): Purecopy strings.
10008 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10010         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
10011         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
10012         (pcomplete--here): Use push.
10014         * subr.el (all-completions): Declare the 4th arg obsolete.
10016 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10018         * pcomplete.el (pcomplete-unquote-argument-function): New var.
10019         (pcomplete-unquote-argument): New function.
10020         (pcomplete--common-suffix): Always pay attention to case.
10021         (pcomplete--table-subvert): Quote and unquote the text.
10022         (pcomplete--common-quoted-suffix): New function.
10023         (pcomplete-std-complete): Use it and pcomplete-begin.
10025         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
10026         we're inside a dedicated or minibuffer window.
10028 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10030         * cedet/semantic/fw.el (semantic-alias-obsolete)
10031         (semantic-varalias-obsolete): Make the `when' arg mandatory.
10032         (define-mode-overload-implementation):
10033         * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
10034         * cedet/semantic/wisent.el (wisent-lex-make-token-table):
10035         * cedet/semantic/util.el (semantic-file-token-stream)
10036         (semantic-something-to-stream):
10037         * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
10038         (semantic-expand-nonterminal):
10039         * cedet/semantic/tag-file.el (semantic-find-nonterminal)
10040         (semantic-find-dependency, semantic-find-nonterminal)
10041         (semantic-find-dependency):
10042         * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
10043         (semantic-flex-text, semantic-flex-make-keyword-table)
10044         (semantic-flex-keyword-p, semantic-flex-keyword-put)
10045         (semantic-flex-keyword-get, semantic-flex-map-keywords)
10046         (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
10047         * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
10048         * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
10049         (semantic-after-idle-scheduler-reparse-hooks):
10050         * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
10051         * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
10052         * cedet/semantic.el (semantic-toplevel-bovine-table)
10053         (semantic-toplevel-bovine-cache)
10054         (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
10055         (semantic-init-mode-hooks, semantic-init-db-hooks)
10056         (semantic-bovination-working-type): Provide the `when' arg.
10058 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
10060         * bookmark.el: Update documentation, especially documentation
10061         of `bookmark-alist' and of the bookmark file format.
10062         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
10064 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
10066         * mail/emacsbug.el (report-emacs-bug): Clarify that the
10067         keybindings apply to the mail buffer (Bug#4003).  Shrink help
10068         window to buffer.
10070         * whitespace.el (whitespace-mode, whitespace-newline-mode)
10071         (global-whitespace-mode, global-whitespace-newline-mode)
10072         (whitespace-toggle-options, global-whitespace-toggle-options):
10073         Doc fix (Bug#3660).
10075         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
10076         of xmltok-start before the end tag was inserted (Bug#2840).
10078         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
10079         patterns that are preceded by an open-paren (Bug#1320).
10081 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
10083         * files.el (delete-directory): Delete symlinks to directories with
10084         delete-file (Bug#4739).
10086 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
10088         * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
10089         * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
10090         argument to make-obsolete.
10092         * cedet/semantic/fw.el (semantic-alias-obsolete)
10093         (semantic-varalias-obsolete): Add optional WHEN argument.
10095 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
10097         * vc.el (vc-backend-for-registration): Rename from
10098         vc-get-backend-for-registration.  Update callers.
10100         * international/mule-cmds.el (set-language-info-alist):
10101         Purecopy lang-env.
10102         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
10103         (charset): Purecopy the name.
10104         (define-char-code-property): Purecopy string arguments.
10106         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
10107         Purecopy string arguments.
10109         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
10110         * ediff-hook.el (menu-bar-ediff-menu):
10111         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
10112         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
10114 2009-10-24  Glenn Morris  <rgm@gnu.org>
10116         * comint.el (comint-dynamic-list-completions):
10117         * term.el (term-dynamic-list-completions): Use choose-completion rather
10118         than obsolete alias mouse-choose-completion.
10120         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
10121         file-cache-choose-completion.
10122         (file-cache-choose-completion): Handle an optional event argument.
10123         (file-cache-mouse-choose-completion): Make it an obsolete alias.
10125         * progmodes/octave-mod.el (octave-complete-symbol):
10126         Use choose-completion if mouse-choose-completion is ever removed.
10128         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
10129         use.
10131         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
10132         compiler.
10134         * vc-hooks.el (vc-responsible-backend): Fix declaration.
10136 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10138         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
10139         Ignore `pred' now that we receive one.
10140         Handle test-completion specially.
10142 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
10144         * vc.el (vc-responsible-backend): Throw an error if not backend is
10145         found.  Remove the REGISTER argument.  Move the code dealing with
10146         REGISTER ...
10147         (vc-get-backend-for-registration): ... here.  New function.
10148         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
10149         of vc-responsible-backend, pass the file name instead of the
10150         directory name.
10152 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10154         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
10155         New funs.
10156         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
10157         (pcomplete-comint-setup): Don't modify a global var via
10158         accidental side-effects.
10159         (pcomplete-shell-setup): Adjust call accordingly.
10160         (pcomplete-parse-comint-arguments): Use push.
10162 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
10164         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
10165         Allow uncapitalized info node names (Bug#3921).
10167         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
10168         to the DEBUG file (Bug#3781).
10170 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
10172         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
10173         dictionary entry (Bug#4579).
10175 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
10177         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
10178         from `rfn-eshadow-update-overlay-hook' when unloading.
10179         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
10180         "rsyncc".  Adjust doc string.
10181         (tramp-temp-buffer-file-name): New buffer-local defvar.
10182         (tramp-handle-insert-file-contents, tramp-handle-write-region):
10183         Keep temporary file when indicated by method ("rsync" and
10184         "rsyncc").
10185         (tramp-handle-write-region): Handle APPEND.
10186         (tramp-delete-temp-file-function): New defun.  Added to
10187         `kill-buffer-hook'.
10189 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
10191         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
10193 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
10195         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
10196         (color-name-rgb-alist, tty-standard-colors)
10197         (tty-color-mode-alist): Change to defconst.
10199         * simple.el (mark-inactive): Purecopy message.
10201         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
10202         (global-map, yank-menu):
10203         * textmodes/ispell.el (ispell-menu-map):
10204         * net/eudc.el (eudc-tools-menu):
10205         * international/mule-cmds.el (describe-language-environment-map)
10206         (setup-language-environment-map, set-coding-system-map)
10207         (mule-menu-keymap):
10208         * vc-hooks.el (vc-menu-entry, vc-menu-map):
10209         * replace.el (occur-mode-map):
10210         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
10212 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
10214         * calc/calc.el (math-read-number, math-read-number-simple): Use
10215         `save-match-data'.
10217 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10219         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
10220         rather than fiddling with global-map bindings, since it should only
10221         affect per-terminal settings.
10222         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
10224         * minibuffer.el (completion-table-with-terminator): Allow to specify
10225         the terminator-regexp.
10227         * simple.el (switch-to-completions): Look for *Completions* in other
10228         frames as well.
10230         * pcomplete.el: Allow the use of completion-tables.
10231         (pcomplete-std-complete): New command.
10232         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
10233         (pcomplete--here): Use a function for `form' rather than an expression,
10234         so it can be byte-compiled.
10235         (pcomplete-here, pcomplete-here*): Adjust accordingly.
10236         Add edebug declaration.
10237         (pcomplete-show-completions): Remove unused var `curbuf'.
10238         (pcomplete-do-complete, pcomplete-stub):
10239         Don't assume `completions' is a list of strings any more.
10241 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
10243         * find-dired.el (find-name-arg): Fix typo in docstring.
10245 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10247         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
10248         (pcmpl-linux-fs-types): Same, and update to new modules layout.
10250         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
10251         pcomplete-entries.
10253         * comint.el (comint-read-input-ring, comint-write-input-ring)
10254         (comint-substitute-in-file-name)
10255         (comint-dynamic-complete-as-filename)
10256         (comint-dynamic-simple-complete)
10257         (comint-dynamic-list-filename-completions)
10258         (comint-dynamic-list-completions)
10259         (comint-redirect-results-list-from-process): Minor simplifications.
10261 2009-10-21  Kevin Ryde  <user42@zip.com.au>
10263         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
10264         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
10265         the first form.  And insert a blank line after ";;; Code" since
10266         that's usual style.  (Bug#4612)
10268         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
10270 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10272         * minibuffer.el (completion-table-with-terminator): Properly implement
10273         boundaries, in case `terminator' appears in the suffix.
10274         (completion--embedded-envvar-table): Don't return boundaries if
10275         there's no valid completion.  Simplify.
10276         (completion-file-name-table): New completion table extracted from
10277         completion--file-name-table.
10278         (completion--file-name-table): Use it.
10279         (read-file-name-predicate): Declare obsolete.
10280         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
10281         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
10282         completion-file-name-table, and use the `pred' argument.
10283         * files.el (locate-file-completion-table): Use the `pred' arg rather
10284         than read-file-name-predicate.
10285         (abbreviate-file-name): Use \` rather than ^ for BOS.
10287 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
10289         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
10290         vc-responsible-backend to register, it causes problems.
10292 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10294         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
10296 2009-10-21  Eric Ludlam  <zappo@gnu.org>
10298         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
10299         (semantic-c-debug-mode-init-pch): New functions.
10300         (semantic-c-debug-mode-init-last-mode): New var.
10301         (semantic-c-parse-lexical-token): Use them.
10303         * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
10304         When extracting the argument list, limit only by point-max.
10306 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
10308         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
10309         (tramp-smb-handle-file-attributes): Use it.
10310         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
10311         (tramp-smb-handle-insert-directory): Use `mapc' rather than
10312         `mapcar'.  Use `tramp-smb-get-stat-capability'.
10313         Add `dired-filename' text properties.
10314         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
10315         (tramp-smb-maybe-open-connection): Simplify check for smbclient
10316         version.
10318 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10320         * subr.el (read-key-delay): Reduce to 0.01.
10321         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
10322         (bug#4751).
10324 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10326         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
10328         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
10329         (Info-menu): Remove unused vars `last' and `completions'.
10330         (Info-index-nodes): Remove unused var `node'.
10332         * info.el (Info-complete-menu-item): Use complete-with-action.
10334 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
10336         Make vc-annotate work through copies and renames.
10337         * vc-annotate.el (vc-annotate-extract-revision-at-line):
10338         Return the file name too.
10339         (vc-annotate-revision-at-line)
10340         (vc-annotate-find-revision-at-line)
10341         (vc-annotate-revision-previous-to-line)
10342         (vc-annotate-show-log-revision-at-line): Update to get the file
10343         name from vc-annotate-extract-revision-at-line.
10344         (vc-annotate-show-diff-revision-at-line-internal): Change the
10345         argument to mean whether to show a file diff or not.  Get the file
10346         name from vc-annotate-extract-revision-at-line.
10347         (vc-annotate-show-diff-revision-at-line):
10348         Update vc-annotate-show-diff-revision-at-line call.
10349         (vc-annotate-warp-revision): Add an optional file argument.
10351         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
10352         (vc-git-annotate-extract-revision-at-line): Also return the file
10353         name if found.
10355         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
10356         command.  Remove unused code.
10357         (vc-hg-annotate-re): Update to match --follow output.
10358         (vc-hg-annotate-extract-revision-at-line): Also return the file
10359         name if found.
10361         * vc.el: Update annotate-extract-revision-at-line documentation.
10363 2009-10-18  Kevin Ryde  <user42@zip.com.au>
10365         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
10366         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
10368         * net/browse-url.el (browse-url): Identify alist with "consp and
10369         not functionp" and let all other things go down the `apply' leg,
10370         as suggested by Stefan.  (Further to bug#4531.)
10372 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
10374         * minibuffer.el (read-file-name): Check for repeat before putting
10375         a default argument in file-name-history (Bug#4657).
10377         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
10378         read syntax (Bug#4737).
10380         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
10382 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
10384         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
10385         (html-tag-alist, html-tag-help): Add descriptions for undocumented
10386         entries and make note of obsolete tags.
10388 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10390         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
10392 2009-10-18  Glenn Morris  <rgm@gnu.org>
10394         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
10395         grep, so that binary files (eg international/uni-bidi.el) can match.
10396         Remove test for "UnicodeData" files, since it is hopefully unnecessary
10397         now, and in any case the file header format has changed.
10399 2009-10-17  Glenn Morris  <rgm@gnu.org>
10401         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
10402         (flyspell-get-word, flyspell-large-region)
10403         (flyspell-auto-correct-previous-word): Doc/error message fixes.
10405 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
10407         * Makefile.in (ELCFILES): Add ede/shell.
10409 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
10411         * term/common-win.el (x-colors): Purecopy it.
10413 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10415         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
10416         permissive for when the buffer is empty.
10417         (tar-header-block-tokenize): Decode the username and groupname.
10418         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
10420 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
10422         * cedet/srecode/srt.el:
10423         * cedet/srecode/compile.el:
10424         * cedet/semantic/mru-bookmark.el:
10425         * cedet/semantic/debug.el:
10426         * cedet/semantic/complete.el:
10427         * cedet/semantic/analyze.el: Require CL when compiling.
10429 2009-10-17  Eric Ludlam  <zappo@gnu.org>
10431         * cedet/semantic/scope.el
10432         (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
10433         tmpscope so that the regular scope will continue to work.
10435         * cedet/semantic/idle.el (semantic-idle-tag-highlight):
10436         Use semantic-idle-summary-highlight-face as the highlighting.
10438         * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
10439         contains multibyte characters, choose first applicable coding
10440         system automatically.
10442         * cedet/ede/project-am.el (project-run-target): New method.
10443         (project-run-target): New method.
10445         * cedet/ede.el (ede-target): Add run target menu item.
10446         (ede-project, ede-minor-keymap): Add ede-run-target binding.
10447         (ede-run-target): New function.
10448         (ede-target::project-run-target): New method.
10450         * cedet/ede/proj.el (project-run-target): New method.
10452         * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
10453         (ede-g++-libtool-shared-compiler): Remove SHELL.  Remove COMMANDS.
10454         Add :rules.
10455         (ede-proj-target-makefile-shared-object): Only libtool compilers
10456         now available.  Add linkers for libtool.
10457         (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
10458         (ede-proj-makefile-target-name): Always use .la extension.
10460         * cedet/ede/proj-prog.el (project-run-target): New method.
10462         * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
10463         (ede-g++-linker): Change Change link lines.
10465         * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
10466         When searching for old variables, go to the end of the buffer and
10467         search backward from there.
10468         (ede-proj-makefile-automake-insert-subdirs)
10469         (ede-proj-makefile-automake-insert-extradist): New methods.
10470         (ede-proj-makefile-create): Use them.
10472         * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
10473         Force FILE to expand to the current target.  Use file-exists-p to
10474         check that it exists.
10476         * cedet/ede/linux.el (ede-linux-version): Don't call "head".
10477         (ede-linux-load): Wrap dir in file-name-as-directory.
10478         Set :version slot.
10480         * cedet/ede/files.el (ede-get-locator-object): When enabling
10481         locate, do so on "top".
10483         * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
10484         file-name-as-directory during compare.
10485         (ede-emacs-version): Return Emacs/XEmacs differentiator.
10486         Get version number from different places.  Don't call egrep.
10487         (ede-emacs-load): Set :version slot.  Call file-name-as-directory
10488         to set the directory.
10490         * cedet/ede/shell.el: New file.
10492         * cedet/inversion.el (inversion-decoders): Allow for stray . in
10493         alpha/beta variants.
10495 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10497         * international/mule-cmds.el (select-safe-coding-system): If the file
10498         has a coding cookie, use it regardless of any other setting (bug#4712).
10500 2009-10-17  Glenn Morris  <rgm@gnu.org>
10502         * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
10503         All errors should have messages.
10505         * foldout.el (foldout-mouse-swallow-events):
10506         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
10508         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
10509         (dired-keep-marker-copy, dired-keep-marker-hardlink)
10510         (dired-keep-marker-symlink, dired-dwim-target)
10511         (dired-copy-preserve-time): Do not autoload these defcustoms.
10513         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
10514         messages from messing up the file coding.  (Bug#4623)
10516 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
10518         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
10519         if no match is found for the current dictionary.  (Bug#4578)
10521         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
10522         optional, since that is how it is documented, and this is often called
10523         with a nil argument.  (Bug#4577)
10524         (flyspell-external-point-words, flyspell-auto-correct-word)
10525         (flyspell-correct-word-before-point, flyspell-word-search-forward)
10526         (flyspell-word-search-backward): Remove nil argument in calls to
10527         flyspell-get-word, since it is not needed now.
10529 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
10531         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
10533 2009-10-16  Glenn Morris  <rgm@gnu.org>
10535         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
10537 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
10539         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
10540         (ange-ftp-file-size): New function.
10541         (ange-ftp-file-attributes): Use it.
10543 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
10545         * net/tramp-smb.el (tramp-smb-version): New defvar.
10546         (tramp-smb-maybe-open-connection): Use it, in order to avoid
10547         repeated checks.
10549 2009-10-16  Glenn Morris  <rgm@gnu.org>
10551         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
10552         Maybe copy some custom properties from old to new name.  (Bug#4706)
10554 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
10556         * subr.el (error, sit-for, start-process-shell-command)
10557         (start-file-process-shell-command): Set the calling convention
10558         after the function definition.
10560 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10562         * subr.el (error, sit-for, start-process-shell-command)
10563         (start-file-process-shell-command): Use the new
10564         set-advertised-calling-convention feature.
10566 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
10568         * international/ucs-normalize.el (ucs-normalize-version):
10569         Change to 1.2.
10570         (check-range): Adjust for Unicode 5.2.
10572 2009-10-15  Juri Linkov  <juri@jurta.org>
10574         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
10575         to the `menu-item' format.
10577 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
10579         * net/tramp.el (tramp-replace-environment-variables): Do not fail
10580         if the environment variable does not exist.
10582         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
10583         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
10584         parameter.
10585         (tramp-smb-handle-add-name-to-file)
10586         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
10587         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
10588         (tramp-smb-handle-file-attributes)
10589         (tramp-smb-do-file-attributes-with-stat)
10590         (tramp-smb-handle-file-local-copy)
10591         (tramp-smb-handle-insert-directory)
10592         (tramp-smb-handle-make-directory)
10593         (tramp-smb-handle-make-directory-internal)
10594         (tramp-smb-handle-make-symbolic-link)
10595         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
10596         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
10597         (tramp-smb-maybe-open-connection): Apply the changed parameters.
10598         (tramp-smb-read-file-entry): Read Disk names in compressed format.
10599         Handle long file names.
10600         (tramp-smb-get-cifs-capabilities): Check, whether the connection
10601         process is running.
10602         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
10603         Read share names with "-g" option.
10605 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
10607         * net/rcirc.el (rcirc-view-log-file): New command.
10608         (rcirc-track-minor-mode-map): Remove C-c ` binding.
10609         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
10610         specified.
10612 2009-10-15  Glenn Morris  <rgm@gnu.org>
10614         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
10615         from the second command-line argument.
10616         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
10617         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
10618         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
10619         w32-batch-update-autoloads.
10620         * emacs-lisp/autoload.el (autoload-make-program): New variable.
10621         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
10623         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
10624         the headers cannot be located.  Simplify, subtracting superflous
10625         save-excursions.
10627 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10629         Replace completion-base-size by completion-base-position to fix bugs
10630         such as (bug#4699).
10631         * simple.el (completion-base-position): New var.
10632         (completion-base-size): Mark as obsolete.
10633         (choose-completion): Make it work for mouse events as well.
10634         Pass the new base-position to choose-completion-string.
10635         (choose-completion-guess-base-position): New function, extracted from
10636         choose-completion-delete-max-match.
10637         (choose-completion-delete-max-match): Use it.  Make obsolete.
10638         (choose-completion-string): Use the new base-position info.
10639         (completion-root-regexp): Delete.
10640         (completion-setup-function): Preserve completion-base-position.
10641         Eliminate obsolete base-size manipulation.
10642         * minibuffer.el (display-completion-list): Don't mess with base-size.
10643         (minibuffer-completion-help): Set completion-base-position instead.
10644         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
10645         choose-completion.
10646         * textmodes/bibtex.el (bibtex-complete):
10647         * emacs-lisp/crm.el (crm--choose-completion-string):
10648         Adjust to new calling convention.
10649         * complete.el (partial-completion-mode): Use minibufferp to avoid
10650         bumping into incompatible change to choose-completion-string-functions.
10651         * ido.el (ido-choose-completion-string): Make its calling convention
10652         more permissive.
10653         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
10654         base-size manipulation.
10655         (comint-dynamic-list-input-ring): Use dotimes and push.
10656         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
10657         fundamental-mode.  Use `or'.
10659 2009-10-14  Juri Linkov  <juri@jurta.org>
10661         * misearch.el (multi-isearch-next-buffer-from-list)
10662         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
10664 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10666         * Makefile.in (compile-onefile): Load `bytecomp' rather than
10667         `bytecomp.el'.
10669         * minibuffer.el (completion-pcm--merge-completions): Make sure the
10670         string we return is all made up of text from the completions rather
10671         than part from the completions and part from the input (bug#4219).
10673         * ido.el (ido-everywhere): Use define-minor-mode.
10675         * buff-menu.el (list-buffers, ctl-x-map):
10676         Mark the entry points with ;;;###autoload cookies.
10678 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
10680         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
10681         correctly in the detached head case.
10682         (vc-git-print-log): Remove unused binding.
10684         * vc.el (vc-responsible-backend): When a directory is passed for
10685         for registration create a VC repository if no backend is
10686         responsible for the directory argument.
10687         (vc-deduce-fileset): Tell vc-responsible-backend to register.
10689         * vc.el: Move comments about RCS and SCCS ...
10690         * vc-rcs.el:
10691         * vc-sccs.el: ... here, respectively.
10693 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10695         * minibuffer.el (completion--file-name-table): Return nil if there's
10696         no file completion, even if substitute-in-file-name changed
10697         the string (bug#4708).
10699 2009-10-13  Juri Linkov  <juri@jurta.org>
10701         * files-x.el (read-file-local-variable-value): Don't filter out
10702         minor modes from mode name completion (bug#4664).
10704 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
10706         * international/mule-cmds.el (ucs-names): Remove exclusion of
10707         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
10709 2009-10-13  Kenichi Handa  <handa@m17n.org>
10711         * international/uni-name.el: Regenerated.
10713 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
10715         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
10716         should be automatically buffer-local, but isn't.)
10718 2009-10-12  Sam Steingold  <sds@gnu.org>
10720         * progmodes/compile.el (compilation-next-error-function): Fix the
10721         timestamps if the buffer has been visited before.
10722         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
10723         non-anchored patterns, like the perl one (bug#3928).
10725 2009-10-12  Glenn Morris  <rgm@gnu.org>
10727         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
10728         Let-bind `size'.
10730 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
10732         * proced.el (proced-unload-function): New function.
10734         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
10735         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
10736         Doc fix.
10738         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
10740 2009-10-11  Juri Linkov  <juri@jurta.org>
10742         * files-x.el (read-file-local-variable-value):
10743         Provide default value only for bound variables (bug#4664).
10745 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
10747         * net/tramp.el (tramp-local-host-p): Function shall return nil for
10748         connection methods like smb.
10750         * net/tramp-cache.el (tramp-flush-connection-property): The hash
10751         can be empty.
10753         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
10754         (tramp-smb-file-name-handler-alist): Add handlers for
10755         `add-name-to-file', `make-symbolic-link'.
10756         (tramp-smb-handle-add-name-to-file)
10757         (tramp-smb-do-file-attributes-with-stat)
10758         (tramp-smb-handle-make-symbolic-link)
10759         (tramp-smb-get-cifs-capabilities): New defuns.
10760         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
10761         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
10762         (tramp-smb-handle-file-local-copy)
10763         (tramp-smb-handle-make-directory-internal)
10764         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
10765         The file name syntax depends on cifs capabilities.
10766         (tramp-smb-handle-file-attributes):
10767         Call `tramp-smb-do-file-attributes-with-stat' if possible.
10768         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
10769         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
10771 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
10773         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
10774         (eieio-defclass): Apply deftype handler and setf-method properties
10775         directly.
10776         (eieio-add-new-slot): Avoid union function from cl library.
10777         (eieio--typep): New function.
10778         (eieio-perform-slot-validation): Use it.
10780 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
10782         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
10783         Update documentation to refer to the variables documented in r1.135.
10784         (Bug#4188)
10786 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
10788         * bookmark.el (Info-suffix-list): Remove this unused variable.
10789         (bookmark-current-point): Remove this obsolete variable.
10790         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
10791         Adjust for removal of bookmark-current-point.
10793         (bookmarks-already-loaded, bookmark-current-buffer)
10794         (bookmark-yank-point): Document.  (Bug#4188)
10796 2009-10-10  Glenn Morris  <rgm@gnu.org>
10798         * frame.el (frame-height): Doc fix.
10800         * calendar/calendar.el (calendar-split-width-threshold): New option.
10801         (calendar-basic-setup): Use calendar-split-width-threshold.
10803 2009-10-10  Sascha Wilde  <wilde@sha-bang.de>
10805         * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
10806         Use .la for Automake.
10808 2009-10-09  Chong Yidong  <cyd@stupidchicken.com>
10810         * cedet/ede/pconf.el (ede-proj-configure-synchronize):
10811         Use "autoreconf -i".  Suggested by Andreas Schwab.
10813 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
10815         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
10816         Ideographic Supplement" range (U+1F200..U+1F2FF).
10818 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
10820         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
10821         since the list will have been rebuilt anyway.  (Bug#4349)
10823 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
10825         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
10826         (bookmark-bmenu-execute-deletions): Don't save here, as
10827         bookmark-delete will now do so if necessary.
10828         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
10829         (Bug#4348)
10831 2009-10-09  Glenn Morris  <rgm@gnu.org>
10833         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
10835 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
10837         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
10838         (bookmark-jump-other-window): Just invoke bookmark-jump with new
10839         argument now, so the two function's behaviors will match.  (Bug#3645)
10841 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
10843         * cedet/ede/proj.el (project-make-dist, project-compile-project):
10844         Fix filename test.
10845         (ede-proj-dist-makefile): Use expand-file-name instead of concat
10846         to expand file names.
10848 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
10850         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
10851         (tramp-file-name-real-host, tramp-file-name-port):
10852         Apply `save-match-data'.
10854         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
10855         case both directories are remote.
10856         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
10857         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
10859 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
10861         * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
10862         (ede-proj-target-makefile-objectcode): Use it.
10864         * cedet/ede/source.el (ede-want-any-source-files-p)
10865         (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
10866         Return search result.  This error was introduced while merging.
10868 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
10870         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
10872 2009-10-07  Glenn Morris  <rgm@gnu.org>
10874         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
10875         of concat.
10877 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
10879         * files-x.el (read-file-local-variable): Include some
10880         non-user-variables in the completion table (bug#4664).
10882 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
10884         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
10885         message.
10887         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
10888         (tramp-smb-file-name-handler-alist): Add handler for
10889         `copy-directory', `expand-file-name', `set-file-modes'.
10890         (tramp-smb-handle-copy-directory)
10891         (tramp-smb-handle-expand-file-name)
10892         (tramp-smb-handle-set-file-modes): New defuns.
10893         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
10894         (tramp-smb-handle-file-attributes): Simplify check for retrieving
10895         entry.
10896         (tramp-smb-handle-insert-directory): Don't flush the cache.
10897         (tramp-smb-maybe-open-connection): Check for samba client and
10898         server versions.
10900 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
10902         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
10903         to not error out of search for "^lisp=" fails.
10905 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
10907         * makefile.w32-in (WINS_UPDATES): New macro.
10908         (custom-deps, finder-data, autoloads): Use it.
10910 2009-10-07  Glenn Morris  <rgm@gnu.org>
10912         * Makefile.in (autoloads): Revert previous change.
10913         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
10914         the list of preloaded files passed on the command-line, get
10915         it from src/Makefile.
10917         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
10918         show the original buffer rather than a random one.
10920 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
10922         * help.el (describe-no-warranty): Place point in a slightly better
10923         position in the GPLv3 text.
10925 2009-10-06  Sam Steingold  <sds@gnu.org>
10927         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
10928         the comm attribute is present before calling regexp-quote.
10930 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
10932         * play/animate.el (animate-string): For good effect, make sure
10933         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
10935         * play/animate.el (animate-sequence, animate-birthday-present):
10936         * misc.el (butterfly): Don't set `indent-tabs-mode'.
10938 2009-10-06  Glenn Morris  <rgm@gnu.org>
10940         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
10942         * emacs-lisp/autoload.el (autoload-excludes): New variable.
10943         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
10944         (batch-update-autoloads): Process a string value of autoload-excludes,
10945         set during the build process.
10946         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
10948         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
10949         inside with-parsed...  macro so that `v' is defined.
10951         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
10952         * progmodes/fortran.el (fortran-end-of-block)
10953         (fortran-beginning-of-block):
10954         Also push mark in the macro case.
10956         * emerge.el (emerge-show-file-name):
10957         * calc/calc.el (calc-quit):
10958         * calc/calc-misc.el (calc-big-or-small):
10959         * calc/calc-graph.el (calc-graph-view):
10960         * calc/calc-ext.el (calc-reset):
10961         * calendar/calendar.el (calendar-basic-setup):
10962         Use window-full-height-p.
10964         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
10965         header we don't understand, don't insert another.  (Bug#4624)
10966         If changing mime charset, insert the new one in the right place.
10968 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
10970         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
10971         (cal-tex-cursor-month): Correctly increment the end date for diary and
10972         holiday listing.  (Bug#4626)
10974 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
10976         * help-fns.el (describe-function-1): Don't burp if the function is not
10977         a symbol.
10979 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
10981         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
10982         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
10983         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
10984         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
10986         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
10987         (eieio-default-superclass): Reflow docstrings.
10988         (this, class-option-assoc, defclass, eieio-class-un-autoload)
10989         (eieio-unbind-method-implementations, defmethod)
10990         (eieio-validate-slot-value, eieio-validate-class-slot-value)
10991         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
10992         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
10993         (eieio-slot-originating-class-p, eieio-slot-name-index)
10994         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
10995         (constructor, initialize-instance, no-next-method, object-print)
10996         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
10997         Fix typos in docstrings.
10998         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
10999         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
11000         (next-method-p): Doc fixes.
11001         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
11002         Fix typos in error messages.
11003         (eieio-defmethod): Fix typo in description of generic method.
11005         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
11006         (eieio-persistent-save-interactive, slot-missing):
11007         Fix typos in docstrings.
11008         (eieio-instance-inheritor-slot-boundp): Doc fix.
11010         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
11011         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
11013         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
11014         (eieio-custom-object-apply-reset):
11015         Fix typos in docstrings and error messages.
11017         * emacs-lisp/eieio-datadebug.el (data-debug-show):
11018         Fix typo in docstring.
11020         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
11021         (eieio-browse-tree): Doc fix.
11022         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
11023         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
11024         Fix typos in docstrings.
11026         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
11027         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
11028         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
11029         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
11030         Reflow docstrings.
11032 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
11034         * vc-hg.el (log-view-vc-backend): Declare for compiler.
11035         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
11036         Set log-view-vc-backend so that diff can work.
11038         * log-view.el (log-view-diff): Use vc-diff-internal instead of
11039         vc-version-diff.
11040         (vc-diff-internal): Autoload this instead of vc-version-diff.
11042 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
11044         * simple.el (eval-expression): Doc fix.
11046         * progmodes/cwarn.el (cwarn-mode): Doc fix.
11048 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
11050         * files.el (directory-files-no-dot-files-regexp): New defconst.
11051         (delete-directory): Use it.
11052         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
11054         * net/tramp.el (tramp-verbose): Fix docstring.
11055         (tramp-methods): Add recursive option to `tramp-copy-args'.
11056         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
11057         "scp1_old", "scp2_old", "rsync", "rsyncc".
11058         (tramp-default-method): Check also for `auth-source-user-or-password'.
11059         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
11060         Add handler for `copy-directory'.
11061         (tramp-handle-copy-directory): New defun.
11062         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
11063         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
11064         Optimize sent command.
11066 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11068         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
11069         window if necessary.
11071         * calendar/calendar.el (calendar-basic-setup): Don't call
11072         switch-to-buffer in a dedicated window.
11074 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
11076         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
11077         don't do anything related to relocating, just return nil.
11078         (bookmark-error-no-filename): New error.
11079         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
11080         bookmark has no file.  Don't even attempt to handle things that
11081         are not files; the whole point of custom handlers is to keep that
11082         knowledge elsewhere anyway.  Tighten some comments.
11083         (bookmark-file-or-variation-thereof): Remove now-unused function.
11084         (bookmark-location): Doc string fix.
11085         (Bug#4250)
11087 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
11089         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
11090         don't use a file dialog, because they usually don't know how to read
11091         a directory target from the user.  (Bug#4230)
11092         Also, make sure the prompt can display directories as well as files.
11094 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
11096         * bookmark.el (bookmark-set, bookmark-buffer-name):
11097         Improve doc strings.  (Bug#1193)
11099 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
11101         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
11102         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
11103         (bookmark-get-annotation, bookmark-set-annotation)
11104         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
11105         (bookmark-set-position, bookmark-get-front-context-string)
11106         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
11107         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
11108         (bookmark-jump-other-window, bookmark-handle-bookmark)
11109         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
11110         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
11111         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
11112         Improve doc strings to say whether bookmark can be a string or
11113         a record or both, and make other consistency and clarity fixes.
11114         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
11115         (bookmark-default-annotation-text, bookmark-yank-word)
11116         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
11117         (bookmark-import-new-list, bookmark-maybe-rename)
11118         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
11119         (bookmark-bmenu-bookmark): Give these doc strings.
11120         (bookmark-bmenu-check-position): Give this a doc string, but also
11121         add a FIXME comment about how the function may be pointless.
11122         (bookmark-default-handler): Rework doc string and change a
11123         parameter name, to clarify that this takes a bookmark record
11124         not a bookmark name.
11125         (bookmark-set): Change a parameter name to indicate its meaning,
11126         and improve the doc string a bit.
11127         (Bug#4188)
11129 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
11131         * bookmark.el (bookmark-alist): Document the new `handler' element
11132         in the param alist.
11133         (bookmark-make-record-function): Adjust documentation for above.
11134         (Bug#4193)
11136 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
11138         * info.el (Info-bookmark-make-record): Document this function.
11139         (Info-bookmark-jump): Document with a doc string, not just a comment.
11140         (Bug#4203)
11142 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
11144         * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
11145         (semantic-new-buffer-fcn): Call parser setup functions here.
11146         (semantic-mode): Don't call parser setup functions here, it's done
11147         in semantic-new-buffer-fcn now.
11148         (semantic-mode): Parse all existing buffers when enabled.
11150         * cedet/srecode/compile.el (srecode-compile-file):
11151         Call semantic-new-buffer-fcn if the buffer has not been parsed.
11153 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
11155         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
11157         * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
11158         (proj-comp-insert-variable-once): New macro, renamed from
11159         ede-pmake-insert-variable-once in ede/pmake.edl.
11160         (ede-proj-makefile-insert-variables): Use it.
11162 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
11164         * files.el (copy-directory): New defun.
11166         * dired-aux.el (dired-copy-file-recursive): Use it.
11168 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
11170         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
11171         (makefile-end-of-command):
11172         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
11173         (semantic-end-of-context): Fix previous change.  Doc fixes.
11175 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
11177         * files-x.el (modify-dir-local-variable)
11178         (copy-dir-locals-to-file-locals-prop-line):
11179         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
11180         (makefile-end-of-command):
11181         * cedet/semantic/lex.el (semantic-lex-token):
11182         * cedet/semantic/analyze/fcn.el
11183         (semantic-analyze-dereference-metatype-1):
11184         * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
11185         (semantic-lex-cpp-undef):
11186         * cedet/semantic/wisent/wisent.el (wisent-skip-block):
11187         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
11188         (semantic-end-of-context): Fix typos in docstrings.
11190         * recentf.el (recentf-unload-function): New function.
11192 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
11194         * cedet/ede.el (ede-project-placeholder-cache-file):
11195         * cedet/semantic/db-file.el (semanticdb-default-save-directory):
11196         * cedet/srecode/map.el (srecode-map-save-file):
11197         Use locate-user-emacs-file.  Suggested by Juanma Barranquero.
11199 2009-10-04  Glenn Morris  <rgm@gnu.org>
11201         * window.el (window-full-height-p): Add doc string.
11203 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
11205         * window.el (window-full-height-p): New function.  (Bug#4543)
11207 2009-10-03  Chong Yidong  <cyd@stupidchicken.com>
11209         * cedet/srecode/insert.el: Require srecode/args.
11211         * cedet/srecode/args.el: Require srecode/dictionary instead of
11212         srecode/insert.
11214         * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
11216         * files.el (auto-mode-alist): Add .srt and Project.ede.
11218         * cedet/semantic.el (semantic-mode):
11219         Handle srecode-template-mode-hook as well.
11220         (semantic-mode): Use js-mode-hook for Javascript hook.
11222         * cedet/srecode/template.el: Remove hook variable.
11224         * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
11226         * cedet/ede.el (ede-target-forms-menu): Don't enable if no
11227         projects exist.
11228         (ede-project-placeholder-cache-file): Default to a file in
11229         user-emacs-directory.
11231         * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
11232         templates in data-directory.
11233         (srecode-map-save-file): Default to a file in user-emacs-directory.
11235         * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
11236         directory.
11238 2009-09-30  Eric Ludlam  <zappo@gnu.org>
11240         * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
11241         Doc fix.
11243         * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
11244         Only insert each variable once.
11246         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
11247         (ede-pmake-insert-variable-shared): Use it.
11249         * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
11250         for lexical table iff table is nil.
11252 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
11254         * vc.el: Remove commented out code.
11255         (vc-derived-from-dir-mode): Remove, unused.
11256         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
11258 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
11260         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
11261         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
11262         there could be recursive loading when `default-directory' is a
11263         remote file name.  (Bug#4614)
11265 2009-10-03  Glenn Morris  <rgm@gnu.org>
11267         * calendar/calendar.el (calendar-basic-setup): Handle the case where
11268         the frame is wide.
11269         (calendar-generate-window): Test for shrinkability rather than width.
11271         * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
11272         declaration, currently false.
11274         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
11275         reusing existing buffers, in case we happen to visit two files with the
11276         same basename.  (Bug#4593)
11278 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
11280         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
11281         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
11282         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
11283         subdirs of cedet as well.
11284         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
11286 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11288         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
11289         Obey advertised-signature-table.
11291         * help-fns.el (help-function-arglist): Don't check
11292         advertised-signature-table.
11293         (describe-function-1): Do it here instead so it also applies to subrs.
11295 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
11297         * simple.el (start-file-process): Say in the doc-string, that file
11298         handlers might not support pty association, if PROGRAM is nil.
11300         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
11301         HOST and USER are strings.  They are nil, when there are
11302         incomplete entries in ~/.netrc, for example.
11303         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
11304         root directory ("device busy" error otherwise).
11306         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
11307         Flush file properties of created directory.
11309 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
11311         * makefile.w32-in (WINS_BASIC): Remove cedet.
11312         (WINS_CEDET): Add cedet.
11313         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
11315 2009-10-02  Kevin Ryde  <user42@zip.com.au>
11317         * net/browse-url.el (browse-url): Pass any symbol in
11318         browse-url-browser-function to `apply', since if you've mistakenly put
11319         an unbound symbol then the error is clearer.  (Bug#4531)
11321 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
11323         * allout.el (allout-init, allout-back-to-current-heading)
11324         (allout-beginning-of-current-entry, allout-ascend-to-depth)
11325         (allout-ascend, allout-up-current-level, allout-end-of-level)
11326         (allout-previous-visible-heading, allout-forward-current-level)
11327         (allout-backward-current-level, allout-show-children):
11328         * apropos.el (apropos-describe-plist):
11329         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
11330         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
11331         * completion.el (add-completion, add-permanent-completion):
11332         * descr-text.el (describe-text-category, describe-char):
11333         * desktop.el (desktop-lazy-abort):
11334         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
11335         * dired.el (dired-build-subdir-alist):
11336         * ediff.el (ediff-version):
11337         * elide-head.el (elide-head, elide-head-show):
11338         * emerge.el (emerge-version):
11339         * env.el (getenv):
11340         * face-remap.el (variable-pitch-mode):
11341         * faces.el (describe-face):
11342         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
11343         (dired-at-point):
11344         * files.el (find-file-existing, auto-save-mode):
11345         * font-lock.el (font-lock-fontify-buffer):
11346         * help-fns.el (describe-function, describe-variable)
11347         (describe-syntax, describe-categories):
11348         * help.el (view-lossage, describe-bindings, describe-key)
11349         (describe-mode):
11350         * hexl.el (hexl-current-address):
11351         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
11352         * info.el (Info-goto-emacs-key-command-node):
11353         * log-edit.el (log-edit-insert-cvs-template)
11354         (log-edit-insert-cvs-rcstemplate):
11355         * menu-bar.el (menu-bar-mode):
11356         * mouse.el (mouse-appearance-menu):
11357         * newcomment.el (comment-indent-new-line):
11358         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
11359         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
11360         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
11361         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
11362         * recentf.el (recentf-mode):
11363         * savehist.el (savehist-mode, savehist-save):
11364         * shadowfile.el (shadow-copy-files):
11365         * simple.el (kill-ring-save, next-line, previous-line)
11366         (normal-erase-is-backspace-mode):
11367         * strokes.el (strokes-update-window-configuration)
11368         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
11369         (strokes-xpm-for-stroke):
11370         * time.el (emacs-uptime, emacs-init-time):
11371         * tutorial.el (tutorial--describe-nonstandard-key)
11372         (tutorial--detailed-help):
11373         * type-break.el (type-break-mode)
11374         (type-break-mode-line-message-mode, type-break-query-mode)
11375         (type-break-guesstimate-keystroke-threshold):
11376         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
11377         * version.el (emacs-version):
11378         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
11379         * winner.el (winner-mode):
11380         * calendar/timeclock.el (timeclock-in, timeclock-out)
11381         (timeclock-status-string, timeclock-change)
11382         (timeclock-workday-remaining-string)
11383         (timeclock-workday-elapsed-string)
11384         (timeclock-when-to-leave-string):
11385         * calendar/todo-mode.el (todo-add-category):
11386         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
11387         * emacs-lisp/autoload.el (update-file-autoloads):
11388         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
11389         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
11390         (checkdoc-message-text, checkdoc-defun):
11391         * emacs-lisp/debug.el (debugger-list-functions):
11392         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
11393         * emacs-lisp/eieio-opt.el (eieio-describe-class)
11394         (eieio-describe-generic):
11395         * emacs-lisp/lisp-mnt.el (lm-synopsis):
11396         * emacs-lisp/shadow.el (list-load-path-shadows):
11397         * emulation/cua-base.el (cua-mode):
11398         * emulation/edt.el (edt-set-scroll-margins):
11399         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
11400         (tpu-toggle-regexp, tpu-toggle-search-direction)
11401         (tpu-toggle-rectangle, tpu-toggle-control-keys):
11402         * emulation/tpu-extras.el (tpu-set-scroll-margins):
11403         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
11404         (viper-set-parsing-style-toggling-macro)
11405         (viper-set-emacs-state-searchstyle-macros):
11406         * emulation/viper.el (viper-set-hooks):
11407         * eshell/esh-mode.el (eshell-truncate-buffer):
11408         * international/mule-cmds.el (prefer-coding-system)
11409         (describe-input-method, describe-language-environment):
11410         * international/mule-diag.el (list-character-sets)
11411         (describe-character-set, describe-coding-system)
11412         (describe-fontset, list-fontsets, list-input-methods):
11413         * mail/sendmail.el (mail-signature):
11414         * net/ange-ftp.el (ange-ftp-copy-file):
11415         * net/browse-url.el (browse-url):
11416         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
11417         * net/quickurl.el (quickurl-add-url):
11418         * net/rcirc.el (names, topic):
11419         * net/xesam.el (xesam-mode):
11420         * play/5x5.el (5x5-new-game):
11421         * play/yow.el (apropos-zippy):
11422         * progmodes/ada-mode.el (ada-mode-version):
11423         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
11424         (f90-end-of-block)
11425         (f90-beginning-of-block):
11426         * progmodes/fortran.el (fortran-end-of-block)
11427         (fortran-beginning-of-block):
11428         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
11429         * progmodes/python.el (python-describe-symbol, python-shell):
11430         * term/ns-win.el (ns-print-buffer):
11431         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
11432         * textmodes/flyspell.el (flyspell-mode-on):
11433         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
11434         (pages-directory-for-addresses):
11435         * textmodes/table.el (table-recognize-cell)
11436         (table-query-dimension, table-generate-source)
11437         (table-insert-sequence, table--warn-incompatibility):
11438         * textmodes/tex-mode.el (tex-validate-buffer):
11439         * textmodes/texinfmt.el (texinfmt-version)
11440         (texinfo-format-buffer):
11441         Use `called-interactively-p' instead of `interactive-p'.
11443 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
11445         * image-mode.el (image-toggle-display):
11446         * emacs-lisp/elp.el (elp-instrument-function):
11447         * emacs-lisp/advice.el (ad-make-advised-definition):
11448         * emacs-lisp/easy-mmode.el (define-minor-mode):
11449         * net/browse-url.el (browse-url-maybe-new-window):
11450         * progmodes/sh-script.el (sh-learn-buffer-indent):
11451         Pass new argument 'any to `called-interactively-p'.
11453 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
11455         * international/uni-bidi.el:
11456         * international/uni-category.el:
11457         * international/uni-combining.el:
11458         * international/uni-comment.el:
11459         * international/uni-decimal.el:
11460         * international/uni-decomposition.el:
11461         * international/uni-digit.el:
11462         * international/uni-lowercase.el:
11463         * international/uni-mirrored.el:
11464         * international/uni-name.el:
11465         * international/uni-numeric.el:
11466         * international/uni-old-name.el:
11467         * international/uni-titlecase.el:
11468         * international/uni-uppercase.el:
11469         Regenerate from Unicode 5.2.0 data.
11471 2009-10-01  Glenn Morris  <rgm@gnu.org>
11473         * Makefile.in (ELCFILES): Regenerate.
11475 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11477         * subr.el (interactive-p): Mark obsolete.
11478         (called-interactively-p): Make the optional-ness of `kind' obsolete.
11479         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
11480         advertised-signature-table for subroutines as well.
11482         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
11483         (set-advertised-calling-convention): New function.
11484         (make-obsolete, define-obsolete-function-alias)
11485         (make-obsolete-variable, define-obsolete-variable-alias):
11486         Make the optional-ness of `when' obsolete.
11487         (define-obsolete-face-alias): Make `when' non-optional.
11488         * help-fns.el (help-function-arglist):
11489         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
11490         Use advertised-signature-table.
11492 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
11494         * files.el (delete-directory): New defun.  The original function
11495         in fileio.c has been renamed to `delete-directory-internal'.
11497         * dired.el (dired-delete-file): Call `delete-directory' with
11498         RECURSIVE parameter.
11500         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
11501         parameter RECURSIVE.  Implementation is missing.
11503         * net/tramp.el (tramp-handle-make-directory): Flush upper
11504         directory's file properties.
11505         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
11506         (tramp-handle-dired-recursive-delete-directory): Flush directory
11507         properties after the remove command only.
11509         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
11510         Handle optional parameter RECURSIVE.
11512         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
11513         Handle optional parameter RECURSIVE.
11515         * net/tramp-smb.el (tramp-smb-errors): Add error message for
11516         connection timeout.
11517         (tramp-smb-handle-delete-directory): Handle optional parameter
11518         RECURSIVE.
11520 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11522         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
11523         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
11524         (byte-compile-defmacro): Use backquotes.
11526         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
11528         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
11529         has no associated file.
11530         (vc-resynch-buffer): Use vc-dir-buffers.
11532 2009-10-01  Glenn Morris  <rgm@gnu.org>
11534         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
11535         (chart-file-count):
11536         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
11537         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
11538         * emacs-lisp/eieio-opt.el (eieio-describe-class):
11539         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
11540         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
11541         (eieio-copy-parents-into-subclass, make-instance, class-children)
11542         (eieio-generic-form):
11543         * cedet/cedet-files.el (cedet-directory-name-to-file-name):
11544         * cedet/cedet-idutils.el (cedet-idutils-search)
11545         (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
11546         (cedet-idutils-version-check):
11547         * cedet/cedet.el (cedet-version):
11548         * cedet/data-debug.el (data-debug-insert-overlay-button)
11549         (data-debug-insert-overlay-list-button)
11550         (data-debug-insert-buffer-button)
11551         (data-debug-insert-buffer-list-button)
11552         (data-debug-insert-process-button, data-debug-insert-ring-button)
11553         (data-debug-insert-widget, data-debug-insert-stuff-list-button)
11554         (data-debug-insert-stuff-vector-button)
11555         (data-debug-insert-symbol-button, data-debug-insert-string)
11556         (data-debug-insert-number, data-debug-insert-lambda-expression)
11557         (data-debug-insert-nil, data-debug-insert-simple-thing)
11558         (data-debug-insert-custom, data-debug-edebug-expr):
11559         * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
11560         (global-ede-mode-map, ede-new, ede-debug-target)
11561         (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
11562         * cedet/semantic.el (semantic-minimum-working-buffer-size)
11563         (semantic-fetch-tags, semantic-submode-list)
11564         (semantic-default-submodes):
11565         * cedet/ede/source.el (ede-source-match):
11566         * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
11567         (project-am-package-info):
11568         * cedet/ede/proj.el (ede-proj-target, project-new-target):
11569         * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
11570         * cedet/ede/proj-comp.el (ede-current-build-list):
11571         * cedet/ede/makefile-edit.el (makefile-move-to-macro):
11572         * cedet/ede/files.el (ede-toplevel-project-or-nil):
11573         * cedet/ede/cpp-root.el (initialize-instance):
11574         * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
11575         (autoconf-parameter-strip, autoconf-insert-new-macro):
11576         * cedet/semantic/wisent.el (wisent-lex-eoi):
11577         * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
11578         (semantic-show-parser-state-mode):
11579         * cedet/semantic/texi.el (semantic-texi-environment-regexp):
11580         * cedet/semantic/tag.el (semantic-tag-new-variable)
11581         (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
11582         (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
11583         (semantic--tag-deep-copy-tag-list)
11584         (semantic-tag-components-with-overlays-default):
11585         * cedet/semantic/symref.el (semantic-symref-find-text):
11586         * cedet/semantic/senator.el (senator-yank-tag)
11587         (senator-transpose-tags-up):
11588         * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
11589         (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
11590         * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
11591         * cedet/semantic/lex.el (semantic-lex-comment-regex)
11592         (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
11593         (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
11594         * cedet/semantic/lex-spp.el
11595         (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
11596         (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
11597         * cedet/semantic/idle.el
11598         (semantic-idle-summary-current-symbol-info-brutish)
11599         (semantic-idle-summary-current-symbol-info-default):
11600         * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
11601         (semantic--grammar-macro-compl-dict):
11602         * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
11603         * cedet/semantic/format.el (semantic-format-tag-custom-list)
11604         (semantic-format-tag-canonical-name-default):
11605         * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
11606         (semantic-find-tags-for-completion)
11607         (semantic-find-tags-by-scope-protection-default)
11608         (semantic-deep-find-tags-for-completion):
11609         * cedet/semantic/edit.el
11610         (semantic-edits-incremental-reparse-failed-hook)
11611         (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
11612         (semantic-edits-splice-remove, semantic-edits-splice-replace):
11613         * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
11614         * cedet/semantic/dep.el (semantic-dependency-include-path):
11615         * cedet/semantic/db.el (semanticdb-default-find-index-class)
11616         (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
11617         (semanticdb-project-roots):
11618         * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
11619         (semanticdb-find-adebug-insert-scanned-tag-cons)
11620         (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
11621         (semanticdb-brute-deep-find-tags-for-completion):
11622         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
11623         * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
11624         (semantic-end-of-context-default)
11625         (semantic-ctxt-current-function-default)
11626         (semantic-ctxt-scoped-types-default):
11627         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
11628         (semantic-complete-inline-tag-engine)
11629         (semantic-complete-inline-custom-type)
11630         (semantic-complete-read-tag-analyzer):
11631         * cedet/semantic/chart.el (semantic-chart-tags-by-class)
11632         (semantic-chart-database-size):
11633         * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
11634         (semantic-analyze-current-context):
11635         * cedet/semantic/symref/list.el (semantic-symref)
11636         (semantic-symref-hide-buffer, semantic-symref-symbol):
11637         * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
11638         * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
11639         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
11640         * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
11641         (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
11642         (semantic-c-dereference-template):
11643         * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
11644         (semantic--analyze-refs-full-lookup-with-parents)
11645         (semantic--analyze-refs-full-lookup-simple):
11646         * cedet/semantic/analyze/complete.el
11647         (semantic-analyze-possible-completions):
11648         * cedet/srecode/table.el (srecode-mode-table-new):
11649         * cedet/srecode/srt.el (srecode-read-variable-name):
11650         * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
11651         * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
11652         (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
11653         * cedet/srecode/map.el (srecode-current-map):
11654         * cedet/srecode/insert.el (srecode-insert)
11655         (srecode-insert-variable-secondname-handler, srecode-insert-method)
11656         (srecode-template-inserter-point-override)
11657         (srecode-insert-include-lookup):
11658         * cedet/srecode/getset.el (srecode-auto-choose-class):
11659         * cedet/srecode/extract.el (srecode-inserter-extract):
11660         * cedet/srecode/document.el
11661         (srecode-document-autocomment-return-last-alist)
11662         (srecode-document-autocomment-param-type-alist)
11663         (srecode-document-insert-function-comment)
11664         (srecode-document-insert-variable-one-line-comment)
11665         (srecode-document-function-name-comment):
11666         * cedet/srecode/dictionary.el (srecode-create-dictionary)
11667         (srecode-compound-toString):
11668         * cedet/srecode/compile.el (srecode-flush-active-templates):
11669         * cedet/srecode/args.el (srecode-semantic-handle-:blank):
11670         Doc/message fixes.
11672         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
11673         match-data.  (Bug#4555).
11675         * cedet/semantic/bovine/gcc.el
11676         (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
11677         (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
11679         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
11680         rather than parsing it as a regexp.  This relaxes the layout
11681         requirements and makes errors easier to detect.
11682         (check-declare-verify): Check file is regular.
11683         (check-declare-directory): Doc fix.
11684         * subr.el (declare-function): Doc fix.
11686         * ibuffer.el (ibuffer-format-qualifier):
11687         * isearch.el (hi-lock-regexp-okay):
11688         * calc/calc.el (math-zerop):
11689         * mail/uce.el (rmail-msgbeg, rmail-msgend):
11690         * term/w32-win.el (setup-default-fontset, set-fontset-font):
11691         Remove unused declarations.
11693 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
11695         * cedet/semantic/wisent/javat-wy.el
11696         (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
11698 2009-09-30  Juanma Barranquero  <lekktu@gmail.com>
11700         * cedet/srecode/expandproto.el: Fix provide statement.
11702 2009-09-30  Eric Ludlam  <zappo@gnu.org>
11704         * emacs-lisp/eieio.el (boolean-p): Delete.
11706 2009-09-30  Sascha Wilde  <wilde@sha-bang.de>
11708         * cedet/ede/srecode.el: Fix provide statement.
11710 2009-09-30  Glenn Morris  <rgm@gnu.org>
11712         * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
11713         * cedet/ede/proj-aux.el (ede-aux-source):
11714         * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
11715         (ede-misc-source):
11716         * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
11717         (semantic-mrub-switch-tags): Fix doc typos.
11719         * cedet/semantic/db-global.el (data-debug-new-buffer)
11720         (data-debug-insert-thing): Remove unneeded declarations (one broken).
11721         (semanticdb-enable-gnu-global-databases): Fix prompt typo.
11723         * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
11725         * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
11726         use of CL function `remove-if-not'.
11728         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
11730         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
11731         filename is not a string.
11733 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
11735         * files.el (safe-local-eval-forms): Fix typo.
11737 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11739         * vc-hooks.el (vc-dir-buffers): New var.
11740         (vc-state-refresh): New function.
11741         (vc-state): Use it.
11742         (vc-after-save): Always ask the backend to recompute the new state.
11743         Always call vc-dir if necessary, using vc-dir-buffers.
11744         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
11745         Use vc-dir-buffers.
11746         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
11747         (vc-dir-prepare-status-buffer, vc-dir-update)
11748         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
11749         Don't call expand-file-name on default-directory.
11751 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
11753         * speedbar.el (speedbar-item-delete):
11754         * calc/calc-prog.el (calc-kbd-if):
11755         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
11757         * epa.el (epa-key-list-mode-map):
11758         * hi-lock.el (hi-lock-menu): Fix typos in menus.
11760         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
11761         (hs-show-hook): Fix typo in docstring.
11763 2009-09-29  Glenn Morris  <rgm@gnu.org>
11765         * cedet/semantic/symref/idutils.el:
11766         * cedet/semantic/symref/list.el: Relicense under GPLv3+.
11768         * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
11770         * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
11771         * cedet/semantic/tag-file.el (semanticdb-table-child-p):
11772         * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
11773         Mark declarations not understood by check-declare.
11775         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
11776         file-name-nondirectory call preventing location of cedet files.
11777         (check-declare-verify): Use literal search rather than re-search.
11778         Add basic defmethod and defclass, and define-overloadable-function.
11780         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
11781         Use tramp-compat-file-attributes rather than nonexistent
11782         tramp-compat-handle-file-attributes.
11784         * Makefile.in (lisptagsfiles4): New.
11785         (AUTOGENEL): Add cedet loaddefs files.
11786         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
11787         (update-elclist, compile-always, backup-compiled-files)
11788         (bootstrap-clean): Add yet another directory level.
11789         (update-elclist): Use LC_COLLATE rather than COLLATE.
11790         (ELCFILES): Update, via `make update-elclist'.
11792 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
11794         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
11795         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
11796         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
11798 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
11800         * Makefile.in (lisptagsfiles3): Define.
11801         (TAGS, TAGS-LISP): Use it.
11802         (update-elclist): Add third directory level to look for elc files.
11803         (compile-always): Likewise.
11804         (backup-compiled-files): Likewise.
11805         (bootstrap-clean): Likewise.
11806         (ELCFILES): Update.
11808 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
11810         * Makefile.in (ELCFILES): Add CEDET files.
11812 2009-09-28  Eric Ludlam  <zappo@gnu.org>
11814         CEDET (development tools) package merged.
11816         * cedet/*.el:
11817         * cedet/ede/*.el:
11818         * cedet/semantic/*.el:
11819         * cedet/srecode/*.el: New files.
11821 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
11823         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
11825         * net/tramp.el (top): Require tramp-imap.
11827         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
11828         Use `tramp-compat-handle-file-attributes'.
11830 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
11832         * net/tramp-imap.el: New package.
11834 2009-09-28  Eric Ludlam  <zappo@gnu.org>
11836         * emacs-lisp/chart.el:
11837         * emacs-lisp/eieio-base.el:
11838         * emacs-lisp/eieio-comp.el:
11839         * emacs-lisp/eieio-custom.el:
11840         * emacs-lisp/eieio-datadebug.el:
11841         * emacs-lisp/eieio-opt.el:
11842         * emacs-lisp/eieio-speedbar.el:
11843         * emacs-lisp/eieio.el: New files.
11845         * cedet/cedet-cscope.el:
11846         * cedet/cedet-files.el:
11847         * cedet/cedet-global.el:
11848         * cedet/cedet-idutils.el:
11849         * cedet/data-debug.el:
11850         * cedet/inversion.el:
11851         * cedet/mode-local.el:
11852         * cedet/pulse.el: New files.
11854 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11856         * whitespace.el (whitespace-trailing-regexp)
11857         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
11858         Fix doc string.
11860 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
11862         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
11863         menu.
11865         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
11866         menu-bar-ediff-menu.
11868         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
11869         define-overloadable-function.
11871         * progmodes/autoconf.el: Provide autoconf as well, so that this
11872         file can be `require'd.
11874         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
11876         * emacs-lisp/autoload.el (generated-autoload-feature)
11877         (generated-autoload-load-name): New vars.
11878         (autoload-rubric, autoload-generate-file-autoloads): Use them.
11879         (make-autoload): Recognize define-overloadable-function and
11880         defclass forms (for EIEIO).
11882         * Makefile.in (update-subdirs): Exclude cedet directory.
11884 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
11886         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
11888         * faces.el: Default light-background background for region face to
11889         ns_selection_color under NS.
11891 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
11893         * net/imap-hash.el: New library, see NEWS.
11895         * Makefile.in (ELCFILES): Add imap-hash.el.
11897 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
11899         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
11900         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
11901         * help-macro.el (make-help-screen): Avoid using an ambiguous function
11902         definition where the docstring could be taken for the return value.
11904 2009-09-26  Glenn Morris  <rgm@gnu.org>
11906         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
11907         Add option to only show images below a certain size.
11908         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
11909         save-excursion calls.
11911 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
11913         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
11914         subdirectories) and eieio.
11916 2009-09-26  Alan Mackenzie  <acm@muc.de>
11918         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
11919         buggy bracketing.  (Bug#4289)
11921         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
11922         character constants (as case labels).  (Bug#4289)
11924 2009-09-25  Juri Linkov  <juri@jurta.org>
11926         * files.el (safe-local-eval-forms): Allow time-stamp in
11927         before-save-hook (Bug#4554).
11929 2009-09-25  Drew Adams  <drew.adams@oracle.com>
11931         * menu-bar.el (list-buffers-directory): Doc fix.
11933 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11935         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
11936         Try and avoid copying twice the same paragraph.
11937         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
11938         Remove save-excursion.
11939         (log-edit-changelog-entry): Do it here instead.
11941 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
11943         * bs.el (bs--get-file-name): Use `list-buffers-directory'
11944         when available, instead of hardcoding mode names.  Doc fix.
11946         * menu-bar.el (list-buffers-directory): Add docstring.
11947         Make automatically buffer-local.
11949         * dired.el (dired-mode):
11950         * files.el (cd-absolute):
11951         * pcvs.el (cvs-temp-buffer):
11952         * pcvs-util.el (cvs-get-buffer-create):
11953         * shell.el (shell-mode):
11954         * vc-dir.el (vc-dir-mode):
11955         Don't make `list-buffers-directory' buffer local.
11957 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
11959         * comint.el (comint-exec, comint-run, make-comint):
11960         Doc fixes (Bug#4542).
11962 2009-09-25  Glenn Morris  <rgm@gnu.org>
11964         * mail/rmailmm.el (rmail-mime): New custom group.
11965         Move all defcustoms in this file into this group.
11966         (rmail-mime-media-type-handlers-alist): Revert previous change.
11967         (rmail-mime-show-images): New option.
11968         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
11969         references to it, since it wasn't actually used for anything.
11970         (rmail-mime-insert-image): New function.
11971         (rmail-mime-image): Use rmail-mime-insert-image.
11972         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
11973         obey the value of `rmail-mime-show-images' option.  Print the size of
11974         attachments.
11976 2009-09-25  David Engster  <deng@randomsample.de>
11978         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
11980 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
11982         * whitespace.el: Does not highlight trailing spaces While point is
11983         at end of line.  Does not highligt spaces at beginning of buffer
11984         while point is at beginning of buffer.  Does not highlight spaces
11985         at end of buffer while point is at end of buffer.  (Bug#4177)
11986         New version 12.0.
11987         (whitespace-display-mappings): Adjust initialization.
11988         (whitespace-point, whitespace-font-lock-refontify): New vars.
11989         (whitespace-color-on, whitespace-color-off): Adjust code.
11990         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
11991         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
11992         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
11994 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
11996         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
11998         * textmodes/sgml-mode.el: Remove xml-mode alias.
12000         * files.el (auto-mode-alist, conf-mode-maybe)
12001         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
12003 2009-09-24  Alan Mackenzie  <acm@muc.de>
12005         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
12006         c-forward-conditionals, but it doesn't move point and doesn't set
12007         the mark.
12008         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
12009         (c-down-conditional-with-else, c-backward-conditional)
12010         (c-forward-conditional): Refactor to use c-scan-conditionals.
12012 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
12014         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
12015         (help-default-arg-highlight): Remove.
12016         (help-highlight-arg): New function.
12017         (help-do-arg-highlight): Use it.
12018         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
12020 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12022         * term.el (term-set-scroll-region, term-handle-ansi-escape):
12023         Undo last change, which didn't fix the problem and introduced others.
12025 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
12027         * progmodes/gdb-mi.el: Don't require speedbar.
12028         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
12030 2009-09-24  Glenn Morris  <rgm@gnu.org>
12032         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
12034         * term/ns-win.el (ns-reg-to-script): Define for compiler.
12036         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
12037         there is no newline after the final mime boundary.  (Bug#4539)
12038         Move markers on insertion so that any buttons inserted don't end up in
12039         the next part of a multipart message.
12040         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
12041         (rmail-mime-bulk-handler): Optionally handle images.
12042         (rmail-mime-image): New button action.
12043         (rmail-mime-image-handler): New function.
12044         (rmail-mime-mode): New mode.
12045         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
12047 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12049         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
12050         than just dropping elements from it (bug#4504).
12052         * term.el (term-set-scroll-region): Don't move cursor any more.
12053         (term-handle-ansi-escape): Call term-goto here instead.
12054         Suggested by Ivan Kanis <apple@kanis.eu>.
12056         * term.el: Require CL.
12057         (term-ansi-reset): New function.
12058         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
12059         (term-handle-colors-array): Simplify.
12061 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
12063         * allout.el (allout-overlay-interior-modification-handler)
12064         (allout-obtain-passphrase):
12065         * epa-file.el (epa-file-write-region):
12066         * ps-print.el (ps-begin-job):
12067         * vc-hooks.el (vc-toggle-read-only):
12068         * vc-rcs.el (vc-rcs-rollback):
12069         * vc-sccs.el (vc-sccs-rollback):
12070         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
12071         (vc-version-diff, vc-revert, vc-rollback):
12072         * wdired.el (wdired-check-kill-buffer):
12073         * emacs-lisp/authors.el (authors):
12074         * net/socks.el (socks-open-connection):
12075         * net/zeroconf.el (zeroconf-service-add-hook):
12076         * obsolete/vc-mcvs.el (vc-mcvs-register):
12077         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
12078         (gdb-select-frame):
12079         * progmodes/grep.el (lgrep, rgrep):
12080         * progmodes/idlw-help.el (idlwave-help-check-locations)
12081         (idlwave-help-html-link, idlwave-help-assistant-open-link):
12082         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
12083         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
12084         (reftex-toc-rename-label): Fix typos in error messages.
12086         * dired-aux.el (dired-do-shell-command): Reflow docstring.
12087         (dired-copy-how-to-fn): Doc fix.
12088         (dired-files-attributes, dired-read-shell-command):
12089         Fix typos in docstrings.
12091         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
12092         (dired-x-find-file-other-window): Reflow docstrings.
12093         (dired-omit-marker-char, dired-read-shell-command)
12094         (dired-x-submit-report): Fix typos in docstrings.
12096         * shell.el (shell-mode-hook):
12097         * view.el (View-scroll-line-forward):
12098         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
12099         Fix typos in docstrings.
12101         * net/dig.el (dig-invoke): Fix typo in docstring.
12102         (query-dig): Reflow docstring.
12104         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
12105         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
12106         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
12107         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
12108         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
12109         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
12110         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
12111         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
12112         (idlwave-completion-map, idlwave-current-indent)
12113         (idlwave-custom-ampersand-surround, idlwave-customize)
12114         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
12115         (idlwave-define-abbrev, idlwave-determine-class-special)
12116         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
12117         (idlwave-end-block-reg, idlwave-end-of-statement)
12118         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
12119         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
12120         (idlwave-explicit-class-listed, idlwave-file-header)
12121         (idlwave-fill-paragraph, idlwave-find-class-definition)
12122         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
12123         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
12124         (idlwave-in-quote, idlwave-indent-action-table)
12125         (idlwave-indent-expand-table, idlwave-indent-line)
12126         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
12127         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
12128         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
12129         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
12130         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
12131         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
12132         (idlwave-outlawed-buffers, idlwave-popup-select)
12133         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
12134         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
12135         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
12136         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
12137         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
12138         (idlwave-statement-type, idlwave-struct-skip)
12139         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
12140         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
12141         (idlwave-what-module-find-class): Fix typos in docstrings.
12142         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
12143         (idlwave-calculate-cont-indent, idlwave-expand-equal)
12144         (idlwave-find-module, idlwave-find-structure-definition)
12145         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
12146         (idlwave-list-load-path-shadows, idlwave-next-statement)
12147         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
12148         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
12149         (idlwave-template): Reflow docstrings.
12151         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
12152         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
12153         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
12154         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
12155         (idlwave-shell-display-line, idlwave-shell-display-wframe)
12156         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
12157         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
12158         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
12159         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
12160         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
12161         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
12162         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
12163         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
12164         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
12165         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
12166         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
12167         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
12168         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
12169         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
12170         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
12171         Fix typos in docstrings.
12172         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
12173         (idlwave-shell-hide-output, idlwave-shell-mode)
12174         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
12175         Reflow docstrings.
12177         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
12179 2009-09-24  Ivan Kanis  <apple@kanis.eu>
12181         * term.el (term-bold-attribute): New var.
12182         (term-handle-colors-array): Use it.
12184 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
12186         * progmodes/gdb-mi.el (gdb-version): New variable.
12187         (gdb-non-stop-handler): Set gdb-version.
12188         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
12189         Condition "--thread" option on gdb-version.
12190         (gdb-invalidate-threads): Remove unused argument.
12192 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12194         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
12195         to looking-back to avoid ridiculous slow down in large files (bug#4511).
12197 2009-09-23  Glenn Morris  <rgm@gnu.org>
12199         * mail/rmail.el (rmail-reply): Don't try to add a References header when
12200         replying to mail without References or Message-Id.  (Bug#4525)
12202 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
12204         * term/ns-win.el (ns-reg-to-script): New variable.
12206 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
12208         * epg.el (epg-wait-for-status): Preserve existing 'error results.
12210 2009-09-22  Sam Steingold  <sds@gnu.org>
12212         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
12213         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
12214         to 1 because hg returns status 1 when nothing is found.
12215         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
12217 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12219         * textmodes/fill.el: Convert to utf-8 encoding.
12220         (fill-french-nobreak-p): Remove redundant » and « inherited from our
12221         pre-Unicode days.
12223         * add-log.el (change-log-fill-forward-paragraph): New function.
12224         (change-log-mode): Use it so fill-region DTRT.
12225         Set fill-indent-according-to-mode here rather than in
12226         change-log-fill-paragraph.
12227         (change-log-fill-paragraph): Remove.
12229 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
12231         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
12232         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
12234 2009-09-22  Glenn Morris  <rgm@gnu.org>
12236         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
12237         the scroll-bar scroll the calendar window rather than the buffer.
12239         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
12240         commands that move point (as opposed to scrolling).
12242         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
12244         * emacs-lisp/elint.el (elint): New custom group.
12245         (elint-log-buffer): Make it a defcustom.
12246         (elint-scan-preloaded, elint-ignored-warnings)
12247         (elint-directory-skip-re): New options.
12248         (elint-builtin-variables): Doc fix.
12249         (elint-preloaded-env): New variable.
12250         (elint-unknown-builtin-args): Add an entry for encode-time.
12251         (elint-extra-errors): Make it a variable rather than a constant.
12252         (elint-preloaded-skip-re): New constant.
12253         (elint-directory): Skip files matching elint-directory-skip-re.
12254         (elint-features): New variable, local to linted buffers.
12255         (elint-update-env): Initialize elint-features.  Possibly add
12256         elint-preloaded-env to the buffer's environment.
12257         (elint-get-top-forms): Bind elint-current-pos, for log messages.
12258         Skip quoted forms.
12259         (elint-init-form): New function, extracted from elint-init-env.
12260         Make non-list forms a warning rather than an error.
12261         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
12262         easy-menu-define, put that adds an error-condition, and provide.
12263         When requiring cl, also require cl-macs.  Really require cl, to handle
12264         some cl macros.  Store required libraries in the list elint-features,
12265         so as not to re-load them.  Treat cc-require like require.
12266         (elint-init-env): Call elint-init-form to do the work.
12267         Handle eval-and-compile and such like.
12268         (elint-add-required-env): Do not clear messages.
12269         (elint-special-forms): Add handlers for function, defalias, if, when,
12270         unless, and, or.
12271         (elint-form): Add optional argument to ignore elint-special-forms,
12272         useful to prevent recursive calls from handlers.  Doc fix.
12273         Respect elint-ignored-warnings.
12274         (elint-form): Respect elint-ignored-warnings.
12275         (elint-bound-variable, elint-bound-function): New variables.
12276         (elint-unbound-variable): Respect elint-bound-variable.
12277         (elint-get-args): Respect elint-bound-function.
12278         (elint-check-cond-form): Add some simple handling for (f)boundp and
12279         featurep tests.
12280         (elint-check-defalias-form): New handler.
12281         (elint-check-let-form): Make an empty let a warning rather than an
12282         error.
12283         (elint-check-setq-form): Make an empty setq a warning rather than an
12284         error.  Respect elint-ignored-warnings.
12285         (elint-check-defvar-form): Accept null doc-strings.
12286         (elint-check-conditional-form): New handler.  Does some simple-minded
12287         checking of featurep and (f)boundp tests.
12288         (elint-put-function-args): New function.
12289         (elint-initialize): Use elint-scan-doc-file rather than
12290         elint-find-builtin-variables.  Use elint-put-function-args.
12291         Possibly scan preloaded-file-list.
12292         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
12293         extend to handle functions as well.
12295 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
12297         * linum.el (linum-delete-overlays, linum-update-window):
12298         Do not modify the right margin.  (Bug#3971)
12300 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
12302         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
12303         nxml-mode instead of xml-mode.
12305 2009-09-21  Kevin Ryde  <user42@zip.com.au>
12307         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
12309 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12311         * net/dig.el (dig-mode): Use define-derived-mode.
12313 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
12315         * vc-dispatcher.el (vc-do-command): Return the process object in
12316         the asynchronous case.  Use when instead of if.  Do not run
12317         vc-exec-after to display a message if not enabled.  (Bug#4463)
12319         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
12320         properties to the stash strings.
12321         (vc-git-stash-list): Return a list of strings.
12322         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
12323         (vc-git-stash-show-at-point): New functions.
12324         (vc-git-stash-map): New keymap.
12326         * register.el (ctl-x-r-map): Define the keys here instead of
12327         using autoload.
12329 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
12331         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
12332         list, to workaround performance problem (bug#4485).
12334 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
12336         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
12338 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
12340         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
12341         Document that this option is not recommended to use.
12343 2009-09-19  Glenn Morris  <rgm@gnu.org>
12345         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
12346         variable `var'.
12348         * calc/calc-alg.el (var):
12349         * calc/calcalg2.el (var): Define for compiler.
12351 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
12353         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
12354         Doc fix (Bug#3932).
12356         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
12358         * time-stamp.el (time-stamp-month-dd-yyyy)
12359         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
12360         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
12361         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
12362         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
12363         Remove functions that have been obsolete since 1995 (Bug#4436).
12365         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
12366         indent buffer only if called interactively (Bug#4452).
12368 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
12369             Eli Zaretskii  <eliz@gnu.org>
12371         This fixes bug#4197 (merged to bug#865, though not identical).
12372         * server.el (server-auth-dir): Add docstring note about FAT32.
12373         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
12374         but warn against using them.
12376 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
12378         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
12379         older GDB where there is no has_more field.
12381 2009-09-19  Glenn Morris  <rgm@gnu.org>
12383         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
12385 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
12387         * files.el (auto-mode-alist): Change default for XML files to nXML
12388         mode (Bug#4169).
12390 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
12392         * server.el (server-ensure-safe-dir): Pass 'integer
12393         to `file-attributes', as suggested.
12395 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
12397         * dired-aux.el (dired-query-alist): Remove spurious backslash.
12398         (dired-query): Use read-key.
12400 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
12402         * cus-start.el (ns-use-qd-smoothing): Remove.
12404 2009-09-18  Glenn Morris  <rgm@gnu.org>
12406         * allout.el (top-level): Remove unnecessary progn.
12408         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
12410         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
12411         definition of abbrev table.
12413         * speedbar.el (speedbar-track-mouse):
12414         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
12415         * net/eudc.el (eudc-expand-inline):
12416         * net/newst-backend.el (newsticker--cache-read-feed):
12417         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
12418         condition-case handlers.
12420 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
12422         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
12423         (gdb-var-list): Add an element for has_more field.
12424         (gdb-non-stop-handler): Enable pretty printing for STL containers.
12425         (gdb-var-create-handler, gdb-var-list-children-handler-1)
12426         (gdb-var-update-handler-1): Parse output of dynamic variable
12427         objects (STL containers).
12428         (gdb-var-delete-1): Pass var1 as an explicit second argument.
12429         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
12431         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
12432         gdb-var-list.
12433         (gud-speedbar-buttons): Make node expandable if expression "has more"
12434         children.
12436 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
12438         * startup.el (emacs-quick-startup): Remove variable and all uses.
12439         (command-line): Set `inhibit-x-resources' instead.
12440         (command-line-1): Use `inhibit-x-resources' instead.
12442 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
12444         * subr.el: Fix last change to avoid using the `unless' macro,
12445         which breaks bootstrapping.
12447 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12449         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
12450         extended definitions, in case we reload subr.el after having
12451         loaded CL.
12452         (eval-next-after-load): Mark as obsolete.
12454 2009-09-17  Juri Linkov  <juri@jurta.org>
12456         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
12457         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
12458         (menu-bar-showhide-menu, menu-bar-tools-menu)
12459         (menu-bar-describe-menu, menu-bar-help-menu)
12460         (minibuffer-local-completion-map, minibuffer-local-map):
12461         Fix list quoting.
12463 2009-09-17  Glenn Morris  <rgm@gnu.org>
12465         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
12466         arguments, whether or not it has a handler.
12468         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
12470         * simple.el (hard-newline): Give it a doc-string.
12472         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
12473         (lisp-mode-syntax-table): Give them doc-strings.
12475 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
12477         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
12478         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
12479         (menu-bar-options-menu, menu-bar-showhide-menu)
12480         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
12481         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
12482         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
12483         (menu-bar-options-menu, menu-bar-tools-menu)
12484         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
12485         (menu-bar-help-menu):
12486         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
12487         string arguments.
12489         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
12490         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
12491         calls for the menu names and :help.
12493 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12495         * mouse.el (minor-mode-menu-from-indicator): Pay attention
12496         to :minor-mode-function (bug#4455).
12498 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12500         * startup.el (command-line): Initialize the window-system after
12501         processing the command-line.
12503         * textmodes/page.el (what-page): Make sure we don't inf-loop if
12504         page-delimiter matches the empty string.
12506 2009-09-16  Glenn Morris  <rgm@gnu.org>
12508         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
12509         byte-compile-not-obsolete-var.  It's a list now.
12510         (byte-compile-not-obsolete-funcs): New variable.
12511         (byte-compile-warn-obsolete): Don't warn about functions if they are in
12512         byte-compile-not-obsolete-funcs.
12513         (byte-compile-variable-ref, byte-compile-defvar): Update for
12514         byte-compile-not-obsolete-vars name-change and list nature.
12515         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
12516         and variables behind (f)boundp tests.
12517         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
12519 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
12521         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
12523 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12525         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
12526         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
12527         Don't autoload.
12529 2009-09-15  Stephen Eglen  <stephen@gnu.org>
12531         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
12532         the virtual-buffers, use the name of the buffer specified by
12533         find-file-noselect, as the match may be a symlink.  (This was a
12534         problem if the target and the symlink had different names.)
12536 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12538         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
12540         * desktop.el (desktop-path): Check user-emacs-directory.
12542         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
12544         * loadup.el: Use after-load-functions to GC after loading each file.
12545         Remove the explicit GC calls that used to be sprinkled around.
12547         * subr.el (after-load-functions): New hook.
12548         (do-after-load-evaluation): Run it.  Use string-match-p to detect
12549         `obsolete' packages, rather than painfully extracting the relevant
12550         directory name.
12552 2009-09-15  Glenn Morris  <rgm@gnu.org>
12554         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
12555         free variable `doc'.
12557         * dired.el (dired-mode-map): Add menu entry for async shell command.
12559         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
12560         variables, also consider the .elc files, since the .el files are
12561         normally gzipped (subsequent code locates the .el.gz from the .elc).
12563         * calc/calc-prog.el (arglist): Define for compiler.
12565         * calendar/diary-lib.el (diary-display-function): Change the default to
12566         fancy display.
12567         (body): Define for compiler.
12569         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
12570         (byte-compile-file-form, byte-compile-lambda)
12571         (byte-compile-top-level-body, byte-compile-form)
12572         (byte-compile-variable-ref, byte-compile-setq)
12573         (byte-compile-setq-default, byte-compile-body)
12574         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
12575         (batch-byte-compile): Give some more local variables with common names
12576         a "bytecomp-" prefix to avoid masking warnings about free variables.
12578         * startup.el (command-line-1): Give local variables with common names a
12579         distinguishing prefix, so as not to hide free variable warnings during
12580         bootstrap.
12582         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
12583         clever and add a suffix to make a unique name, just let the user decide
12584         whether or not to overwrite it.  If the input is a directory, write the
12585         default filename to that directory.  (Bug#4388)
12586         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
12587         is a filename-as-a-directory.
12589 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12591         * textmodes/page.el (what-page): Don't move to beginning of line.
12592         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
12594 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
12596         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
12598 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
12600         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
12601         * help.el (help-for-help-internal): Add purecopy calls for text.
12603         * vc.el (top): print-log method now takes an optional SHORTLOG
12604         argument.  Add a new method: root.
12605         (vc-root-diff, vc-print-root-log): New functions.
12606         (vc-log-short-style): New variable.
12607         (vc-print-log-internal): Add support for showing short logs.
12609         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
12610         vc-print-root-log and vc-print-root-diff.
12612         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
12613         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
12614         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
12615         short logs.
12617         * vc-cvs.el (vc-cvs-print-log):
12618         * vc-mtn.el (vc-mtn-print-log):
12619         * vc-rcs.el (vc-rcs-print-log):
12620         * vc-sccs.el (vc-sccs-print-log):
12621         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
12622         that is ignored for now.
12624         * vc-mtn.el (vc-mtn-annotate-command):
12625         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
12627 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12629         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
12630         to function-key-map, and give them ascii-character property.
12631         * term/x-win.el (x-alternatives-map):
12632         * term/ns-win.el (ns-alternatives-map):
12633         * term/internal.el (msdos-key-remapping-map):
12634         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
12636 2009-09-14  Glenn Morris  <rgm@gnu.org>
12638         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
12639         temp-buffers (2009-09-12).
12641 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12643         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
12644         the new read-key function.
12646 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
12648         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
12649         is defined (Bug#4405).
12651 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
12653         * recentf.el (recentf-cleanup): Use a hash table to find
12654         duplicates (Bug#4407).
12656 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
12658         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
12659         kp-0 to ascii equivalents (Bug#4325).
12661 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
12663         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
12665         * eshell/em-hist.el:
12666         * eshell/em-dirs.el (eshell-complete-user-reference):
12667         Declare pcomplete functions and variables to avoid compiler warnings.
12669 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
12671         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
12672         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
12673         * eshell/em-alias.el (eshell-aliases-file):
12674         * eshell/em-hist.el (eshell-history-file-name):
12675         Use expand-file-name instead of concat to make file names (Bug#4308).
12677 2009-09-13  Glenn Morris  <rgm@gnu.org>
12679         * ediff-merg.el (ediff-do-merge):
12680         * filesets.el (filesets-run-cmd):
12681         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
12682         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
12683         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
12684         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
12685         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
12686         Replace empty `let's with `progn'.
12688 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12690         * mail/sendmail.el (send-mail-function):
12691         * tooltip.el (tooltip-mode):
12692         * simple.el (transient-mark-mode):
12693         * rfn-eshadow.el (file-name-shadow-mode):
12694         * frame.el (blink-cursor-mode):
12695         * font-core.el (global-font-lock-mode):
12696         * files.el (temporary-file-directory)
12697         (small-temporary-file-directory, auto-save-file-name-transforms):
12698         * epa-hook.el (auto-encryption-mode):
12699         * composite.el (global-auto-composition-mode):
12700         Use custom-initialize-delay.
12701         * startup.el (command-line): Don't explicitly call
12702         custom-reevaluate-setting for all the above vars.
12703         * custom.el (custom-initialize-safe-set)
12704         (custom-initialize-safe-default): Delete.
12706 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12708         * term/x-win.el (x-initialize-window-system):
12709         * term/w32-win.el (w32-initialize-window-system):
12710         * term/ns-win.el (ns-initialize-window-system): Don't call
12711         mouse-wheel-mode since it's enabled globally by default already.
12713         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
12714         actually define the variable, but only silences the byte-compiler.
12715         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
12716         before looking it up.
12717         (mouse-wheel-scroll-amount): Also reset the bindings if this value
12718         is changed.
12720 2009-09-12  Glenn Morris  <rgm@gnu.org>
12722         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
12723         1000.
12724         (elint-add-required-env): Don't beep on error.
12725         (elint-forms): In case of error, return ENV unchanged.
12726         (elint-init-env): Skip non-list forms.
12727         (elint-log): Handle unknown file positions.
12729 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
12731         * epg.el (epg-make-context): Add autoload cookie.
12732         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
12733         (epg-decrypt-string, epg-start-verify, epg-verify-file)
12734         (epg-verify-string, epg-start-sign, epg-sign-file)
12735         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
12736         (epg-encrypt-string, epg-start-export-keys)
12737         (epg-export-keys-to-file, epg-export-keys-to-string)
12738         (epg-start-import-keys, epg-import-keys-from-file)
12739         (epg-import-keys-from-string, epg-start-receive-keys)
12740         (epg-receive-keys, epg-import-keys-from-server)
12741         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
12742         (epg-sign-keys, epg-start-generate-key)
12743         (epg-generate-key-from-file, epg-generate-key-from-string):
12744         Remove autoload cookie.
12746 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
12748         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
12749         reevaluation of trash-directory.
12751         * mwheel.el: Fix last change.
12752         (mouse-wheel-mode): New defvar.
12753         (mouse-wheel-mode): Remove autoload cookie.
12755 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12757         * mwheel.el (mwheel-installed-bindings): New var.
12758         (mouse-wheel-mode): Use it, so as to make sure we really remove all
12759         the bindings we set last time.  Use custom-initialize-delay.
12760         * loadup.el: Load mwheel after term/*-win.el.
12761         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
12762         and mouse-wheel-up-event now that their first evaluation is done
12763         sufficiently late to be correct.
12765         * startup.el (tutorial-directory): Make it a defcustom.
12766         Use custom-initialize-delay rather than eval-at-startup to set it.
12767         * image.el (image-load-path): Make it a defcustom.
12768         Use custom-initialize-delay rather than eval-at-startup to set it.
12769         * subr.el (eval-at-startup): Remove.
12770         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
12772         * subr.el (do-after-load-evaluation): Warn the user after loading an
12773         obsolete package.
12775 2009-09-12  Glenn Morris  <rgm@gnu.org>
12777         * proced.el (proced-mark-alt): Remove alias.
12778         (proced-mode-map): Remove proced-mark-alt.
12780         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
12781         Elint file and directory.  Remove initialization entry.
12783         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
12784         commands.
12785         (elint-current-buffer): Set mode-line-process.
12786         (elint-init-env): Handle define-derived-mode.
12787         Fix declare-function with unspecified arglist.  Guard against odd
12788         defalias statements (eg iso-insert's 8859-1-map).
12789         (elint-add-required-env): Use a temp buffer.
12790         (elint-form): Just print the function/macro name, not the whole form.
12791         Return env unchanged if we fail to parse a macro.
12792         (elint-forms): Guard against parse errors.
12793         (elint-output): New function, to handle batch mode.
12794         (elint-log-message): Add optional argument.  Use elint-output.
12795         (elint-set-mode-line): New function.
12797 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
12799         * emacs-lisp/elp.el (elp-not-profilable): Add more
12800         functions (Bug#4233).
12802 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
12804         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
12805         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
12807 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
12809         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
12810         (gdb-var-list-children): Use json parsing.
12812 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
12814         * progmodes/js.el (js--proper-indentation): Handle the case where
12815         char-before is null.  Reported by Deniz Dogan.
12817 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
12819         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
12821 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
12823         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
12824         (epg-digest-algorithm-alist): Add SHA224.
12825         (epg-context-set-passphrase-callback)
12826         (epg-context-set-progress-callback): Add description about
12827         callback function.
12829 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12831         * custom.el (custom-delayed-init-variables): New var.
12832         (custom-initialize-delay): New function.
12833         * startup.el (command-line): "Re"evaluate all vars in
12834         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
12835         explicitly any more.
12836         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
12837         to avoid creating a ~/.emacs.d at build-time (bug#4347).
12839         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
12841 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
12843         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
12844         (gdb-var-update-handler): Use json parsing.
12846 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
12848         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
12849         decode annotated text, regardless of language environment.  (Bug#2741)
12851 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12853         * Makefile.in (autoloads): Make rmail.el writable as well.
12855 2009-09-11  Glenn Morris  <rgm@gnu.org>
12857         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
12858         loaddefs.el.
12859         * dired.el: Regenerate with extracted autoloads.
12860         * Makefile.in (autoloads): Make dired.el writable.
12862         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
12863         * ibuffer.el: Regenerate with extracted autoloads.
12864         * Makefile.in (autoloads): Make ibuffer.el writable.
12866         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
12867         * version.el (emacs-copyright, emacs-major-version)
12868         (emacs-minor-version): Reformat doc-strings for make-docfile.
12870         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
12871         functions and variables, since they must be stuff specific to some other
12872         platform.
12873         (apropos-print): Make mouse-click message less specific about button.
12875         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
12876         that records where a macro was defined.
12877         * help-fns.el (describe-function-1): Mention if a function has a
12878         compiler-macro.
12879         * help-mode.el (help-function-cmacro): New button.
12881         * locate.el (top-level): Always require dired.
12882         (locate-mode-map): Initialize inside the defvar.
12884         * net/ange-ftp.el (dired-compress-file): Declare.
12885         (ange-ftp-dired-compress-file): Add doc string.
12887         * term/ns-win.el (x-display-name, x-setup-function-keys):
12888         Unify doc-strings with X versions.
12890 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12892         * emulation/crisp.el (crisp-mode-map): Move initialization
12893         into declaration.
12894         (crisp-mode): Use define-minor-mode.
12896         * progmodes/xscheme.el (xscheme-evaluation-commands):
12897         Put a :advertised-binding property rather than using
12898         advertised-xscheme-send-previous-expression.
12899         (advertised-xscheme-send-previous-expression): Declare obsolete.
12900         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
12901         `advertised-undo'.
12902         (crisp-mode): Add corresponding bindings to
12903         undo's :advertised-binding instead.
12904         * dired.el (dired-mode-map): Put a :advertised-binding property rather
12905         than using dired-advertised-find-file.
12906         (dired-advertised-find-file):
12907         * simple.el (advertised-undo):
12908         * wid-edit.el (advertised-widget-backward): Declare obsolete.
12909         (widget-keymap): Put a :advertised-binding property rather
12910         than using advertised-widget-backward.
12911         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
12912         than using advertised-undo.
12913         * tutorial.el (tutorial--default-keys): Adjust accordingly.
12915 2009-09-10  Simon South  <ssouth@slowcomputing.org>
12917         * progmodes/delphi.el (delphi-tab): Indent region when Transient
12918         Mark mode is enabled and region is active; otherwise indent or
12919         insert TAB as usual.
12920         (delphi-mode): Update description of TAB-key binding.
12922 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12924         * subr.el (define-key-rebound-commands): Mark obsolete.
12925         * startup.el (precompute-menubar-bindings): Remove.
12926         (normal-top-level): Remove obsolete code that tried to precompute
12927         menubar bindings.
12928         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
12929         define-key-rebound-commands and precompute-menubar-bindings.
12931 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
12933         * net/imap.el (imap-interactive-login): Better messages.
12934         (imap-open): Fix bug with renamed buffer on reconnect.
12935         (imap-authenticate): Add buffer-local imap-last-authenticator variable
12936         for easier debugging and cleaner code.  On successful (guessed based on
12937         server capabilities) secondary authentication, set imap-state
12938         correctly.
12939         (imap-last-authenticator): Define imap-last-authenticator as a variable
12940         to avoid warnings.
12942 2009-09-10  Glenn Morris  <rgm@gnu.org>
12944         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
12946         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
12947         (byte-compile-file-form-autoload): Don't warn about unknown functions
12948         where the autoload statement comes after the use.
12949         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
12950         that any handlers inside the body (eg require) are in turn respected.
12952         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
12953         effects.
12955         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
12956         and syntax and abbrev tables basic docs, if they don't have any.
12958         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
12960         * international/mule-cmds.el (top-level): Require cl when compiling.
12961         (view-hello-file): Use default-value rather than
12962         default-enable-multibyte-characters.
12964         * progmodes/fortran.el: Move all safe and risky properties into the
12965         defcustoms.
12967         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
12968         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
12969         * mail/undigest.el:
12970         Put autoloads in rmail.el rather than loaddefs.el.
12971         * mail/rmail.el: Regenerate with extracted autoloads.
12973         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
12974         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
12976 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
12978         Reported in thread for Bug#4375.
12979         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
12980         "-data-evaluate-expression" instead of print.
12981         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
12982         (gdb-tooltip-print): Parse output from above MI command.
12983         (gdb): Revert 2009-08-11 change.  User should detach inferior
12984         manually.
12986         Remove the word "separate" from IO functions as inferior
12987         output is now never displayed in the GUD buffer.
12989 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
12991         * startup.el (command-line-normalize-file-name): On Windows and
12992         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
12994 2009-09-10  Juri Linkov  <juri@jurta.org>
12996         * isearch.el (isearch-text-char-description): Propertize escape
12997         character sequences with the `escape-glyph' face.  (Bug#4344)
12999         * simple.el (shell-command): Set asynchronous process filter to
13000         `comint-output-filter'.  (Bug#4343)
13002         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
13003         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
13004         the list.  Move "asm" to the bottom.
13005         (grep-find-ignored-directories): Add `choice' with nil value
13006         to empty the list easily.
13007         (grep-find-ignored-files): New option.
13008         (grep-files-history): Set to nil by default instead of '("ch" "el").
13009         (grep-compute-defaults): Add "<X>" to `grep-template'.
13010         (grep-read-files): Bind new local variables `default-alias' and
13011         `default-extension'.  Use a list of default values for the file prompt.
13012         (lgrep): Add `--exclude=' command line options composed from
13013         `grep-find-ignored-files'.
13014         (rgrep): Add `-name' command line options composed from
13015         `grep-find-ignored-files'.  (Bug#4301)
13017 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13019         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
13020         (bug#4368).
13022 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13024         * calendar/time-date.el (autoload):
13025         Expand define-obsolete-function-alias into defalias and make-obsolete
13026         for old Emacsen that Gnus supports.
13027         (with-no-warnings): Define it for old Emacsen.
13028         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
13029         is available.
13030         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
13031         float-time is available; suppress compile warning for time-to-seconds.
13033 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
13035         * net/imap.el (imap-message-map): Docstring fix.
13037 2009-09-09  Glenn Morris  <rgm@gnu.org>
13039         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
13040         line numbers too.  (Bug#4374)
13042 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13044         * smerge-mode.el (smerge-remove-props, smerge-refine):
13045         Use with-silent-modifications (bug#4342).
13047         * subr.el (with-silent-modifications): New macro.
13049 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
13051         * files.el (top-level): Require `cl' when compiling.
13053 2009-09-07  Glenn Morris  <rgm@gnu.org>
13055         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
13057         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
13058         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
13060 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
13062         * vc-git.el (vc-git-annotate-command): Use separator to parse
13063         arguments correctly.
13065 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
13067         * proced.el (proced-mode): Doc fix.
13069 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
13071         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
13072         lstat fails.
13073         (tramp-do-file-attributes-with-ls): Check for file existence at
13074         remote end.
13075         (tramp-do-file-attributes-with-stat): Likewise.
13076         (tramp-convert-file-attributes): Return nil when attr is nil.
13078 2009-09-05  Glenn Morris  <rgm@gnu.org>
13080         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
13081         properties to this button.
13082         (diary-fancy-display): Don't extend the button to the final newline.
13083         (diary-fancy-display-mode): Continue to define "q" as a local key.
13085         * calendar/cal-china.el (holiday-chinese): Make it slightly more
13086         efficient.
13088         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
13090         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
13091         (byte-compile-dest-file-function): New option.
13092         (byte-compile-dest-file): Doc fix.
13093         Obey byte-compile-dest-file-function.
13094         (byte-compile-cl-file-p): New function.
13095         (byte-compile-eval): Only suppress noruntime warnings about cl functions
13096         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
13097         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
13098         than for file being previously loaded.
13099         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
13100         (byte-compile-file-form-require): Handle the case where requiring a file
13101         indirectly causes CL to be loaded.
13103 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
13105         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
13106         before killing the old buffer, since by the time `kill-buffer' is
13107         run so many buffer variables have been set to nil that it may not
13108         behave as expected.  (Bug#4061)
13110 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
13112         * files.el (find-alternate-file): If the old buffer is modified
13113         and visiting a file, behave similarly to `kill-buffer' when
13114         killing it, thus reverting to the pre-1.878 behavior; see
13115         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
13116         for discussion.  Also, consult `buffer-file-name' as a variable
13117         not as a function, for consistency with the rest of the code.
13119 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
13121         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
13122         also when adding a new directory.
13124         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
13125         defun.
13127 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
13129         * files.el (locate-file-completion-table): Make it provide boundary
13130         information, so partial-completion works better.
13132 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
13134         * mail/footnote.el (Footnote-text-under-cursor):
13135         Check footnote-text-marker-alist before using it (bug#4324).
13137 2009-09-04  Glenn Morris  <rgm@gnu.org>
13139         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
13140         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
13141         * play/solitaire.el, play/tetris.el:
13142         Remove leading * from defcustom and defface docs.
13144         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
13145         necessary.
13146         (diary-fancy-overriding-map): New variable.
13147         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
13148         Use view-mode.
13150         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
13151         goto-line.
13153 2009-09-03  Glenn Morris  <rgm@gnu.org>
13155         * arc-mode.el (archive-mode):
13156         * dos-fns.el (set-default-process-coding-system):
13157         * man.el (Man-getpage-in-background):
13158         * menu-bar.el (menu-bar-describe-menu):
13159         * server.el (server-process-filter):
13160         * startup.el (command-line):
13161         * tar-mode.el (tar-header-block-tokenize, tar-extract):
13162         * w32-fns.el (set-default-process-coding-system):
13163         * x-dnd.el (x-dnd-handle-file-name):
13164         * international/mule-cmds.el (mule-menu-keymap)
13165         (set-default-coding-systems, language-info-alist, set-language-info)
13166         (set-language-environment, standard-display-european-internal)
13167         (set-locale-environment):
13168         * international/mule-diag.el (mule-diag):
13169         * mail/emacsbug.el (report-emacs-bug):
13170         * mail/rmail.el (rmail-mode):
13171         * mail/sendmail.el (mail-setup):
13172         Use default-value rather than default-enable-multibyte-characters.
13174         * progmodes/f90.el: Move all safe properties into the defcustoms.
13175         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
13177         * calendar/appt.el (appt-check):
13178         * calendar/diary-lib.el (diary-set-header, diary-live-p)
13179         (diary-check-diary-file, diary-list-entries)
13180         (diary-include-other-diary-files, diary-simple-display)
13181         (diary-fancy-display, diary-print-entries)
13182         (diary-mark-included-diary-files, diary-make-entry):
13183         Don't call substitute-in-file-name on diary-file.
13185 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
13186             Stefan Monnier  <monnier@iro.umontreal.ca>
13188         * mail/footnote.el (footnote-prefix): Make it a defcustom.
13189         (footnote-mode-map): Move initialization into the declaration.
13190         (footnote-minor-mode-map): Define it rather than changing global-map.
13191         (footnote-mode): Use define-minor-mode.
13193 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
13195         * net/tramp.el (tramp-handle-file-attributes-with-ls)
13196         (tramp-do-file-attributes-with-perl)
13197         (tramp-do-file-attributes-with-stat): Rename from
13198         `tramp-handle-file-attributes-with-*'.
13199         (tramp-handle-file-attributes): Use them.
13200         (tramp-do-directory-files-and-attributes-with-perl)
13201         (tramp-do-directory-files-and-attributes-with-stat): Rename from
13202         `tramp-handle-directory-files-and-attributes-with-*'.
13203         (tramp-handle-directory-files-and-attributes): Use them.
13204         (tramp-method-out-of-band-p): Additional parameter SIZE.
13205         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
13206         (tramp-handle-write-region): Use it.
13207         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
13208         (tramp-handle-vc-registered): Check, whether the first run did
13209         return files to be tested.
13210         (tramp-advice-make-auto-save-file-name): Do not call directly
13211         `tramp-handle-make-auto-save-file-name', because this would bypass
13212         the locking mechanism.
13214         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
13215         (file-remote-p, process-file, start-file-process, set-file-times)
13216         (tramp-compat-file-attributes): Compatibility functions shall not
13217         call directly `tramp-handle-*', because this would bypass the
13218         locking mechanism.
13219         (tramp-compat-number-sequence): New defun.
13221 2009-09-02  Glenn Morris  <rgm@gnu.org>
13223         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
13224         alias for float-time.
13225         (time-to-number-of-days): In Emacs, use float-time.
13226         * net/newst-backend.el (time-add): Suppress warnings from compat
13227         function.
13228         * time.el (emacs-uptime, emacs-init-time):
13229         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
13230         Use float-time rather than time-to-seconds.
13232         * minibuffer.el (completion-initials-expand): Fix typo.
13234         * faces.el (modeline, modeline-inactive, modeline-highlight)
13235         (modeline-buffer-id):
13236         * info.el (info-menu-5): Mark these face aliases as obsolete.
13238 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
13240         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
13241         space ...
13242         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
13243         no "--thread" option.
13244         (gdb-stopped): Don't print "Switched to thread" message when it is
13245         unchanged.
13247 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
13249         * minibuffer.el (completion-try-completion)
13250         (completion-all-completions): Remove ill-defined (and
13251         mistakenly installed and luckily never used nor documented)
13252         `completion-styles' property.
13253         (completion-initials-expand, completion-initials-all-completions)
13254         (completion-initials-try-completion): New functions.
13255         (completion-styles-alist): Add doc to each entry.
13256         Add new `initials' entry.
13258 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
13260         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
13261         MI command -var-evaluate-expression.
13262         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
13263         and tweak for case of string child.
13264         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
13266 2009-09-01  Glenn Morris  <rgm@gnu.org>
13268         * add-log.el (change-log-date-face, change-log-name-face)
13269         (change-log-email-face, change-log-file-face, change-log-list-face)
13270         (change-log-conditionals-face, change-log-function-face)
13271         (change-log-acknowledgement-face):
13272         * cus-edit.el (custom-invalid-face, custom-rogue-face)
13273         (custom-modified-face, custom-set-face, custom-changed-face)
13274         (custom-saved-face, custom-button-face, custom-button-pressed-face)
13275         (custom-documentation-face, custom-state-face, custom-comment-face)
13276         (custom-comment-tag-face, custom-variable-tag-face)
13277         (custom-variable-button-face, custom-face-tag-face)
13278         (custom-group-tag-face-1, custom-group-tag-face):
13279         * diff-mode.el (diff-header-face, diff-file-header-face)
13280         (diff-index-face, diff-hunk-header-face, diff-removed-face)
13281         (diff-added-face, diff-changed-face, diff-function-face)
13282         (diff-context-face, diff-nonexistent-face):
13283         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
13284         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
13285         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
13286         (Info-title-4-face):
13287         * isearch.el (isearch-lazy-highlight-face):
13288         * log-view.el (log-view-file-face, log-view-message-face):
13289         * paren.el (show-paren-match-face, show-paren-mismatch-face):
13290         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
13291         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
13292         (cvs-msg-face):
13293         * smerge-mode.el (smerge-mine-face, smerge-other-face)
13294         (smerge-base-face, smerge-markers-face):
13295         * wid-edit.el (widget-documentation-face, widget-button-face)
13296         (widget-field-face, widget-single-line-field-face)
13297         (widget-inactive-face, widget-button-pressed-face):
13298         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
13299         (woman-addition-face):
13300         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
13301         (eshell-ls-executable-face, eshell-ls-readonly-face)
13302         (eshell-ls-unreadable-face, eshell-ls-special-face)
13303         (eshell-ls-missing-face, eshell-ls-archive-face)
13304         (eshell-ls-backup-face, eshell-ls-product-face)
13305         (eshell-ls-clutter-face):
13306         * eshell/em-prompt.el (eshell-prompt-face):
13307         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
13308         * obsolete/old-whitespace.el (whitespace-highlight-face):
13309         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
13310         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
13311         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
13312         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
13313         (antlr-font-lock-literal-face):
13314         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
13315         (ebrowse-root-class-face, ebrowse-file-name-face)
13316         (ebrowse-default-face, ebrowse-member-attribute-face)
13317         (ebrowse-member-class-face, ebrowse-progress-face):
13318         * progmodes/make-mode.el (makefile-space-face):
13319         * progmodes/sh-script.el (sh-heredoc-face):
13320         * textmodes/flyspell.el (flyspell-incorrect-face)
13321         (flyspell-duplicate-face):
13322         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
13323         * textmodes/texinfo.el (texinfo-heading-face):
13324         Mark face aliases with "-face" suffix as obsolete.
13326         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
13327         compiler.
13329         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
13330         (eudc-bob-sound-menu): Use defvar rather than defconst, since
13331         easy-menu-define wants to modify these.
13333         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
13335         * net/browse-url.el (browse-url-file-url):
13336         * term/internal.el (dos-codepage-setup):
13337         Use default-value rather than default-enable-multibyte-characters.
13339         * progmodes/etags.el (etags-goto-tag-location):
13340         * progmodes/flymake.el (flymake-highlight-line)
13341         (flymake-goto-file-and-line, flymake-goto-line):
13342         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
13343         (gdb-goto-breakpoint):
13344         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
13345         * progmodes/python.el (python-find-function)
13346         (python-pdbtrack-track-stack-file):
13347         * progmodes/verilog-mode.el (verilog-surelint-off):
13348         * term/ns-win.el (ns-open-file-select-line):
13349         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
13350         Use forward-line rather than goto-line.
13352         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
13353         * textmodes/reftex-index.el (reftex-display-index):
13354         * textmodes/reftex-ref.el (reftex-offer-label-menu):
13355         * textmodes/reftex-toc.el (reftex-toc):
13356         Remove unnecessary bindings of default-major-mode (all are followed by
13357         major-mode check and possible mode switch).
13359 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
13361         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
13362         Handle watchpoints (bug#4282).
13363         (def-gdb-thread-buffer-command): Enable thread to be selected by
13364         clicking without selecting threads buffer first.
13365         (gdb-current-context-command): Use selected frame so that "up",
13366         "down" etc work in the GUD buffer.
13367         (gdb-update): Find selected frame before rendering stack buffer.
13368         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
13370 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
13372         * progmodes/sym-comp.el (displayed-completions): Remove.
13373         (symbol-complete): Use minibuffer-complete.
13375 2009-08-31  Glenn Morris  <rgm@gnu.org>
13377         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
13379         * apropos.el (apropos-symbols-internal):
13380         Handle (obsolete) face aliases.
13382         * faces.el (describe-face): Adjust the output format to be more like
13383         describe-variable, and to mention (obsolete) face aliases.
13384         Adjust the whitespace so that help-setup-xref works.
13386         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
13387         * calendar/diary-lib.el (diary-button-face):
13388         Mark these face aliases as obsolete.
13390         * calendar/calendar.el (calendar-today): Doc fix.
13392 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
13394         * progmodes/gdb-mi.el (gdb-control-all-threads)
13395         (gdb-control-current-thread): Force tool bar update.
13396         (gdb-non-stop-handler): New function.
13397         (gdb-init-1): Use it to test if non-stop mode is supported.
13398         Remove unused gdbmi buffer type.
13400 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
13402         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
13403         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
13405 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
13407         * comint.el (comint-exec-1): Check command is non-null first.
13408         Part of gdb-mi.el change (2009-08-28).
13410 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13412         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
13414 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
13416         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
13417         instead of `dolist' to avoid a recursive require when bootstrapping.
13419 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13421         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
13423         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
13425         * net/imap.el (imap-send-command): Simplify.
13426         (imap-wait-for-tag): point-max -> buffer-size.
13428         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
13430         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
13431         with constant argument.
13433         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
13435         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
13437         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
13438         Change default, since most of our files don't have a history.
13439         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
13440         the user.
13442         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13443         Add comint-run.
13445         * calc/calc.el: Improve commenting convention.
13446         (calc-digit-map, toplevel): Simplify.
13448         * comint.el (comint-insert-input): Be careful to only set point if we
13449         don't delegate to some other command.
13451         * proced.el (proced-signal-list): Make it an alist.
13452         (proced-grammar-alist): Capitalize names.
13453         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
13454         Disable undo manually and make it read-only.
13455         Use completion-annotate-function.
13457         * minibuffer.el (minibuffer-message): If the current buffer is not
13458         a minibuffer, insert the message in the echo area rather than at the
13459         end of the buffer.
13460         (completion-annotate-function): New variable.
13461         (minibuffer-completion-help): Use it.
13462         (completion--embedded-envvar-table): Environment vars are
13463         always case-sensitive.
13465 2009-08-30  Glenn Morris  <rgm@gnu.org>
13467         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
13468         from fortran-current-defun.
13469         (fortran-beginning-of-subprogram): Be more precise about finding the
13470         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
13471         (fortran-end-of-subprogram): Simplify.
13472         (fortran-current-defun): Use fortran-start-prog-re.
13474 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
13476         * subr.el (do-after-load-evaluation): Simplify.
13478 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
13480         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
13482         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
13483         (vc-rcs-print-log): Use it.
13485         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
13487 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13489         * paths.el (abbrev-file-name): Move to abbrev.el.
13490         * abbrev.el (abbrev-file-name): Move from paths.el.
13491         Obey user-emacs-directory.
13492         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
13493         user-emacs-directory.
13494         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
13495         abbrev-file-name and calc-settings-file any more.
13496         * startup.el (command-line): Recompute abbrev-file-name and
13497         abbreviated-home-dir.
13498         (normal-no-mouse-startup-screen): Improve the generic code and get rid
13499         of the special code for when C-h bindings haven't been changed.
13500         (display-startup-echo-area-message): Use with-current-buffer.
13501         (command-line-1): Use a list of strings, rather than a list of lists
13502         of strings for longopts.
13504         * files.el (get-free-disk-space): Use / for default-directory.
13506         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
13507         Use with-current-buffer.
13509         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
13510         Recognize immutable variables like most-positive-fixnum.
13511         (byte-compile-setq-default): Check and warn if trying to assign
13512         to an immutable variable, or a non-variable.
13514         * progmodes/cc-vars.el (c-comment-continuation-stars):
13515         * progmodes/cc-engine.el (c-looking-at-bos):
13516         * progmodes/cc-cmds.el (c-toggle-auto-state)
13517         (c-forward-into-nomenclature, c-backward-into-nomenclature)
13518         (c-comment-line-break-function): Add version of obsolescence.
13520 2009-08-28  Juri Linkov  <juri@jurta.org>
13522         * files.el (magic-fallback-mode-alist): Add ZIP magic number
13523         associated with `archive-mode'.
13525         * image.el (image-type-header-regexps): Use only JPEG magic number
13526         to determine JPEG images, and don't use `image-jpeg-p' because
13527         Emacs can display non-JFIF non-Exif JPEG images.
13529 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
13531         * arc-mode.el (archive-mode):
13532         * emacs-lisp/re-builder.el (re-builder-unload-function):
13533         Protect against the default value of `major-mode' being nil.
13535 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
13537         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
13538         Fix typos in docstrings.
13540         * progmodes/js.el (js--macro-decl-re): Doc fix.
13541         (js--plain-method-re, js--split-name): Refloc docstring.
13542         (js--class-styles, js--make-merged-item, js--splice-into-items):
13543         Fix typos in docstrings; reflow docstrings.
13544         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
13545         (js--variable-decl-matcher, js--inside-pitem-p)
13546         (js--parse-state-at-point, js--get-all-known-symbols)
13547         (js--symbol-history, js-find-symbol, js--js-references)
13548         (js--moz-interactor, js--js-encode-value, js--read-tab):
13549         Fix typos in docstrings.
13551 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13553         * textmodes/reftex.el (reftex-get-file-buffer-force):
13554         * progmodes/verilog-mode.el (verilog-batch-execute-func):
13555         * emulation/viper.el (viper-go-away, viper-set-hooks):
13556         * emacs-lisp/re-builder.el (re-builder-unload-function):
13557         * emacs-lisp/bytecomp.el (byte-compile-file):
13558         * ses.el (ses-unload-function):
13559         * hexl.el (hexl-find-file):
13560         * files.el (normal-mode):
13561         * ehelp.el (with-electric-help):
13562         * autoinsert.el (auto-insert-alist):
13563         * arc-mode.el (archive-mode):
13564         Use (default-value 'major-mode) instead of default-major-mode.
13566         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
13567         * international/mule.el (load-with-code-conversion):
13568         * emacs-lisp/debug.el (debug):
13569         * ediff-vers.el (ediff-rcs-get-output-buffer):
13570         * dired.el (dired-internal-noselect): Don't let-bind
13571         default-major-mode around code that doesn't use it.
13572         E.g. buffer creation via get-buffer-create doesn't use it.
13574 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
13576         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
13577         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
13578         when writing the temp file.  Otherwise, epa-file gets confused.
13579         (tramp-register-file-name-handlers): Make it a defun.  Move also
13580         `epa-file-handler' to the front of `file-name-handler-alist'.
13582 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13584         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
13585         start right after a ^M.
13586         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
13587         (tramp-completion-file-name-regexp-separate)
13588         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
13589         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
13590         Don't modify last-coding-system-used by accident.
13591         (tramp-completion-file-name-handler): Apply the checks here,
13592         instead during registration.
13593         (tramp-register-file-name-handlers): Renamed from
13594         `tramp-register-file-name-handler'.  Register both
13595         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
13596         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
13598 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
13600         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
13601         Remove variable ...
13602         (gdb-init-1, gdb-display-separate-io-buffer)
13603         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
13604         references to it.
13605         (gdb-inferior-io-mode): Use make-comint-in-buffer.
13606         (gdb-inferior-filter): Use comint-output-filter to stop
13607         echoing and remove ^M characters.
13609 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13611         * emulation/viper-init.el (viper-restore-cursor-type):
13612         * emulation/cua-base.el (cua--update-indications):
13613         Replace default-cursor-type with (default-value 'cursor-type).
13615         * mail/sendmail.el (mail-recover-1):
13616         * international/mule-diag.el (describe-current-coding-system-briefly)
13617         (describe-current-coding-system):
13618         * international/mule-cmds.el (select-safe-coding-system)
13619         (select-message-coding-system)
13620         (set-language-environment-coding-systems, set-locale-environment):
13621         * hexl.el (hexl-insert-multibyte-char):
13622         * dos-w32.el (find-buffer-file-type-coding-system):
13623         * simple.el (what-cursor-position):
13624         Replace uses of default-buffer-file-coding-system
13625         with (default-value 'buffer-file-coding-system).
13627         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
13628         Replace uses of default-cursor-in-non-selected-windows
13629         with (default-value 'cursor-in-non-selected-windows).
13630         Use with-current-buffer.
13632         * mail/feedmail.el: Use CL macros.
13633         (feedmail-run-the-queue, feedmail-send-it-immediately):
13634         * dos-w32.el (find-buffer-file-type): Replace uses of
13635         default-buffer-file-type with (default-value 'buffer-file-type).
13637 2009-08-28  Glenn Morris  <rgm@gnu.org>
13639         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
13640         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
13641         Use default-value of major-mode rather than default-major-mode.
13643 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13645         * Makefile.in (update-elcfiles): Report left over elc files.
13647         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
13648         expand-file-name and with-current-buffer.
13649         (mail-get-names, mail-directory): Use with-current-buffer.
13651         * vc.el (vc-read-revision): New function.
13652         (vc-version-diff, vc-merge): Use it.
13654 2009-08-27  Sam Steingold  <sds@gnu.org>
13656         * simple.el (kill-do-not-save-duplicates): New user option.
13657         (kill-new): When it is non-nil, and the new string is the same as
13658         the latest kill, set replace to t to avoid duplicates in kill-ring.
13660 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
13662         * net/tramp.el (tramp-handle-process-file): Do not flush all
13663         caches when `process-file-side-effects' is set.
13664         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
13665         instead of `tramp-find-file-exists-command'.
13666         Unset `process-file-side-effects'.
13668 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
13670         * net/tramp.el (tramp-methods): New method "rsyncc".
13671         (top): Add completion function for "rsyncc".
13672         (tramp-message-show-message): New defvar.
13673         (tramp-message, tramp-error): Use it.
13674         (tramp-do-copy-or-rename-file-directly): Extend check for direct
13675         remote copying.
13676         (tramp-do-copy-or-rename-file-out-of-band): Handle new
13677         `tramp-methods' entry `copy-env' of "rsyncc".
13678         (tramp-vc-registered-read-file-names): New defconst.
13679         (tramp-vc-registered-file-names): New defvar.
13680         (tramp-handle-vc-registered): Implement optimization strategy.
13681         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
13682         (tramp-vc-file-name-handler): New defun.
13683         (tramp-get-ls-command, tramp-get-test-command)
13684         (tramp-get-file-exists-command, tramp-get-remote-ln)
13685         (tramp-get-remote-perl, tramp-get-remote-stat)
13686         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
13688         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
13689         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
13690         timestamps.
13691         (tramp-get-file-property): Check for timestamps in
13692         `tramp-cache-inhibit-cache'.
13693         (tramp-set-file-property): Write timestamp.
13695 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
13697         * language/japan-util.el (japanese-symbol-table): Add entries for
13698         cp932-2-byte.
13700         * international/characters.el: Add category `j' to cp932-2-byte.
13702 2009-08-27  Kenichi Handa  <handa@m17n.org>
13704         * international/fontset.el (build-default-fontset-data): New macro.
13705         (setup-default-fontset): Use build-default-fontset-data for CJK,
13706         tibetan, ethiopic, and ipa.
13708 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13710         * cus-start.el (default-major-mode): Customize `major-mode' instead.
13711         (enable-multibyte-characters): Not customizable any more.
13713         * subr.el (default-mode-line-format, default-header-line-format)
13714         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
13715         (default-direction-reversed, default-truncate-lines)
13716         (default-left-margin, default-tab-width, default-case-fold-search)
13717         (default-left-margin-width, default-right-margin-width)
13718         (default-left-fringe-width, default-right-fringe-width)
13719         (default-fringes-outside-margins, default-scroll-bar-width)
13720         (default-vertical-scroll-bar, default-indicate-empty-lines)
13721         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
13722         (default-fringe-cursor-alist, default-scroll-up-aggressively)
13723         (default-scroll-down-aggressively, default-fill-column)
13724         (default-cursor-type, default-buffer-file-type)
13725         (default-cursor-in-non-selected-windows)
13726         (default-buffer-file-coding-system, default-major-mode)
13727         (default-enable-multibyte-characters): Mark as obsolete.
13729 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
13731         * vc-dir.el (vc-dir-update): Remove debug helper.
13733         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
13735 2009-08-26  Sam Steingold  <sds@gnu.org>
13737         * simple.el (save-interprogram-paste-before-kill): New user option.
13738         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
13739         save the interprogram-paste into kill-ring before overriding it
13740         with the Emacs kill.
13742 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
13744         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
13745         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
13746         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
13747         and move to vc-rcs.el.
13748         (vc-default-next-revision): Rename to vc-rcs-next-revision and
13749         move to vc-rcs.el.
13750         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
13751         (vc-rcs-update-changelog): Remove.
13752         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
13753         and move to vc-rcs.el.
13755         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
13756         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
13757         renaming.
13758         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
13759         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
13760         vc.el, renamed to be RCS specific.
13762         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
13763         New functions.
13764         (vc-cvs-update-changelog): Move here from vc.el.
13766         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
13767         New functions.
13769 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
13771         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
13773 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
13775         * vc-git.el (vc-git-register): Use "git add" for directories.
13776         (vc-git-stash, vc-git-stash-show): New functions.
13777         (vc-git-extra-menu-map): Bind them.
13779         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
13780         directory correctly in case the item is a directory itself.
13782         * vc.el: Document the desired behavior for reverted files in the
13783         `added' state.
13784         (vc-default-prettify-state-info): Remove function, unused.
13786         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
13788 2009-08-26  Glenn Morris  <rgm@gnu.org>
13790         * bindings.el (standard-mode-line-format): Reposition dashes in
13791         which-func entry.  (Bug#4217)
13793         * files.el (enable-local-variables, enable-local-eval)
13794         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
13795         the defcustoms.
13796         (auto-mode-alist, ignored-local-variables)
13797         (save-some-buffers-action-alist): Move risky declarations to the
13798         definitions.
13799         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
13800         (font-lock-defaults, format-alist, imenu--index-alist)
13801         (imenu-generic-expression, input-method-alist, minor-mode-alist)
13802         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
13803         (mode-line-modified, mode-line-mule-info, mode-line-position)
13804         (mode-line-process, mode-line-remote, outline-level)
13805         (parse-time-rules, rmail-output-file-alist)
13806         (special-display-buffer-names, vc-mode):
13807         Move risky declarations to the relevant files.
13808         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
13809         (mode-line-modified, mode-line-process, mode-line-position)
13810         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
13811         * font-core.el (font-lock-defaults):
13812         * format.el (format-alist):
13813         * vc-hooks.el (vc-mode):
13814         * window.el (special-display-buffer-names):
13815         * international/mule-cmds.el (input-method-alist):
13816         Define riskiness here (dumped file) rather than in files.el.
13817         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
13818         * imenu.el (imenu-generic-expression, imenu--index-alist):
13819         * outline.el (outline-level):
13820         * time.el (display-time-string):
13821         * calendar/parse-time.el (parse-time-rules):
13822         * mail/rmailout.el (rmail-output-file-alist):
13823         Autoload riskiness here, rather than placing in files.el.
13825 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
13827         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
13829 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
13831         * simple.el (process-file-side-effects): New defvar.
13833         * dired-aux.el (dired-show-file-type):
13834         * vc.el (vc-diff-internal):
13835         * vc-arch.el (vc-arch-diff):
13836         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
13837         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
13838         * vc-git.el (vc-git-registered, vc-git-working-revision)
13839         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
13840         (vc-git--empty-db-p):
13841         * vc-hooks.el (vc-user-login-name):
13842         * vc-svn.el (vc-svn-registered, vc-svn-state)
13843         (vc-svn-dir-extra-headers, vc-svn-find-revision):
13844         * progmodes/grep.el (grep-probe): Let-bind
13845         `process-file-side-effects' with nil.
13847         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
13849         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
13850         daemon.  Replace ping by checking for running service for bluez
13851         and zeroconf.  (Bug#4239)
13853 2009-08-25  Kevin Ryde  <user42@zip.com.au>
13855         * net/dig.el (dig): Add autoload cookie.
13857 2009-08-25  Glenn Morris  <rgm@gnu.org>
13859         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
13860         load-history for absolute file-names.
13861         (byte-compile-file-form-require): Warn about use of the cl package.
13863         * format.el (format-alist): Doc fix.
13865         * play/bubbles.el (top-level): Don't require cl at run-time.
13867         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
13868         run-time cl).
13870 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
13872         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
13873         from cl package.
13874         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
13876 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
13878         * calc/calc-alg.el (math-trig-rewrite)
13879         (math-hyperbolic-trig-rewrite): New functions.
13880         (calc-simplify): Simplify trig functions when asked.
13882 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13884         * diff-mode.el (diff-find-source-location): Avoid goto-line.
13886 2009-08-24  Kenichi Handa  <handa@m17n.org>
13888         * language/ind-util.el (mapthread): Delete it.
13889         (combinatorial): New function.
13890         (indian--puthash-cv): Use combinatorial instead of mapthread.
13892 2009-08-22  Kevin Ryde  <user42@zip.com.au>
13894         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
13895         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
13896         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
13897         Clarify docstring that the value is strings not symbols.
13898         (checkdoc-list-of-strings-p): New function.
13900 2009-08-22  Glenn Morris  <rgm@gnu.org>
13902         * files.el (auto-mode-alist):
13903         * hippie-exp.el (he-concat-directory-file-name):
13904         * lpr.el (lpr-windows-system, printer-name):
13905         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
13906         * ps-print.el (ps-windows-system):
13907         * startup.el (command-line):
13908         * emulation/viper-ex.el (viper-glob-function):
13909         * international/mule-cmds.el (set-language-environment-coding-systems):
13910         * net/ange-ftp.el (ange-ftp-write-region):
13911         * obsolete/fast-lock.el (fast-lock-cache-name):
13912         Remove code for defunct system-types emx, macos, mswindows, next-mach,
13913         unisoft-unix, vax-vms, win32, w32.
13915         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
13916         given name if the pattern is not more specific.
13918         * calendar/lunar.el (lunar-phase-names): New option.
13919         (lunar-phase): Doc fix.
13920         (lunar-cycles-per-year): New constant.
13921         (lunar-index): New function.
13922         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
13923         (lunar-phase-name): Use lunar-phase-names.
13924         (calendar-lunar-phases): Use format.
13925         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
13927         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
13928         Copy imenu-example--name-and-position function here for own use.
13929         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
13931         * bs.el (bs--redisplay):
13932         * cus-edit.el (custom-redraw):
13933         * ibuffer.el (ibuffer-bury-buffer):
13934         * server.el (server-goto-line-column):
13935         * startup.el (command-line-1):
13936         * strokes.el (strokes-xpm-for-stroke):
13937         * term.el (term-display-buffer-line):
13938         * view.el (View-goto-line):
13939         * calc/calc.el (calc-do, calc-trail-buffer):
13940         * play/gamegrid.el (gamegrid-add-score-insecure):
13941         * progmodes/ada-mode.el (ada-compile-goto-error):
13942         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
13943         (ebrowse-select-1st-to-9nth):
13944         * progmodes/cperl-mode.el (cperl-time-fontification):
13945         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
13946         * progmodes/gud.el (gud-display-line):
13947         (idlwave-shell-display-line):
13948         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
13949         * progmodes/make-mode.el (makefile-browser-toggle):
13950         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
13951         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
13952         * textmodes/picture.el (picture-draw-rectangle):
13953         * textmodes/reftex-index.el (reftex-index-goto-letter):
13954         (reftex-select-jump-to-previous):
13955         * textmodes/reftex-sel.el (reftex-find-start-point)
13956         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
13957         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
13958         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
13959         * textmodes/tex-mode.el (tex-compilation-parse-errors):
13960         * textmodes/two-column.el (2C-associated-buffer):
13961         Use forward-line rather than goto-line.
13963         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
13964         goto-line.
13966         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
13967         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
13968         (quick-check-list-to-regexp): Declare.
13970         * progmodes/make-mode.el (makefile-browser-insert-selection):
13971         Use goto-char rather than goto-line.
13973         * progmodes/prolog.el (compilation-error-regexp-alist)
13974         (compilation-forget-errors): Declare.
13976 2009-08-22  Juri Linkov  <juri@jurta.org>
13978         * progmodes/grep.el (lgrep, rgrep): At the beginning
13979         set `dir' to `default-directory' unless `dir' is a non-nil
13980         readable directory.  (Bug#4052)
13981         (lgrep, rgrep): Change a weird way to report an error
13982         from using `read-string' to using `error'.
13983         Instead of using interactive arguments in the function body,
13984         add new argument `confirm'.
13986 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13988         * textmodes/remember.el (remember-buffer):
13989         * progmodes/cperl-mode.el (cperl-vc-header-alist):
13990         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
13991         (icalendar-extract-ical-from-buffer):
13992         * net/newst-treeview.el (newsticker-groups-filename):
13993         * net/newst-backend.el (newsticker-cache-filename):
13994         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
13995         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
13996         (speedbar-add-ignored-path-regexp, speedbar-line-path)
13997         (speedbar-buffers-line-path, speedbar-path-line)
13998         (speedbar-buffers-line-path):
13999         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
14000         (epg-sign-keys):
14001         * epa.el (epa-display-verify-result):
14002         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
14004 2009-08-21  Glenn Morris  <rgm@gnu.org>
14006         * progmodes/js.el (inferior-moz-process): Fix declaration.
14008         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
14010         * obsolete/rnewspost.el (news-mail-reply):
14011         Use goto-char rather than goto-line.
14013         * term/ns-win.el (ns-open-file-select-line):
14014         Use line-beginning-position rather than goto-line.
14016         * apropos.el (apropos-command):
14017         * ehelp.el (electric-helpify):
14018         * printing.el (pr-show-setup):
14019         * strokes.el (strokes-help):
14020         * tutorial.el (tutorial--describe-nonstandard-key)
14021         (tutorial--detailed-help):
14022         * woman.el (woman-mini-help, woman-display-extended-fonts):
14023         * calc/calc-help.el (calc-describe-key):
14024         * emulation/edt.el (edt-electric-helpify):
14025         * international/mule-diag.el (mule-diag):
14026         * play/yow.el (apropos-zippy):
14027         * progmodes/python.el (python-describe-symbol):
14028         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
14029         * textmodes/table.el (*table--cell-describe-mode)
14030         (*table--cell-describe-bindings):
14031         Use help-print-return-message rather than the now obsolete alias.
14033         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
14034         (calendar-cursor-to-visible-date):
14035         * play/5x5.el (5x5-position-cursor):
14036         * play/decipher.el (decipher):
14037         * play/gomoku.el (gomoku-goto-xy):
14038         * play/landmark.el (lm-goto-xy):
14039         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
14040         (mpuz-paint-digit):
14041         Use forward-line, not goto-line.
14043         * mail/rmail.el (rmail-obsolete): Delete custom group.
14044         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
14045         (rmail-remote-password, rmail-remote-password-required):
14046         Remove unneeded :set-after and :set properties.
14048 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
14050         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
14052 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
14054         * loadup.el: Remove leftover macos code.
14056         * vc-git.el (vc-git-annotate-command): Run asynchronously.
14057         Explicitly pass the date format to git blame so that user local
14058         so that the output format can be parsed.
14060 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
14062         * net/dbus.el (top): Don't check for (getenv
14063         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
14065 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
14067         * log-edit.el (log-edit-strip-single-file-name): New var.
14068         (log-edit-insert-changelog): Use it.  Bug#3571
14070 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14072         * subr.el (read-passwd): Use read-key so keypad keys work as well.
14073         Bug#3287
14075         * help.el (help-print-return-message): Rename from
14076         print-help-return-message.
14078         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
14079         cvs-mode-map parent hack.
14080         (log-view-mode): Derive from special-mode.
14082         * linum.el (linum-mode): window-size-change-functions is redundant.
14083         Adapt to new window-configuration-change-hook behavior.
14084         (linum-after-size, linum-after-config): Remove.
14086         * imenu.el (imenu-example--name-and-position)
14087         (imenu-example--lisp-extract-index-name)
14088         (imenu-example--create-lisp-index, imenu-example--create-c-index):
14089         Mark as obsolete.
14091         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
14092         (inferior-prolog-mode): Use it.
14093         (inferior-prolog-load-file): Reset list of errors.
14095 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
14097         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
14099         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
14101 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
14103         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
14104         is running already.
14106 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14108         * subr.el (listify-key-sequence-1): Use normal syntax since those
14109         integers are nowadays always represented by the same (positive) number
14110         on all platforms.
14111         (read-key-empty-map): New const.
14112         (read-key-delay): New var.
14113         (read-key): New function.
14114         (force-mode-line-update): Use with-current-buffer.
14115         (locate-user-emacs-file): Don't forget to abbreviate the file name.
14116         (start-process-shell-command, start-file-process-shell-command):
14117         Discourage the use of command-args.
14119 2009-08-19  Glenn Morris  <rgm@gnu.org>
14121         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
14123 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14125         * simple.el (choose-completion-string): Don't rely on
14126         minibuffer-completing-file-name and ad-hoc checks to decide whether
14127         to continue completion or not.
14129         * minibuffer.el (minibuffer-hide-completions): New function.
14130         (completion--do-completion): Use it.
14131         (completions-annotations): New face.
14132         (completion--insert-strings): Use it.
14133         (completion-pcm--delim-wild-regex): Add docstring.
14134         (completion-pcm--string->pattern): Add support for 0-width delimiters
14135         in completion-pcm--delim-wild-regex.
14137 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14139         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
14140         Remove unused var `buffer-modified-p'.
14142         * minibuffer.el (completion--do-completion): Move point for the #b001
14143         case as well (bug#4176).
14144         (minibuffer-complete, minibuffer-complete-word): Don't move point.
14146 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
14148         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
14149         and :session buses.
14151 2009-08-18  Kenichi Handa  <handa@m17n.org>
14153         * international/ucs-normalize.el (ucs-normalize-version):
14154         Change to 1.1.
14155         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
14156         (utf-8-hfs): Make it perform normalization on encoding too.
14158         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
14159         (sentence-end-without-space): Delete duplicated chars.
14160         (sentence-end-base): Likewise.
14162         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
14163         (html-mode): Delete duplicated chars from sentence-end-base.
14165         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
14166         (texinfo-mode): Delete duplicated chars from sentence-end-base.
14168 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
14170         * files.el (hack-one-local-variable): If the mode function is for
14171         a minor mode, pass it an argument (Bug#4148).
14173 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
14175         * net/tramp.el (tramp-register-completion-file-name-handler):
14176         Check also for (member 'partial-completion completion-styles).
14178 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
14180         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
14181         abbrev (Bug#3943).
14183 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
14185         * progmodes/cperl-mode.el: Merge upstream 6.2.
14186         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
14187         (cperl-forward-re): Check cperl-brace-recursing.
14188         (cperl-highlight-charclass): New function.
14189         (cperl-find-pods-heres): Use it.
14190         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
14191         (cperl-beautify-regexp-piece): Fix column calculation.
14192         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
14193         (cperl-beautify-level): Don't process entire regexp.
14194         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
14195         calling man.
14196         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
14197         (cperl-init-faces): Build a list in the normal way.
14199 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
14201         * calendar/parse-time.el (parse-time-string-chars): Save match
14202         data.
14204 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
14206         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
14207         (sql-product): Use it.
14208         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
14209         (sql-set-product): Add completion.
14210         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
14211         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
14212         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
14213         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
14214         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
14215         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
14216         (sql-highlight-db2-keywords): Remove.
14217         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
14218         (sql-highlight-product): Use derived-mode-p.
14219         (sql-set-sqli-buffer): Use with-current-buffer.
14220         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
14221         Simplify.
14223         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
14225         * term.el: Fix commenting convention, turn comments into docstrings.
14227 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
14229         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
14231 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
14233         * calendar/parse-time.el (parse-time-string-chars): Compute using
14234         character classes, to handle non-ascii characters (Bug#3190).
14236 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
14238         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
14239         another heredoc if the user adds another < (Bug#3226).
14241         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
14242         Don't initialize based on window-system (Bug#4124).
14244         * facemenu.el (facemenu-read-color): Use a completion function
14245         that accepts any defined color, such as RGB triplets (Bug#3677).
14247         * files.el (get-free-disk-space): Change fallback default
14248         directory to /.  Expand DIR argument before switching to fallback.
14249         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
14251 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
14253         * files.el (load-library): Doc fix.
14255 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
14257         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
14258         (viper-if-string): Redefine C-s in the minibuffer to insert the last
14259         incremental search string.
14261         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
14262         XEmacs.
14264         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
14265         (ediff-merge-region-is-non-clash)
14266         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
14267         Also check if the job is really a merge job.
14269         * ediff.el (ediff-current-file): New function.
14271 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
14273         * progmodes/js.el: Edit docstrings throughout to follow Emacs
14274         conventions.
14275         (js-insert-and-indent): Delete function.
14276         (js-mode-map): Don't bind keys to js-insert-and-indent.
14277         (js-beginning-of-defun): Rename from js--beginning-of-defun.
14278         (js-end-of-defun): Rename from js--end-of-defun.
14279         (js-auto-indent-flag): Delete variable.
14281 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
14283         * progmodes/js.el: Remove proclaim statement.
14284         Defvar which-func-imenu-joiner-function to silence compiler.
14286         * files.el (auto-mode-alist): Use js-mode for .js files.
14288         * progmodes/js2-mode.el: Remove file.
14290         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
14292         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
14294         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
14296 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
14297             Karl Landstrom  <karl.landstrom@brgeight.se>
14299         * progmodes/js.el: New file.
14301 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
14303         * timezone.el (timezone-parse-date): Add ability to understand ISO
14304         basic format (minimal separators) dates in addition to the
14305         already-supported extended format dates.
14307 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
14309         * international/ucs-normalize.el: Add a `coding' file variable.
14311         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
14313 2009-08-14  Sam Steingold  <sds@gnu.org>
14315         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
14317 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
14319         * faces.el (help-argument-name): Define it here instead of
14320         help-fns.el, because in daemon mode help-fns.el may be loaded when
14321         faces are still uninitialized (Bug#1078).
14323         * help-fns.el (help-argument-name): Move defface to faces.el.
14325 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
14327         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
14328         create buffer with a pty but no process so that GDB can make the
14329         inferior the controlling process.
14331 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
14333         * international/ucs-normalize.el: New file.
14335 2009-08-13  Richard Stallman  <rms@gnu.org>
14337         * mail/rmail.el (rmail-get-attr-names):
14338         Accept an attribute header that is too short.
14340         * mail/rmail.el (rmail-forget-messages):
14341         Ignore nil elt in rmail-message-vector.  Use dotimes.
14343         * progmodes/compile.el (compilation-goto-locus):
14344         Use next-error-move-function.
14346         * simple.el (next-error-move-function): New variable.
14348 2009-08-12  Juri Linkov  <juri@jurta.org>
14350         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
14351         always non-nil.  (Bug#4052)
14353         * replace.el (read-regexp): Return empty string when
14354         `default-value' is nil.
14355         (keep-lines-read-args): Don't use empty string as the
14356         default value for `read-regexp'.  (Bug#2495)
14358 2009-08-12  Juri Linkov  <juri@jurta.org>
14360         * international/mule-cmds.el (ucs-insert): Change arguments
14361         from `arg' to `character', `count', `inherit' to be the same
14362         as in `insert-char'.  Doc fix.  (Bug#4039)
14364         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
14366 2009-08-12  Juri Linkov  <juri@jurta.org>
14368         * files-x.el: New file.
14370         * files.el: Move code that deals with adding/deleting
14371         file/directory-local variables to files-x.el.
14373         * Makefile.in (ELCFILES): Add files-x.elc.
14375 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
14377         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
14378         to use `goto-line'.
14379         (gdb-place-breakpoints, gdb-get-location): Rewritten without
14380         `goto-line'.
14381         (gdb-invalidate-disassembly): Do not refresh upon receiving
14382         'update signal.  Instead, update all disassembly buffers only after
14383         threads list.
14384         (gdb): Send -target-detach when buffer is killed (Bug#3794).
14385         (gdb-starting): Moved -data-list-register-names...
14386         (gdb-stopped): ...here so it's sent when first thread stops.
14387         (gdb-registers-handler-custom): Do nothing if register names are
14388         unknown yet.
14390         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
14391         from `gdb-mi.el' to avoid extra tangling.
14393         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
14394         change which breaks `gud-def' definitions used in `gdb'.
14395         (gdb-update-gud-running): No extra fuss for updating frame number.
14397 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14399         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
14400         (describe-language-environment-map, setup-language-environment-map)
14401         (set-coding-system-map): Move initialization into declaration.
14402         (set-language-info-alist): Last arg to define-key-after can be skipped.
14404         * international/quail.el (quail-completion-1): Simplify.
14405         (quail-define-rules): Use slightly more compact code.
14406         (quail-insert-decode-map): Propertize keys, compact columns.
14408         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
14409         Add goto-line.
14411 2009-08-10  Miles Bader  <miles@gnu.org>
14413         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
14414         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
14415         (js2-instance-member, js2-private-member, js2-private-function-call)
14416         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
14417         (js2-magic-paren, js2-external-variable):
14418         Remove "-face" suffix from face names.
14419         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
14420         (js2-highlight-undeclared-vars, js2-peek-token)
14421         (js2-parse-function-params, js2-mode-show-errors)
14422         (js2-mode-show-warnings, js2-make-magic-delimiter)
14423         (js2-mode-highlight-magic-parens): Update to use new face names.
14425 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
14427         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
14428         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
14430 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
14432         * subr.el: Provide hashtable-print-readable.
14434         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
14435         hs-c-like-adjust-block-beginning.
14436         (hs-hide-block-at-point): Stop hiding at the beginning of
14437         hs-block-end-regexp (Bug#700).
14439 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
14441         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
14442         a macro.
14443         (gdb-registers-handler-custom): Do not fail when register names
14444         are unavailable.
14446 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
14448         * progmodes/gdb-mi.el (gdb-control-all-threads)
14449         (gdb-control-current-thread): Interactive setters for
14450         `gdb-gud-control-all-threads' to use in menu.
14451         (gdb-show-run-p): Show «Go» when process is not active.
14452         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
14453         gud/thread.xpm and gud/all.xpm.
14455 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
14457         * net/net-utils.el (net-utils-font-lock-keywords): New var.
14458         (nslookup-font-lock-keywords): Make it a variable.
14459         (net-utils-mode): New mode for viewing diagnostic network output.
14460         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
14461         (net-utils-run-simple): New function.
14462         (ifconfig, iwconfig, netstat, arp, route): Use it.
14464 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
14466         * progmodes/gdb-mi.el (gdb-read-memory-custom)
14467         (gdb-memory-set-address, def-gdb-set-positive-number)
14468         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
14469         after changing settings.
14470         (gdb-invalidate-disassembly): Update when first shown.
14471         (gdb-edit-locals-value): Fixed.
14472         (gdb-registers-handler-custom): Print registers in right order and
14473         allow changing register values (only for current thread yet).
14474         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
14475         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
14476         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
14477         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
14478         info in mode name.
14479         (gdb-registers-mode-map): TAB to switch to locals.
14481 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
14483         * mail/rmail.el (rmail-add-mbox-headers)
14484         (rmail-set-message-counters-counter): Search for
14485         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
14487 2009-08-08  Glenn Morris  <rgm@gnu.org>
14489         * Makefile.in (ELCFILES): Update.
14491 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
14493         * mail/sendmail.el (mail-yank-original): Set
14494         buffer-file-coding-system from the one used by the message whose
14495         text is yanked.
14497         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
14498         to "windows" when "pgnuplot" is used.
14499         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
14500         call accept-process-output if "pgnuplot" is used.
14501         (calc-graph-init): Don't send -display and -geometry to
14502         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
14503         running "pgnuplot -V" with shell-command-to-string.
14505         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
14506         the default.
14508 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
14510         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
14511         org/org-latex.elc.
14513 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
14515         * vc-dispatcher.el (vc-resynch-window): Update comment.
14517         * term.el (term-handle-ansi-escape): Add comments with the
14518         terminfo capabilities implemented.
14520 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
14522         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
14523         (gdb-var-create-handler): Rewritten using JSON parser.
14524         (gdb-propertize-header): Moved earlier.
14525         (gdb-set-header): Removed to avoid duplication.
14526         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
14527         Refresh disassembly buffers only after threads list have been
14528         update.
14529         (gdb-threads-header, gdb-registers-header): Per-buffer header line
14530         variables.
14532 2009-08-04  Juri Linkov  <juri@jurta.org>
14534         * files.el: Commands to add/delete file/directory-local variables.
14535         (read-file-local-variable, read-file-local-variable-value)
14536         (read-file-local-variable-mode, modify-file-local-variable)
14537         (modify-file-local-variable-prop-line)
14538         (modify-dir-local-variable): New functions.
14539         (add-file-local-variable, delete-file-local-variable)
14540         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
14541         (add-dir-local-variable, delete-dir-local-variable)
14542         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
14543         (copy-dir-locals-to-file-locals-prop-line): New commands.
14545 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
14547         * abbrev.el (insert-abbrev-table-description): Prettify output.
14548         Suggested by Karl Chen.
14550 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
14552         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
14553         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
14554         (gdb-overlay-arrow-position, gdb-thread-position)
14555         (gdb-disassembly-position): Declare variables.
14556         (gdb-wait-for-pending): Function now.
14557         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
14558         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
14559         compilation goes smoothly.
14560         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
14561         (gdb-non-stop-setting): New customization setting which replaces
14562         `gdb-non-stop' so changing it doesn't break active GDB session.
14563         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
14564         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
14565         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
14566         (gdb-show-threads-by-default): New customization options.
14567         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
14568         routines.
14569         (gdb-get-buffer-create): Send buffers update signal when they are
14570         created.
14571         (gdb-invalidate-locals, gdb-invalidate-registers)
14572         (gdb-invalidate-breakpoints)
14573         (gdb-invalidate-threads, gdb-invalidate-disassembly)
14574         (gdb-invalidate-memory): Accept update signal.
14575         (gdb-current-context-command): Use --frame option.
14576         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
14577         Implement `gdb-frame-number' selection logic.
14578         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
14579         whether to show GUD toolbar buttons.
14580         (gdb-thread-exited): Unselect current thread when it exits.
14581         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
14582         (gdb-mark-line): Routine which sets overlay arrow or inverses
14583         video on fringeless displays.
14584         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
14585         to build aligned columns of data in GDB buffers and set text
14586         properties line-by-line.
14587         (gdb-invalidate-breakpoints)
14588         (gdb-breakpoints-list-handler-custom)
14589         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
14590         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
14591         (gdb-registers-handler-custom): Align data columns.
14592         (gdb-locals-handler-custom): Now prints data like in variable
14593         declarations.
14594         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
14595         Removed confusing buttons.
14596         (gdb-invalidate-threads): Append --frame.
14597         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
14598         between breakpoints/threads buffers.
14599         (gdb-set-window-buffer): Now can ignore dedicated windows.
14600         (gdb-propertize-header): Use `gdb-set-window-buffer'.
14601         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
14602         (def-gdb-thread-buffer-gud-command): Replaces
14603         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
14604         for fine thread control.
14605         (gdb-preempt-existing-or-display-buffer): New function used to
14606         display bound buffers without breaking window layout.
14607         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
14608         (gdb-select-frame): New version of `gdb-frames-select' which now
14609         sets `gdb-frame-number' so commands may use --frame option instead
14610         of inner debugger state.
14611         (gdb-frame-handler): Do not set `gdb-frame-number'.
14612         (gdb-threads-mode-map): Select threads with mouse.
14614         * progmodes/gud.el (gdb-gud-context-call): Declare function to
14615         avoid compilation warning.
14616         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
14617         `gdb-show-stop-p`.
14619         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
14620         Argument `key' renamed to `buffer-type'.
14621         (gdb-current-context-buffer-name): Do not add thread info to
14622         buffer name when no thread is selected.
14623         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
14624         command (bug 3794).
14625         (gdb-thread-selected): Handle `=thread-selected' notification.
14626         (gdb-wait-for-pending): New macro to deal with congestion problems.
14627         (gdb-breakpoints-list-handler-custom): Don't fail on pending
14628         breakpoints.
14629         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
14630         This fixes problem similar to one described in bug 3947.
14631         (gud-menu-map): More menu items.
14632         (gdb-init-1): Reset `gdb-thread-number' to nil.
14634         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
14635         non-stop settings.
14637         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
14638         (gdb-current-context-command): Do not append --thread if
14639         `gdb-thread-number' is nil.
14640         (gdb-running-threads-count, gdb-stopped-threads-count): New
14641         variables.
14642         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
14643         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
14644         customization options.
14645         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
14646         GUD commands.
14647         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
14648         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
14649         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
14650         set `gdb-thread-number' and update `gud-running' properly.
14651         (gdb-running): Update threads list when new threads appear.
14652         (gdb-stopped): Support non-stop operation and new thread switching
14653         logic.
14654         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
14655         (gdb-json-partial-output): New set of JSON routines.
14656         (def-gdb-auto-update-trigger): New `signal-list' optional
14657         argument.
14658         (gdb-thread-list-handler-custom): Update `gud-running',
14659         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
14660         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
14661         (gdb-continue-thread, gdb-step-thread): New commands for fine
14662         thread execution control.
14663         (gud-menu-map): New menu items to switch non-stop options.
14664         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
14665         (gdb-send): Mimic RET properly (bug 3794).
14667         * progmodes/gdb-mi.el (gdb-rules-name-maker)
14668         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
14669         gdb-buffer-rules.
14670         (def-gdb-auto-update-handler): New nopreserve optional argument.
14671         (gdb-stack-list-frames-custom): Print stack from top to bottom.
14673         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
14674         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
14675         (gdb-parent-mode): New mode to derive other GDB modes from.
14676         (gdb-display-disassembly-for-thread)
14677         (gdb-frame-disassembly-for-thread): New commands for threads
14678         buffer.
14680         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
14681         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
14682         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
14683         (gdb-update): We now store all GDB buffers in a list so that they
14684         can be updated by traversing a list instead of calling invalidate
14685         triggers explicitly.
14686         (def-gdb-trigger-and-handler): New macro to define trigger-handler
14687         pair for GDB buffer.
14688         (gdb-stack-buffer-name): Add thread information.
14689         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
14690         handle pending triggers.
14691         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
14692         (def-gdb-thread-buffer-simple-command)
14693         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
14694         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
14695         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
14696         New commands which show buffers bound to thread.
14697         (gdb-stack-list-locals-regexp): Removed unused regexp.
14699         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
14700         (gdb-locals-buffer-name, gdb-registers-buffer-name)
14701         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
14702         to (gud-comint-buffer) in *-buffer-name functions
14703         because (gdb-get-target-string) already does that.
14704         (gdb-locals-handler-custom, gdb-registers-handler-custom)
14705         (gdb-changed-registers-handler): Rewritten without regexps.
14707         * progmodes/gdb-mi.el: Basic thread selection support.
14708         (gdb-thread-number): New variable.
14709         (gdb-current-context-command): New macro which adds --thread
14710         option to command.
14711         (gdb-threads-mode-map): Select thread with SPC.
14712         (gdb-thread-list-handler-custom): Mark current thread with overlay
14713         arrow.  Synchronize GDB thread and Emacs thread.
14714         (gdb-select-thread): New command which selects current thread.
14715         (gdb-invalidate-frames, gdb-invalidate-locals)
14716         (gdb-invalidate-registers): Use --thread option.
14718 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
14720         * net/tramp.el (top): Make check for tramp-gvfs loading more
14721         robust.  (Bug#3977)
14722         (tramp-handle-insert-file-contents): `unwind-protect' must be
14723         inside `with-parsed-tramp-file-name'.
14725         * net/tramp-gvfs.el (top): Remove superfluous message when loading
14726         fails.
14728 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
14730         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
14731         directory if CLASSPATH is not set.
14733 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
14735         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
14736         New defconst.
14737         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
14739 2009-08-02  Kevin Ryde  <user42@zip.com.au>
14741         * net/newst-backend.el (newsticker--raw-url-list-defaults):
14742         Update freshmeat link.  Delete newsforge.com as it seems gone.
14744 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
14746         * select.el (x-set-selection): Doc fix (Bug#4021).
14748         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
14750         * help-fns.el (describe-variable): Treat list return values from
14751         dir-locals-find-file properly (Bug#4005).
14753 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
14755         * net/tramp.el (tramp-debug-message): Print also microseconds.
14757 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
14759         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
14760         or END is non-nil.
14761         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
14762         (tramp-get-debug-buffer): Change `outline-regexp' according to new
14763         format.
14765         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
14766         (tramp-get-file-property): Use it.
14768         * autorevert.el (auto-revert-handler): Allow
14769         `auto-revert-tail-mode' for remote files.
14771 2009-08-02  Jason Rumney  <jasonr@gnu.org>
14773         * minibuffer.el (read-file-name): Treat confirm options to
14774         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
14776 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
14778         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
14779         (font-lock-variable-name-face, font-lock-constant-face): Darken
14780         the colors for light backgrounds.
14782 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
14784         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
14785         month names.  (Bug#3987)
14787 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
14789         * simple.el (line-move-finish): Pass whole number to
14790         line-move-to-column.
14791         (line-move-visual): Perform hscroll to the recorded position.
14793 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
14795         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
14797 2009-07-29  Alan Mackenzie  <acm@muc.de>
14799         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
14801 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
14803         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
14804         (gdb-place-breakpoints): Use full path when setting breakpoints.
14806 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
14808         * calc/calc.el (calc-mode-map): Add keybinding for
14809         `calc-transpose-lines'.
14811 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
14813         * calc/calc-misc.el (calc-transpose-lines): New function.
14815 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
14817         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
14818         Simplify check for out-of-band methods.
14819         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
14820         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
14822 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
14824         * vc-git.el (vc-git-checkin): Fix typo.
14826 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
14828         * progmodes/js2-mode.el: New file.
14830 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
14832         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
14833         (gud-menu-map): Adjust tooltip accordingly.
14835 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
14837         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
14838         (vc-bzr-log-view-mode): Adjust log-view-file-re.
14840         * add-log.el (change-log-mode-map): Add a menu.
14842 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
14844         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
14845         function returns nil.
14846         (dbus-handle-event): Handle special return value :ignore.
14847         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
14849 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
14851         * view.el (view-mode-enable): Don't define Helper-return-blurb if
14852         it's not needed.
14854 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
14856         Fix Bug#3888:
14858         * w32-vars.el (x-select-enable-clipboard): Doc fix.
14860         * term/pc-win.el (x-display-name, x-colors)
14861         (x-select-enable-clipboard, x-select-text): Doc fix.
14863         * term/common-win.el (x-display-name, x-colors): Doc fix.
14865         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
14866         (xw-defined-colors): Doc fix.
14868         * w32-fns.el (x-select-text, x-setup-function-keys)
14869         (x-get-selection, x-set-selection): Doc fix.
14871         * term/x-win.el (x-select-text, x-setup-function-keys)
14872         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
14874         * select.el (x-set-selection): Doc fix.
14876 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
14878         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
14879         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
14880         "IsNSSSupportAvailable" method is not available.  Reported by
14881         Steve Youngs <steve@sxemacs.org>.
14883 2009-07-24  Kenichi Handa  <handa@m17n.org>
14885         * international/characters.el: Fix setting of category ?C, ?|, ?K,
14886         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
14887         (build-unicode-category-table): Fix range checks.
14889 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
14891         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
14892         the buffer we try to sync is current when calling
14893         vc-resynch-buffer.
14895         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
14896         not show up to date files.
14898 2009-07-24  Glenn Morris  <rgm@gnu.org>
14900         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
14901         Add autoload cookies.  If necessary, initialize.
14902         (elint-log): Handle non-file buffers.
14903         (elint-initialize): Add optional argument to reinitialize.
14904         (elint-find-builtin-variables): Save excursion.
14906 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
14908         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
14909         for Lint.
14911 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
14913         * vc.el (vc-print-log-internal): New function, split out from ...
14914         (vc-print-log): ... here.
14915         (vc-dir-move-to-goal-column): Declare.
14917         * vc-git.el (vc-git-add-signoff): New variable.
14918         (vc-git-checkin): Use it.
14919         (vc-git-toggle-signoff): New function.
14920         (vc-git-extra-menu-map): Bind it to menu.
14921         (vc-git--run-command-string): Accept a nil FILE argument.
14922         (vc-git-stash-list): New function.
14923         (vc-git-dir-extra-headers): Use it.
14925 2009-07-23  Glenn Morris  <rgm@gnu.org>
14927         * help-fns.el (describe-variable): Describe ignored and risky local
14928         variables in a similar way to that in which we describe safe ones.
14930         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
14931         (byte-compile-output-file-form, byte-compile-output-docform)
14932         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
14933         Give some more local variables with common names a "bytecomp-" prefix,
14934         so as not to shadow things during compilation.
14935         * emacs-lisp/cl-macs.el (load-time-value)
14936         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
14937         `outbuffer' to `bytecomp-outbuffer'.
14939         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
14940         since the next two variables cover them automatically now.
14941         (elint-builtin-variables, elint-autoloaded-variables): New.
14942         (elint-unknown-builtin-args): Remove all members, since they can be
14943         parsed automatically now.
14944         (elint-extra-errors): New.
14945         (elint-env-add-env, elint-env-add-macro): Use cadr.
14946         (elint-current-buffer): Use or.  Change final message.
14947         (elint-get-top-forms): Use line-end-position.
14948         (elint-init-env): Use cadr.  Handle autoload, declare-function,
14949         and defalias.
14950         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
14951         (regexp-assoc): Remove unused function.
14952         (elint-top-form): Set elint-current-pos, to record the start of the
14953         top-level form, for compilation-mode.
14954         (elint-form): Trap errors in macro expansion.  Use dolist.
14955         (elint-unbound-variable): Use elint-builtin-variables and
14956         elint-autoloaded-variables.
14957         (elint-get-args): Use cadr, or.
14958         (elint-check-cond-form): Use dolist, cadr.
14959         (elint-check-condition-case-form): Doc fix.  Use cadr.
14960         Use elint-extra-errors.
14961         (elint-log): New function.
14962         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
14963         Distinguish errors and warnings.
14964         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
14965         Use a bytecomp-style format.
14966         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
14967         (elint-get-log-buffer): Use compilation mode.  Disable undo.
14968         Don't truncate lines.
14969         (elint-initialize): Set builtin and autoloaded variable lists.
14970         Only process elint-unknown-builtin-args if non-nil.
14971         (elint-find-builtin-variables, elint-find-autoloaded-variables):
14972         New functions.
14973         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
14975 2009-07-22  Kevin Ryde  <user42@zip.com.au>
14977         * net/newst-backend.el (newsticker--parse-atom-1.0)
14978         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
14979         (newsticker--parse-rss-1.0):
14980         * progmodes/idlwave.el (idlwave-mode):
14981         * progmodes/idlw-shell.el (idlwave-shell-mode):
14982         * progmodes/vera-mode.el (vera-mode):
14983         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
14984         * progmodes/vhdl-mode.el (vhdl-mode):
14985         * textmodes/table.el (table-generate-source)
14986         (table--warn-incompatibility):
14987         Hyperlink urls in docstrings with URL `...'.
14989 2009-07-22  Glenn Morris  <rgm@gnu.org>
14991         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
14992         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
14993         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
14994         Remove leading * from defcustom docs.
14996         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
14998         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
14999         defcustom doc.
15000         (list-load-path-shadows): Optionally, just return shadows as a string.
15002         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
15004 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
15006         * mail/rmailedit.el (rmail-edit-mode): Use
15007         auto-save-include-big-deletions.
15009         * mail/rmail.el (rmail-variables): Use
15010         auto-save-include-big-deletions.
15012         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
15013         changes.
15015 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
15017         * calc/calc.el (calc-undo-length): New variable.
15018         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
15020 2009-07-21  Richard Stallman  <rms@gnu.org>
15022         * files.el (auto-save-mode): Handle buffer-save-size = -2
15023         for toggling mode.
15025 2009-07-21  Glenn Morris  <rgm@gnu.org>
15027         * textmodes/ispell.el (ispell-looking-back): Update declaration.
15029         * calendar/todo-mode.el (calendar-current-date): Update declaration.
15031         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
15032         silence compiler.  Instead...
15033         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
15034         (ps-print-ensure-fontified): Update for above function name changes.
15036         * printing.el (pr-mh-get-msg-num, pr-mh-show)
15037         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
15038         silence compiler.  Instead...
15039         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
15040         (mh-show-buffer): Only define for compiler.
15041         (pr-mh-current-message): Update for above function name changes.
15043         * files.el (abort-if-file-too-large): Explicitly pass `filename'
15044         as an argument.
15045         (find-file-noselect, insert-file-1): Update for above change.
15047         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
15049         * mail/mailclient.el (mailclient-send-it): Fix message.
15051         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
15052         (edebug-eval): Check cl-debug-env is bound.
15053         (print-level, print-circle): Don't redefine built-in variables.
15055         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
15056         (custom-print-vectors): Remove old comments from doc.
15058         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
15059         (emerge-version): Make the variable an obsolete alias for the
15060         emacs-version variable.  Make the function obsolete.
15061         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
15062         Emerge options, rather than merging in into the main Options menu.
15063         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
15064         and auto advance modes.  Disable edit/fast items when not relevant.
15066 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
15068         * term/vt420.el (terminal-init-vt420): Fix typo.
15070 2009-07-20  Sam Steingold  <sds@gnu.org>
15072         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
15073         variable (removed from compile.el on 2004-03-11).
15075 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
15077         * files.el (hack-local-variables-filter): Fix last change.
15079 2009-07-19  Juri Linkov  <juri@jurta.org>
15081         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
15082         (dir-local-variables-alist): New buffer-local variable.
15083         (hack-local-variables-filter): If variable is not dir-local,
15084         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
15085         because file-local overrides dir-local.
15086         (c-postprocess-file-styles) <declare-function>:
15087         Remove obsolete declaration.
15088         (hack-dir-local-variables): Add dir-local variable/value pair to
15089         `dir-local-variables-alist' and remove duplicates.  Doc fix.
15091         * help-fns.el (describe-variable): Add information about
15092         file-local and dir-local variables.
15094 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
15096         * files.el (hack-local-variables-filter): Rewrite.
15098 2009-07-19  Glenn Morris  <rgm@gnu.org>
15100         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
15101         Silence compiler by only defining on XEmacs.
15103         * international/mule.el (auto-coding-regexp-alist): Only match
15104         BABYL... at the start of buffer, not of lines.  (Bug#3790)
15106         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
15107         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
15108         (cal-menu-context-mouse-menu): Doc fix.
15110         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
15112         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
15114 2009-07-18  Juri Linkov  <juri@jurta.org>
15116         * info.el: Virtual Info keyword finder.
15117         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
15118         (Info-finder-file): New variable.
15119         (Info-finder-find-file): New function.
15120         (finder-known-keywords, finder-package-info)
15121         (find-library-name, lm-commentary): Use defvar and
15122         declare-function to silence compiler warnings.
15123         (Info-finder-find-node): New function.
15124         (info-finder): New command.
15126         * subr.el (process-kill-buffer-query-function): New function.
15127         (add-hook)<kill-buffer-query-functions>: Add hook
15128         `process-kill-buffer-query-function'.
15130 2009-07-18  Alan Mackenzie  <acm@muc.de>
15132         * progmodes/cc-mode.el (c-before-hack-hook)
15133         (c-postprocess-file-styles): Give invocation of `c-set-style'
15134         DONT-OVERRIDE parameter of t.  Already set style variables will
15135         thus not be overridden by style settings given by `c-file-syle'.
15137         * files.el (hack-local-variables-filter): Remove entries with
15138         duplicate keys from `file-local-variables-alist'.
15140 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
15142         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
15143         x-set-selection if display-selections-p returns nil for the
15144         current frame.
15146 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
15148         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
15150 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
15152         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
15153         Accept nil in addition to a regexp.
15154         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
15155         Accept nil in addition to a regexp.
15156         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
15157         buffers that have an associated file.  Handle nil values of
15158         desktop-buffers-not-to-save and desktop-files-not-to-save.
15159         (Bug#3833)
15161         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
15162         (x-disown-selection-internal): New functions.
15164 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
15166         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
15167         warning.
15168         (gdb-breakpoints-header): Move forward to avoid compiler warning.
15169         (gdb-make-header-line-mouse-map): Remove duplicate definition.
15171 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
15173         * simple.el (set-mark): Revert last change.
15175 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
15177         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
15178         rendering of pngs is not possible instead of messaging a long
15179         description.
15181 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
15183         * w32-fns.el (x-selection-owner-p): New function.
15185         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
15186         (mouse-yank-at-click, mouse-yank-primary): If
15187         select-active-regions is non-nil, deactivate the mark before
15188         insertion.
15190         * simple.el (deactivate-mark, set-mark): Only save selection if we
15191         own it.
15193 2009-07-17  Kenichi Handa  <handa@m17n.org>
15195         * case-table.el (describe-buffer-case-table): Fix for the case
15196         that KEY is a cons.
15198 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
15200         * vc-rcs.el (vc-rcs-find-file-hook):
15201         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
15203 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
15205         * net/tramp.el (tramp-wait-for-output): Handle the case when
15206         commands do not return a newline but a null byte before the shell
15207         prompt.  (Bug#3858)
15209 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15211         * term/ns-win.el (ns-set-alpha): Don't declare.
15212         (ns-set-background-alpha): Remove function.
15214 2009-07-16  Kevin Ryde  <user42@zip.com.au>
15216         * emacs-lisp/copyright.el (copyright-update): Save match-data across
15217         y-or-n-p, for safety.
15219 2009-07-16  Richard Stallman  <rms@gnu.org>
15221         * files.el (auto-save-mode): If buffer-saved-size is -2,
15222         don't clobber it.
15224         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
15225         (rmail-retry-ignored-headers): Add more uninteresting fields.
15227 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
15229         * net/rcirc.el (rcirc): Use history variables.
15230         (rcirc-server-name-history, rcirc-nick-name-history)
15231         (rcirc-server-port-history): New variables.
15233 2009-07-15  Kenichi Handa  <handa@m17n.org>
15235         * international/mule-cmds.el (set-language-environment-charset):
15236         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
15237         ignore them.
15239         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
15240         Delete unibyte-display.
15242 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
15244         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
15246 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
15248         * simple.el (deactivate-mark): Optional argument FORCE.
15249         (set-mark): Use deactivate-mark.
15251         * info.el (Info-search): No need to check transient-mark-mode
15252         before calling deactivate-mark.
15254         * select.el (x-set-selection): Doc fix.
15255         (x-valid-simple-selection-p): Allow buffer values.
15256         (xselect--selection-bounds): Handle buffer values.  Suggested by
15257         David De La Harpe Golden.
15259         * mouse.el (mouse-set-region, mouse-drag-track): Call
15260         copy-region-as-kill before setting the mark, to let
15261         select-active-regions work.
15263 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
15265         * simple.el (deactivate-mark): If select-active-regions is
15266         non-nil, copy the selection data into a string.
15267         (activate-mark): If select-active-regions is non-nil, set the
15268         selection to the current buffer.
15269         (set-mark): Update selection if select-active-regions is non-nil.
15271         * select.el (x-valid-simple-selection-p): Allow buffer values.
15273 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
15275         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
15276         and more featureful message-mode.
15278 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
15280         * select.el (x-set-selection): Doc fix.
15281         (x-valid-simple-selection-p): Disallow selection data consisting
15282         of a list or cons of integers, since that is not used.
15283         (xselect--selection-bounds, xselect--int-to-cons): New functions.
15284         (xselect-convert-to-string, xselect-convert-to-length)
15285         (xselect-convert-to-filename, xselect-convert-to-charpos)
15286         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
15288 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
15290         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
15291         output in -break-info command (Emacs bug #3794).
15293 2009-07-14  Glenn Morris  <rgm@gnu.org>
15295         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
15296         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
15297         (edebug-print-length, edebug-print-level, edebug-print-circle)
15298         (edebug-sit-for-seconds, edebug-view-outside)
15299         (edebug-bounce-point, edebug-set-global-break-condition)
15300         (edebug-Go-nonstop-mode, edebug-trace-mode)
15301         (edebug-Trace-fast-mode, edebug-continue-mode)
15302         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
15303         (edebug-visit-eval-list): Doc fixes.
15305         * subr.el (def-edebug-spec): Doc fix.
15307 2009-07-14  Kenichi Handa  <handa@m17n.org>
15309         * international/characters.el: Fix setting of category ?C.
15311 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
15313         * term/ns-win.el (x-select-font): defalias x-select-font to
15314         ns-popup-font-panel instead of generate-fontset-menu.
15316 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
15318         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
15320 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
15322         * arc-mode.el (archive-find-type): Allow for a PK00 string before
15323         the PK\003\004 header (Bug#3770).
15325 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
15327         * pcomplete.el (pcomplete-comint-setup): Check for
15328         shell-dynamic-complete-filename too.
15330 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
15332         * simple.el (temporary-goal-column): Change the value for
15333         line-move-visual to a cons cell.
15334         (line-move-visual): Record or set the window hscroll, if
15335         necessary (Bug#3494).
15336         (line-move-1): Handle cons value of temporary-goal-column.
15338 2009-07-11  Kenichi Handa  <handa@m17n.org>
15340         * international/mule-diag.el (describe-character-set): Don't show
15341         width.
15343 2009-07-10  Sam Steingold  <sds@gnu.org>
15345         * progmodes/compile.el (compilation-mode-font-lock-keywords):
15346         Omake sometimes indents the errors it prints, so allow all
15347         regexps to start with spaces.
15349 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
15351         * cus-edit.el (customize-changed-options-previous-release):
15352         Bump value to 22.1.  (Bug#3804)
15354 2009-07-08  Sam Steingold  <sds@gnu.org>
15356         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
15357         to be a cons cell (test . ignored-directory) to selectively ignore
15358         some directories depending on the location of the search.
15360 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
15362         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
15363         remote user is root, on the local host.
15364         (tramp-local-host-p): Either the local user or the remote user
15365         must be root.  (Bug#3771)
15367 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
15369         * progmodes/gdb-mi.el (gdb): Remove description of
15370         gdb-use-separate-io-buffer.
15371         (menu): Don't allow toggling of or enable
15372         gdb-use-separate-io-buffer from menubar.
15374 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
15376         * mail/unrmail.el (unrmail): Make sure the message ends with two
15377         newlines (Bug#3769).
15379 2009-07-08  Glenn Morris  <rgm@gnu.org>
15381         * calendar/calendar.el (calendar-current-date): Rework previous change.
15383 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
15385         * calendar/calendar.el (calendar-current-date):
15386         Add an optional argument giving an offset from today.
15388 2009-07-08  Glenn Morris  <rgm@gnu.org>
15390         * tutorial.el (tutorial--describe-nonstandard-key):
15391         Adjust the message for when a key has been unbound.
15392         (help-with-tutorial): Hide the arch-tag.
15394 2009-07-08  Kenichi Handa  <handa@m17n.org>
15396         * international/fontset.el (setup-default-fontset): For each
15397         script, append (not set) font-specs.
15399         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
15400         docstring.
15402 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
15404         * progmodes/gdb-mi.el (gdb-init-1): Move sending
15405         -data-list-register-names to ...
15406         (gdb-starting): ... here because GDB 7.0 requires execution to
15407         have started when using this MI command.
15408         (gdb-set-header): New function to distinguish select and
15409         unselected tabs in gdb buffers.
15410         (gdb-propertize-header): New macro that uses gdb-set-header.
15411         (gdb-breakpoints-header, gdb-locals-header): Use it.
15412         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
15414 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
15416         * Makefile.in (ELCFILES): Remove fadr.elc.
15418 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
15420         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
15421         may contain frame information, so `string-match' should be used.
15422         (gdb-update): Disassembly is invalidated through
15423         `gdb-get-selected-frame'.
15424         (gdb-pad-string): New function to pad string with spaces.
15425         (gdb-invalidate-disassembly): Invalidate only if the buffer
15426         exists.
15427         (gdb-disassembly-handler-custom): Column alignment.
15428         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
15429         placing new ones.
15430         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
15431         end of line, too.
15432         (gdb-frame-handler): Match convention to for disassembly buffer
15433         mode name.
15434         (gdb-stack-list-frames-handler): Rewritten without regexps.
15435         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
15436         not highlight breakpoints without line information.
15437         (gdb-input): Add trailing newline to command.
15439         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
15440         buffer properly.
15441         (gdb-breakpoints-list-handler-custom): Replacement for
15442         `gdb-break-list-handler'.  Using real parser instead of regexps
15443         now.
15444         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
15445         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
15446         to place breakpoints.
15447         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
15448         functions.
15449         (gdb-disassembly-handler-custom): Show overlay arrow.
15450         (gdb-disassembly-place-breakpoints): Show breakpoints in
15451         disassembly buffer.
15452         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
15453         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
15454         instead of parsing breakpoints buffer.  Fixed old menu references
15455         in `gud-menu-map'.
15457         * fadr.el: Remove.
15459         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
15460         (gdb-memory-address): New variable which holds top address of
15461         memory page shown in memory buffer.
15462         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
15463         customization variables.
15464         New functions:
15465         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
15466         display the memory buffer.
15467         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
15468         buffer display parameters.
15469         (def-gdb-memory-format, gdb-memory-format-binary)
15470         (gdb-memory-format-octal, gdb-memory-format-unsigned)
15471         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
15472         Functions for setting memory buffer format.
15473         (gdb-memory-unit-word, gdb-memory-unit-halfword)
15474         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
15475         unit size used in memory buffer.
15476         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
15477         to next/previous page of memory buffer.
15478         Now using (bindat-get-field) instead of fadr functions.
15480 2009-07-07  Sam Steingold  <sds@gnu.org>
15482         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
15483         non-top-level files.
15485 2009-07-07  Kenichi Handa  <handa@m17n.org>
15487         * international/mule-cmds.el (reset-language-environment): Put
15488         the highset priority to the charset iso-8859-1.
15490 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
15492         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
15493         to the end of the line when locating the block (Bug#700).
15495 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
15497         * net/tramp.el (tramp-handle-write-region): Flush file properties
15498         in case of short track.
15500 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
15502         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
15503         Coded custom representation of verilog error regular expressions
15504         to work with Emacs-22's new format.
15505         (verilog-error-regexp-xemacs-alist): Coded custom representation
15506         of verilog error regular expressions to work with XEmacs format.
15507         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
15508         error recognition into XEmacs.
15509         (verilog-error-regexp-add-emacs): Hook routine to install verilog
15510         error recognition into Emacs-22.
15512 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
15514         * woman.el: Remove stand-alone closing parentheses.
15515         (woman-file-name, woman2-format-paragraphs)
15516         (woman-leave-blank-lines): Code cleanup.
15517         (woman-use-own-frame): Change default to nil.
15518         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
15519         defaults to inherit from default faces.
15520         (woman2-process-escapes): Consume the newline after a stand-alone
15521         filler character (Bug#3651).
15523 2009-07-06  Glenn Morris  <rgm@gnu.org>
15525         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
15526         (top-level): Move provide to the end.
15527         (ffap): Remove defunct URL from custom group.
15529         * subr.el (eval-after-load): Doc fix.
15531 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
15533         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
15534         `calc-embedded-word' is called twice.
15536 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15538         * files.el (find-alternate-file-other-window, find-alternate-file):
15539         Obey confirm-nonexistent-file-or-buffer.
15541 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
15543         * dired-aux.el (dired-show-file-type): Handle remote files.
15545 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
15547         * desktop.el (desktop-globals-to-save):
15548         Add file-name-history (Bug#2750).
15550 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
15552         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
15554 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
15556         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
15557         property on entire argument since this is what eshell-lisp-command
15558         expects.
15560 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
15562         * net/tramp-gvfs.el (tramp-gvfs-methods)
15563         (tramp-gvfs-zeroconf-domain)
15564         (tramp-bluez-discover-devices-timeout): Add version flag.
15565         (tramp-gvfs-handler-mounted-unmounted)
15566         (tramp-gvfs-connection-mounted-p): Polish handling of
15567         incompatibilities between GVFS 0.2 and 1.0.
15569 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
15571         * cus-start.el (all): Add make-pointer-invisible.
15573 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
15575         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
15576         formatted correctly.
15578 2009-07-02  Juri Linkov  <juri@jurta.org>
15580         * info.el: Virtual Info files and nodes.
15581         (Info-virtual-files, Info-virtual-nodes): New variables.
15582         (Info-current-node-virtual): New variable.
15583         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
15584         New functions.
15585         (Info-file-supports-index-cookies): Use Info-virtual-file-p
15586         to check for a virtual file instead of checking a fixed list
15587         of node names.
15588         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
15589         instead of ad-hoc processing of "dir" and (apropos history toc).
15590         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
15591         instead of ad-hoc processing of "dir" and (apropos history toc).
15592         Reread a file when moving from a virtual node.
15593         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
15594         (Info-directory-toc-nodes, Info-directory-find-file)
15595         (Info-directory-find-node): New functions.
15596         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
15597         (Info-history): Move part of code to
15598         `Info-history-find-node'.
15599         (Info-history-toc-nodes, Info-history-find-file)
15600         (Info-history-find-node): New functions.
15601         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
15602         (Info-toc): Move part of code to `Info-toc-find-node'.
15603         (Info-toc-find-node): New function.
15604         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
15605         the current Info file name to references because now the node
15606         "*TOC*" belongs to the same Info manual.
15607         (Info-toc-build): Rename from `Info-build-toc'.
15608         (Info-toc-nodes): Rename input argument `file' to `filename'.
15609         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
15610         instead of ad-hoc processing of ("dir" apropos history toc).
15611         (Info-index-nodes): Use Info-virtual-file-p
15612         to check for a virtual file instead of checking a fixed list
15613         of node names.
15614         (Info-index-node): Add check for `Info-current-node-virtual'.
15615         Raise `save-match-data' higher up the tree to contain
15616         `search-forward' too (bug fix).
15617         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
15618         (Info-virtual-index-nodes): New variable.
15619         (Info-virtual-index-find-node, Info-virtual-index): New functions.
15620         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
15621         (Info-apropos-file, Info-apropos-nodes): New variables.
15622         (Info-apropos-toc-nodes, Info-apropos-find-file)
15623         (Info-apropos-find-node, Info-apropos-matches): New functions.
15624         (info-apropos): Move part of code to `Info-apropos-find-node' and
15625         `Info-apropos-matches'.
15626         (Info-mode-map): Bind "I" to `Info-virtual-index'.
15627         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
15628         for a virtual file instead of checking a fixed list of node names.
15630         * simple.el (async-shell-command): New command.
15632         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
15634         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
15635         instead of `mount-info'.
15637 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
15639         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
15640         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
15642 2009-07-02  Kenichi Handa  <handa@m17n.org>
15644         * international/mule.el (set-keyboard-coding-system): Force *-unix
15645         coding-system to avoid eol conversion.
15647 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
15649         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
15650         Add handler for `process-file', `shell-command' and
15651         `start-file-process'.
15652         (tramp-gvfs-handle-shell-command)
15653         (tramp-gvfs-handle-start-file-process)
15654         (tramp-gvfs-handle-process-file): New defuns.
15655         (tramp-synce-list-devices): Simplify check for existence of property.
15657 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
15659         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
15661 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
15663         * language/korean.el (set-language-info-alist): Add korean-cp949,
15664         cp949 to spec.
15666 2009-07-01  Kenichi Handa  <handa@m17n.org>
15668         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
15670         * international/encoded-kb.el: Deleted.
15672         * international/mule.el (set-keyboard-coding-system): Perform the
15673         necessary setup here instead of calling encoded-kbd-setup-display.
15675 2009-07-01  Glenn Morris  <rgm@gnu.org>
15677         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
15679 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
15681         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
15683 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
15685         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
15686         Handle also the 'rename case, when setting file modes.  (Bug#3712)
15687         (tramp-default-file-modes): Remove execute permissions.
15689         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
15690         (top): Add a default for "synce" in `tramp-default-user-alist'.
15691         Add completion function for "synce" method.
15692         (tramp-hal-service, tramp-hal-path-manager)
15693         (tramp-hal-interface-manager, tramp-hal-interface-device):
15694         New defconst.
15695         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
15696         (tramp-synce-list-devices, tramp-synce-parse-device-names):
15697         New defuns.
15699         * net/trampver.el: Update release number.
15701 2009-06-30  Kenichi Handa  <handa@m17n.org>
15703         * international/fontset.el (setup-default-fontset): Add CJK fonts
15704         for symbols and the other miscellaneous characters.
15706         * language/korea-util.el (setup-korean-environment-internal):
15707         Make char-width-table suitable for Korean environments.
15708         (exit-korean-environment): Cancel above.
15710         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
15711         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
15712         setup-function to make char-width-table suitable for respective
15713         environments, and an exit-function to cancel that.
15715         * language/japan-util.el (setup-japanese-environment-internal):
15716         Call use-cjk-char-width-table with arg `ja_JP'.
15718         * international/characters.el (cjk-char-width-table): Delete it.
15719         (cjk-char-width-table-list): New variable.
15720         (use-cjk-char-width-table): New arg local-name.
15721         (use-default-char-width-table): Fix for the case that Emacs is
15722         already using the default char-width-table.
15724 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
15726         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
15727         modes mandatory.  (Bug#3712)
15729 2009-06-29  Alan Mackenzie  <acm@muc.de>
15731         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
15732         correction between the visible width of TABs and their number of bytes.
15734 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
15736         * server.el (server-buffer-done): Prevent kill-buffer from
15737         prompting by clearing the buffer modification flag (Bug#3696).
15739 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
15741         * progmodes/verilog-mode.el (verilog-beg-of-statement)
15742         (verilog-endcomment-reason-re): Support unique case and priority case.
15743         (verilog-basic-complete-re): Support localparam lineup.
15744         (verilog-beg-of-statement-1): Fix for robustness, unique case.
15745         (verilog-set-auto-endcomments): Fix for unique case, always_comb
15746         commenting.
15747         (verilog-leap-to-case-head): Now support *nested* unique &
15748         priority case statements.
15749         (verilog-auto-lineup): Make just declarations the default (as it
15750         had been).
15751         (verilog-leap-to-case-head): Support priority/unique case statements.
15752         (verilog-auto-lineup): Rework to give users radio buttons to
15753         select the various styles of automatic lineup.
15754         (verilog-error-regexp-alist): Rework to support the XEmacs style
15755         of error regular expressions from compilers, lint tools &
15756         simulators.  Note that GNU Emacs has made it impossible for a mode
15757         to load such things.
15758         (electric-verilog-terminate-line, verilog-indent-declaration)
15759         (verilog-auto-wiure): Rework for radio button selection of
15760         auto-lineup selection of specification of auto lineup.
15761         (verilog-beg-of-statement-1): Redesign to support proper operation
15762         in additional code, based on testing with auto-lineup.
15763         (verilog-calculate-indent, assignments & declarations)
15764         (verilog-backward-token): Enhance to support auto-lineup of
15765         assignments & declarations.
15766         (verilog-in-directive-p, verilog-at-struct-p): New function for
15767         easy test of whether we are.
15768         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
15769         to support safe execution at almost anyline.
15770         (verilog-calc-1): Properly support indenting deep inside generate
15771         blocks.
15772         (verilog-init-font): Remove definition & use of verilog-init-font,
15773         as it is redundant with font-lock-defaults.
15774         (verilog-mode): Alter the definition of verilog-font-lock-defaults
15775         to avoid circular calls if syntax-ppss is a function (as is the
15776         case now in 22.x GNU Emacs) as that function would sometimes call
15777         itself, leading to (nearly) infinite recursion.
15778         (verilog-ovm-begin-re, verilog-ovm-end-re)
15779         (verilog-ovm-statement-re, verilog-leap-to-head)
15780         (verilog-backward-token): Add support for OVM macros.  Some are
15781         complete statements, and others open and close scopes like begin
15782         and end.
15783         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
15784         (verilog-defun-level-generate-only-re): Really fix the defun-list
15785         compilation issue.
15786         (verilog-calc-1, verilog-beg-of-statement): Enhance support for
15787         coverpoint, constraint and cross statements.
15788         (verilog-defun-level-list, verilog-generate-defun-level-list)
15789         (verilog-all-defun-level-list): Redo these specifications - it is
15790         too hard to support eval-when compile aggregation of lists also
15791         built at when-compile time.
15792         (verilog-defun-level-list): Place defconsts of variables used in
15793         building regular expressions which are built in eval-when-compile
15794         bodies in the same eval-when-compile body to facilitate compile
15795         without load.
15796         (verilog-beg-block-re-ordered): Support indenting
15797         virtual/protected tasks and functions.
15798         (verilog-defun-level-list, verilog-in-generate-region-p)
15799         (verilog-backward-ws&directives, verilog-calc-1): Speed up
15800         indentation of some module items (generate items).
15801         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
15802         across virtual/protected tasks and functions.
15804 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
15806         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
15807         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
15808         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
15809         in concatenations.  Reported by Yishay Belkind.
15810         (verilog-auto-ascii-enum): Support one-hot state machines in
15811         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
15812         (verilog-auto-inst, verilog-auto-inst-port): Include interface
15813         modport in AUTOINST and add vl-modport for users.  Reported by
15814         David Rogoff.
15815         (verilog-auto-inout-module, verilog-auto-inst)
15816         (verilog-decls-get-interfaces, verilog-insert-definition)
15817         (verilog-insert-one-definition, verilog-read-decls)
15818         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
15819         (verilog-sig-modport, verilog-signals-combine-bus)
15820         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
15821         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
15822         Suggested by David Rogoff.
15823         (verilog-repair-open-comma): Fix non-insertion of comma when
15824         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
15825         (verilog-make-width-expression): Simplify [A-1:0] expression
15826         widths to just {A{1'b0}}.
15827         (verilog-mode): Cleanup checkdoc warnings.
15828         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
15829         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
15830         inputs/outputs or data type.  Suggested by Vasu Kandadi.
15831         (next-error-last-buffer): Fix byte-compiler warning.
15832         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
15833         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
15834         or shell command text during AUTO expansion.  Suggested by Tad Truex.
15835         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
15836         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
15837         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
15838         in AUTOINOUT.  Reported by Matthew Lovell.
15839         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
15840         causing use of <= assignments.  Reported by Alex Reed.
15841         (verilog-read-decls): Fix triand, trior, wand, wor to be
15842         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
15843         (verilog-extended-complete-re): Support import "DPI-C" functions.
15844         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
15845         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
15846         (verilog-insert-date, verilog-insert-year)
15847         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
15848         Windows systems.  Reported by Michael Potts.
15849         (verilog-read-module-name): Fix AUTOINST when the child module
15850         declaration's name is a tick define.  Reported by Elliot Mednick.
15851         (verilog-read-decls): Fix V2K parameter bit subscripts getting
15852         passed to next parameter's definition.  Reported by Bruce T.
15853         (verilog-read-decls): Fix detecting "parameter int" when using
15854         AUTOINSTPARAM.  Reported by Bruce T.
15855         (verilog-goto-defun): Fix goto not finding modules unless first
15856         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
15857         (verilog-mode): Expand -f flag arguments on entry to mode so
15858         verilog-goto-defun will work.  Reported by Lawrence Butcher.
15859         (verilog-getopt): Expand environment variables in -f file
15860         arguments.  Suggested by Lawrence Butcher.
15861         (verilog-set-define): Fix "Symbol's value as variable is void"
15862         when reading enumerations.
15863         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
15864         Suggested by Stephen Peltan.
15865         (verilog-read-defines): Fix reading of enumerations in include
15866         files.  Reported by Steve Peltan.
15868 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
15870         * files.el (trash-directory): Fix defcustom type.
15872 2009-06-28  Juri Linkov  <juri@jurta.org>
15874         * help-fns.el (describe-function-1): Correctly locate adviced
15875         functions in hyperlink (Bug#2438).
15877 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
15879         * files.el (trash-directory): Change default to nil.
15880         (move-file-to-trash): If trash-directory is nil and
15881         system-move-file-to-trash is unbound, perform freedesktop-style
15882         trashing.
15884 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
15886         * files.el (move-file-to-trash): Add freedesktop trash
15887         support (Bug#973).
15889 2009-06-28  Glenn Morris  <rgm@gnu.org>
15891         * autorevert.el (global-auto-revert-non-file-buffers)
15892         (global-auto-revert-mode): Doc fixes.
15894 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
15896         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
15898 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
15900         * faces.el (x-handle-named-frame-geometry): Ensure that we have
15901         opened an X connection before calling x-get-resource (Bug#3194).
15903         * play/doctor.el: Remove reference to obsolete website.
15904         (make-doctor-variables): Correct grammar mistake (Bug#2633).
15906 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
15908         Remove find-file-not-found-hook VC method.  (Bug#2757)
15909         * vc-hooks.el (vc-file-not-found-hook)
15910         (vc-default-find-file-not-found-hook): Remove functions.
15911         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
15912         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
15913         * vc.el:
15914         * vc-hg.el:
15915         * vc-git.el: Do not mention find-file-not-found-hook VC method.
15917 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
15919         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
15920         compatibility function for `looking-back'.
15922         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
15923         Use `ispell-looking-back'.
15925 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
15927         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
15928         rather than `filename'.
15930 2009-06-23  Miles Bader  <miles@gnu.org>
15932         * face-remap.el (text-scale-set): New function.
15934 2009-06-23  Glenn Morris  <rgm@gnu.org>
15936         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
15938         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
15940         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
15942         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
15944         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
15945         Simplify Persian conditionals.
15947         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
15948         variable `filename'.
15950         * comint.el (comint-insert-input): Doc fix.
15952         * Makefile.in (ELCFILES): Fix typo in previous change.
15954 2009-06-23  Miles Bader  <miles@gnu.org>
15956         * cus-start.el: Add entry for `recenter-redisplay'.
15958 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
15960         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
15961         Add an optional argument for the backend, use it instead of
15962         calling vc-backend.
15963         (vc-mode-line): Add an optional argument for the backend.
15964         Pass the backend to vc-state and vc-working-revision.  Move code for
15965         special handling for vc-state being a buffer to ...
15967         * vc-rcs.el (vc-rcs-find-file-hook):
15968         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
15970         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
15971         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
15972         vc-stay-local-p and vc-mode-line calls.
15974         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
15975         (vc-cvs-diff, vc-cvs-annotate-command)
15976         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
15977         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
15978         vc-mode-line calls.
15980         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
15981         direct comparison.
15982         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
15983         backend when calling vc-mode-line.
15984         (vc-register): Do not create a closure for calling the vc register
15985         function, call it directly.
15987 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
15989         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
15990         to make it obvious item can be clicked.
15992         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
15994 2009-06-23  Kenichi Handa  <handa@m17n.org>
15996         * language/korea-util.el (korean-key-bindings): Change the binding
15997         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
15998         same command.
16000 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
16002         Sync with Tramp 2.1.16.
16004         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
16006         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
16007         when a loading of a package fails.  Completion function for rsync
16008         is `tramp-completion-function-alist-ssh'.
16009         (all): Replace all calls of `split-string' and
16010         `tramp-split-string' by `tramp-compat-split-string'.
16011         (tramp-default-method): Use `tramp-compat-process-running-p'.
16012         (tramp-default-proxies-alist): Allow also Lisp forms.
16013         (tramp-remote-path): Add choice "Private Directories".
16014         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
16015         (tramp-domain-regexp): Allow also "-", "_" and ".".
16016         (tramp-end-of-output): Remove newlines, and add "$" at the end.
16017         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
16018         (tramp-debug-message): Insert header line in debug buffer.
16019         (tramp-handle-directory-files-and-attributes-with-stat):
16020         Care about filenames with spaces, or starting with "-".
16021         (tramp-handle-dired-uncache): New defun.
16022         (tramp-handle-insert-directory): Don't flush the directory from
16023         cache, this is handled by `dired-uncache' now.
16024         (tramp-handle-insert-file-contents): Improve error handling.
16025         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
16026         Quote `tramp-end-of-output'.
16027         (tramp-action-password): Improve trace message.
16028         (tramp-check-for-regexp): Both echoes must be present, before removing.
16029         (tramp-open-connection-setup-interactive-shell): Trace coding system.
16030         (tramp-compute-multi-hops): Eval cons cells of
16031         `tramp-default-proxies-alist'.
16032         (tramp-maybe-open-connection): Use the same command pattern for
16033         first hop and further hops.
16034         (tramp-wait-for-output): Remove handling of newlines.
16035         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
16036         (tramp-split-string): Remove function.  It is handled in
16037         tramp-compat now.
16039         * net/tramp-cmds.el (tramp-bug):
16040         Recommend `tramp-cleanup-all-connections' in the bug mail.
16042         * net/tramp-compat.el (tramp-compat-split-string)
16043         (tramp-compat-process-running-p): New defuns.
16045         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
16046         for `dired-uncache'.
16048         * net/tramp-gvfs.el: New package.
16050         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
16051         Add handler for `dired-uncache'.
16052         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
16054         * net/trampver.el: Update release number.  Make version check fit
16055         for SXEmacs 22.
16057 2009-06-22  Jim Meyering  <meyering@redhat.com>
16059         Automatically handle .xz suffix (XZ-compressed files), too.
16060         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
16061         XZ is the successor to LZMA: <http://tukaani.org/xz/>
16063 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
16064             Nick Roberts  <nickrob@snap.net.nz>
16066         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
16067         repository (http://sphinx.net.ru/hg/gdb-mi/).
16069 2009-06-22  Glenn Morris  <rgm@gnu.org>
16071         * files.el (dir-locals-collect-mode-variables): Allow for any number of
16072         `mode' and `eval' entries.  (Bug#3430)
16074         * Makefile.in (ELCFILES): Add fadr.elc.
16076         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
16077         differing behavior of \n and ^ in strings.  (Bug#3385)
16079         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
16081         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
16082         property.
16083         (lisp-indent-function): Make it a defcustom.
16085 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
16087         * progmodes/gdb-ui.el: Replace with ...
16088         * progmodes/gdb-mi.el: ... this file.
16089         * progmodes/gud.el: Modify for gdb-mi.el.
16091 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
16093         * fadr.el: New file.
16095 See ChangeLog.14 for earlier changes.
16097 ;; Local Variables:
16098 ;; coding: utf-8
16099 ;; End:
16101     Copyright (C) 2009, 2010  Free Software Foundation, Inc.
16103   This file is part of GNU Emacs.
16105   GNU Emacs is free software: you can redistribute it and/or modify
16106   it under the terms of the GNU General Public License as published by
16107   the Free Software Foundation, either version 3 of the License, or
16108   (at your option) any later version.
16110   GNU Emacs is distributed in the hope that it will be useful,
16111   but WITHOUT ANY WARRANTY; without even the implied warranty of
16112   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16113   GNU General Public License for more details.
16115   You should have received a copy of the GNU General Public License
16116   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
16118 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1