gnus-start.el (gnus-find-new-newsgroups): Remove gnus-check-first-time-used.
[emacs.git] / lisp / ChangeLog
blobf4cb5eee9fdcf52c6c36f8f6694107a9def293f8
1 2010-10-30  Alan Mackenzie  <acm@muc.de>
3         * progmodes/cc-fonts.el (c-font-lock-enum-tail): New function
4         which fontifies the tail of an enum.
5         (c-basic-matchers-after): Insert a call to the above new function.
6         This fixes bug #7264.
8 2010-10-30  Glenn Morris  <rgm@gnu.org>
10         * cus-start.el: Add :set properties for minor modes menu-bar-mode,
11         tool-bar-mode, transient-mark-mode.  (Bug#7306)
12         Include the :set property in the dumped Emacs.
14 2010-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
16         SMIE: change indent rules format, improve smie-setup.
17         * emacs-lisp/smie.el (smie-precs-precedence-table)
18         (smie-merge-prec2s, smie-bnf-precedence-table, smie-prec2-levels):
19         Mark them pure so the tables gets built at compile time.
20         (smie-bnf-precedence-table): Store the closer-alist in the table.
21         (smie-prec2-levels): Preserve the closer-alist.
22         (smie-blink-matching-open): Be more forgiving in case of indentation.
23         (smie-hanging-p): Rename from smie-indent--hanging-p.
24         (smie-bolp): Rename from smie-indent--bolp.
25         (smie--parent, smie--after): New dynamic vars.
26         (smie-parent-p, smie-next-p, smie-prev-p): New funs.
27         (smie-indent-rules): Remove.
28         (smie-indent--offset-rule): Remove fun.
29         (smie-rules-function): New var.
30         (smie-indent--rule): New fun.
31         (smie-indent--offset, smie-indent-keyword, smie-indent-after-keyword)
32         (smie-indent-exps): Use it.
33         (smie-setup): Setup paren blinking; add keyword args for token
34         functions; extract closer-alist from op-levels.
35         (smie-indent-debug-log): Remove var.
36         (smie-indent-debug): Remove fun.
37         * progmodes/prolog.el (prolog-smie-indent-rules): Remove.
38         (prolog-smie-rules): New fun to replace it.
39         (prolog-mode-variables): Simplify.
40         * progmodes/octave-mod.el (octave-smie-closer-alist): Remove, now that
41         it's setup automatically.
42         (octave-smie-indent-rules): Remove.
43         (octave-smie-rules): New fun to replace it.
44         (octave-mode): Simplify.
46 2010-10-29  Glenn Morris  <rgm@gnu.org>
48         * files.el (temporary-file-directory): Remove (already defined in C).
49         * cus-start.el: Add temporary-file-directory.
51         * abbrev.el (abbrev-mode):
52         * composite.el (auto-composition-mode):
53         * menu-bar.el (menu-bar-mode):
54         * simple.el (transient-mark-mode):
55         * tool-bar.el (tool-bar-mode): Adjust the define-minor-mode calls so
56         that they do not define the associated variables twice.
57         * simple.el (transient-mark-mode): Remove defvar.
58         * composite.el (auto-composition-mode): Make variable auto-buffer-local.
59         * cus-start.el: Add transient-mark-mode, menu-bar-mode, tool-bar-mode.
60         Handle multiple groups, and also custom-delayed-init-variables.
61         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
63 2010-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
65         * emacs-lisp/pcase.el (pcase): New `string' and `guard' patterns.
66         (pcase-if): Add one minor optimization.
67         (pcase-split-equal): Rename from pcase-split-eq.
68         (pcase-split-member): Rename from pcase-split-memq.
69         (pcase-u1): Add strings to the member optimization.
70         Add `guard' variant of predicates.
71         (pcase-q1): Add string patterns.
73 2010-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
75         * vc/log-edit.el (log-edit-rewrite-fixes): State its safety pred.
77 2010-10-28  Glenn Morris  <rgm@gnu.org>
79         * term/ns-win.el (global-map, menu-bar-final-items, menu-bar-help-menu):
80         Move menu-bar related settings to ../menu-bar.el.
81         * menu-bar.el (global-map, menu-bar-final-items, menu-bar-help-menu):
82         Move ns-specific settings here from term/ns-win.el.
84         * simple.el (x-selection-owner-p): Remove unused declaration.
86 2010-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
88         * minibuffer.el (completion-cycling): New var (bug#7266).
89         (minibuffer-complete, completion--do-completion):
90         Use completion--flush-all-sorted-completions.
91         (minibuffer-complete): Only cycle if completion-cycling is set.
92         (completion--flush-all-sorted-completions): Unset completion-cycling.
93         (minibuffer-force-complete): Set completion-cycling.
94         (completion-all-sorted-completions): Move declaration before first use.
96 2010-10-28  Leo  <sdl.web@gmail.com>
98         * iswitchb.el (iswitchb-kill-buffer): Avoid `iswitchb-make-buflist'
99         which changes the order of matches seen by users (bug#7231).
101 2010-10-28  Jes Bodi Klinke  <jes@bodi-klinke.dk>  (tiny change)
103         * progmodes/compile.el (compilation-mode-font-lock-keywords):
104         Don't confuse -omega as "-o mega".
106 2010-10-27  Stefan Monnier  <monnier@iro.umontreal.ca>
108         * vc/log-edit.el (log-edit-rewrite-fixes): New var.
109         (log-edit-author): New dynamic var.
110         (log-edit-changelog-ours-p, log-edit-insert-changelog-entries): Use it
111         to return the author if different from committer.
112         (log-edit-insert-changelog): Use them to add Author: and Fixes headers.
114         * play/landmark.el: Adjust commenting convention.
115         (lm-nil-score): Rename from nil-score.
116         (Xscore, XXscore, XXXscore, XXXXscore, Oscore, OOscore, OOOscore)
117         (OOOOscore): Move into a let in lm-score-trans-table.
118         (lm-winning-threshold, lm-loosing-threshold): Use lm-score-trans-table.
120         * electric.el (electric-indent-chars): Autoload.
121         * progmodes/octave-mod.el (octave-mode):
122         * progmodes/ruby-mode.el (ruby-mode): Take advantage of it.
123         (ruby-mode-abbrev-table): Merge initialization and declaration.
125 2010-10-27  Glenn Morris  <rgm@gnu.org>
127         * abbrev.el (abbrev-mode): Remove one of the three definitions of this
128         variable.
130         * server.el (server-host, server-port, server-auth-dir): Autoload risky.
132         * term/ns-win.el: Restore require of cl when compiling.
133         (menu-bar-final-items): Remove non-existent `windows' menu.
134         (ns-handle-nxopen): Optionally handle the temp-case.
135         (ns-handle-nxopentemp): Just call ns-handle-nxopen.
136         (ns-insert-file, ns-find-file): Use `pop'.
138 2010-10-26  Glenn Morris  <rgm@gnu.org>
140         * term/common-win.el (xw-defined-colors): Simplify the 'ns case.
142 2010-10-26  Adrian Robert  <Adrian.B.Robert@gmail.com>
144         * term/ns-win.el (ns-new-frame, ns-show-prefs): Don't add to
145         global map.
146         * term/common-win.el (x-setup-function-keys): Remove most of the
147         keymappings.  Comment on the remaining ones.
149 2010-10-26  Peter Oliver  <p.d.oliver@mavit.org.uk>  (tiny change)
151         * server.el (server-port): New option.  (Bug#854)
152         (server-start): Use server-port.
154 2010-10-26  Glenn Morris  <rgm@gnu.org>
156         * term/ns-win.el (ns-version-string): Remove unused declaration.
157         (ns-invocation-args): Change to x-invocation-args.
158         (ns-handle-switch, ns-handle-numeric-switch, ns-handle-iconic)
159         (ns-handle-name-switch, ns-ignore-2-arg): Remove.
160         (ns-handle-nxopen, ns-handle-nxopentemp, ns-ignore-1-arg):
161         Use x-invocation-args instead of ns-invocation-args.
162         (ns-initialize-window-system, handle-args-function-alist):
163         Use x-handle-args instead of ns-handle-args.
164         * term/common-win.el (x-handle-args): Also handle nextstep arguments.
165         * startup.el (command-line-ns-option-alist): Replace
166         ns-handle-name-switch, ns-handle-switch, ns-handle-numeric-switch,
167         ns-handle-iconic with the x- equivalents.
169         * term/common-win.el (x-select-enable-clipboard):
170         * term/pc-win.el (x-select-enable-clipboard): Doc fix.
172         * term/ns-win.el: No need to require cl when compiling.
173         (x-display-name, x-setup-function-keys, x-select-text, x-colors)
174         (xw-defined-colors): Use the common-win definitions.
175         (ns-alternatives-map): Make it an obsolete alias for x-alternatives-map.
176         (ns-handle-iconic): Make it an alias for x-handle-iconic.
177         * term/common-win.el (x-select-text, x-alternatives-map)
178         (x-setup-function-keys, x-colors, xw-defined-colors): Handle 'ns case.
179         * loadup.el [ns]: Load common-win.
181 2010-10-26  Daiki Ueno  <ueno@unixuser.org>
183         * epa-mail.el (epa-mail-encrypt): Handle local-part only
184         recipients; expand mail aliases (Bug#7280).
186 2010-10-25  Glenn Morris  <rgm@gnu.org>
188         * term/common-win.el (x-handle-switch): Simplify with pop.
189         Optionally handle numeric switches.
190         (x-handle-numeric-switch): Just call x-handle-switch.
191         (x-handle-initial-switch, x-handle-xrm-switch, x-handle-geometry)
192         (x-handle-name-switch, x-handle-display, x-handle-args):
193         Simplify with pop.
195         * term/ns-win.el: Do not require easymenu.
196         (menu-bar-edit-menu) <copy, paste, paste-from-menu, separator-undo>:
197         <spell>: Move adjustments to menu-bar.el.
198         * menu-bar.el (menu-bar-edit-menu) <copy, paste, paste-from-menu>:
199         <separator-undo, spell>: Move ns-win's adjustments here.
200         * loadup.el [ns]: Do not load easymenu.
202 2010-10-24  Chong Yidong  <cyd@stupidchicken.com>
204         * image.el (image-checkbox-checked, image-checkbox-unchecked):
205         Delete (Bug#7222).
207         * startup.el (fancy-startup-tail): Instead of using inline images,
208         refer to image files from etc/.
210         * wid-edit.el (checkbox): Likewise.
211         (widget-image-find): Center image specs.
213 2010-10-24  Glenn Morris  <rgm@gnu.org>
215         * term/ns-win.el (x-select-text): Doc fix.
216         * w32-fns.el (x-alternatives-map, x-setup-function-keys)
217         (x-select-text): Move to term/common-win.
218         * term/w32-win.el (xw-defined-colors): Move to common-win.
219         * term/x-win.el (xw-defined-colors, x-alternatives-map)
220         (x-setup-function-keys, x-select-text): Move to common-win.
221         * term/common-win.el (x-select-text, x-alternatives-map)
222         (x-setup-function-keys, xw-defined-colors): Merge x- and w32-
223         definitions here.
225 2010-10-24  T.V. Raman  <tv.raman.tv@gmail.com>  (tiny change)
227         * net/mairix.el (mairix-searches-mode-map):
228         * mail/mspools.el (mspools-mode-map): Fix 2010-10-10 change.
230 2010-10-24  Michael McNamara  <mac@mail.brushroad.com>
232         * verilog-mode.el (verilog-directive-re): Make this variable
233         auto-built for efficiency of execution and updating.
234         (verilog-extended-complete-re): Support 'pure' fucntion & task
235         declarations (these have no bodies).
236         (verilog-beg-of-statement): general cleanup to enable support of
237         'pure' fucntion & task declarations (these have no bodies).  These
238         efforts together fix Verilog bug210 from veripool; which was also
239         noticed by Steve Pearlmutter.
240         (verilog-directive-re, verilog-directive-begin, verilog-indent-re)
241         (verilog-directive-nest-re, verilog-set-auto-endcomments): Support
242         `elsif.  Reported by Shankar Giri.
243         (verilog-forward-ws&directives, verilog-in-attribute-p): Fixes for
244         attribute handling for lining up declarations and assignments.
245         (verilog-beg-of-statement-1): Fix issue where continued declaration
246         is indented differently if it is after a begin..end clock.
247         (verilog-in-attribute-p, verilog-skip-backward-comments)
248         (verilog-skip-forward-comment-p): Support proper treatment of
249         attributes by indent code. Reported by Jeff Steele.
250         (verilog-in-directive-p): Fix comment to correctly describe
251         function.
252         (verilog-backward-up-list, verilog-in-struct-region-p)
253         (verilog-backward-token, verilog-in-struct-p)
254         (verilog-in-coverage-p, verilog-do-indent)
255         (verilog-pretty-declarations): Use verilog-backward-up-list as
256         wrapper around backward-up-list inorder to properly skip comments.
257         Reported by David Rogoff.
258         (verilog-property-re, verilog-endcomment-reason-re)
259         (verilog-beg-of-statement, verilog-set-auto-endcomments)
260         (verilog-calc-1 ): Fix for assert a; else b; indentation (new form
261         of if). Reported by Max Bjurling and
262         (verilog-calc-1): Fix for clocking block in modport
263         declaration. Reported by Brian Hunter.
265 2010-10-24  Wilson Snyder  <wsnyder@wsnyder.org>
267         * verilog-mode.el (verilog-auto-inst, verilog-gate-ios)
268         (verilog-gate-keywords, verilog-read-sub-decls)
269         (verilog-read-sub-decls-gate, verilog-read-sub-decls-gate-ios)
270         (verilog-read-sub-decls-line, verilog-read-sub-decls-sig): Support
271         AUTOINST for gate primitives, bug284.  Reported by Mark Johnson.
272         (verilog-read-decls): Fix spaces in V2K module parameters causing
273         mis-identification as interfaces, bug287.
274         (verilog-read-decls): Fix not treating "parameter string" as a
275         parameter in AUTOINSTPARAM.
276         (verilog-read-always-signals-recurse, verilog-read-decls): Fix not
277         treating `elsif similar to `endif inside AUTOSENSE.
278         (verilog-do-indent): Implement correct automatic or static task or
279         function end comment highlight. Reported by Steve Pearlmutter.
280         (verilog-font-lock-keywords-2): Fix highlighting of single
281         character pins, bug264.  Reported by Michael Laajanen.
282         (verilog-auto-inst, verilog-read-decls, verilog-read-sub-decls)
283         (verilog-read-sub-decls-in-interfaced, verilog-read-sub-decls-sig)
284         (verilog-subdecls-get-interfaced, verilog-subdecls-new): Support
285         interfaces with AUTOINST, bug270.  Reported by Luis Gutierrez.
286         (verilog-pretty-expr): Fix interactive arguments, bug272. Reported
287         by Mark Johnson.
288         (verilog-auto-tieoff, verilog-auto-tieoff-ignore-regexp): Add
289         'verilog-auto-tieoff-ignore-regexp' for AUTOTIEOFF,
290         bug269. Suggested by Gary Delp.
291         (verilog-mode-map, verilog-preprocess, verilog-preprocess-history)
292         (verilog-preprocessor, verilog-set-compile-command): Create
293         verilog-preprocess and verilog-preprocessor to show preprocessed
294         output.
295         (verilog-get-beg-of-line, verilog-get-end-of-line)
296         (verilog-modi-file-or-buffer, verilog-modi-name)
297         (verilog-modi-point, verilog-within-string): Move defmacro's
298         before first use to avoid warning. Reported by Steve Pearlmutter.
299         (verilog-colorize-buffer, verilog-colorize-include-files-buffer)
300         (verilog-colorize-region, verilog-highlight-buffer)
301         (verilog-highlight-includes, verilog-highlight-modules)
302         (verilog-highlight-region, verilog-mode): Rename colorize to
303         highlight to match other packages.  Disable module highlighting,
304         as received speed complaints, reenable for experimentation only
305         using new verilog-highlight-modules.
306         (verilog-read-decls): Fix regexp stack overflow in very large
307         AUTO_TEMPLATEs, bug250.
308         (verilog-auto, verilog-delete-auto, verilog-save-buffer-state)
309         (verilog-scan): Create verilog-save-buffer-state to standardize
310         making insignificant changes that shouldn't call hooks.
311         (verilog-save-no-change-functions, verilog-save-scan-cache)
312         (verilog-scan, verilog-scan-cache-ok-p, verilog-scan-region):
313         Create verilog-save-no-change-functions to wrap verilog-scan
314         preservation, and fix to work with nested preserved calls.
315         (verilog-auto-inst, verilog-auto-inst-dot-name): Support .name
316         port syntax for AUTOWIRE, and with new verilog-auto-inst-dot-name
317         generate .name with AUTOINST, bug245.  Suggested by David Rogoff.
318         (verilog-submit-bug-report): Update variable list to be complete.
319         (verilog-auto, verilog-colorize-region): Fix AUTO expansion
320         breaking on-the-fly font-locking.
321         (verilog-colorize-buffer, verilog-colorize-include-files)
322         (verilog-colorize-include-files-buffer, verilog-colorize-region)
323         (verilog-load-file-at-mouse, verilog-load-file-at-point)
324         (verilog-mode, verilog-read-inst-module-matcher): With point on a
325         AUTOINST cell instance name, middle mouse button now finds-file on
326         it.  Suggested by Brad Dobbie.
327         (verilog-alw-get-temps, verilog-auto-reset)
328         (verilog-auto-sense-sigs, verilog-read-always-signals)
329         (verilog-read-always-signals-recurse): Fix loop indexes being
330         AUTORESET. AUTORESET now assumes any variables in the
331         initialization section of a for() should be ignored.  Reported by
332         Dan Dever.
333         (verilog-error-font-lock-keywords)
334         (verilog-error-regexp-emacs-alist)
335         (verilog-error-regexp-xemacs-alist): Fix error detection of
336         Cadence HAL, reported by David Asher.  Repair drift between the
337         three similar error variables.
338         (verilog-modi-lookup, verilog-modi-lookup-cache)
339         (verilog-modi-lookup-last-current, verilog-modi-lookup-last-mod)
340         (verilog-modi-lookup-last-modi, verilog-modi-lookup-last-tick):
341         Fix slow verilog-auto expansion on very large files.
342         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line): Fix
343         AUTOOUTPUT treating "1*2" as a signal name in submodule connection
344         "{1*2{...".  Broke in last revision.
345         (verilog-read-sub-decls-expr): Fix AUTOOUTPUT not detecting
346         submodule connections with replications "{#{a},#{b}}".
348 2010-10-24  Juanma Barranquero  <lekktu@gmail.com>
350         * progmodes/dcl-mode.el (dcl-electric-reindent-regexps):
351         Fix typo in docstring.
353 2010-10-24  Kenichi Handa  <handa@m17n.org>
355         * face-remap.el (text-scale-adjust): Call read-event with a proper
356         prompt.
358 2010-10-24  Chong Yidong  <cyd@stupidchicken.com>
360         * emacs-lisp/unsafep.el: Don't mark functions that display
361         messages as safe.  Suggested by Johan Bockgård.
363 2010-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
365         * emacs-lisp/regexp-opt.el (regexp-opt-group, regexp-opt-charset):
366         Turn comments into docstrings.
368         * minibuffer.el (completion--replace): Move point where it belongs
369         when there's a common suffix (bug#7215).
371 2010-10-24  Chong Yidong  <cyd@stupidchicken.com>
373         Merge read-color and facemenu-read-color (Bug#7242).
375         * faces.el (read-color): Use the completion code from
376         facemenu-read-color.  Require match in completion.  Doc fix.
378         * facemenu.el (facemenu-read-color): Alias for read-color.
379         (facemenu-set-foreground, facemenu-set-background): Use
380         read-color.
382         * frame.el (set-background-color, set-foreground-color)
383         (set-cursor-color, set-mouse-color, set-border-color): Use
384         read-color.
386 2010-10-24  Leo  <sdl.web@gmail.com>
388         * eshell/em-unix.el (eshell-remove-entries): Use the TRASH
389         argument of delete-file and delete-directory (Bug#7011).
391 2010-10-24  Chong Yidong  <cyd@stupidchicken.com>
393         * emacs-lisp/package.el (package-menu-mode-map): Inherit from
394         button-buffer-map.
396 2010-10-24  Ralf Angeli  <angeli@caeruleus.net>
398         * emacs-lisp/package.el (package--generate-package-list): Make the
399         *Packages* buffer read-only.
401 2010-10-24  Alan Mackenzie  <acm@muc.de>
403         * progmodes/cc-fonts.el (c-font-lock-declarations): Cache the
404         result of `c-beginning-of-decl-1' between invocations of a lambda
405         function (Bug #7265).
407 2010-10-24  Daiki Ueno  <ueno@unixuser.org>
409         * epg-config.el (epg-gpg-program): Try to use "gpg2" if "gpg"
410         executable is not available on the system (Bug#7268).
412 2010-10-24  Glenn Morris  <rgm@gnu.org>
414         * select.el (selection-coding-system, next-selection-coding-system):
415         Sync doc with C versions.
417         * w32-vars.el (x-select-enable-clipboard):
418         * term/x-win.el (x-select-enable-clipboard): Move to common-win.
419         * term/common-win.el (x-select-enable-clipboard): Move here.
421         * term/tty-colors.el (tty-defined-color-alist): Remove duplicate
422         definition of C variable.
424         * frame.el (show-trailing-whitespace, auto-hscroll-mode)
425         (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
426         Don't redefine things that are defined in C.
427         * cus-start.el: Also handle :risky, :safe, :set, and :tag.
428         (show-trailing-whitespace, auto-hscroll-mode)
429         (display-hourglass, hourglass-delay, cursor-in-non-selected-windows):
430         Set up the appropriate custom properties.
432 2010-10-24  Chong Yidong  <cyd@stupidchicken.com>
434         Bind "C-c ]" to ...
435         * progmodes/f90.el (f90-mode-map): ... f90-insert-end.
436         * nxml/nxml-mode.el (nxml-mode-map): ... nxml-finish-element.
437         * textmodes/tex-mode.el (tex-mode-map): ... latex-close-block.
438         * textmodes/sgml-mode.el (sgml-mode-map): ... sgml-close-tag.
440 2010-10-23  Glenn Morris  <rgm@gnu.org>
442         * textmodes/flyspell.el (flyspell-mode): If there was an error,
443         say what it was.
445         * frame.el (auto-hscroll-mode, cursor-in-non-selected-windows):
446         Sync docs with C version.
448         * term/ns-win.el (xw-defined-colors):
449         * term/x-win.el (xw-defined-colors): Make docs identical to w32-win.
451         * term/pc-win.el (x-select-enable-clipboard):
452         * term/x-win.el (x-select-enable-clipboard):
453         * w32-vars.el (x-select-enable-clipboard): Make doc-strings identical.
455         * comint.el (comint-password-prompt-regexp): Make it less vague.
456         Bump version.
458         * help-fns.el (doc-file-to-man, doc-file-to-info): New commands.
460         * help.el (finder-by-keyword): Remove unnecessary autoload.
462 2010-10-22  Glenn Morris  <rgm@gnu.org>
464         * loadup.el: Unconditionally load float-sup.
465         * paren.el (show-paren-delay):
466         * emacs-lisp/float-sup.el:
467         * emulation/cua-base.el (cua-prefix-override-inhibit-delay):
468         * obsolete/lazy-lock.el (lazy-lock-defer-time, lazy-lock-stealth-nice)
469         (lazy-lock-stealth-verbose): Assume float support.
470         * ps-print.el: Assume float support on Emacs.
471         * emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
472         Remove non-float branch.
474         * emacs-lisp/autoload.el (batch-update-autoloads): Update for
475         src/Makefile no longer being pre-processed.
477 2010-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
479         * emacs-lisp/find-func.el (find-library): Use test-completion.
481 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
483         * newcomment.el (comment-dwim): Fix the intentation in the doc string.
485 010-10-21  Michael Albinus  <michael.albinus@gmx.de>
487         * net/tramp-sh.el (tramp-do-file-attributes-with-stat): Do not use
488         space in stat format string.
489         (tramp-send-command): Unset $PS1 when using here documents, in
490         order not to get several prompts.
491         (tramp-get-inline-coding): Return `nil' in case of errors.
493 2010-10-21  Daiki Ueno  <ueno@unixuser.org>
495         * hexl.el (hexl-mode, hexl-mode-exit):
496         Tweak revert-buffer-function to inhibit auto-mode-alist (Bug#7252).
497         (hexl-revert-buffer-function): New function.
498         (hexl-before-revert-hook, hexl-after-revert-hook): Abolish.
500 2010-10-19  Alan Mackenzie  <acm@muc.de>
502         * progmodes/cc-langs.el (c-type-decl-prefix-key): C++ bit:
503         Move "\(const\|throw\|volatile\)\>" nearer the start of the regexp, so
504         that these keywords aren't wrongly matched as identifiers.
506         * progmodes/cc-mode.el (c-before-change, c-after-change): Move the
507         setting of c-new-BEG and c-new-END from c-before-change to
508         c-after-change.  (Bug#7181)
510 2010-10-19  Chong Yidong  <cyd@stupidchicken.com>
512         * cus-face.el (custom-theme-set-faces): Revert 2010-10-18 change.
513         Don't mark as safe.
515         * custom.el (custom-theme-set-variables): Likewise.
516         (load-theme): Add custom-theme-set-faces and
517         custom-theme-set-variables to safe-functions while loading.
518         (custom-enabled-themes): Mark as risky.
520 2010-10-18  Julien Danjou  <julien@danjou.info>
522         * bindings.el: Remove end dashes in default mode-line-format.
524 2010-10-19  Chong Yidong  <cyd@stupidchicken.com>
526         * bindings.el (global-map): Bind C-d to delete-char and deletechar
527         to delete-forward-char.
529         * simple.el (normal-erase-is-backspace-mode): Remap delete to
530         deletechar, and hence delete-forward-char.
532 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
534         * repeat.el (repeat): Use read-key (bug#6256).
536 2010-10-19  Chong Yidong  <cyd@stupidchicken.com>
538         * emacs-lisp/unsafep.el: Don't mark functions that display
539         messages as safe.  Suggested by Johan Bockgård.
541 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
543         * minibuffer.el (completion--replace): Move point where it belongs
544         when there's a common suffix (bug#7215).
546 2010-10-19  Kenichi Handa  <handa@m17n.org>
548         * international/characters.el: Add category '|' (word breakable)
549         to fullwidth characters.
551 2010-10-19  Michael Albinus  <michael.albinus@gmx.de>
553         * net/tramp-sh.el (tramp-do-file-attributes-with-stat)
554         (tramp-do-directory-files-and-attributes-with-stat): Use "e0" in
555         order to make stat results a float.  Patch by Andreas Schwab
556         <schwab@linux-m68k.org>.
558 2010-10-18  Julien Danjou  <julien@danjou.info>
560         * avoid.el (mouse-avoidance-ignore-p): Ignore mouse when it is
561         hidden by `make-pointer-invisible'.
563 2010-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
565         * files.el (locate-file-completion-table): Strip non-matching elements
566         before checking length of list (bug#7238).
568 2010-10-18  Chong Yidong  <cyd@stupidchicken.com>
570         * custom.el (custom-theme-set-variables): Mark as a safe function.
571         (load-theme): Check forms using unsafep.
573         * cus-face.el (custom-theme-set-faces): Mark as a safe function.
575 2010-10-17  Agustín Martín  <agustin.martin@hispalinux.es>
577         * textmodes/ispell.el (ispell-aspell-find-dictionary):
578         Fix aspell data file searching (bug#7230).
580 2010-10-16  Chong Yidong  <cyd@stupidchicken.com>
582         * cus-theme.el (custom-theme--migrate-settings): New var.
583         (customize-create-theme): Allow editing the `user' theme.
584         (custom-theme-add-variable, custom-theme-add-var-1)
585         (custom-theme-add-face, custom-theme-add-face-1): Add a checkbox
586         to the front of each variable or face widget.
587         (custom-theme-write): Save theme settings in the correct order.
588         Optionally, remove saved settings from user customizations.
589         (custom-theme-write-variables, custom-theme-write-faces):
590         Save only the checked widgets.
591         (customize-themes): Add a link for migrating custom settings.
593         * custom.el (custom-declare-theme, provide-theme):
594         Use custom-theme-name-valid-p.
595         (custom-theme-name-valid-p): Remove checks that are now
596         unnecessary since themes no longer obey load-path.
598         * cus-edit.el (custom-variable-value-create): For the simple
599         style, hide documentation string when hidden.
601 2010-10-16  Chong Yidong  <cyd@stupidchicken.com>
603         * cus-edit.el (custom-variable, custom-face): Combine the
604         :inhibit-magic and :display-style properties into a single
605         :custom-style property.
606         (custom-toggle-hide-variable, custom-toggle-hide-face):
607         New functions.  If hiding an edited value, save it to :shown-value.
608         (custom-variable-value-create, custom-face-value-create): Use them.
609         (custom-magic-reset): Allow magic property to be unset.
611         * custom.el: Custom themes no longer use load-path.
612         (custom-theme-load-path): New option.  Change built-in theme
613         directory to etc/.
614         (custom-enabled-themes): Add custom-theme-load-path dependency.
615         (custom-theme--load-path): New function.
616         (load-theme, custom-available-themes): Use it.
618         * cus-theme.el (describe-theme-1): Use custom-theme--load-path.
619         (customize-themes): Link to custom-theme-load-path variable.
620         (custom-theme-add-var-1, custom-theme-add-face-1): Use the
621         :custom-style property.
623         * themes/*.el: Moved to etc/.
625 2010-10-16  Ralf Angeli  <angeli@caeruleus.net>
627         * textmodes/reftex-cite.el
628         (reftex-extract-bib-entries-from-thebibliography): Do not move
629         point when searching for \bibitem entries.  Match entries with
630         spaces or tabs in front of arguments.
632 2010-10-16  Chong Yidong  <cyd@stupidchicken.com>
634         * cus-theme.el (customize-create-theme): Delete overlays after
635         erasing.  If given a THEME arg, display only the faces of that arg
636         instead of custom-theme--listed-faces.
637         (custom-theme-variable-menu, custom-theme-variable-action)
638         (custom-variable-reset-theme, custom-theme-delete-variable): Delete.
639         (custom-theme-add-variable, custom-theme-add-face): Apply value
640         from the theme settings, instead of the current value.
641         (custom-theme-add-var-1, custom-theme-add-face-1): New functions.
642         (custom-theme-visit-theme): Allow calling outside theme buffers.
643         (custom-theme-merge-theme): Don't enable the theme when merging.
644         (custom-theme-write-variables, custom-theme-write-faces): Use the
645         :shown-value properties to save buffer values, not global ones.
646         (customize-themes): Display a warning about user customizations.
648         * cus-edit.el (custom-variable-value-create)
649         (custom-face-value-create): Obey new special properties
650         :shown-value and :inhibit-magic.
652 2010-10-15  Michael Albinus  <michael.albinus@gmx.de>
654         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
655         Suppress expansion of tabs to spaces.  Reported by Dale Sedivec
656         <dale@codefu.org>.
658 2010-10-14  Kenichi Handa  <handa@m17n.org>
660         * mail/rmail.el (rmail-show-message-1): Catch an error of
661         base64-decode-region and just show an error message (bug#7165).
663         * ps-mule.el (ps-mule-font-spec-list): Delete it.  Not used anymore.
664         (ps-mule-begin-job): Fix for the case that only ENCODING is set in
665         a font-spec (bug#7197).
667 2010-10-14  Glenn Morris  <rgm@gnu.org>
669         * mail/emacsbug.el (report-emacs-bug): Mention debbugs.gnu.org.
671 2010-10-14  Juanma Barranquero  <lekktu@gmail.com>
673         * international/mule.el (define-coding-system):
674         * international/titdic-cnv.el (quail-cxterm-package-ext-info):
675         * composite.el (compose-region): Fix typo in docstring.
677 2010-10-14  Chong Yidong  <cyd@stupidchicken.com>
679         * cus-face.el (custom-theme-set-faces): Call custom-push-theme
680         only after checking the theme-face property.
682         * faces.el (face-spec-reset-face): Reset all attributes in one
683         single call to set-face-attribute.
684         (face-spec-match-p): Make it a defsubst.
685         (frame-set-background-mode): New arg KEEP-FACE-SPECS.
686         (x-create-frame-with-faces, tty-create-frame-with-faces)
687         (tty-set-up-initial-frame-faces): Don't recompute face specs in
688         frame-set-background-mode, since they are recomputed immediately
689         afterwards in face-set-after-frame-default.
690         (face-set-after-frame-default): Minor optimization.
691         (cursor): Provide non-trivial defface spec.
693         * custom.el (custom-theme-recalc-face): Simplify.
695 2010-10-14  Jay Belanger  <jay.p.belanger@gmail.com>
697         * calc/calc-alg.el (math-var): Rename from `var'.
698         (math-is-polynomial, math-is-poly-rec): Replace `var'
699         with `math-var'.
701         * calc/calcalg2.el (math-var): Rename from `var'.
702         (calcFunc-table, math-scan-for-limits): Replace `var'
703         with `math-var'.
705 2010-10-13  Glenn Morris  <rgm@gnu.org>
707         * subr.el (last): Deal with dotted lists (reported in bug#7174).
709 2010-10-13  Stephen Berman  <stephen.berman@gmx.net>
711         * subr.el (last): Use `safe-length' instead of `length' (bug#7206).
713 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
715         * net/tls.el (tls-program): Remove spurious %s from openssl.
716         (tls-starttls-switches): Remove starttls hack.
717         (open-tls-stream): Ditto.
718         (tls-find-starttls-argument): Ditto.
720 2010-10-13  Juanma Barranquero  <lekktu@gmail.com>
722         * image.el (image-library-alist): Declare as obsolete alias.
723         (image-type-available-p): Use `dynamic-library-alist'.
725         * term/w32-win.el (dynamic-library-alist):
726         Use instead of `image-library-alist'.
728 2010-10-13  IRIE Shinsuke  <irieshinsuke@yahoo.co.jp>  (tiny change)
730         * subr.el (last): Make it faster.  (Bug#7174)
732 2010-10-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>  (tiny change)
734         * Makefile.in (compile-clean): Use `` instead of $().  (Bug#7178)
736 2010-10-12  Chong Yidong  <cyd@stupidchicken.com>
738         * cus-theme.el (custom-theme--listed-faces): Add cursor face.
739         (describe-theme-1): Extract doc from unloaded themes.
741         * custom.el (custom-theme-name-valid-p): Don't list color-themes.
743         * themes/tango-theme.el:
744         * themes/tango-dark-theme.el:
745         * themes/wheatgrass-theme.el: New files.
747 2010-10-12  Chong Yidong  <cyd@stupidchicken.com>
749         * cus-theme.el (describe-theme, customize-themes)
750         (custom-theme-save): New commands.
751         (custom-new-theme-mode-map): Bind C-x C-s.
752         (custom-new-theme-mode): Use custom--initialize-widget-variables.
753         (customize-create-theme): New optional arg THEME.
754         (custom-theme-revert): Use it.
755         (custom-theme-visit-theme): Remove dead code.
756         (custom-theme-merge-theme): Use custom-available-themes.
757         (custom-theme-write): Make interactive.
758         (custom-theme-write): Use custom-theme-name-valid-p.
759         (describe-theme-1, custom-theme-choose-revert)
760         (custom-theme-checkbox-toggle, custom-theme-selections-toggle):
761         New funs.
762         (custom-theme-allow-multiple-selections): New option.
763         (custom-theme-choose-mode): New major mode.
765         * custom.el (custom-theme-set-variables): Remove dead code.
766         Obey custom--inhibit-theme-enable.
767         (custom--inhibit-theme-enable): New var.
768         (provide-theme): Obey it.
769         (load-theme): Replace load with manual read/eval, in order to
770         check for correctness.  Use custom-theme-name-valid-p.
771         (custom-theme-name-valid-p): New function.
772         (custom-available-themes): Use it.
774         * cus-edit.el (custom--initialize-widget-variables): New function.
775         (Custom-mode): Use it.
777         * cus-face.el (custom-theme-set-faces): Remove dead code.
778         Obey custom--inhibit-theme-enable.
780         * help-mode.el (help-theme-def, help-theme-edit): New buttons.
782 2010-10-12  Juanma Barranquero  <lekktu@gmail.com>
784         * net/telnet.el (telnet-mode-map): Fix previous change (bug#7193).
786 2010-10-12  Jan Djärv  <jan.h.d@swipnet.se>
788         * term/ns-win.el (ns-right-alternate-modifier): New defvar.
789         (ns-right-option-modifier): New alias for ns-right-alternate-modifier.
790         (mac-right-option-modifier): New alias for ns-right-option-modifier.
792         * cus-start.el (all): ns-right-alternate-modifier is new.
794 2010-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
796         * emacs-lisp/lisp.el (lisp-completion-at-point):
797         Use emacs-lisp-mode-syntax-table for the whole function.
799 2010-10-12  David Koppelman  <koppel@ece.lsu.edu>
801         * hi-lock.el (hi-lock-font-lock-hook): Check font-lock-fontified
802         instead of font-lock-mode before adding keywords.
803         Remove hi-lock-mode off code.  Remove inhibit hack.
804         (hi-lock-set-pattern): Only add keywords if font-lock-fontified
805         non-nil; removed hook inhibit hack.
807 2010-10-12  Glenn Morris  <rgm@gnu.org>
809         * emacs-lisp/shadow.el (find-emacs-lisp-shadows): Rename it...
810         (load-path-shadows-find): ... to this.
811         (list-load-path-shadows): Update for above change.
813         * mail/mail-utils.el (mail-mbox-from): Also try return-path.
815 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
817         * mail/hashcash.el, net/imap.el, pgg-parse.el, pgg.el:
818         Fix comment for declare-function.
820 2010-10-11  Chong Yidong  <cyd@stupidchicken.com>
822         * custom.el (custom-fix-face-spec): New function; code moved from
823         custom-face-edit-fix-value.
824         (custom-push-theme): Use it when checking if a face has been
825         changed outside customize.
826         (custom-available-themes): New function.
827         (load-theme): Use it.
829         * cus-edit.el (custom-face-edit-fix-value): Use custom-fix-face-spec.
831         * custom.el (custom-push-theme): Cleanup (use cond).
832         (disable-theme): Recompute the saved-face property.
833         (custom-theme-recalc-face): Follow face alias before setting prop.
835         * image.el (image-checkbox-checked, image-checkbox-unchecked):
836         New variables, containing checkbox images.
838         * startup.el (fancy-startup-tail):
839         * wid-edit.el (checkbox): Use them.
841 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
843         * shell.el (shell-mode-map):
844         * progmodes/modula2.el (m2-mode-map):
845         * progmodes/inf-lisp.el (inferior-lisp-mode-map):
846         * play/mpuz.el (mpuz-mode-map):
847         * play/landmark.el (lm-mode-map):
848         * play/decipher.el (decipher-mode-map):
849         * play/5x5.el (5x5-mode-map):
850         * net/telnet.el (telnet-mode-map):
851         * net/quickurl.el (quickurl-list-mode-map):
852         * net/mairix.el (mairix-searches-mode-map):
853         * net/eudc-hotlist.el (eudc-hotlist-mode-map):
854         * net/dig.el (dig-mode-map):
855         * mail/mspools.el (mspools-mode-map):
856         * hexl.el (hexl-mode-map):
857         * emulation/ws-mode.el (wordstar-C-k-map, wordstar-mode-map)
858         (wordstar-C-o-map, wordstar-C-q-map):
859         * emacs-lisp/edebug.el (edebug-eval-mode-map):
860         * emacs-lisp/chart.el (chart-map):
861         * edmacro.el (edmacro-mode-map):
862         * erc/erc-list.el (erc-list-menu-mode-map):
863         * array.el (array-mode-map): Declare and define in one step.
865         * vc/log-view.el (log-view-mode-map): Bind revert-buffer.
867 2010-10-10  Daiki Ueno  <ueno@unixuser.org>
869         * epa.el (epa-passphrase-callback-function): Display filename
870         passed as the 3rd arg.
871         * epa-file.el (epa-file-passphrase-callback-function):
872         Pass filename to epa-passphrase-callback-function.
874 2010-10-09  Chong Yidong  <cyd@stupidchicken.com>
876         * cus-edit.el (custom-face-widget-to-spec)
877         (custom-face-get-current-spec, custom-face-state): New functions.
878         (custom-face-set, custom-face-mark-to-save)
879         (custom-face-value-create, custom-face-state-set): Use them.
881         * cus-theme.el (custom-theme--listed-faces): New var.
882         (customize-create-theme): Use *Custom Theme* as the buffer name.
883         Set revert-buffer-function.  Optional arg BUFFER.  Insert all
884         faces listed in custom-theme--listed-faces.
885         (custom-theme-revert): New function.
886         (custom-theme-add-variable, custom-theme-add-face): Insert at the
887         bottom of the list.
888         (custom-theme-write): Prompt for theme name if empty.
889         (custom-theme-write-variables): Use dolist.
890         (custom-theme-write-faces): Handle hidden (collapsed) widgets.
892 2010-10-09  Alan Mackenzie  <acm@muc.de>
894         Enhance fontification of declarators to take account of the
895         presence/absence of "typedef".
897         * cc-engine.el (c-forward-type): New &optional param
898         "brace-block-too".
899         (c-forward-decl-or-cast-1): cdr of return value now indicates the
900         presence of either or both of a "struct"-like keyword and "typedef".
902         * cc-fonts.el (c-complex-decl-matchers): Remove the heuristic
903         fontification of declarators which follow a "}".
904         (c-font-lock-declarations): Fontify declarators according to the
905         presence/absence of "typedef".
907         * cc-langs.el (c-typedef-kwds c-typedef-key): New lang variable
908         for "typedef".
909         (c-typedef-decl-key): New lang variable built from
910         c-typedef-decl-kwds.
912 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
914         * ibuffer.el (ibuffer-mode-map): Don't redefine the cursor keys,
915         since that's too annoying.  Move the filter groups commands to
916         TAB/backtab.
918         * epa.el (epa-passphrase-callback-function): Say what we're
919         querying the password for.
921         * ibuffer.el (ibuffer-visit-buffer): To mimick list-buffers
922         behaviour, don't bury the ibuffer buffer when visiting other buffers.
924 2010-10-08  Chong Yidong  <cyd@stupidchicken.com>
926         * cus-edit.el (custom-commands, custom-buffer-create-internal)
927         (custom-magic-value-create): Pad button tags with spaces.
928         (custom-face-edit): New variable.
929         (custom-face-value-create): Determine whether to use the usual
930         face editor here, instead of using custom-face-selected.
931         Pass face defaults to custom-face-edit widget.
932         (custom-face-selected, custom-display-unselected): Delete widgets.
933         (custom-display-unselected-match): Function removed.
934         (custom-face-set, custom-face-mark-to-save):
935         Accept custom-face-edit widgets as the direct widget child.
937         * wid-edit.el (widget--completing-widget): New var.
938         (widget-default-complete): Bind it when doing completion.
939         (widget-string-complete, widget-file-complete): Use it.
941 2010-10-09  Glenn Morris  <rgm@gnu.org>
943         * calendar/cal-hebrew.el (holiday-hebrew-rosh-hashanah)
944         (holiday-hebrew-passover, holiday-hebrew-tisha-b-av)
945         (holiday-hebrew-misc): Small simplifications.
947         * emacs-lisp/authors.el (authors-valid-file-names): Add b2m.c.
949         * net/browse-url.el: Don't require thingatpt, term, dired,
950         executable, or w3-auto when compiling.
951         (dired-get-filename, term-char-mode, term-send-down, term-send-string):
952         Declare.
953         (browse-url-text-emacs): Require term.
955 2010-10-08  Andreas Schwab  <schwab@linux-m68k.org>
957         * net/browse-url.el (browse-url-xdg-open): Remove use of /bin/sh.
959 2010-10-08  Glenn Morris  <rgm@gnu.org>
961         * emacs-lisp/cl-compat.el, emacs-lisp/lmenu.el: Move to obsolete/.
963         * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
964         (shadows-compare-text-p): Make it an obsolete alias for...
965         (load-path-shadows-compare-text): ... new name.
966         (find-emacs-lisp-shadows): Update for above name change.
967         (load-path-shadows-same-file-or-nonexistent): New name for the old
968         shadow-same-file-or-nonexistent.
970 2010-10-08  Chong Yidong  <cyd@stupidchicken.com>
972         * minibuffer.el (completion--some, completion--do-completion)
973         (minibuffer-complete-and-exit, minibuffer-completion-help)
974         (completion-basic-try-completion)
975         (completion-basic-all-completions)
976         (completion-pcm--find-all-completions): Use lexical-let to
977         avoid some false matches in variable completion (Bug#7056)
979 2010-10-08  Olof Ohlsson Sax  <olof.ohlsson.sax@gmail.com>  (tiny change)
981         * vc-svn.el (vc-svn-merge-news): Use --non-interactive.  (Bug#7152)
983 2010-10-08  Leo  <sdl.web@gmail.com>
985         * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only
986         return non-nil if the file exists (Bug#7090).
988 2010-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
990         * minibuffer.el (completion--replace):
991         Better preserve markers (bug#7138).
993 2010-10-08  Juanma Barranquero  <lekktu@gmail.com>
995         * server.el (server-process-filter): Doc fix.
997 2010-10-08  Drew Adams  <drew.adams@oracle.com>
999         * dired.el (dired-save-positions): Doc fix.  (Bug#7119)
1001 2010-10-08  Andreas Schwab  <schwab@linux-m68k.org>
1003         * Makefile.in (ELCFILES): Update.
1005 2010-10-08  Glenn Morris  <rgm@gnu.org>
1007         * vc/ediff-wind.el (ediff-setup-control-frame):
1008         * vc/ediff-ptch.el (ediff-default-backup-extension):
1009         * vc/ediff-diff.el (ediff-shell, ediff-diff-options)
1010         (ediff-exec-process): Remove system-types emx, windows-95.
1012         * net/browse-url.el (browse-url-xdg-open): Shell-quote url.  (Bug#7166)
1014 2010-10-07  Chong Yidong  <cyd@stupidchicken.com>
1016         * cus-edit.el (custom-variable, custom-face): Doc fix.
1017         (custom-face-edit): Add value-create attribute.
1018         (custom-face-edit-value-create)
1019         (custom-face-edit-value-visibility-action): New functions.
1020         Hide unused face attributes by default, and add a visibility toggle.
1021         (custom-face-edit-deactivate): Show empty values with shadow face.
1022         (custom-face-selected): Only use this for face specs with default
1023         attributes.
1024         (custom-face-value-create): Cleanup.
1026         * wid-edit.el (widget-checklist-value-create): Use dolist.
1027         (widget-checklist-match-find): Make second arg optional.
1029 2010-10-07  Glenn Morris  <rgm@gnu.org>
1031         * hilit-chg.el (hilit-chg-get-diff-info, hilit-chg-get-diff-list-hk):
1032         Prefix things.
1034         * emacs-lisp/shadow.el (shadow-font-lock-keywords)
1035         (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to
1036         load-path-shadows-mode, update references.
1037         (load-path-shadows-font-lock-keywords, load-path-shadows-find-file):
1038         Rename variable and button.
1039         (list-load-path-shadows): Update button caller.
1041 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1043         * emacs-lisp/smie.el (smie-bnf-classify): New function.
1044         (smie-bnf-precedence-table): Use it to remember the closers/openers.
1045         (smie-merge-prec2s): Handle those new entries.
1046         (smie-prec2-levels): Only set precedence to nil for actual
1047         openers/closers.
1048         * progmodes/octave-mod.el (octave-smie-op-levels): Remove dummy entry
1049         that is now unnecessary.
1051 2010-10-07  Miles Bader  <miles@gnu.org>
1053         * emacs-lisp/regexp-opt.el (regexp-opt): Add `symbols' mode.
1055 2010-10-07  Glenn Morris  <rgm@gnu.org>
1057         * mail/rmail.el (mail-sendmail-delimit-header, mail-header-end)
1058         (mail-position-on-field): Remove declarations.
1059         (mail-position-on-field): Autoload it.
1060         (rmail-retry-failure): Replace use of mail-sendmail-delimit-header
1061         and mail-header-end.  Don't require sendmail.
1063         * emacs-lisp/shadow.el (shadow-font-lock-keywords): New variable.
1064         (shadow-mode): New mode.
1065         (shadow-find-file): New button.
1066         (list-load-path-shadows): Use shadow-mode and buttons.
1068         * iimage.el (iimage-version): Remove.
1069         (iimage-mode-image-search-path, iimage-mode-image-regex-alist):
1070         Turn into defcustoms.
1071         (iimage-mode-map): Give it a doc string.
1073         * calendar/appt.el (appt-activate): Give a warning rather than an error
1074         if there is no diary-file.
1076 2010-10-06  Michael Albinus  <michael.albinus@gmx.de>
1078         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
1079         Use `tramp-handle-find-backup-file-name'.
1081 2010-10-06  Glenn Morris  <rgm@gnu.org>
1083         * font-core.el (font-lock-defaults-alist): Remove variable.
1084         (font-lock-mode): Doc fix.
1085         (font-lock-default-function): Do not consult font-lock-defaults-alist.
1086         * font-lock.el (font-lock-refresh-defaults): Doc fix.
1087         (font-lock-set-defaults): Doc fix.
1088         Do not consult font-lock-defaults-alist.
1090         * hilit-chg.el (hilit-chg-get-diff-list-hk): Declare `e' for compiler.
1092         * emacs-lisp/cl.el: No longer provide cl-19.
1094 2010-10-05  Michael Albinus  <michael.albinus@gmx.de>
1096         * net/tramp.el (tramp-handle-directory-files-and-attributes)
1097         (tramp-handle-file-exists-p, tramp-handle-file-newer-than-file-p):
1098         New defuns, taken from tramp-smb.el.
1099         (tramp-coding-system-change-eol-conversion)
1100         (tramp-set-process-query-on-exit-flag): Remove.
1102         * net/tramp-compat.el (top): Do not check for byte-compiler objects.
1103         (tramp-compat-coding-system-change-eol-conversion)
1104         (tramp-compat-set-process-query-on-exit-flag): New defuns, taken
1105         from tramp.el.
1107         * net/tramp-gvfs.el:
1108         * net/tramp-gw.el: Replace `tramp-set-process-query-on-exit-flag'
1109         by `tramp-compat-set-process-query-on-exit-flag'.
1111         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
1112         Use `tramp-handle-directory-files-and-attributes',
1113         `tramp-handle-file-exists-p' and
1114         `tramp-handle-file-newer-than-file-p'.
1115         (tramp-imap-handle-file-exists-p)
1116         (tramp-imap-handle-file-executable-p)
1117         (tramp-imap-handle-file-readable-p)
1118         (tramp-imap-handle-directory-files-and-attributes)
1119         (tramp-imap-handle-file-newer-than-file-p): Remove.
1121         * net/tramp-sh.el: Replace `tramp-set-process-query-on-exit-flag'
1122         by `tramp-compat-set-process-query-on-exit-flag' and
1123         `tramp-coding-system-change-eol-conversion' by
1124         `tramp-compat-coding-system-change-eol-conversion'.
1126         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
1127         Use `tramp-handle-directory-files-and-attributes',
1128         `tramp-handle-file-exists-p' and
1129         `tramp-handle-file-newer-than-file-p'.
1130         (tramp-smb-handle-directory-files-and-attributes)
1131         (tramp-smb-handle-file-exists-p)
1132         (tramp-smb-handle-file-newer-than-file-p): Remove.
1133         (tramp-smb-maybe-open-connection):
1134         Replace `tramp-set-process-query-on-exit-flag' by
1135         `tramp-compat-set-process-query-on-exit-flag'.
1137 2010-10-05  Glenn Morris  <rgm@gnu.org>
1139         * obsolete/rnews.el, obsolete/rnewspost.el: Remove files.
1141 2010-10-04  Michael Albinus  <michael.albinus@gmx.de>
1143         Continue reorganization of load dependencies.  (Bug#7156)
1145         * net/tramp.el (tramp-handle-file-local-copy-hook)
1146         (tramp-delete-temp-file-function): Move down.
1147         (tramp-exists-file-name-handler): Move up.
1148         (tramp-register-file-name-handlers): Simplify autoload.
1149         (tramp-handle-write-region-hook, tramp-handle-directory-file-name)
1150         (tramp-handle-directory-files, tramp-handle-dired-uncache)
1151         (tramp-handle-file-modes, tramp-handle-file-name-as-directory)
1152         (tramp-handle-file-name-completion)
1153         (tramp-handle-file-name-directory)
1154         (tramp-handle-file-name-nondirectory, tramp-handle-file-regular-p)
1155         (tramp-handle-file-remote-p, tramp-handle-file-symlink-p)
1156         (tramp-handle-find-backup-file-name)
1157         (tramp-handle-insert-file-contents, tramp-handle-load)
1158         (tramp-handle-substitute-in-file-name)
1159         (tramp-handle-unhandled-file-name-directory)
1160         (tramp-mode-string-to-int, tramp-local-host-p)
1161         (tramp-make-tramp-temp-file): Move from tramp-sh.el.
1163         * net/tramp-gvfs.el (top):
1164         * net/tramp-smb.el (top): Do not require 'tramp-sh.
1166         * net/tramp-sh.el (all): Move several objects to tramp.el, see
1167         there.  Rename `tramp-handle-*' to `tramp-sh-handle-*'.
1169 2010-10-04  Glenn Morris  <rgm@gnu.org>
1171         * calendar/appt.el (appt-add): Ensure reminders are enabled.
1172         (appt-activate): Give status messages.
1174 2010-10-03  Teodor Zlatanov  <tzz@lifelogs.com>
1176         * net/gnutls.el: Improve docs.  Remove starttls and ssl emulation.
1177         Provide only `open-gnutls-stream' (formerly `open-ssl-stream') and
1178         `gnutls-negotiate' (formerly `starttls-negotiate').
1179         Remove trivial wrapper `starttls-open-stream'.
1181 2010-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
1183         Make 'g' (AKA revert-buffer) rerun the VC log, log-incoming and
1184         log-outgoing commands.
1185         * vc/vc.el (vc-log-internal-common): Add a new argument and use it
1186         to create a buffer local revert-buffer-function variable.
1187         (vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
1188         revert-buffer-function lambda.
1190 2010-10-03  Teodor Zlatanov  <tzz@lifelogs.com>
1192         * net/gnutls.el (starttls-negotiate): Use the plist interface to
1193         `gnutls-boot'.  Make TYPE the only required parameter.
1194         Allow TRUSTFILES and KEYFILES to be lists.
1195         (open-ssl-stream): Use it.
1197 2010-10-03  Glenn Morris  <rgm@gnu.org>
1199         * subr.el (directory-sep-char): Remove obsolete variable.
1200         * net/tramp-compat.el: Don't mess about with the byte-compiler unless
1201         it is "necessary".
1203         * vc/vc-hooks.el (vc-header-alist): Remove obsolete variable.
1204         * vc/vc.el (vc-static-header-alist): Doc fix.
1205         * vc/vc-cvs.el (vc-cvs-header):
1206         * vc/vc-rcs.el (vc-rcs-header):
1207         * vc/vc-sccs.el (vc-sccs-header):
1208         * vc/vc-svn.el (vc-svn-header): Do not consult vc-header-alist.
1209         * obsolete/vc-mcvs.el (vc-mcvs-header):
1210         * progmodes/cperl-mode.el (cperl-mode): Only set vc-header-alist
1211         on XEmacs.
1213 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
1215         * emacs-lisp/bytecomp.el (byte-compile-from-buffer):
1216         Remove obsolete use of binary-overwrite-mode (Bug#7001).
1218 2010-10-03  Glenn Morris  <rgm@gnu.org>
1220         * obsolete/x-menu.el: Remove file, obsolete since 21.1
1222         * textmodes/rst.el (rst-font-lock-keywords-function):
1223         Drop Emacs 20 code.
1225         * textmodes/artist.el (artist-replace-char): Drop Emacs 20 code.
1227         * printing.el: Drop Emacs 20 code.
1229         * calendar/appt.el (appt-delete): Don't autoload it (you can't use it
1230         without having used appt.el already).
1232         * subr.el (make-local-hook): Remove function obsolete since 21.1.
1233         * progmodes/cc-mode.el (make-local-hook): Don't do cc-bytecomp stuff.
1234         (c-basic-common-init, c-font-lock-init): Only call make-local-hook on
1235         XEmacs.
1236         * progmodes/cc-styles.el (make-local-hook): Don't do cc-bytecomp stuff.
1237         (c-make-styles-buffer-local): Only call make-local-hook on XEmacs.
1239         * ps-def.el (leading-code-private-22, charset-bytes, charset-id)
1240         (charset-width, find-charset-region, chars-in-region, forward-point)
1241         (encode-coding-string, coding-system-p, ccl-execute-on-string)
1242         (define-ccl-program, multibyte-string-p, string-make-multibyte):
1243         Remove compatibility cruft (none of these are used by ps*.el).
1245 2010-10-03  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
1247         * subr.el (booleanp): Return t instead of a list (Bug#7086).
1249 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
1251         * server.el (server-process-filter, server-return-error):
1252         Give emacsclient time to shut down after receiving an error string.
1254 2010-10-02  Michael Albinus  <michael.albinus@gmx.de>
1256         * files.el (remote-file-name-inhibit-cache): New defcustom.
1258         * time.el (display-time-file-nonempty-p):
1259         Use `remote-file-name-inhibit-cache'.
1261         * net/tramp.el (tramp-completion-reread-directory-timeout):
1262         Fix docstring.
1264         * net/tramp-cache.el (tramp-cache-inhibit-cache): Remove.
1265         (tramp-get-file-property): Replace `tramp-cache-inhibit-cache' by
1266         `remote-file-name-inhibit-cache'.  Check also for an integer
1267         value.  Add/increase counter when `tramp-verbose' >= 10.
1268         (tramp-set-file-property): Add/increase counter when
1269         `tramp-verbose' >= 10.
1271         * net/tramp-cmds.el (tramp-cleanup-all-connections)
1272         (tramp-cleanup-all-buffers): Set tramp-autoload cookie.
1273         (tramp-bug): Set tramp-autoload cookie.  Report all interned
1274         tramp-* variables.  Report also `remote-file-name-inhibit-cache'.
1275         (tramp-reporter-dump-variable): Fix docstring.  Mask non-7bit
1276         characters only in strings.
1278         * net/tramp-compat.el (remote-file-name-inhibit-cache): Define due
1279         to backward compatibility.
1281         * net/tramp-sh.el (tramp-handle-verify-visited-file-modtime)
1282         (tramp-handle-file-name-all-completions)
1283         (tramp-handle-vc-registered): Use `remote-file-name-inhibit-cache'.
1284         (tramp-open-connection-setup-interactive-shell):
1285         Call `tramp-cleanup-connection' directly.
1287 2010-10-02  Glenn Morris  <rgm@gnu.org>
1289         * emacs-lisp/checkdoc.el (checkdoc-minor-keymap): Remove obsolete alias.
1291         * subr.el (char-bytes): Remove obsolete function.
1293         * isearch.el (isearch-return-char): Remove obsolete function.
1295         * mouse.el: No longer provide mldrag.
1296         (mldrag-drag-mode-line, mldrag-drag-vertical-line):
1297         Remove obsolete aliases.
1299         * comint.el (comint-kill-output): Remove obsolete alias.
1301         * composite.el (decompose-composite-char): Remove obsolete function.
1302         * ps-def.el (decompose-composite-char): Remove unused function.
1304         * iswitchb.el (iswitchb-default-keybindings): Remove obsolete function.
1306         * outline.el (outline-visible): Remove obsolete function.
1308         * term/pc-win.el (x-frob-font-slant, x-frob-font-weight):
1309         * faces.el (internal-find-face, internal-get-face)
1310         (frame-update-faces, frame-update-face-colors)
1311         (x-frob-font-weight, x-frob-font-slant)
1312         (internal-frob-font-weight, internal-frob-font-slant)
1313         (x-make-font-bold, x-make-font-demibold, x-make-font-unbold)
1314         (x-make-font-italic, x-make-font-oblique, x-make-font-unitalic)
1315         (x-make-font-bold-italic): Remove functions and aliases, obsolete
1316         since Emacs 21.1.
1317         * emulation/viper-util.el (viper-get-face):
1318         * obsolete/lucid.el (find-face, get-face): Use facep.
1319         * vc/ediff-init.el (ediff-valid-color-p, ediff-get-face):
1320         Remove unused functions.
1321         * vc/ediff-util.el (ediff-submit-report): Doc fix.
1323         * emacs-lisp/bytecomp.el (byte-compile-file): Use kill-emacs-hook to
1324         delete tempfile if interrupted during compilation.
1326 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1328         * net/tls.el (tls-starttls-switches): Give up on using starttls with
1329         gnutls-cli.
1330         (tls-program): Add --insecure to be consistent with the defaults from
1331         openssl s_client.  Now all three commands are insecure.
1333 2010-10-01  Eli Zaretskii  <eliz@gnu.org>
1335         * makefile.w32-in (DEST, TAGS, TAGS-LISP, TAGS-nmake)
1336         (TAGS-LISP-nmake, TAGS-gmake, TAGS-LISP-gmake, TAGS-SH)
1337         (TAGS-LISP-SH, TAGS-CMD, TAGS-LISP-CMD): New targets.
1339 2010-10-01  Glenn Morris  <rgm@gnu.org>
1341         * obsolete/sc.el: Remove file.
1343         * files.el (temporary-file-directory): On darwin, also try
1344         DARWIN_USER_TEMP_DIR (see discussion in bug#7135).
1346 2010-10-01  Juanma Barranquero  <lekktu@gmail.com>
1348         * server.el (server-start): Revert part of 2010-09-30T02:53:26Z!lekktu@gmail.com.
1349         Let's not break compatibility gratuitously, shall we?
1351 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1353         * net/tls.el (tls-starttls-switches): New variable.
1354         (tls-find-starttls-argument): Use it.
1355         (open-tls-stream): Ditto.
1357         * net/netrc.el (netrc-credentials): Return the value of the "default"
1358         entry.
1359         (netrc-machine): Ditto.
1361 2010-09-30  Eli Zaretskii  <eliz@gnu.org>
1363         * vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.
1365 2010-09-30  Juanma Barranquero  <lekktu@gmail.com>
1367         * server.el (server-start): Don't write pid to the authentication file.
1368         (server-create-tty-frame): Don't send pid.
1369         (server-process-filter): Send pid at the start of every connection.
1371 2010-09-30  Glenn Morris  <rgm@gnu.org>
1373         * calendar/diary-lib.el (view-diary-entries, list-diary-entries)
1374         (show-all-diary-entries): Remove obsolete function aliases.
1376         * calendar/appt.el (appt-issue-message, appt-visible, appt-msg-window):
1377         Remove options, obsolete since 22.1.
1378         (appt-display-format, appt-display-message): Remove
1379         backwards-compatibility code.
1380         (appt-check): No longer check appt-issue-message.
1381         (appt-make-list): No longer autoload it.  Doc fix.  No longer
1382         activate the package.
1384 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1386         * net/gnutls.el (starttls-negotiate): Loop a lot longer.
1387         (starttls-negotiate): Just call boot, and let the handshake be
1388         triggered from the read loop.
1390 2010-09-29  Glenn Morris  <rgm@gnu.org>
1392         * calendar/diary-lib.el (diary-list-entries): Use temp buffers when
1393         not displaying the diary.
1394         (diary-add-to-list): If no buffer-file-name, fall back to diary-file.
1395         * calendar/appt.el (appt-check): No longer need to kill diary.
1397         * calendar/diary-lib.el (diary-list-entries): Move the
1398         "Preparing..." message entirely here.
1399         (diary-simple-display, diary-fancy-display): Move "Preparing..."
1400         messages to diary-list-entries.
1401         (diary-include-other-diary-files): Use LIST-ONLY rather than setting
1402         diary-display-function.
1404         * calendar/diary-lib.el (diary-include-other-diary-files):
1405         Trap some recursive includes.
1407         * calendar/appt.el (appt-activate): Check diary file.
1409 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1411         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
1412         construction.
1414         * calendar/time-date.el: No need to require cl for Emacs 21.
1416 2010-09-28  Glenn Morris  <rgm@gnu.org>
1418         * calendar/appt.el (appt-check): Minor simplification.
1420 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1422         * mail/sendmail.el (mail-citation-prefix-regexp): Remove "}" from
1423         citation prefix.
1425 2010-09-27  Andreas Schwab  <schwab@linux-m68k.org>
1427         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
1428         Avoid infinite recursion on erroneous lambda form.  (Bug#7114)
1430 2010-09-27  Kenichi Handa  <handa@m17n.org>
1432         * tar-mode.el (tar-header-block-tokenize): Decode filenames in
1433         "ustar" format.
1435 2010-09-27  Kenichi Handa  <handa@m17n.org>
1437         * international/mule.el (define-coding-system): Docstring fixed.
1439         * international/mule-diag.el (describe-character-set): Use princ
1440         with proper print-length and print-level instead of insert.
1442 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
1444         * window.el (walk-windows): Doc fix (bug#7105).
1446 2010-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1448         * emacs-lisp/float-sup.el (e): Remove.
1450 2010-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
1452         * net/gnutls.el (gnutls, gnutls-log-level): Add group and custom
1453         variable.
1454         (starttls-negotiate): Use it.
1456 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1458         * net/gnutls.el (starttls-negotiate): Stop looping when we get a t
1459         back.
1461 2010-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1463         * emacs-lisp/pcase.el (pcase-let*, pcase-let): plet -> pcase-let.
1465 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1467         * net/gnutls.el (starttls-negotiate): Avoid the cl.el decf function.
1469         * net/netrc.el (netrc-store-data): New function.
1471 2010-09-26  Teodor Zlatanov  <tzz@lifelogs.com>
1473         * net/gnutls.el: GnuTLS glue code to set up a connection.
1475 2010-09-25  Julien Danjou  <julien@danjou.info>
1477         * notifications.el: Call dbus-register-signal only if it is bound.
1479 2010-09-25  Glenn Morris  <rgm@gnu.org>
1481         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1482         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
1483         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
1484         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
1485         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
1486         * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
1487         * eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
1488         * eshell/esh-util.el, eshell/esh-var.el:
1489         Remove leading `*' from docs of faces and defcustoms.
1491 2010-09-25  Ulrich Mueller  <ulm@gentoo.org>
1493         * eshell/em-ls.el (eshell-ls-archive-regexp):
1494         * eshell/esh-util.el (eshell-tar-regexp):
1495         * ibuffer.el (ibuffer-compressed-file-name-regexp):
1496         * info.el (Info-suffix-list):
1497         * international/mule.el (auto-coding-alist):
1498         * woman.el (woman-file-regexp, woman-file-compression-regexp):
1499         * progmodes/etags.el (tags-compression-info-list):
1500         Support xz compression.
1502 2010-09-25  Chong Yidong  <cyd@stupidchicken.com>
1504         * files.el (get-free-disk-space): Don't assume the "df" output
1505         columns line up (Bug#6995).
1507 2010-09-25  Juanma Barranquero  <lekktu@gmail.com>
1509         * finder.el (finder-unknown-keywords):
1510         * progmodes/gdb-mi.el (gdb-jsonify-buffer, gdb-running-threads-count):
1511         * progmodes/etags.el (tags-table-including): Fix typos in docstrings.
1513 2010-09-25  Juanma Barranquero  <lekktu@gmail.com>
1515         * server.el (server-start): Revert part of 2010-08-08 change.  Using
1516         address 127.0.0.1 for local host is now done in Fmake_network_process.
1518 2010-09-24  Glenn Morris  <rgm@gnu.org>
1520         * image-mode.el, progmodes/compile.el, progmodes/gud.el:
1521         * progmodes/mixal-mode.el, textmodes/bibtex-style.el:
1522         * textmodes/css-mode.el, textmodes/dns-mode.el:
1523         Move autoloaded auto-mode-alist entries to files.el.
1524         * files.el (auto-mode-alist): Move entries here.
1526 2010-09-23  Glenn Morris  <rgm@gnu.org>
1528         * isearch.el (isearch-lazy-highlight-cleanup)
1529         (isearch-lazy-highlight-initial-delay)
1530         (isearch-lazy-highlight-interval)
1531         (isearch-lazy-highlight-max-at-a-time, isearch-lazy-highlight-face):
1532         * net/net-utils.el (ipconfig-program-options):
1533         Move aliases to options before the associated definitions.
1535 2010-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1537         * newcomment.el (comment-normalize-vars): Better test validity of
1538         comment-end-skip.
1540 2010-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1542         * emacs-lisp/float-sup.el (float-pi): New name for `pi'.
1543         (float-e): New name for `e'.
1544         (degrees-to-radians, radians-to-degrees):
1545         * calendar/solar.el (solar-longitude):
1546         * calculator.el (calculator-registers, calculator-funcall):
1547         * textmodes/artist.el (artist-spray-random-points):
1548         * play/bubbles.el (bubbles--initialize-images): Use new names.
1550 2010-09-23  Eric M. Ludlam  <zappo@gnu.org>
1552         Update to CEDET 1.0's version of EIEIO.
1554         * emacs-lisp/eieio.el (eieio-specialized-key-to-generic-key):
1555         New function.
1556         (eieio-defmethod, eieio-generic-form, eieio-generic-call): Use it.
1557         (eieio-default-eval-maybe): Eval val instead of unquoting only.
1558         (class-precedence-list): If class is nil, return nil.
1559         (eieio-generic-call): If class of first input arg is nil, don't
1560         look up static methods, and do check for primary methods.
1561         (initialize-instance): See if the default needs to be evaluated
1562         during the constructor.
1563         (eieio-perform-slot-validation-for-default): Don't do the check
1564         for values that will eventually be evaluated.
1565         (eieio-eval-default-p): New function.
1566         (eieio-default-eval-maybe): Use it.
1568 2010-09-23  Jan Moringen  <jan.moringen@uni-bielefeld.de>
1570         * emacs-lisp/eieio.el (eieio-defclass): Allow :c3
1571         method-invocation-order.
1572         (eieio-c3-candidate, eieio-c3-merge-lists): New functions.
1573         (eieio-class-precedence-dfs): Compute class precedence list using
1574         dfs algorithm.
1575         (eieio-class-precedence-bfs): Compute class precedence list using
1576         bfs algorithm.
1577         (eieio-class-precedence-c3): Compute class precedence list using
1578         c3 algorithm.
1579         (class-precedence-list): New function.
1580         (eieiomt-method-list, eieiomt-sym-optimize): Use it.
1581         (inconsistent-class-hierarchy): New error symbol.
1582         (call-next-method): Stow the replacement argument list for future
1583         call-next-method invocations.
1585 2010-09-23  Glenn Morris  <rgm@gnu.org>
1587         * calendar/appt.el (appt-check): If not displaying the diary,
1588         use (diary 1) to only get the entries we need.
1589         (appt-make-list): Sort diary-list-entries, if we cannot guarantee
1590         that it is in day order.  (Bug#7019)
1592         * calendar/appt.el (appt-check): Rather than showing the diary,
1593         just turn off invisible display, and only if needed.
1595         * calendar/diary-lib.el (diary-list-entries): Doc fix.  (Bug#7019)
1597 2010-09-23  Glenn Morris  <rgm@gnu.org>
1599         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
1600         (byte-compile-defvar, byte-compile-cl-warn):
1601         Start warnings with lower-case, like the majority.
1603         * files.el (auto-mode-alist): Add .xa, .xw, .xsw for ld-script-mode.
1605         * files.el (auto-mode-alist): Prefer C-mode for .xs.  (Bug#7071)
1607         * progmodes/ld-script.el (auto-mode-alist): Move to files.el.
1608         * files.el (auto-mode-alist): Move ld-script entries here, further down
1609         the list.
1611         * vc/add-log.el: Don't require timezone when compiling.
1612         (timezone-make-date-sortable): Autoload it.
1613         (change-log-sortable-date-at): Don't require timezone.
1614         Use `ignore-errors'.
1616         * comint.el (comint-use-prompt-regexp-instead-of-fields):
1617         Move alias before definition, so it does not need autoloading.
1619         * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
1620         * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
1621         * international/kkc.el, international/ogonek.el, mail/feedmail.el:
1622         * net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
1623         * net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
1624         * textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
1625         * textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
1626         * textmodes/tex-mode.el, textmodes/two-column.el:
1627         Remove leading `*' from docs of defcustoms etc.
1629 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
1631         * net/netrc.el (netrc-parse): Remove encrypt.el mentions.
1633 2010-09-22  Dan Christensen  <jdc@uwo.ca>
1635         * calendar/time-date.el (date-to-time): Try using parse-time-string
1636         first before using the slower timezone-make-date-arpa-standard.
1638 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1640         * calendar/time-date.el (format-seconds): Comment fix.
1642 2010-09-22  Glenn Morris  <rgm@gnu.org>
1644         * emacs-lisp/package.el (package-menu-mode): `revert-buffer-function'
1645         is not automatically buffer-local.
1647 2010-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1649         * emacs-lisp/smie.el (smie-debug--describe-cycle): Fix typo.
1650         (smie-indent-comment): Be more careful with comment-start-skip.
1651         (smie-indent-comment-close, smie-indent-comment-inside): New funs.
1652         (smie-indent-functions): Use them.
1654 2010-09-21  Michael Albinus  <michael.albinus@gmx.de>
1656         * net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
1658 2010-09-21  Jan Djärv  <jan.h.d@swipnet.se>
1660         * menu-bar.el (menu-bar-set-tool-bar-position): customize-set-variable
1661         tool-bar-position.  Don't modify frame parameters here.
1662         (menu-bar-options-save): Add tool-bar-position.
1664         * tool-bar.el (tool-bar-position): New defcustom (Bug#7049).
1666 2010-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1668         * textmodes/reftex-parse.el (reftex-what-macro)
1669         (reftex-context-substring): Let-bind forward-sexp-function to nil
1670         since we don't need/want to treat \begin...\end as a block (bug#7053).
1672         * emacs-lisp/lisp.el (up-list): Don't do nothing silently.
1674         * simple.el (blink-matching-open): Use syntax-class.
1676         * progmodes/pascal.el (pascal-mode): Use define-derived-mode.
1677         Set invisibility spec for pascal's outline mode.
1678         (pascal-outline-change): Clean up calling convention.
1679         (pascal-show-all, pascal-hide-other-defuns): Update callers.
1681         * progmodes/prolog.el (prolog-smie-forward-token)
1682         (prolog-smie-backward-token): New functions.
1683         (prolog-mode-variables): Use them to parse "!," correctly.
1684         Set up smie-blink-matching for ".".
1686         * textmodes/ispell.el (ispell-start, ispell-end): Rename from `start'
1687         and `end'.
1688         (ispell-region, ispell-process-line): Update users.
1690         * textmodes/reftex-parse.el (reftex-what-macro): Don't hardcode
1691         point-min==1.
1693         * textmodes/ispell.el: Fix commenting convention.
1694         (ispell-parse-output): Simplify, use push.
1695         (ispell-region): Use match-string-no-properties.
1696         (ispell-begin-skip-region-regexp): Use mapconcat to simplify.
1697         (ispell-minor-mode): Use define-minor-mode.
1698         (ispell-message): Remove unused var `skip-regexp'.
1699         (ispell-add-per-file-word-list): Use dynamic let-binding.
1700         Try and use the proper comment marker.
1702         * mail/sendmail.el: Fix commenting convention.
1703         (sendmail-send-it): Use line-beginning-position.
1705         * help-fns.el (describe-variable): Add original value, if applicable.
1707 2010-09-20  Juanma Barranquero  <lekktu@gmail.com>
1709         * subr.el (y-or-n-p): Remove leftover code from 2010-09-17T13:30:30Z!monnier@iro.umontreal.ca.
1711         * emacs-lisp/smie.el (smie-indent--hanging-p): Use `smie-indent--bolp'.
1713 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1715         * emacs-lisp/smie.el (smie-bnf-precedence-table): Improve error message.
1716         (smie-debug--prec2-cycle, smie-debug--describe-cycle): New functions.
1717         (smie-prec2-levels): Use them to better diagnose precedence cycles.
1718         (smie-blink-matching-check): Don't signal a mismatch if car is t.
1719         (smie-blink-matching-open): Rewrite to remove assumptions, so that
1720         something like "." can also be a closer.
1721         (smie--associative-p, smie-indent--hanging-p, smie-indent--bolp)
1722         (smie-indent--offset, smie-indent--offset-rule, smie-indent--column):
1723         Rename internal functions to use "--".  Update callers.
1725         * frame.el (make-frame-names-alist): Don't list frames on other displays.
1727         * fringe.el (fringe-styles): New var.
1728         (fringe-mode, fringe-query-style): Use it.
1730 2010-09-18  Michael R. Mauger  <mmaug@yahoo.com>
1732         * progmodes/sql.el: Version 2.8
1733         (sql-login-params): Update widget structure; changes still needed.
1734         (sql-product-alist): Add :list-all and :list-table features for
1735         SQLite, Postgres and MySQL products.
1736         (sql-redirect): Handle default value.
1737         (sql-execute, sql-execute-feature): New functions.
1738         (sql-read-table-name): New function.
1739         (sql-list-all, sql-list-table): New functions.  User API.
1740         (sql-mode-map, sql-interactive-mode-map): Add key definitions
1741         for above functions.
1742         (sql-mode-menu, sql-interactive-mode-menu): Add menu definitions
1743         for above functions.
1744         (sql-postgres-login-params): Add user and database defaults.
1745         (sql-buffer-live-p): Bug fix.
1746         (sql-product-history): New variable.
1747         (sql-read-product): New function. Use it.
1748         (sql-set-product, sql-product-interactive): Use it.
1749         (sql-connection-history): New variable.
1750         (sql-read-connection): New function.  Use it.
1751         (sql-connect): New function.
1752         (sql-for-each-login): Redesign function interface.
1753         (sql-make-alternate-buffer-name, sql-save-connection): Use it.
1754         (sql-get-login-ext, sql-get-login): Use it.  Handle default values.
1755         (sql-comint): Check for program.  Existing live buffer.
1756         (sql-comint-postgres): Add port parameter.
1758 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1760         * emacs-lisp/warnings.el: Fix commenting convention.
1761         (display-warning): Use special mode and make the buffer read-only.
1763 2010-09-18  Jay Belanger  <jay.p.belanger@gmail.com>
1765         * calc/calc-prog.el (calc-read-parse-table-part): Don't "fix" the
1766         empty string when it follows a repeated or optional pattern.
1768 2010-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1770         * indent.el (indent-according-to-mode): Apply syntax-propertize.
1771         (indent-region): Use indent-according-to-mode.
1773 2010-09-18  Eli Zaretskii  <eliz@gnu.org>
1775         * fringe.el (fringe-mode): Doc fix.
1777 2010-09-14  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
1779         * textmodes/nroff-mode.el (nroff-view): Kill old buffer before
1780         refreshing the preview buffer.
1782 2010-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1784         * textmodes/tex-mode.el (tex-syntax-propertize-rules)
1785         (latex-syntax-propertize-rules): New consts; replace
1786         tex-font-lock-syntactic-keywords.
1787         (tex-env-mark, latex-env-before-change): New functions.
1788         (latex-electric-env-pair-mode): New minor mode.
1789         (tex-font-lock-verb): Change arguments; do move point.
1790         (tex-font-lock-syntactic-face-function): Adjust to new verbatim
1791         representation as a form of comment.
1792         (tex-font-lock-keywords-1): Remove workaround, now unneeded.
1793         (doctex-syntax-propertize-rules): New const; replaces
1794         doctex-font-lock-syntactic-keywords.
1795         (tex-common-initialization, doctex-mode): Use syntax-propertize-rules.
1797         * progmodes/fortran.el (fortran--font-lock-syntactic-keywords): Remove.
1798         (fortran-make-syntax-propertize-function): New function; replaces
1799         fortran-font-lock-syntactic-keywords.
1800         (fortran-mode): Use it.
1801         (fortran-line-length): Use it.  Improve interactive spec.
1803         * emacs-lisp/syntax.el (syntax-propertize-precompile-rules): New macro.
1804         (syntax-propertize-rules): Add var-ref case.  Fix offset computation
1805         when adding surrounding \(..\).
1807         * progmodes/js.el (js-mode): Fix last change (bug#7054).
1809 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1811         * obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
1812         Use with-current-buffer.
1814         * isearch.el (isearch-face): Rename from `isearch'.
1815         (isearch-highlight): Use new name.
1817 2010-09-17  Eli Zaretskii  <eliz@gnu.org>
1819         * fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
1820         5, for `half' width fringes.  (Bug#6933)
1822 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1824         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
1825         (byte-compile-defvar): "foo/bar" does not lack a prefix.
1827         * subr.el (y-or-n-p): Add the "(y or n)" that was lost somehow.
1829 2010-09-17  Stephen Berman  <stephen.berman@gmx.net>
1831         * dframe.el (dframe-reposition-frame-emacs): Use tool-bar-pixel-width
1832         in calculating new frame position.  Add more space between new and
1833         parent on the left (Bug#7048).
1835 2010-09-17  Michael Albinus  <michael.albinus@gmx.de>
1837         * net/tramp-compat.el (tramp-compat-with-temp-message): Make it a
1838         defmacro.
1840 2010-09-16  Chong Yidong  <cyd@stupidchicken.com>
1842         * mail/sendmail.el: Add "*unsent mail*" to same-window-buffer-names.
1844         * term/x-win.el (x-cut-buffer-or-selection-value): Define as
1845         obsolete alias for x-selection-value.
1847         * ido.el (ido-make-buffer-list): Fix error in 2010-08-22 merge.
1849 2010-09-16  Michael Albinus  <michael.albinus@gmx.de>
1851         * net/tramp-cmds.el (tramp-cleanup-connection): Set tramp-autoload
1852         cookie.
1854 2010-09-15  Michael Albinus  <michael.albinus@gmx.de>
1856         * net/tramp-compat.el (tramp-compat-with-temp-message)
1857         (tramp-compat-font-lock-add-keywords, tramp-compat-process-get)
1858         (tramp-compat-process-put): New defuns.
1860         * net/tramp.el (top):
1861         * net/tramp-gvfs.el (top):
1862         * net/tramp-cache.el (top): Use `tramp-compat-font-lock-add-keywords'.
1864         * net/tramp.el (tramp-progress-reporter-update):
1865         Use `tramp-compat-funcall'.
1867         * net/tramp.el (tramp-process-actions):
1868         * net/tramp-gvfs.el (tramp-handle-vc-registered):
1869         * net/tramp-sh.el (tramp-gvfs-handler-askquestion)
1870         (tramp-get-remote-stat, tramp-get-remote-readlink):
1871         Use `tramp-compat-with-temp-message'.
1873         * net/tramp-sh.el (top): Require 'cl.
1874         (tramp-handle-start-file-process): Use `tramp-compat-process-get'.
1875         (tramp-open-connection-setup-interactive-shell):
1876         Use `tramp-compat-process-put'.
1878 2010-09-15  Alan Mackenzie  <acm@muc.de>
1880         * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Correct the
1881         indentation.
1882         (c-forward-<>-arglist-recur): Fix an infinite recursion.
1884 2010-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1886         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
1887         `lexical' for warnings related to lexical scoping.
1888         (byte-compile-file-form-defvar, byte-compile-defvar): Warn about
1889         global vars which don't have a prefix and could hence affect lexical
1890         scoping in unrelated files.
1892 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1894         * net/imap.el: Revert back to version
1895         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
1896         seem problematic.
1898 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
1900         * obsolete/old-whitespace.el (whitespace-unload-function):
1901         Explicitly pass `obarray' to `unintern' to avoid a warning.
1903 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1905         * emacs-lisp/byte-run.el (set-advertised-calling-convention):
1906         Add `when' argument.  Update callers.
1908         * subr.el (unintern): Declare the obarray arg mandatory.
1910 2010-09-14  Glenn Morris  <rgm@gnu.org>
1912         * calendar/diary-lib.el (diary-list-entries-hook, diary-sort-entries):
1913         Doc fixes.
1915         * calendar/diary-lib.el (diary-included-files): New variable.
1916         (diary-list-entries): Maybe initialize diary-included-files.
1917         (diary-include-other-diary-files): Append to diary-included-files.
1918         * calendar/appt.el (appt-update-list): Also check the members of
1919         diary-included-files.  (Bug#6999)
1920         (appt-check): Doc fix.
1922 2010-09-14  David Reitter  <david.reitter@gmail.com>
1924         * simple.el (line-move-visual): Do not truncate goal column to
1925         integer size.  (Bug#7020)
1927 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1929         * repeat.el (repeat): Allow repeating when the last event is a click.
1930         Suggested by Drew Adams (bug#6256).
1932 2010-09-14  Sascha Wilde  <wilde@sha-bang.de>
1934         * vc/vc-hg.el (vc-hg-state,vc-hg-working-revision):
1935         Replace setting HGRCPATH to "" by some less invasive --config options.
1937 2010-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1939         * font-lock.el (font-lock-beginning-of-syntax-function):
1940         Mark as obsolete.
1942 2010-09-14  Glenn Morris  <rgm@gnu.org>
1944         * menu-bar.el (menu-bar-options-save): Fix handling of menu-bar
1945         and tool-bar modes.  (Bug#6211)
1946         (menu-bar-mode): Move setting of standard-value after the
1947         minor-mode definition, otherwise it seems to have no effect.
1949 2010-09-14  Masatake YAMATO  <yamato@redhat.com>
1951         * progmodes/antlr-mode.el (antlr-font-lock-additional-keywords):
1952         Fix typo.  (Bug#6976)
1954 2010-09-14  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
1956         * whitespace.el: Allow cleaning up blanks without blank
1957         visualization (Bug#6651).  Adjust help window for
1958         whitespace-toggle-options (Bug#6479).  Allow to use fill-column
1959         instead of whitespace-line-column (from EmacsWiki).  New version 13.1.
1960         (whitespace-style): Add new value 'face.  Adjust docstring.
1961         (whitespace-space, whitespace-hspace, whitespace-tab):
1962         Adjust foreground property face.
1963         (whitespace-line-column): Adjust docstring and type declaration.
1964         (whitespace-style-value-list, whitespace-toggle-option-alist)
1965         (whitespace-help-text): Adjust const initialization.
1966         (whitespace-toggle-options, global-whitespace-toggle-options):
1967         Adjust docstring.
1968         (whitespace-display-window, whitespace-interactive-char)
1969         (whitespace-style-face-p, whitespace-color-on): Adjust code.
1970         (whitespace-help-scroll): New fun.
1972 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1974         * calendar/time-date.el (format-seconds): Comment fix.
1976 2010-09-13  Michael R. Mauger  <mmaug@yahoo.com>
1978         * progmodes/sql.el: Version 2.7.
1979         (sql-buffer-live-p): Improve detection.
1980         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
1981         (sql-set-sqli-buffer): Use it.
1982         (sql-product-interactive): Run `sql-set-sqli-hook'.
1983         (sql-rename-buffer): Code cleanup.
1984         (sql-redirect, sql-redirect-value): New functions.  More to come.
1986 2010-09-13  Juanma Barranquero  <lekktu@gmail.com>
1988         Port tramp-related Makefile changes of 2010-09-08T14:42:54Z!michael.albinus@gmx.de, 2010-09-13T15:17:01Z!michael.albinus@gmx.de to Windows.
1989         * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
1990         (TRAMP_SRC): New macro.
1991         ($(lisp)/net/tramp-loaddefs.el): New target.
1993 2010-09-13  Michael Albinus  <michael.albinus@gmx.de>
1995         Major code cleanup.  Split tramp.el into tramp.el and tramp-sh.el.
1997         * Makefile.in (TRAMP_SRC): Remove tramp-fish.el.  Add tramp-sh.el.
1999         * net/tramp.el (top): Don't show loading message.  Require just
2000         'tramp-compat, everything else is required there.
2001         Use `ignore-errors' where appropriate.
2002         (tramp-inline-compress-start-size, tramp-copy-size-limit)
2003         (tramp-terminal-type, tramp-end-of-output)
2004         (tramp-initial-end-of-output, tramp-completion-function-alist-rsh)
2005         (tramp-completion-function-alist-ssh)
2006         (tramp-completion-function-alist-telnet)
2007         (tramp-completion-function-alist-su)
2008         (tramp-completion-function-alist-putty, tramp-remote-path)
2009         (tramp-remote-process-environment, tramp-sh-extra-args)
2010         (tramp-actions-before-shell, tramp-uudecode)
2011         (tramp-perl-file-truename, tramp-perl-file-name-all-completions)
2012         (tramp-perl-file-attributes)
2013         (tramp-perl-directory-files-and-attributes)
2014         (tramp-perl-encode-with-module, tramp-perl-decode-with-module)
2015         (tramp-perl-encode, tramp-perl-decode)
2016         (tramp-vc-registered-read-file-names, tramp-file-mode-type-map)
2017         (tramp-file-name-handler-alist, tramp-make-tramp-temp-file)
2018         (tramp-handle-make-symbolic-link, tramp-handle-load)
2019         (tramp-handle-file-name-as-directory)
2020         (tramp-handle-file-name-directory)
2021         (tramp-handle-file-name-nondirectory, tramp-handle-file-truename)
2022         (tramp-handle-file-exists-p, tramp-handle-file-attributes)
2023         (tramp-do-file-attributes-with-ls)
2024         (tramp-do-file-attributes-with-perl)
2025         (tramp-do-file-attributes-with-stat)
2026         (tramp-handle-set-visited-file-modtime)
2027         (tramp-handle-verify-visited-file-modtime)
2028         (tramp-handle-set-file-modes, tramp-handle-set-file-times)
2029         (tramp-set-file-uid-gid, tramp-remote-selinux-p)
2030         (tramp-handle-file-selinux-context)
2031         (tramp-handle-set-file-selinux-context)
2032         (tramp-handle-file-executable-p, tramp-handle-file-readable-p)
2033         (tramp-handle-file-newer-than-file-p, tramp-handle-file-modes)
2034         (tramp-handle-file-directory-p, tramp-handle-file-regular-p)
2035         (tramp-handle-file-symlink-p, tramp-handle-file-writable-p)
2036         (tramp-handle-file-ownership-preserved-p)
2037         (tramp-handle-directory-file-name, tramp-handle-directory-files)
2038         (tramp-handle-directory-files-and-attributes)
2039         (tramp-do-directory-files-and-attributes-with-perl)
2040         (tramp-do-directory-files-and-attributes-with-stat)
2041         (tramp-handle-file-name-all-completions)
2042         (tramp-handle-file-name-completion, tramp-handle-add-name-to-file)
2043         (tramp-handle-copy-file, tramp-handle-copy-directory)
2044         (tramp-handle-rename-file, tramp-do-copy-or-rename-file)
2045         (tramp-do-copy-or-rename-file-via-buffer)
2046         (tramp-do-copy-or-rename-file-directly)
2047         (tramp-do-copy-or-rename-file-out-of-band)
2048         (tramp-handle-make-directory, tramp-handle-delete-directory)
2049         (tramp-handle-delete-file)
2050         (tramp-handle-dired-recursive-delete-directory)
2051         (tramp-handle-dired-compress-file, tramp-handle-dired-uncache)
2052         (tramp-handle-insert-directory)
2053         (tramp-handle-unhandled-file-name-directory)
2054         (tramp-handle-expand-file-name)
2055         (tramp-handle-substitute-in-file-name)
2056         (tramp-handle-executable-find, tramp-process-sentinel)
2057         (tramp-handle-start-file-process, tramp-handle-process-file)
2058         (tramp-handle-call-process-region, tramp-handle-shell-command)
2059         (tramp-handle-file-local-copy, tramp-handle-file-remote-p)
2060         (tramp-handle-insert-file-contents)
2061         (tramp-handle-insert-file-contents-literally)
2062         (tramp-handle-find-backup-file-name)
2063         (tramp-handle-make-auto-save-file-name, tramp-handle-write-region)
2064         (tramp-vc-registered-file-names, tramp-handle-vc-registered)
2065         (tramp-sh-file-name-handler, tramp-vc-file-name-handler)
2066         (tramp-maybe-send-script, tramp-set-auto-save, tramp-run-test)
2067         (tramp-run-test2, tramp-find-executable, tramp-set-remote-path)
2068         (tramp-find-file-exists-command, tramp-open-shell)
2069         (tramp-find-shell, tramp-barf-if-no-shell-prompt)
2070         (tramp-open-connection-setup-interactive-shell)
2071         (tramp-local-coding-commands, tramp-remote-coding-commands)
2072         (tramp-find-inline-encoding, tramp-call-local-coding-command)
2073         (tramp-inline-compress-commands, tramp-find-inline-compress)
2074         (tramp-compute-multi-hops, tramp-maybe-open-connection)
2075         (tramp-send-command, tramp-wait-for-output)
2076         (tramp-send-command-and-check, tramp-barf-unless-okay)
2077         (tramp-send-command-and-read, tramp-mode-string-to-int)
2078         (tramp-convert-file-attributes, tramp-check-cached-permissions)
2079         (tramp-file-mode-from-int, tramp-file-mode-permissions)
2080         (tramp-shell-case-fold, tramp-make-copy-program-file-name)
2081         (tramp-method-out-of-band-p, tramp-local-host-p)
2082         (tramp-get-remote-path, tramp-get-remote-tmpdir)
2083         (tramp-get-ls-command, tramp-get-ls-command-with-dired)
2084         (tramp-get-test-command, tramp-get-test-nt-command)
2085         (tramp-get-file-exists-command, tramp-get-remote-ln)
2086         (tramp-get-remote-perl, tramp-get-remote-stat)
2087         (tramp-get-remote-readlink, tramp-get-remote-trash)
2088         (tramp-get-remote-id, tramp-get-remote-uid, tramp-get-remote-gid)
2089         (tramp-get-local-uid, tramp-get-local-gid)
2090         (tramp-get-inline-compress, tramp-get-inline-coding): Move to
2091         tramp-sh.el.
2092         (tramp-methods, tramp-default-method-alist)
2093         (tramp-default-user-alist, tramp-foreign-file-name-handler-alist):
2094         Move initialization to tramp-sh.el.
2095         (tramp-temp-name-prefix): Make it a defconst.
2096         (tramp-dissect-file-name): Don't check anymore for multi-hop
2097         methods.
2098         (tramp-debug-outline-regexp): Add a docstring.
2099         (tramp-debug-outline-level): Rename from `tramp-outline-level'.
2100         (tramp-get-debug-buffer): Use it.
2102         * net/tramp-cache.el (top): Set tramp-autoload cookie for
2103         initialization forms.
2104         (tramp-set-connection-property): Don't protect `tramp-message'
2105         call, it isn't necessary any longer.
2106         (tramp-dump-connection-properties): Use `ignore-errors'.
2108         * net/tramp-compat.el (top): Require 'advice, 'format-spec,
2109         'password-cache and 'auth-source.
2111         * net/tramp-gvfs.el (top):
2112         * net/tramp-smb.el (top): Require 'tramp-sh.
2114         * net/tramp-gw.el (tramp-gw-open-network-stream): Use `ignore-errors'.
2116         * net/tramp-sh.el: New file, derived from tramp.el.
2117         (top): Initialize `tramp-methods', `tramp-default-method-alist',
2118         `tramp-default-user-alist', `tramp-foreign-file-name-handler-alist'.
2119         Remove "scp1_old", "scp2_old", "ssh1_old", "ssh2_old".
2120         Use `ignore-errors' where appropriate.
2121         (tramp-sh-file-name-handler-alist): Rename from
2122         `tramp-file-name-handler-alist'.
2123         (tramp-send-command-and-check): Return t or nil.  Remove all
2124         `zerop' checks, where called.
2125         (tramp-handle-set-file-modes)
2126         (tramp-do-copy-or-rename-file-directly)
2127         (tramp-handle-delete-directory, tramp-handle-delete-file)
2128         (tramp-maybe-send-script): Use `tramp-barf-unless-okay'.
2129         (tramp-sh-file-name-handler, tramp-send-command-and-check)
2130         (tramp-get-remote-ln): Set tramp-autoload cookie.
2132         * net/tramp-fish.el: Remove file.
2134 2010-09-13  Daiki Ueno  <ueno@unixuser.org>
2136         * epa-file.el (epa-file-insert-file-contents): If visiting, bind
2137         buffer-file-name to avoid file-locking.  (Bug#7026)
2139 2010-09-13  Julien Danjou  <julien@danjou.info>
2141         * notifications.el (notifications-notify): Add support for
2142         image-path and sound-name.
2143         (notifications-specification-version): Add this variable.
2145 2010-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2147         * subr.el (y-or-n-p): New function, moved from src/fns.c; use read-key.
2149 2010-09-12  Leo  <sdl.web@gmail.com>
2151         * net/rcirc.el (rcirc-server-commands, rcirc-client-commands)
2152         (rcirc-completion-start): New variables.
2153         (rcirc-nick-completions): Rename to rcirc-completions.
2154         (rcirc-nick-completion-start-offset): Delete.
2155         (rcirc-completion-at-point): New function for constructing
2156         completion data for both nicks and irc commands.  Add to
2157         completion-at-point-functions in rcirc mode.
2158         (rcirc-complete): Rename from rcirc-nick-complete; use
2159         rcirc-completion-at-point.
2160         (defun-rcirc-command): Update rcirc-client-commands.
2162 2010-09-11  Glenn Morris  <rgm@gnu.org>
2164         * emacs-lisp/bytecomp.el (byte-compile-file): Create .elc files
2165         atomically, to avoid parallel build errors.  (Bug#4196)
2167 2010-09-11  Michael R. Mauger  <mmaug@yahoo.com>
2169         * progmodes/sql.el: Version 2.6
2170         (sql-dialect): Synonym for "sql-product".
2171         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
2172         (sql-set-sqli-buffer, sql-show-sqli-buffer, sql-interactive-mode):
2173         Set "sql-buffer" to buffer name not buffer object so multiple sql
2174         interactive buffers work properly.  Reverts misguided changes in
2175         earlier work.
2176         (sql-comint): Make sure different buffer name is used if "*SQL*"
2177         buffer is for a different product.
2178         (sql-make-alternate-buffer-name): Fix bug with "sql-database"
2179         login param.
2180         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
2181         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
2182         (sql-db2, sql-linter, sql-product-interactive, sql-rename-buffer):
2183         Accept new buffer name or prompt for one.
2184         (sql-port): Default to zero.
2185         (sql-comint-mysql): Handle "sql-port" as a numeric.
2186         (sql-port-history): Delete unused variable.
2187         (sql-get-login): Default "sql-port" to a number.
2188         (sql-product-alist): Correct Postgres prompt and terminator regexp.
2189         (sql-sqlite-program): Dynamically detect presence of "sqlite" or
2190         "sqlite3" executables.
2191         (sql-sqlite-login-params): Add "*.sqlite[23]?" database name pattern.
2192         (sql-buffer-live-p): New function.
2193         (sql-mode-menu, sql-send-string): Use it.
2194         (sql-mode-oracle-font-lock-keywords): Improve SQL*Plus REMARK
2195         syntax pattern.
2196         (sql-mode-postgres-font-lock-keywords): Support Postgres V9.
2197         (sql-mode-sqlite-font-lock-keywords): Hilight sqlite commands.
2199 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2201         * net/netrc.el (netrc-credentials): New convenience function.
2203 2010-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2205         * textmodes/texinfo.el (texinfo-syntax-propertize-function): New fun
2206         to replace texinfo-font-lock-syntactic-keywords.
2207         (texinfo-mode): Use it.
2209         * textmodes/tex-mode.el (tex-common-initialization, doctex-mode):
2210         Use syntax-propertize-function.
2212         * textmodes/sgml-mode.el (sgml-syntax-propertize-function): New var to
2213         replace sgml-font-lock-syntactic-keywords.
2214         (sgml-mode): Use it.
2216         * textmodes/reftex.el (font-lock-syntactic-keywords): Don't declare
2217         since we don't use it.
2219         * textmodes/bibtex.el (bibtex-mode): Use syntax-propertize-function.
2221         * progmodes/vhdl-mode.el (vhdl-mode): Use syntax-propertize-function
2222         if available.
2223         (vhdl-fontify-buffer): Adjust.
2225         * progmodes/tcl.el (tcl-syntax-propertize-function): New var to
2226         replace tcl-font-lock-syntactic-keywords.
2227         (tcl-mode): Use it.
2229         * progmodes/simula.el (simula-syntax-propertize-function): New var to
2230         replace simula-font-lock-syntactic-keywords.
2231         (simula-mode): Use it.
2233         * progmodes/sh-script.el (sh-st-symbol): Remove.
2234         (sh-font-lock-close-heredoc, sh-font-lock-open-heredoc): Add eol arg.
2235         (sh-font-lock-flush-syntax-ppss-cache, sh-font-lock-here-doc): Remove.
2236         (sh-font-lock-quoted-subshell): Assume we've already matched $(.
2237         (sh-font-lock-paren): Set syntax-multiline.
2238         (sh-font-lock-syntactic-keywords): Remove.
2239         (sh-syntax-propertize-function): New function to replace it.
2240         (sh-mode): Use it.
2242         * progmodes/ruby-mode.el (ruby-here-doc-beg-re):
2243         Define while compiling.
2244         (ruby-here-doc-end-re, ruby-here-doc-beg-match)
2245         (ruby-font-lock-syntactic-keywords, ruby-comment-beg-syntax)
2246         (syntax-ppss, ruby-in-ppss-context-p, ruby-in-here-doc-p)
2247         (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
2248         (ruby-here-doc-end-syntax): Only define when
2249         syntax-propertize is not available.
2250         (ruby-syntax-propertize-function, ruby-syntax-propertize-heredoc):
2251         New functions.
2252         (ruby-in-ppss-context-p): Update to new syntax of heredocs.
2253         (electric-indent-chars): Silence bytecompiler.
2254         (ruby-mode): Use prog-mode, syntax-propertize-function, and
2255         electric-indent-chars.
2257         * progmodes/python.el (python-syntax-propertize-function): New var to
2258         replace python-font-lock-syntactic-keywords.
2259         (python-mode): Use it.
2260         (python-quote-syntax): Simplify and adjust to new use.
2262         * progmodes/perl-mode.el (perl-syntax-propertize-function): New fun to
2263         replace perl-font-lock-syntactic-keywords.
2264         (perl-syntax-propertize-special-constructs): New fun to replace
2265         perl-font-lock-special-syntactic-constructs.
2266         (perl-font-lock-syntactic-face-function): New fun.
2267         (perl-mode): Use it.
2269         * progmodes/octave-mod.el (octave-syntax-propertize-sqs): New function
2270         to replace octave-font-lock-close-quotes.
2271         (octave-syntax-propertize-function): New function to replace
2272         octave-font-lock-syntactic-keywords.
2273         (octave-mode): Use it.
2275         * progmodes/mixal-mode.el (mixal-syntax-propertize-function): New var;
2276         replaces mixal-font-lock-syntactic-keywords.
2277         (mixal-mode): Use it.
2279         * progmodes/make-mode.el (makefile-syntax-propertize-function):
2280         New var; replaces makefile-font-lock-syntactic-keywords.
2281         (makefile-mode): Use it.
2282         (makefile-imake-mode): Adjust.
2284         * progmodes/js.el (js--regexp-literal): Define while compiling.
2285         (js-syntax-propertize-function): New var; replaces
2286         js-font-lock-syntactic-keywords.
2287         (js-mode): Use it.
2289         * progmodes/gud.el (gdb-script-syntax-propertize-function): New var;
2290         replaces gdb-script-font-lock-syntactic-keywords.
2291         (gdb-script-mode): Use it.
2293         * progmodes/fortran.el (fortran-mode): Use syntax-propertize-function.
2294         (fortran--font-lock-syntactic-keywords): New var.
2295         (fortran-line-length): Update syntax-propertize-function and
2296         fortran--font-lock-syntactic-keywords.
2298         * progmodes/cperl-mode.el (cperl-mode): Use syntax-propertize-function.
2300         * progmodes/cfengine.el (cfengine-mode):
2301         Use syntax-propertize-function.
2302         (cfengine-font-lock-syntactic-keywords): Remove.
2304         * progmodes/autoconf.el (autoconf-mode):
2305         Use syntax-propertize-function.
2306         (autoconf-font-lock-syntactic-keywords): Remove.
2308         * progmodes/ada-mode.el (ada-set-syntax-table-properties)
2309         (ada-after-change-function, ada-initialize-syntax-table-properties)
2310         (ada-handle-syntax-table-properties): Only define when
2311         syntax-propertize is not available.
2312         (ada-mode): Use syntax-propertize-function.
2314         * font-lock.el (font-lock-syntactic-keywords): Make obsolete.
2315         (font-lock-fontify-syntactic-keywords-region): Move handling of
2316         font-lock-syntactically-fontified to...
2317         (font-lock-default-fontify-region): ...here.
2318         Let syntax-propertize-function take precedence.
2319         (font-lock-fontify-syntactically-region): Cal syntax-propertize.
2321         * emacs-lisp/syntax.el (syntax-propertize-function)
2322         (syntax-propertize-chunk-size, syntax-propertize--done)
2323         (syntax-propertize-extend-region-functions): New vars.
2324         (syntax-propertize-wholelines, syntax-propertize-multiline)
2325         (syntax-propertize--shift-groups, syntax-propertize-via-font-lock)
2326         (syntax-propertize): New functions.
2327         (syntax-propertize-rules): New macro.
2328         (syntax-ppss-flush-cache): Set syntax-propertize--done.
2329         (syntax-ppss): Call syntax-propertize.
2331         * emacs-lisp/regexp-opt.el (regexp-opt-depth): Skip named groups.
2333 2010-09-10  Agustín Martín  <agustin.martin@hispalinux.es>
2335         * textmodes/ispell.el (ispell-init-process): Improve comments.
2336         XEmacs compatibility changes regarding (add-hook) 'local option
2337         and (set-process-query-on-exit-flag).
2339 2010-09-09  Michael Albinus  <michael.albinus@gmx.de>
2341         * net/tramp-cache.el (tramp-parse-connection-properties):
2342         Set tramp-autoload cookie.
2344 2010-09-09  Glenn Morris  <rgm@gnu.org>
2346         * image.el (imagemagick-types-inhibit): Add :type, :version, :group.
2347         (imagemagick-register-types): Doc fix.
2349 2010-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2351         * progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
2353         * progmodes/js.el (require): Require is already "eval-and-compile".
2354         (js--re-search-forward): Avoid `eval'.  Preserve the error data.
2355         (js--re-search-backward): Use js--re-search-forward.
2357         * progmodes/fortran.el (fortran-line-length): Don't recompute
2358         syntactic keywords redundantly a second time.
2360         * progmodes/ada-mode.el: Replace "(set '" with setq.
2361         (ada-mode): Simplify.
2362         (ada-create-case-exception, ada-adjust-case-interactive)
2363         (ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
2364         (ada-search-ignore-string-comment, ada-move-to-start)
2365         (ada-move-to-end): Use with-syntax-table.
2367         * font-lock.el (save-buffer-state): Remove `varlist' arg.
2368         (font-lock-unfontify-region, font-lock-default-fontify-region):
2369         Update usage correspondingly.
2370         (font-lock-fontify-syntactic-keywords-region):
2371         Set parse-sexp-lookup-properties buffer-locally here.
2372         (font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
2374         * simple.el (blink-matching-open): Don't burp if we can't find a match.
2376 2010-09-08  Glenn Morris  <rgm@gnu.org>
2378         * emacs-lisp/bytecomp.el (byte-compile-report-ops):
2379         Error if not compiled with -DBYTE_CODE_METER.
2381         * emacs-lisp/bytecomp.el (byte-recompile-directory):
2382         Ignore dir-locals-file.
2384 2010-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2386         * progmodes/compile.el (compilation-error-regexp-alist-alist):
2387         Not a const.
2388         (compilation-error-regexp-alist-alist): Rule out ": " in file names
2389         for the `gnu' messages.
2390         (compilation-set-skip-threshold): New command.
2391         (compilation-start): Use \' rather than $.
2392         (compilation-forget-errors): Use clrhash.
2394 2010-09-08  Agustín Martín  <agustin.martin@hispalinux.es>
2396         * textmodes/ispell.el (ispell-valid-dictionary-list):
2397         Simplify logic.
2399 2010-09-08  Michael Albinus  <michael.albinus@gmx.de>
2401         Migrate to Tramp 2.2.  Rearrange load dependencies.
2402         (Bug#1529, Bug#5448, Bug#5705)
2404         * Makefile.in (TRAMP_DIR, TRAMP_SRC): New variables.
2405         ($(TRAMP_DIR)/tramp-loaddefs.el): New target.
2406         (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
2408         * net/tramp.el (top): Remove all other tramp-* loads except
2409         tramp-compat.el.  Remove all changes to tramp-unload-hook for
2410         other tramp-* packages.  Rearrange defun order.  Change calls of
2411         `tramp-compat-call-process', `tramp-compat-decimal-to-octal',
2412         `tramp-compat-octal-to-decimal' to new function names.
2413         (tramp-terminal-type, tramp-initial-end-of-output)
2414         (tramp-methods, tramp-foreign-file-name-handler-alist)
2415         (tramp-tramp-file-p, tramp-completion-mode-p)
2416         (tramp-send-command-and-check, tramp-get-remote-path)
2417         (tramp-get-remote-tmpdir, tramp-get-remote-ln)
2418         (tramp-shell-quote-argument): Set tramp-autoload cookie.
2419         (with-file-property, with-connection-property): Move to
2420         tramp-cache.el.
2421         (tramp-local-call-process, tramp-decimal-to-octal)
2422         (tramp-octal-to-decimal): Move to tramp-compat.el.
2423         (tramp-handle-shell-command): Do not require 'shell.
2424         (tramp-compute-multi-hops): No special handling for tramp-gw-*
2425         symbols.
2426         (tramp-unload-tramp): Do not call `tramp-unload-file-name-handlers'.
2428         * net/tramp-cache.el (top): Require 'tramp.  Add to
2429         `tramp-unload-hook'.
2430         (tramp-cache-data, tramp-get-file-property)
2431         (tramp-set-file-property, tramp-flush-file-property)
2432         (tramp-flush-directory-property, tramp-get-connection-property)
2433         (tramp-set-connection-property, tramp-flush-connection-property)
2434         (tramp-cache-print, tramp-list-connections): Set tramp-autoload
2435         cookie.
2436         (with-file-property, with-connection-property): New defuns, moved
2437         from tramp.el.
2438         (tramp-flush-file-function): Use `with-parsed-tramp-file-name'
2439         macro.
2441         * net/tramp-cmds.el (top): Add to `tramp-unload-hook'.
2442         (tramp-version): Set tramp-autoload cookie.
2444         * net/tramp-compat.el (top): Require 'tramp-loaddefs.  Remove all
2445         changes to tramp-unload-hook for other tramp-* packages.  Add to
2446         `tramp-unload-hook'.
2447         (tramp-compat-decimal-to-octal, tramp-compat-octal-to-decimal)
2448         (tramp-compat-call-process): New defuns, moved from tramp.el.
2450         * net/tramp-fish.el (top) Require just 'tramp.  Add objects to
2451         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
2452         to `tramp-unload-hook'.  Change call of
2453         `tramp-compat-decimal-to-octal' to new function name.
2454         (tramp-fish-method): Make it a defconst.
2455         (tramp-fish-file-name-p): Make it a defsubst.
2456         (tramp-fish-method, tramp-fish-file-name-handler)
2457         (tramp-fish-file-name-p): Set tramp-autoload cookie.
2459         * net/tramp-ftp.el (top) Add objects to `tramp-methods' and
2460         `tramp-foreign-file-name-handler-alist'.  Add to
2461         `tramp-unload-hook'.
2462         (tramp-ftp-method): Make it a defconst.
2463         (tramp-ftp-file-name-p): Make it a defsubst.
2464         (tramp-ftp-method, tramp-ftp-file-name-handler)
2465         (tramp-ftp-file-name-p): Set tramp-autoload cookie.
2467         * net/tramp-gvfs.el (top) Add objects to `tramp-methods' and
2468         `tramp-foreign-file-name-handler-alist'.  Add to
2469         `tramp-unload-hook'.  Change checks, whether package can be
2470         loaded.
2471         (tramp-gvfs-file-name-p): Make it a defsubst.
2472         (tramp-gvfs-methods, tramp-gvfs-file-name-handler)
2473         (tramp-gvfs-file-name-p): Set tramp-autoload cookie.
2474         (tramp-gvfs-handle-file-directory-p): New defun.
2475         (tramp-gvfs-file-name-handler-alist): Use it.
2477         * net/tramp-gw.el (top) Add objects to `tramp-methods' and
2478         `tramp-foreign-file-name-handler-alist'.  Add to
2479         `tramp-unload-hook'.
2480         (tramp-gw-tunnel-method, tramp-gw-default-tunnel-port)
2481         (tramp-gw-socks-method, tramp-gw-default-socks-port): Make it a
2482         defconst.
2483         (tramp-gw-tunnel-method, tramp-gw-socks-method)
2484         (tramp-gw-open-connection): Set tramp-autoload cookie.
2486         * net/tramp-imap.el (top) Require just 'tramp.  Add objects to
2487         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
2488         to `tramp-unload-hook'.  Change checks, whether package can be
2489         loaded.
2490         (tramp-imap-file-name-p): Make it a defsubst.
2491         (tramp-imap-method, tramp-imaps-method)
2492         (tramp-imap-file-name-handler)
2493         (tramp-imap-file-name-p): Set tramp-autoload cookie.
2495         * net/tramp-smb.el (top) Require just 'tramp.  Add objects to
2496         `tramp-methods' and `tramp-foreign-file-name-handler-alist'.  Add
2497         to `tramp-unload-hook'.  Change checks, whether package can be
2498         loaded.  Change call of `tramp-compat-decimal-to-octal' to new
2499         function name.
2500         (tramp-smb-tunnel-method): Make it a defconst.
2501         (tramp-smb-file-name-p): Make it a defsubst.
2502         (tramp-smb-method, tramp-smb-file-name-handler)
2503         (tramp-smb-file-name-p): Set tramp-autoload cookie.
2505         * net/tramp-uu.el (top) Add to `tramp-unload-hook'.
2506         (tramp-uuencode-region): Set tramp-autoload cookie.
2508         * net/trampver.el (top) Add to `tramp-unload-hook'.
2509         (tramp-version, tramp-bug-report-address): Set tramp-autoload
2510         cookie.  Update release number.
2512 2010-09-07  Agustín Martín  <agustin.martin@hispalinux.es>
2514         * textmodes/ispell.el (ispell-start-process): Make sure original
2515         arg list is properly initialized (Bug#6993, Bug#6994).
2517 2010-09-06  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
2519         * files.el (directory-abbrev-alist): Use \` as default regexp.
2521         * emacs-lisp/rx.el (rx-any): Don't explode ranges that end in special
2522         chars like - or ] (bug#6984).
2523         (rx-any-condense-range): Explode 2-char ranges.
2525 2010-09-06  Glenn Morris  <rgm@gnu.org>
2527         * desktop.el (desktop-path): Bump :version after 2009-09-15 change.
2529 2010-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2531         * textmodes/bibtex.el:
2532         * proced.el: Update to new email for Roland Winkler <winkler@gnu.org>.
2534 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2536         * net/imap.el (imap-message-map): Remove optional buffer parameter,
2537         since no callers use it.
2538         (imap-message-get): Ditto.
2539         (imap-message-put): Ditto.
2540         (imap-mailbox-map): Ditto.
2541         (imap-mailbox-put): Ditto.
2542         (imap-mailbox-get): Ditto.
2543         (imap-mailbox-get): Revert last change for this function.
2545 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2547         * net/imap.el (imap-fetch-safe): Remove function, and alter all
2548         callers to use `imap-fetch' instead.  According to the comments, this
2549         should be safe, since all other IMAP clients use the 1:* syntax.
2550         (imap-enable-exchange-bug-workaround): Remove.
2551         (imap-debug): Remove -- doesn't seem very useful.
2553 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2555         * net/imap.el (imap-log): New convenience function used throughout
2556         instead of repeating the same code all over the place.
2558 2010-09-05  David De La Harpe Golden  <david@harpegolden.net>
2560         * mouse.el (mouse-save-then-kill): Save region to kill-ring
2561         when mouse-drag-copy-region is non-nil (Bug#6956).
2563 2010-09-05  Chong Yidong  <cyd@stupidchicken.com>
2565         * dired.el (dired-ls-sorting-switches, dired-sort-by-name-regexp):
2566         Improve regexps (Bug#6987).
2567         (dired-sort-toggle): Search more robustly for -t flag.
2569         * files.el (get-free-disk-space): Search more robustly for
2570         "available" column.  Suggested by Ehud Karni
2571         <ehud@unix.mvs.co.il>.
2573 2010-09-05  Juanma Barranquero  <lekktu@gmail.com>
2575         * international/uni-bidi.el:
2576         * international/uni-category.el:
2577         * international/uni-combining.el:
2578         * international/uni-decimal.el:
2579         * international/uni-mirrored.el:
2580         * international/uni-name.el: Regenerate.
2582 2010-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2584         * electric.el (electric-indent-post-self-insert-function):
2585         Don't reindent with a sloppy indentation function.
2587         * emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch
2588         border case in change-log-mode.
2590 2010-09-04  Chong Yidong  <cyd@stupidchicken.com>
2592         * progmodes/compile.el (compilation-error-regexp-alist-alist):
2593         Remove ruby regexp; handle Ruby errors with gcc-include and gnu.
2594         Recognize leading tab in gcc-include regexp.  Ignore names with
2595         leading "from" or "in" in gnu regexp (Bug#6937).
2597 2010-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2599         Avoid global recursive calls to kill-buffer-hooks; fit into 80 cols.
2600         * textmodes/ispell.el (ispell-process-buffer-name): Remove.
2601         (ispell-start-process): Avoid setq and simplify logic.
2602         (ispell-init-process): Setup kill-buffer-hook locally when needed.
2603         (kill-buffer-hook): Don't use it globally with code that uses
2604         expand-file-name since that may call kill-buffer via
2605         code_conversion_restore.
2607 2010-09-04  Noorul Islam K M  <noorul@noorul.com>  (tiny change)
2609         * emacs-lisp/package.el (package-directory-list): Only call
2610         file-name-nondirectory on a string.
2612 2010-09-02  Chong Yidong  <cyd@stupidchicken.com>
2614         * emacs-lisp/package.el (package--download-one-archive):
2615         Ensure that archive-contents is valid before saving it.
2616         (package-activate-1, package-mark-obsolete, define-package)
2617         (package-compute-transaction, package-list-maybe-add): Use push.
2619 2010-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2621         Use SMIE's blink-paren for octave-mode.
2622         * progmodes/octave-mod.el (octave-font-lock-close-quotes):
2623         Backslashes do not escape single-quotes, single-quotes do.
2624         (octave-block-else-regexp, octave-block-end-regexp)
2625         (octave-block-match-alist): Remove.
2626         (octave-smie-bnf-table): New var, with old content.
2627         (octave-smie-op-levels): Use it.
2628         (octave-smie-closer-alist): New var.
2629         (octave-mode): Use it.  Setup smie-blink-matching and electric-indent.
2630         (octave-blink-matching-block-open): Remove.
2631         (octave-reindent-then-newline-and-indent, octave-electric-semi)
2632         (octave-electric-space): Let self-insert-command run expand-abbrev and
2633         blink parens.
2635         * electric.el (electricity): New group.
2636         (electric-indent-chars): New var.
2637         (electric-indent-post-self-insert-function): New fun.
2638         (electric-indent-mode): New minor mode.
2639         (electric-pair-skip-self): New custom.
2640         (electric-pair-post-self-insert-function): New function.
2641         (electric-pair-mode): New minor mode.
2643         * calc/calc-aent.el (calcAlg-blink-matching-check): New fun, to replace
2644         calcAlg-blink-matching-open.
2645         (calc-alg-ent-map, calc-alg-ent-esc-map): Initialize in the declaration.
2646         (calc-do-alg-entry): Only touch the part of the keymap that varies.
2647         Use the new blink-matching-check-function.
2649         Provide blink-matching support to SMIE.
2650         * emacs-lisp/smie.el (smie-bnf-closer-alist): New function.
2651         (smie-blink-matching-triggers, smie-blink-matching-inners): New vars.
2652         (smie-blink-matching-check, smie-blink-matching-open): New functions.
2654         * simple.el (newline): Fix last change to properly remove itself from
2655         the hook.
2657 2010-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2659         * simple.el (newline): Eliminate optimization.
2660         Use post-self-insert-hook to set hard-newline and things before
2661         running post-self-insert-hook.
2662         (blink-matching-check-mismatch): New function.
2663         (blink-matching-check-function): New variable.
2664         (blink-matching-open): Use them.
2665         Skip back forward over prefix chars skipped by forward-sexp.
2666         Don't check if the parens are backslash escaped.
2667         (blink-paren-post-self-insert-function): Check backslash escaping here.
2669 2010-09-02  Chong Yidong  <cyd@stupidchicken.com>
2671         * emacs-lisp/package.el (package-menu-mode-map):
2672         Change package-menu-revert bindings to revert-buffer.
2673         (package-menu-mode): Set revert-buffer-function.
2674         (package-menu-revert): Doc fix.
2676 2010-09-02  Agustín Martín  <agustin.martin@hispalinux.es>
2678         * textmodes/ispell.el (ispell-init-process): Use "~/" as
2679         `default-directory' unless using Ispell per-directory personal
2680         dictionaries and not in a mini-buffer under XEmacs.
2681         (kill-buffer-hook): Do not kill ispell process on exit when
2682         `ispell-process-directory' is "~/".  (Bug#6143)
2684 2010-09-02  Jan Djärv  <jan.h.d@swipnet.se>
2686         * simple.el (kill-new): Call interprogram-cut-function with only
2687         one argument.
2689         * term.el (term-mouse-paste): Don't call x-get-cutbuffer.
2690         Remove cut buffer from error message.
2692         * term/x-win.el (x-select-text):
2693         * term/pc-win.el (x-selection-value):
2694         * term/ns-win.el (x-selection-value):
2695         * eshell/em-term.el:
2696         * w32-fns.el (x-get-selection-value):
2697         * mouse-sel.el (mouse-sel-set-selection-function):
2698         * frame.el (display-selections-p): Remove cut-buffer in documentation.
2700         * term/x-win.el: Update documentation for x-last-selected-text-*.
2701         (x-last-selected-text-cut, x-last-selected-text-cut-encoded)
2702         (x-last-cut-buffer-coding, x-cut-buffer-max): Remove.
2703         (x-select-text): Remove argument PUSH, update documentation.  Remove
2704         cut-buffer code.
2705         (x-selection-value-internal): Was previously x-selection-value.
2706         (x-selection-value): Rename from x-cut-buffer-or-selection-value.
2707         Update documentation, remove cut-buffer code.  Call
2708         x-selection-value-internal.
2709         (x-clipboard-yank): Call x-selection-value-internal.
2710         (x-initialize-window-system): Remove setting of x-cut-buffer-max.
2712         * term/pc-win.el (x-last-selected-text):
2713         x-cut-buffer-or-selection-value renamed to x-selection-value
2714         (x-select-text): Remove argument PUSH, update documentation.
2716         * term/ns-win.el (x-setup-function-keys, ns-last-selected-text):
2717         x-cut-buffer-or-selection-value renamed to x-selection-value
2718         (x-selection-value): Renamed from x-cut-buffer-or-selection-value.
2719         (x-select-text): Remove argument PUSH, update documentation.
2721         * emacs-lisp/cl-macs.el (x-get-cutbuffer, x-get-cut-buffer): Remove.
2723         * w32-fns.el (x-last-selected-text):
2724         x-cut-buffer-or-selection-value renamed to x-selection-value.
2725         (x-cut-buffer-max): Remove.
2726         (x-select-text): Remove argument PUSH, update documentation.
2728         * simple.el (interprogram-cut-function): Remove mention of PUSH.
2730         * select.el (x-get-cut-buffer, x-set-cut-buffer): Remove.
2732         * mouse-sel.el (mouse-sel-get-selection-function):
2733         x-cut-buffer-or-selection-value renamed to x-selection-value.
2734         (x-select-text): Remove optional push.
2736 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2738         * simple.el (blink-paren-function): Move from C to here.
2739         (blink-paren-post-self-insert-function): New function.
2740         (post-self-insert-hook): Use it.
2742         * emacs-lisp/pcase.el (pcase-split-memq):
2743         Fix overenthusiastic optimisation.
2744         (pcase-u1): Handle the case of a lambda pred.
2746 2010-08-31  Kenichi Handa  <handa@m17n.org>
2748         * international/mule-cmds.el (standard-display-european-internal):
2749         Setup standard-display-table for 8-bit characters by storing 8-bit
2750         characters in the element vector.
2752         * disp-table.el (standard-display-8bit):
2753         Setup standard-display-table for 8-bit characters by storing 8-bit
2754         characters in the element vector.
2755         (standard-display-european): Likewise.
2757 2010-08-31  Masatake YAMATO  <yamato@redhat.com>
2759         * textmodes/nroff-mode.el (nroff-view): New command.
2760         (nroff-mode-map): Bind it to C-c C-c.
2762 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
2764         * emacs-lisp/smie.el (smie-down-list): New command.
2766         Remove old indentation and navigation code on octave-mode.
2767         * progmodes/octave-mod.el (octave-mode-map): Remap down-list to
2768         smie-down-list rather than add a binding for octave-down-block.
2769         (octave-mark-block, octave-blink-matching-block-open):
2770         Rely on forward-sexp-function.
2771         (octave-fill-paragraph): Don't narrow, so you can use
2772         indent-according-to-mode.
2773         (octave-block-begin-regexp, octave-block-begin-or-end-regexp): Remove.
2774         (octave-in-block-p, octave-re-search-forward-kw)
2775         (octave-re-search-backward-kw, octave-indent-calculate)
2776         (octave-end-as-array-index-p, octave-block-end-offset)
2777         (octave-scan-blocks, octave-forward-block, octave-backward-block)
2778         (octave-down-block, octave-backward-up-block, octave-up-block)
2779         (octave-before-magic-comment-p, octave-indent-line): Remove.
2781 2010-08-31  Chong Yidong  <cyd@stupidchicken.com>
2783         * emacs-lisp/package.el (package--read-archive-file): Just use
2784         `read', to avoid copying an additional string.
2785         (package-menu-mode): Set header-line-format here.
2786         (package-menu-refresh, package-menu-revert): Signal an error if
2787         not in the Package Menu.
2788         (package-menu-package-list): New var.
2789         (package--generate-package-list): Operate on the current buffer;
2790         don't assume that it is *Packages*, since the user may rename it.
2791         Allow persistent package listings and sort keys using
2792         package-menu-package-list and package-menu-package-sort-key.
2793         (package-menu--version-predicate): Fix version calculation.
2794         (package-menu-sort-by-column): Don't select the window.
2795         (package--list-packages): Create the *Packages* buffer.
2796         Set package-menu-package-list-key.
2797         (list-packages): Sorting by status is now the default.
2798         (package-buffer-info): Use match-string-no-properties.
2799         (define-package): Add a &rest argument for future proofing, but
2800         don't use it yet.
2801         (package-install-from-buffer, package-install-buffer-internal):
2802         Merge into a single function, package-install-from-buffer.
2803         (package-install-file): Change caller.
2805         * finder.el: Load finder-inf using `require'.
2806         (finder-list-matches): Sorting by status is now the default.
2807         (finder-compile-keywords): Simpify printing.
2809 2010-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2811         * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
2812         (octave-mode-map): Remove special bindings for forward/backward-block
2813         and octave-backward-up-block.  Use smie-close-block.
2814         (octave-continuation-marker-regexp): New var.
2815         (octave-continuation-regexp): Use it.
2816         (octave-operator-table, octave-smie-op-levels)
2817         (octave-operator-regexp, octave-smie-indent-rules): New vars.
2818         (octave-smie-backward-token, octave-smie-forward-token): New funs.
2819         (octave-mode): Use SMIE.
2820         (octave-close-block): Delete.
2822 2010-08-30  Eli Zaretskii  <eliz@gnu.org>
2824         * menu-bar.el (menu-bar-edit-menu) <"Paste">: Check selection in
2825         CLIPBOARD, not in PRIMARY.  (Bug#6944)
2827 2010-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2829         * emacs-lisp/smie.el (smie-indent-offset-rule): Let :parent take
2830         a list of parents.
2831         (smie-indent-column): Allow indirection through variables.
2833         * composite.el (save-buffer-state): Delete, unused.
2834         * font-lock.el (save-buffer-state): Use with-silent-modifications.
2835         (font-lock-default-fontify-region): Use with-syntax-table.
2836         * jit-lock.el (with-buffer-unmodified): Remove.
2837         (with-buffer-prepared-for-jit-lock): Use with-silent-modifications.
2839         Use `declare' in defmacros.
2840         * window.el (save-selected-window):
2841         * subr.el (with-temp-file, with-temp-message, with-syntax-table):
2842         * progmodes/python.el (def-python-skeleton):
2843         * net/dbus.el (dbus-ignore-errors):
2844         * jka-cmpr-hook.el (with-auto-compression-mode):
2845         * international/mule.el (with-category-table):
2846         * emacs-lisp/timer.el (with-timeout):
2847         * emacs-lisp/lisp-mnt.el (lm-with-file):
2848         * emacs-lisp/eieio.el (with-slots):
2849         * emacs-lisp/easymenu.el (easy-menu-define):
2850         * emacs-lisp/debug.el (debugger-env-macro):
2851         * emacs-lisp/cl-compat.el (Multiple-value-bind, Multiple-value-setq)
2852         (Multiple-value-call, Multiple-value-prog1):
2853         * emacs-lisp/cl-seq.el (cl-parsing-keywords, cl-check-key)
2854         (cl-check-test-nokey, cl-check-test, cl-check-match): Move indent and
2855         edebug rule to definition.
2856         * emacs-lisp/lisp-mode.el (save-selected-window)
2857         (with-current-buffer, combine-after-change-calls)
2858         (with-output-to-string, with-temp-file, with-temp-buffer)
2859         (with-temp-message, with-syntax-table, read-if, eval-after-load)
2860         (dolist, dotimes, when, unless):
2861         * emacs-lisp/byte-run.el (inline): Remove indent rule, redundant.
2863 2010-08-29  Chong Yidong  <cyd@stupidchicken.com>
2865         * finder.el: Require `package'.
2866         (finder-known-keywords): Tweak descriptions.  Retire `oop' keyword.
2867         (finder-package-info): Var deleted.
2868         (finder-keywords-hash, finder--builtins-alist): New vars.
2869         (finder-compile-keywords): Compute package--builtins and
2870         finder-keywords-hash instead of finder-keywords-hash, respecting
2871         the "Package" header.
2872         (finder-unknown-keywords, finder-list-matches):
2873         Use finder-keywords-hash and package--list-packages.
2874         (finder-mode): Don't set font-lock-defaults.
2875         (finder-exit): We don't use "*Finder-package*" and "*Finder
2876         Category*" buffers anymore.
2878         * emacs-lisp/package.el (package--builtins-base): Var deleted.
2879         (package--builtins): Set default value to nil.
2880         (package-initialize): Load precomputed value of package--builtins
2881         from finder-inf.el.
2882         (package-alist, package-compute-transaction)
2883         (package-download-transaction): Improve docstring.
2884         (package-read-all-archive-contents): Do not change
2885         package--builtins here.
2886         (list-packages): Make package-list-packages an alias for this.
2887         Sort by status by default.
2888         (package--list-packages): Add optional PACKAGES arg.
2889         (describe-package-1): Use font-lock-face property.  For built-in
2890         packages, insert file commentary.
2891         (package--generate-package-list): Rename from
2892         package-list-packages-internal; all callers changed.  Add optional
2893         PACKAGES arg.  Add alphabetical sort fallbacks.
2894         (package-menu--version-predicate, package-menu--status-predicate)
2895         (package-menu--description-predicate)
2896         (package-menu--name-predicate): New functions.
2898         * info.el (Info-finder-find-node): Search package-alist instead of
2899         finder-package-info.
2901 2010-08-29  Chong Yidong  <cyd@stupidchicken.com>
2903         * subr.el (version-regexp-alist): Don't use "a" and "b" for
2904         "alpha" and "beta".
2905         (version-to-list): Handle versions like "10.3d".
2907 2010-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2909         * emacs-lisp/macroexp.el (macroexpand-all-1): Use pcase.
2910         (macroexp-accumulate): Use `declare'.
2912 2010-08-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
2914         * whitespace.el (whitespace-style): Adjust type declaration.
2916 2010-08-26  Magnus Henoch  <magnus.henoch@gmail.com>
2918         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
2919         empty argument to gvfs-copy.
2921 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
2923         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
2924         handle new TRASH arg of `delete-file'.
2926 2010-08-26  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
2928         * net/tramp.el (tramp-handle-insert-directory): Don't use
2929         `forward-word', its default syntax could be changed.
2931 2010-08-26  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
2932             Michael Albinus  <michael.albinus@gmx.de>
2934         Implement compression for inline methods.
2936         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
2937         (tramp-copy-size-limit): Allow also nil.
2938         (tramp-inline-compress-commands): New defconst.
2939         (tramp-find-inline-compress, tramp-get-inline-compress)
2940         (tramp-get-inline-coding): New defuns.
2941         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
2942         replaced by `tramp-get-inline-coding'.
2943         (tramp-handle-file-local-copy, tramp-handle-write-region)
2944         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
2946 2010-08-26  Noah Lavine  <noah549@gmail.com>  (tiny change)
2948         Detect ssh 'ControlMaster' argument automatically in some cases.
2950         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
2951         (tramp-default-method): Use it.
2953 2010-08-26  Karel Klíč  <kklic@redhat.com>
2955         * net/tramp.el (tramp-file-name-for-operation):
2956         Add file-selinux-context.
2958 2010-08-26  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
2960         * play/cookie1.el (read-cookie): Fix off-by-one error (bug#6921).
2962 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
2964         * simple.el (beginning-of-buffer, end-of-buffer): Doc fix
2965         (Bug#6907).
2967 2010-08-26  Nathan Weizenbaum  <nweiz@cressida.sea.corp.google.com>  (tiny change)
2969         * progmodes/js.el: Make indentation more customizable (Bug#6914).
2970         (js-paren-indent-offset, js-square-indent-offset)
2971         (js-curly-indent-offset): New options.
2972         (js--proper-indentation): Use them.
2974 2010-08-26  Daniel Colascione  <dan.colascione@gmail.com>
2976         * progmodes/sh-script.el (sh-get-indent-info): Use syntax-ppss
2977         instead of inspecting font-lock properties (Bug#6916).
2979 2010-08-26  David Reitter  <david.reitter@gmail.com>
2981         * server.el (server-visit-files): Run pre-command-hook and
2982         post-command-hook for each buffer while it is current (Bug#6910).
2983         (server-execute): Do not run hooks here.
2985 2010-08-26  Michael Albinus  <michael.albinus@gmx.de>
2987         Sync with Tramp 2.1.19.
2989         * net/tramp-cmds.el (tramp-cleanup-all-connections)
2990         (tramp-reporter-dump-variable, tramp-load-report-modules)
2991         (tramp-append-tramp-buffers): Use `tramp-compat-funcall'.
2992         (tramp-bug): Recommend setting of `tramp-verbose' to 9.
2994         * net/tramp-compat.el (top): Do not autoload
2995         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
2996         only when `start-file-process' is not bound.
2997         (byte-compile-not-obsolete-vars): Define if not bound.
2998         (tramp-compat-funcall): New defmacro.
2999         (tramp-compat-line-beginning-position)
3000         (tramp-compat-line-end-position)
3001         (tramp-compat-temporary-file-directory)
3002         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
3003         (tramp-compat-copy-file, tramp-compat-copy-directory)
3004         (tramp-compat-delete-file, tramp-compat-delete-directory)
3005         (tramp-compat-number-sequence, tramp-compat-process-running-p):
3006         Use it.
3007         (tramp-advice-file-expand-wildcards): Do not use
3008         `tramp-handle-file-remote-p'.
3009         (tramp-compat-make-temp-file): Simplify fallback implementation.
3010         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
3011         (tramp-compat-copy-tree): Remove function.
3012         (tramp-compat-delete-file): New defun.
3013         (tramp-compat-delete-directory): Provide implementation for older
3014         Emacsen.
3015         (tramp-compat-file-attributes): Handle only
3016         `wrong-number-of-arguments' error.
3018         * net/tramp-fish.el (tramp-fish-handle-copy-file):
3019         Add PRESERVE_SELINUX_CONTEXT.
3020         (tramp-fish-handle-delete-file): Add TRASH arg.
3021         (tramp-fish-handle-directory-files-and-attributes):
3022         Do not use `tramp-fish-handle-file-attributes.
3023         (tramp-fish-handle-file-local-copy)
3024         (tramp-fish-handle-insert-file-contents)
3025         (tramp-fish-maybe-open-connection): Use `with-progress-reporter'.
3027         * net/tramp-gvfs.el (top): Require url-util.
3028         (tramp-gvfs-mount-point): Remove.
3029         (tramp-gvfs-file-name-handler-alist): Add `file-selinux-context'
3030         and `set-file-selinux-context'.
3031         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command)
3032         (tramp-gvfs-handle-file-selinux-context)
3033         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
3034         (with-tramp-dbus-call-method): Format trace message.
3035         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
3036         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
3037         Implement backup call, when operation on local files fails.
3038         Use progress reporter.  Flush properties of changed files.
3039         (tramp-gvfs-handle-delete-file): Add TRASH arg.  Use
3040         `tramp-compat-delete-file'.
3041         (tramp-gvfs-handle-expand-file-name): Expand "~/".
3042         (tramp-gvfs-handle-make-directory): Make more traces.
3043         (tramp-gvfs-handle-write-region): Protect deleting tmpfile.
3044         (tramp-gvfs-url-file-name): Hexify file name in url.
3045         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
3046         into account for the resulting file name.
3047         (tramp-gvfs-handler-askquestion): Preserve current message, in
3048         order to let progress reporter continue afterwards.  (Bug#6257)
3049         Return dummy mountpoint, when the answer is "no".
3050         See `tramp-gvfs-maybe-open-connection'.
3051         (tramp-gvfs-handler-mounted-unmounted)
3052         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
3053         attribute "default_location".  Set "prefix" property.
3054         Handle default-location.
3055         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
3056         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
3057         exists.  Raise an error, if not (due to a corresponding answer
3058         "no" in interactive questions, for example).
3059         Use `tramp-compat-funcall'.
3061         * net/tramp-imap.el (top): Autoload `epg-make-context'.
3062         (tramp-imap-handle-copy-file): Add PRESERVE-SELINUX-CONTEXT.
3063         (tramp-imap-do-copy-or-rename-file)
3064         (tramp-imap-handle-insert-file-contents)
3065         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
3066         (tramp-imap-handle-delete-file): Add TRASH arg.
3068         * net/tramp-smb.el (tramp-smb-handle-copy-file):
3069         Add PRESERVE-SELINUX-CONTEXT.
3070         (tramp-smb-handle-copy-file)
3071         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
3072         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
3073         Use `with-progress-reporter'.
3074         (tramp-smb-handle-delete-file): Add TRASH arg.
3076         * net/tramp.el (tramp-methods): Move hostname to the end in all
3077         ssh `tramp-login-args'.  Add `tramp-async-args' attribute where
3078         appropriate.
3079         (tramp-verbose): Describe verbose level 9.
3080         (tramp-completion-function-alist)
3081         (tramp-file-name-regexp, tramp-chunksize)
3082         (tramp-local-coding-commands, tramp-remote-coding-commands)
3083         (with-connection-property, tramp-completion-mode-p)
3084         (tramp-action-process-alive, tramp-action-out-of-band)
3085         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
3086         (tramp-exists-file-name-handler): Fix docstring.
3087         (tramp-remote-process-environment): Use `format' instead of
3088         `concat'.  Protect version string by apostroph.
3089         (tramp-shell-prompt-pattern): Do not use a shy group in case of
3090         XEmacs.
3091         (tramp-file-name-regexp-unified)
3092         (tramp-completion-file-name-regexp-unified): On W32 systems, do
3093         not regard the volume letter as remote filename.  (Bug#5447)
3094         (tramp-perl-file-attributes)
3095         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
3096         (tramp-vc-registered-read-file-names): Read input as
3097         here-document, otherwise the command could exceed maximum length
3098         of command line.
3099         (tramp-file-name-handler-alist): Add `file-selinux-context' and
3100         `set-file-selinux-context'.
3101         (tramp-debug-message): Add `tramp-compat-funcall' to ignored
3102         backtrace functions.
3103         (tramp-error-with-buffer): Don't show the connection buffer when
3104         we are in completion mode.
3105         (tramp-progress-reporter-update, tramp-remote-selinux-p)
3106         (tramp-handle-file-selinux-context)
3107         (tramp-handle-set-file-selinux-context, tramp-process-sentinel)
3108         (tramp-connectable-p, tramp-open-shell, tramp-get-remote-trash):
3109         New defuns.
3110         (with-progress-reporter): New defmacro.
3111         (tramp-debug-outline-regexp): New defconst.
3112         (top, tramp-rfn-eshadow-setup-minibuffer)
3113         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
3114         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
3115         (tramp-completion-mode-p, tramp-check-for-regexp)
3116         (tramp-open-connection-setup-interactive-shell)
3117         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
3118         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
3119         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp):
3120         Use `tramp-compat-funcall'.
3121         (tramp-handle-make-symbolic-link): Flush file properties.
3122         (tramp-handle-load, tramp-handle-file-local-copy)
3123         (tramp-handle-insert-file-contents, tramp-handle-write-region)
3124         (tramp-handle-vc-registered, tramp-maybe-send-script)
3125         (tramp-find-shell): Use `with-progress-reporter'.
3126         (tramp-do-file-attributes-with-stat): Add space in format string,
3127         in order to work around a bug in pdksh.  Reported by Gilles Pion
3128         <gpion@lfdj.com>.
3129         (tramp-handle-verify-visited-file-modtime): Do not send a command
3130         when the connection is not established.
3131         (tramp-handle-set-file-times): Simplify the check for utc.
3132         (tramp-handle-directory-files-and-attributes)
3133         (tramp-get-remote-path): Use `copy-tree'.
3134         (tramp-completion-handle-file-name-all-completions): Ensure, that
3135         non remote files are still checked.  Oops.
3136         (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
3137         Handle PRESERVE-SELINUX-CONTEXT.
3138         (tramp-do-copy-or-rename-file): Add progress reporter.
3139         (tramp-do-copy-or-rename-file-directly): Do not use
3140         `tramp-handle-file-remote-p'.
3141         (tramp-do-copy-or-rename-file-out-of-band):
3142         Use `tramp-compat-delete-directory'.
3143         (tramp-do-copy-or-rename-file-out-of-band)
3144         (tramp-compute-multi-hops, tramp-maybe-open-connection):
3145         Use `format-spec-make'.
3146         (tramp-handle-delete-file): Add TRASH arg.
3147         (tramp-handle-dired-uncache): Flush directory cache, not only file
3148         cache.
3149         (tramp-handle-expand-file-name)
3150         (tramp-completion-handle-file-name-all-completions)
3151         (tramp-completion-handle-file-name-completion):
3152         Use `tramp-connectable-p'.
3153         (tramp-handle-start-file-process): Set connection property "vec".
3154         Use it, in order to invalidate file caches.  Check only for
3155         `remote-tty' process property.
3156         Implement tty setting.  (Bug#4604, Bug#6360)
3157         (tramp-file-name-for-operation): Add `call-process-region' and
3158         `set-file-selinux-context'.
3159         (tramp-find-foreign-file-name-handler)
3160         (tramp-advice-make-auto-save-file-name)
3161         (tramp-set-auto-save-file-modes): Remove superfluous check for
3162         `stringp'.  This is done inside `tramp-tramp-file-p'.
3163         (tramp-file-name-handler): Trace 'quit.  Catch the error for some
3164         operations when we are in completion mode.  This gives the user
3165         the chance to correct the file name in the minibuffer.
3166         (tramp-completion-mode-p): Use `non-essential'.
3167         (tramp-handle-file-name-all-completions): Backward/ XEmacs
3168         compatibility: Use `completion-ignore-case' if
3169         `read-file-name-completion-ignore-case' does not exist.
3170         (tramp-get-debug-buffer): Use `tramp-debug-outline-regexp'.
3171         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3172         `tramp-open-shell'.
3173         (tramp-action-password): Hide password prompt before next run.
3174         (tramp-process-actions): Widen connection buffer for the trace.
3175         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
3176         process property.  Trace stty settings if `tramp-verbose' >= 9.
3177         Apply workaround for IRIX64 bug.  Move argument of last
3178         `tramp-send-command' where it belongs to.
3179         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
3180         front of `login-args'.
3181         (tramp-get-ls-command, tramp-get-ls-command-with-dired): Run tests
3182         on "/dev/null" instead of "/".
3183         (tramp-get-ls-command-with-dired): Make test for "--dired"
3184         stronger.
3185         (tramp-set-auto-save-file-modes): Adapt version check.
3186         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
3187         (tramp-handle-process-file): Call the program in a subshell, in
3188         order to preserve working directory.
3189         (tramp-handle-shell-command): Don't use hard-wired "/bin/sh" but
3190         `tramp-remote-sh' from `tramp-methods'.
3191         (tramp-get-ls-command): Make test for "--color=never" stronger.
3192         (tramp-check-for-regexp): Use (forward-line 1).
3194         * net/trampver.el: Update release number.
3196 2010-08-26  Chong Yidong  <cyd@stupidchicken.com>
3198         * help.el (help-map): Bind `C-h P' to describe-package.
3200         * menu-bar.el (menu-bar-describe-menu): Add describe-package.
3202         * emacs-lisp/package.el (package-refresh-contents): Catch errors
3203         when downloading archives.
3204         (describe-package-1): Add package commentary.
3205         (package-install-button-action): New function.
3206         (package-menu-mode-map): Bind ? to package-menu-describe-package.
3207         (package-menu-view-commentary): Function removed.
3208         (package-list-packages-internal): Hide the `package' package too.
3210 2010-08-25  Kenichi Handa  <handa@m17n.org>
3212         * language/misc-lang.el ("Arabic"): New language environment.
3213         Setup composition-function-table for Arabic characters.
3215         * international/fontset.el (setup-default-fontset): Fix typo for
3216         arabic OTF spec (fini->fina).
3218 2010-08-25  Jan Djärv  <jan.h.d@swipnet.se>
3220         * menu-bar.el (menu-bar-set-tool-bar-position): Set frame parameter
3221         on all frames.
3223 2010-08-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3225         * whitespace.el: Allow cleaning up blanks without blank
3226         visualization (Bug#6651).  Adjust help window for
3227         whitespace-toggle-options (Bug#6479).  Allow to use fill-column
3228         instead of whitespace-line-column (from EmacsWiki).  New version
3229         13.1.
3230         (whitespace-style): Added new value 'face.  Adjust docstring.
3231         (whitespace-space, whitespace-hspace, whitespace-tab): Adjust
3232         foreground property face.
3233         (whitespace-line-column): Adjust docstring and type declaration.
3234         (whitespace-style-value-list, whitespace-toggle-option-alist)
3235         (whitespace-help-text): Adjust const initialization.
3236         (whitespace-toggle-options, global-whitespace-toggle-options):
3237         Adjust docstring.
3238         (whitespace-display-window, whitespace-interactive-char)
3239         (whitespace-style-face-p, whitespace-color-on): Adjust code.
3240         (whitespace-help-scroll): New fun.
3242 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
3244         * emacs-lisp/package.el (list-packages): Alias for
3245         package-list-packages.
3247 2010-08-24  Kevin Ryde  <user42@zip.com.au>
3249         * textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
3250         (Bug#5651).
3252         * progmodes/ruby-mode.el (ruby): Add defgroup.
3254 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
3256         * progmodes/python.el: Add Ipython support (Bug#5390).
3257         (python-shell-prompt-alist)
3258         (python-shell-continuation-prompt-alist): New options.
3259         (python--set-prompt-regexp): New function.
3260         (inferior-python-mode, run-python, python-shell): Require
3261         ansi-color.  Use python--set-prompt-regexp to set the comint
3262         prompt based on the Python interpreter.
3263         (python--prompt-regexp): New var.
3264         (python-check-comint-prompt)
3265         (python-comint-output-filter-function): Use it.
3266         (run-python): Use a pipe (Bug#5694).
3268 2010-08-24  Fabian Ezequiel Gallina  <galli.87@gmail.com>  (tiny change)
3270         * progmodes/python.el (python-send-region): Send a different
3271         Python command if Ipython is in use.
3272         (python-check-version): Use a Python command to find the version.
3274 2010-08-24  Chong Yidong  <cyd@stupidchicken.com>
3276         * mouse.el (mouse-yank-primary): Avoid setting primary when
3277         deactivating the mark (Bug#6872).
3279 2010-08-23  Chris Foote  <chris@foote.com.au>  (tiny change)
3281         * progmodes/python.el (python-block-pairs): Allow use of "finally"
3282         with "else" (Bug#3991).
3284 2010-08-23  Michael Albinus  <michael.albinus@gmx.de>
3286         * net/dbus.el: Accept UNIX domain sockets as bus address.
3287         (top): Don't initialize `dbus-registered-objects-table' anymore,
3288         this is done in dbusbind,c.
3289         (dbus-check-event): Adapt test for bus.
3290         (dbus-return-values-table, dbus-unregister-service)
3291         (dbus-event-bus-name, dbus-introspect, dbus-register-property):
3292         Adapt doc string.
3294 2010-08-23  Juanma Barranquero  <lekktu@gmail.com>
3296         * ido.el (ido-use-virtual-buffers): Fix typo in docstring.
3298 2010-08-22  Juri Linkov  <juri@jurta.org>
3300         * simple.el (read-extended-command): New function with the logic
3301         for `completing-read' moved to Elisp from `execute-extended-command'.
3302         Use `function-called-at-point' in `minibuffer-default-add-function'
3303         to get a command name for M-n (bug#5364, bug#5214).
3305 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
3307         * startup.el (command-line-1): Issue warning for ignored arguments
3308         --unibyte, etc (Bug#6886).
3310 2010-08-22  Leo  <sdl.web@gmail.com>
3312         * net/rcirc.el (rcirc-add-or-remove): Accept a list of elements.
3313         (ignore, bright, dim, keyword): Split list of nicknames before
3314         passing to rcirc-add-or-remove (Bug#6894).
3316 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
3318         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).
3320 2010-08-22  Leo  <sdl.web@gmail.com>
3322         Fix buffer-list rename&refresh after killing a buffer in ido.
3323         * ido.el: Revert Óscar's.
3324         (ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
3325         Remember the buffers at head, rather than their name.
3326         * iswitchb.el (iswitchb-kill-buffer): Re-make the list.
3328 2010-08-22  Kirk Kelsey  <kirk.kelsey@0x4b.net>  (tiny change)
3329             Stefan Monnier  <monnier@iro.umontreal.ca>
3331         * progmodes/make-mode.el (makefile-fill-paragraph): Account for the
3332         extra backslash added to each line (bug#6890).
3334 2010-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3336         * subr.el (read-key): Don't echo keystrokes (bug#6883).
3338 2010-08-22  Glenn Morris  <rgm@gnu.org>
3340         * menu-bar.el (menu-bar-games-menu): Add landmark.
3342 2010-08-22  Glenn Morris  <rgm@gnu.org>
3344         * align.el (align-regexp): Make group and spacing arguments
3345         use the interactive defaults when non-interactive.  (Bug#6698)
3347         * mail/rmail.el (rmail-forward): Replace mail-text-start with its
3348         expansion, so as not to need sendmail.
3349         (mail-text-start): Remove declaration.
3350         (rmail-retry-failure): Require sendmail.
3352 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
3354         * subr.el (read-key): Don't hide the menu-bar entries (bug#6881).
3356 2010-08-22  Michael Albinus  <michael.albinus@gmx.de>
3358         * progmodes/flymake.el (flymake-start-syntax-check-process):
3359         Use `start-file-process' in order to let it run also on remote hosts.
3361 2010-08-22  Kenichi Handa  <handa@m17n.org>
3363         * files.el: Add `word-wrap' as safe local variable.
3365 2010-08-22  Glenn Morris  <rgm@gnu.org>
3367         * woman.el (woman-translate): Case matters.  (Bug#6849)
3369 2010-08-22  Chong Yidong  <cyd@stupidchicken.com>
3371         * simple.el (kill-region): Doc fix (Bug#6787).
3373 2010-08-22  Glenn Morris  <rgm@gnu.org>
3375         * calendar/diary-lib.el (diary-header-line-format):
3376         Fit it to the window, not the frame.
3378 2010-08-22  Andreas Schwab  <schwab@linux-m68k.org>
3380         * subr.el (ignore-errors): Add debug declaration.
3382 2010-08-22  Geoff Gole  <geoffgole@gmail.com>  (tiny change)
3384         * whitespace.el (whitespace-color-off): Remove post-command-hook
3385         locally.
3387 2010-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3389         * vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
3391 2010-08-21  Chong Yidong  <cyd@stupidchicken.com>
3393         * cus-edit.el (custom-group-value-create): Add extra newline
3394         before end line (Bug#6876).
3396 2010-08-21  Chong Yidong  <cyd@stupidchicken.com>
3398         * mouse.el (mouse-save-then-kill): Don't save region to kill ring
3399         when extending it.  Before killing on the second click, check if
3400         the buffer is the correct one.  Doc fix.
3401         (mouse-secondary-save-then-kill): Allow usage without first
3402         calling mouse-start-secondary, by defaulting to point.  Don't save
3403         an empty secondary selection.  Doc fix.
3405 2010-08-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
3407         * whitespace.el: Fix slow cursor movement (Bug#6172).  Reported by
3408         Christoph Groth <cwg@falma.de> and Liu Xin <x_liu@neusoft.com>.
3409         New version 13.0.
3410         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
3411         Adjust initialization.
3412         (whitespace-bob-marker, whitespace-eob-marker)
3413         (whitespace-buffer-changed): New vars.
3414         (whitespace-cleanup, whitespace-color-on, whitespace-color-off)
3415         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp)
3416         (whitespace-post-command-hook, whitespace-display-char-on):
3417         Adjust code.
3418         (whitespace-looking-back, whitespace-buffer-changed): New funs.
3419         (whitespace-space-regexp, whitespace-tab-regexp): Fun eliminated.
3421 2010-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3423         * files.el (locate-file-completion-table): Only list the .el and .elc
3424         extensions if there's no other choice (bug#5955).
3426         * facemenu.el (facemenu-self-insert-data): New var.
3427         (facemenu-post-self-insert-function, facemenu-set-self-insert-face):
3428         New functions.
3429         (facemenu-add-face): Use them.
3431         * simple.el (blink-matching-open): Obey forward-sexp-function.
3433 2010-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
3435         * simple.el (prog-mode-map): New var.
3436         (prog-indent-sexp): New command.
3438         * progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
3440         * progmodes/prolog.el (smie): Require.
3442         * emacs-lisp/smie.el (smie-default-backward-token)
3443         (smie-default-forward-token): Strip properties.
3444         (smie-next-sexp): Be more careful with associative operators.
3445         (smie-forward-sexp-command): Generalize.
3446         (smie-backward-sexp-command): Simplify.
3447         (smie-closer-alist): New var.
3448         (smie-close-block): New command.
3449         (smie-indent-debug-log): New var.
3450         (smie-indent-offset-rule): Add a few more cases.
3451         (smie-indent-column): New function.
3452         (smie-indent-after-keyword): Use it.
3453         (smie-indent-keyword): Use it.
3454         Fix up the opener code's point position.
3455         (smie-indent-comment): Only applies at BOL.
3456         (smie-indent-debug): New command.
3458         * emacs-lisp/autoload.el (make-autoload): Preload the macros's
3459         declarations that are useful before running the macro.
3461 2010-08-18  Joakim Verona  <joakim@verona.se>
3463         * image.el (imagemagick-types-inhibit): New variable.
3464         (imagemagick-register-types): New function.
3465         * image-mode.el (image-transform-properties): New function.
3466         (image-transform-set-scale, image-transform-fit-to-height)
3467         (image-transform-set-rotation, image-transform-set-resize)
3468         (image-transform-fit-to-width, image-transform-fit-to-height):
3469         New functions.
3470         (image-toggle-display-image): Support image transforms.
3472 2010-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3474         * image.el (create-animated-image): Don't add heuristic mask to image
3475         (Bug#6839).
3477 2010-08-18  Jan Djärv  <jan.h.d@swipnet.se>
3479         * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
3480         Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
3482 2010-08-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3484         * emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
3486         Font-lock '...' strings, plus various simplifications and fixes.
3487         * progmodes/octave-mod.el (octave-font-lock-keywords): Use regexp-opt.
3488         (octave-font-lock-close-quotes): New function.
3489         (octave-font-lock-syntactic-keywords): New var.
3490         (octave-mode): Use it.  Set beginning-of-defun-function.
3491         (octave-mode-map): Don't override the <foo>-defun commands.
3492         (octave-mode-menu): Pass it directly to easy-menu-define;
3493         remove (now generic) <foo>-defun commands; use info-lookup-symbol.
3494         (octave-block-match-alist): Fix up last change so that
3495         octave-close-block uses the more specific keyword.
3496         (info-lookup-mode): Silence byte-compiler.
3497         (octave-beginning-of-defun): Not interactive any more.
3498         Optimize slightly.
3499         (octave-end-of-defun, octave-mark-defun, octave-in-defun-p): Remove.
3500         (octave-indent-defun, octave-send-defun): Use mark-defun instead.
3501         (octave-completion-at-point-function): Make sure point is within
3502         beg..end.
3503         (octave-reindent-then-newline-and-indent):
3504         Use reindent-then-newline-and-indent.
3505         (octave-add-octave-menu): Remove.
3507 2010-08-17  Jan Djärv  <jan.h.d@swipnet.se>
3509         * mail/emacsbug.el (report-emacs-bug-insert-to-mailer)
3510         (report-emacs-bug-can-use-xdg-email): New functions.
3511         (report-emacs-bug): Set can-xdg-email to result of
3512         report-emacs-bug-can-use-xdg-email.  If can-xdg-email bind
3513         \C-cm to report-emacs-bug-insert-to-mailer and add help text
3514         about it.
3516         * net/browse-url.el (browse-url-default-browser): Add cond
3517         for browse-url-xdg-open.
3518         (browse-url-can-use-xdg-open, browse-url-xdg-open): New functions.
3520 2010-08-17  Glenn Morris  <rgm@gnu.org>
3522         * progmodes/cc-engine.el (c-new-BEG, c-new-END)
3523         (c-fontify-recorded-types-and-refs): Define for compiler.
3524         * progmodes/cc-mode.el (c-new-BEG, c-new-END): Move definitions
3525         before use.
3527         * calendar/icalendar.el (icalendar--convert-recurring-to-diary):
3528         Fix format call.
3530 2010-08-17  Michael Albinus  <michael.albinus@gmx.de>
3532         * net/tramp.el (tramp-handle-make-symbolic-link): Flush file
3533         properties.
3534         (tramp-handle-process-file): Call the program in a subshell, in
3535         order to preserve working directory.
3536         (tramp-action-password): Hide password prompt before next run.
3537         (tramp-process-actions): Widen connection buffer for the trace.
3539 2010-08-16  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
3541         * net/rcirc.el (rcirc-log-process-buffers): New option.
3542         (rcirc-print): Use it.
3543         (rcirc-generate-log-filename): New function.
3544         (rcirc-log-filename-function): Change default to
3545         rcirc-generate-log-filename (Bug#6828).
3547 2010-08-16  Chong Yidong  <cyd@stupidchicken.com>
3549         * simple.el (deactivate-mark): If select-active-regions is `only',
3550         only set selection for temporarily active regions.
3552         * cus-start.el: Change defcustom for select-active-regions.
3554 2010-08-15  Chong Yidong  <cyd@stupidchicken.com>
3556         * mouse.el (mouse--drag-set-mark-and-point): New function.
3557         (mouse-drag-track): Use LOCATION arg to push-mark.
3558         Use mouse--drag-set-mark-and-point to take click-count into
3559         consideration when updating point and mark (Bug#6840).
3561 2010-08-15  Chong Yidong  <cyd@stupidchicken.com>
3563         * progmodes/compile.el (compilation-error-regexp-alist-alist):
3564         Give the Ruby rule a lower priority than Gnu (Bug#6778).
3566 2010-08-14  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
3568         * font-lock.el (lisp-font-lock-keywords-2):
3569         Add combine-after-change-calls, condition-case-no-debug,
3570         with-demoted-errors, and with-silent-modifications (Bug#6025).
3572 2010-08-14  Kevin Ryde  <user42@zip.com.au>
3574         * emacs-lisp/copyright.el (copyright-update-year)
3575         (copyright-update): Temporary switch-to-buffer to ensure the
3576         buffer change being queried is visible (Bug#5394).
3578 2010-08-14  Tom Tromey  <tromey@redhat.com>
3580         * progmodes/etags.el (tags-file-name): Mark safe if stringp
3581         (Bug#6733).
3583 2010-08-14  Eli Zaretskii  <eliz@gnu.org>
3585         * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
3586         MS-DOS.  (Bug#6689)
3588 2010-08-13  Jan Djärv  <jan.h.d@swipnet.se>
3590         * menu-bar.el (menu-bar-set-tool-bar-position): New function.
3591         (menu-bar-showhide-tool-bar-menu-customize-enable-left)
3592         (menu-bar-showhide-tool-bar-menu-customize-enable-right)
3593         (menu-bar-showhide-tool-bar-menu-customize-enable-top)
3594         (menu-bar-showhide-tool-bar-menu-customize-enable-bottom):
3595         Call menu-bar-set-tool-bar-position.
3597 2010-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3599         * progmodes/octave-mod.el (octave-mode-syntax-table): Use the new "c"
3600         comment style (bug#6834).
3601         * progmodes/scheme.el (scheme-mode-syntax-table):
3602         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Remove spurious
3603         "b" flag in "' 14b" syntax.
3605         * progmodes/octave-mod.el (octave-mode-map): Remove special bindings
3606         for (un)commenting the region and performing completion.
3607         (octave-mode-menu): Use standard commands for help and completion.
3608         (octave-mode-syntax-table): Support %{..%} comments (sort of).
3609         (octave-mode): Use define-derived-mode.
3610         Set completion-at-point-functions and don't set columns.
3611         Don't disable adaptive-fill-regexp.
3612         (octave-describe-major-mode, octave-comment-region)
3613         (octave-uncomment-region, octave-comment-indent)
3614         (octave-indent-for-comment): Remove.
3615         (octave-indent-calculate): Rename from calculate-octave-indent.
3616         (octave-indent-line, octave-fill-paragraph): Update caller.
3617         (octave-initialize-completions): No need to make an alist.
3618         (octave-completion-at-point-function): New function.
3619         (octave-complete-symbol): Use it.
3620         (octave-insert-defun): Use define-skeleton.
3622         * progmodes/octave-mod.el (octave-mode): Set comment-add.
3623         (octave-mode-map): Use comment-dwim (bug#6829).
3625 2010-08-12  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
3627         * cus-edit.el (custom-save-variables, custom-save-faces): Fix up
3628         indentation of inserted comment.
3630 2010-08-11  Jan Djärv  <jan.h.d@swipnet.se>
3632         * faces.el (region): Add type gtk that uses gtk colors.
3634         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
3635         Handle theme-name change.
3637 2010-08-10  Michael R. Mauger  <mmaug@yahoo.com>
3639         * progmodes/sql.el: Version 2.5
3640         (sql-product-alist): Add :prompt-cont-regexp property for several
3641         database products.
3642         (sql-prompt-cont-regexp): New variable.
3643         (sql-output-newline-count, sql-output-by-send):
3644         New variables.  Record number of newlines in input text.
3645         (sql-send-string): Handle multiple filters and count newlines.
3646         (sql-send-magic-terminator): Count terminator newline.
3647         (sql-interactive-remove-continuation-prompt): Filters output to
3648         remove continuation prompts; one for each newline.
3649         (sql-interactive-mode): Set up new variables, prompt regexp and
3650         output filter.
3651         (sql-mode-sqlite-font-lock-keywords): Correct some keywords.
3652         (sql-make-alternate-buffer-name): Correct buffer name in edge cases.
3654 2010-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3656         * emacs-lisp/pcase.el: New file.
3658 2010-08-10  Michael Albinus  <michael.albinus@gmx.de>
3660         * net/tramp.el (tramp-vc-registered-read-file-names): Read input
3661         as here-document, otherwise the command could exceed maximum
3662         length of command line.
3663         (tramp-handle-vc-registered): Call script accordingly.
3664         Reported by Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>.
3666 2010-08-10  Kenichi Handa  <handa@m17n.org>
3668         * language/hebrew.el: Exclude U+05C3 (Hebrew SOF PASUQ) from the
3669         composable pattern.
3671 2010-08-09  Chong Yidong  <cyd@stupidchicken.com>
3673         * emacs-lisp/package.el (package-version-split)
3674         (package--version-first-nonzero, package-version-compare):
3675         Functions removed.
3676         (package-directory-list, package-load-all-descriptors)
3677         (package--built-in, package-activate, define-package)
3678         (package-installed-p, package-compute-transaction)
3679         (package-read-all-archive-contents)
3680         (package--add-to-archive-contents, package-buffer-info)
3681         (package-tar-file-info, package-list-packages-internal):
3682         Use version-to-list and version-list-*.
3684         * emacs-lisp/package-x.el (package-upload-buffer-internal):
3685         Use version-to-list.
3686         (package-upload-buffer-internal): Use version-list-<=.
3688 2010-08-09  Kenichi Handa  <handa@m17n.org>
3690         * language/hebrew.el: Exclude U+05BD (Hebrew MAQAF) from the
3691         composable pattern.
3693 2010-08-08  Chong Yidong  <cyd@stupidchicken.com>
3695         * tutorial.el (tutorial--default-keys): C-d is now bound to
3696         delete-forward-char (Bug#6826).
3698         * mouse.el (mouse-drag-track): Remove accidentally-removed check
3699         for `double' value of mouse-1-click-follows-link (Bug#6807).
3701 2010-08-08  Johan Bockgård  <bojohan@gnu.org>
3703         * replace.el (replace-highlight): Bind isearch-forward and
3704         isearch-error, ensuring that highlighting is updated if the user
3705         switches the search direction (Bug#6808).
3707         * isearch.el (isearch-lazy-highlight-forward): New var.
3708         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
3709         (isearch-lazy-highlight-update): Use it.
3711 2010-08-08  Kenichi Handa  <handa@m17n.org>
3713         * international/mule.el (define-charset): Store NAME as :base property.
3714         (ctext-non-standard-encodings-table): Pay attention to charset aliases.
3715         (ctext-pre-write-conversion): Sort ctext-standard-encodings by the
3716         current priority.  Force using the designation of the specific
3717         charset by adding `charset' text property.  Improve the whole algorithm.
3719 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
3721         * emulation/pc-select.el (pc-selection-mode-hook)
3722         (copy-region-as-kill-nomark, beginning-of-buffer-mark)
3723         (pc-selection-mode): Fix typos in docstrings.
3725 2010-08-08  Kenichi Handa  <handa@m17n.org>
3727         * language/cyrillic.el: Don't add "microsoft-cp1251" to
3728         ctext-non-standard-encodings-alist here.
3730         * international/mule.el (ctext-non-standard-encodings-alist):
3731         Add "koi8-r" and "microsoft-cp1251".
3732         (ctext-standard-encodings): New variable.
3733         (ctext-non-standard-encodings-table): List only elements for
3734         non-standard encodings.
3735         (ctext-pre-write-conversion): Adjust for the above change.
3736         Check ctext-standard-encodings.
3738         * international/mule-conf.el (compound-text): Doc fix.
3739         (ctext-no-compositions): Doc fix.
3740         (compound-text-with-extensions): Doc fix.
3742 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3744         * simple.el (exchange-dot-and-mark): Mark obsolete, finally.
3746 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
3748         * progmodes/which-func.el (which-func-format): Split help-echo text
3749         into lines, like other mode-line tooltips.
3751         * server.el (server-start): When using TCP sockets, force IPv4
3752         and use a literal 127.0.0.1 for localhost.  (Related to bug#6781.)
3754 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3756         * bindings.el (complete-symbol): Run completion-at-point as a fallback.
3758 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
3760         * term.el (term-delimiter-argument-list): Reflow docstring.
3761         (term-read-input-ring, term-write-input-ring, term-send-input)
3762         (term-bol, term-erase-in-display, serial-supported-or-barf):
3763         Fix typos in docstrings.
3765 2010-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3767         * bindings.el (function-key-map): Add a S-tab => backtab fallback.
3769 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
3771         * dabbrev.el (dabbrev-completion): Fix typo in docstring.
3773 2010-08-08  MON KEY  <monkey@sandpframing.com>  (tiny change)
3775         * emacs-lisp/syntax.el (syntax-ppss-toplevel-pos):
3776         Fix typo in docstring (bug#6747).
3778 2010-08-08  Leo  <sdl.web@gmail.com>
3780         * eshell/esh-io.el (eshell-get-target): Better detection of
3781         read-only file (Bug#6762).
3783 2010-08-08  Juanma Barranquero  <lekktu@gmail.com>
3785         * align.el (align-default-spacing): Doc fix.
3786         (align-region-heuristic, align-regexp): Fix typos in docstrings.
3788 2010-08-08  Stephen Peters  <speters@itasoftware.com>
3790         * calendar/icalendar.el
3791         (icalendar--split-value): Fix splitting regexp.  (Bug#6766)
3792         (icalendar--get-weekday-numbers): New.
3793         (icalendar--convert-recurring-to-diary): Handle multiple byday
3794         values in weekly rules.  (Bug#6766)
3796 2010-08-08  Ulf Jasper  <ulf.jasper@web.de>
3798         * calendar/icalendar.el (icalendar-uid-format): Doc fix.
3799         (icalendar--create-uid, icalendar-export-region)
3800         (icalendar--parse-summary-and-rest): Code formatting.
3802 2010-08-08  Jay Belanger  <jay.p.belanger@gmail.com>
3804         * calc/calc.el (calc-trail-mode,calc-refresh): Use `face' property
3805         to italicize headers.
3806         (calc-highlight-selections-with-faces): New variable.
3807         (calc-selected-face, calc-nonselected-face): New faces.
3809         * calc/calccomp.el (math-comp-highlight-string): Use
3810         `calc-highlight-selections-with-faces' to determine how to highlight
3811         sub-formulas.
3813         * calc/calc-sel.el (calc-show-selections): Change message to when
3814         using faces to highlight selections.
3816 2010-08-07  Michael R. Mauger  <mmaug@yahoo.com>
3818         * progmodes/sql.el (sql-mode-sqlite-font-lock-keywords):
3819         Add SQLite 3 keywords, functions and datatypes.
3820         (sql-interactive-mode): Remove `comint-process-echoes' set to t
3821         (Bug#6686).
3823 2010-08-07  Chong Yidong  <cyd@stupidchicken.com>
3825         * simple.el (select-active-regions): Move to keyboard.c.
3826         (deactivate-mark): Used saved-region-selection.
3827         (select-active-region): Function removed.
3828         (activate-mark, set-mark, push-mark-command)
3829         (handle-shift-selection): Don't call it.
3830         (keyboard-quit): Avoid adding the region to the window selection.
3832         * mouse.el (mouse-drag-track): Remove hacks to deal with old
3833         select-active-regions implementation.
3834         (mouse-yank-at-click): Doc fix.
3836         * cus-start.el: Add custom declaration for select-active-regions.
3838 2010-08-07  Eli Zaretskii  <eliz@gnu.org>
3840         * simple.el (delete-forward-char): Doc fix.
3842         * tutorial.el (help-with-tutorial): Hack safe file-local variables
3843         after reading the tutorial.
3845 2010-08-06  Alan Mackenzie  <bug-cc-mode@gnu.org>
3847         * progmodes/cc-cmds.el (c-mask-paragraph, c-fill-paragraph): Fix
3848         for the case that a C style comment has its delimiters alone on
3849         their respective lines.
3851 2010-08-06  Michael Albinus  <michael.albinus@gmx.de>
3853         * net/tramp.el (tramp-handle-start-file-process): Set connection
3854         property "vec".
3855         (tramp-process-sentinel): Use it for flushing the cache.  We
3856         cannot do it via the process buffer, the buffer could be deleted
3857         already when running the sentinel.
3859 2010-08-06  Jürgen Hötzel  <juergen@archlinux.org>  (tiny change)
3861         * comint.el (comint-mode): Make directory tracking functions
3862         functional on remote files.  (Bug#6764)
3864 2010-08-06  Dan Nicolaescu  <dann@ics.uci.edu>
3866         * vc/diff-mode.el (diff-mode-shared-map): Bind g to revert-buffer.
3868 2010-08-05  Eli Zaretskii  <eliz@gnu.org>
3870         * emacs-lisp/find-gc.el (find-gc-source-files): Rename
3871         unexec.c => unexcoff.c.
3873         * emacs-lisp/authors.el (authors-fixed-entries): Rename
3874         unexec.c => unexcoff.c.
3876 2010-08-05  Michael Albinus  <michael.albinus@gmx.de>
3878         * net/tramp.el (tramp-handle-dired-uncache): Flush directory
3879         cache, not only file cache.
3880         (tramp-process-sentinel): New defun.
3881         (tramp-handle-start-file-process): Use it, in order to invalidate
3882         file caches.
3884 2010-08-03  Leo  <sdl.web@gmail.com>
3886         * server.el (server-start): Simplify loop.
3888 2010-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3890         * frame.el (screen-height, screen-width, set-screen-width)
3891         (set-screen-height): Remove ancient compatibility aliases.
3893         * textmodes/fill.el (justify-current-line): Don't add 1 to nspaces
3894         when justifying.  It seems useless and harmful for ncols=1 (bug#6738).
3896         * emacs-lisp/timer.el (timer-event-handler): Protect against timers
3897         that change current buffer.
3899 2010-08-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3901         * mouse.el (mouse-fixup-help-message): Match "mouse-2" only at the
3902         beginning of the string.  Use `string-match-p'.  (Bug#6765)
3904 2010-08-01  Jan Djärv  <jan.h.d@swipnet.se>
3906         * cus-start.el (x-gtk-use-system-tooltips): New variable.
3908 2010-08-01  Chong Yidong  <cyd@stupidchicken.com>
3910         * emacs-lisp/package.el (package--list-packages): Fix column alignment.
3911         (package--builtins): Tweak descriptions.
3912         (package-print-package): Upcase descriptions if necessary.
3913         Show all built-in packages in font-lock-builtin-face.
3914         (package-list-packages-internal): Omit "emacs" package.
3915         Show status of built-in packages as "built-in".
3917 2010-07-31  Chong Yidong  <cyd@stupidchicken.com>
3919         * mouse.el (mouse-save-then-kill): Doc fix.  Deactivate mark
3920         before killing to preserve the primary selection (Bug#6701).
3922         * term/x-win.el (x-select-text): Doc fix.
3924 2010-07-31  Nathaniel Flath  <flat0103@gmail.com>
3926         Enhance Java Mode to handle Java 5.0 (Tiger) and Java 6 (Mustang).
3927         The following functions were modified or created:
3929         * progmodes/cc-vars.el (c-offsets-alist, c-inside-block-syms)
3930         (objc-font-lock-extra-types):
3931         * progmodes/cc-mode.el (c-basic-common-init):
3932         * progmodes/cc-langs.el (c-make-mode-syntax-table)
3933         (c++-make-template-syntax-table)
3934         (c-identifier-syntax-modifications, c-symbol-start, c-operators)
3935         (c-<-op-cont-regexp, c->-op-cont-regexp, c-class-decl-kwds)
3936         (c-brace-list-decl-kwds, c-modifier-kwds, c-prefix-spec-kwds-re)
3937         (c-type-list-kwds, c-decl-prefix-re, c-opt-type-suffix-key):
3938         * progmodes/cc-fonts.el (c-make-inverse-face)
3939         (c-basic-matchers-after):
3940         * progmodes/cc-engine.el (c-forward-keyword-clause)
3941         (c-forward-<>-arglist, c-forward-<>-arglist-recur)
3942         (c-forward-name, c-forward-type, c-forward-decl-or-cast-1)
3943         (c-guess-continued-construct, c-guess-basic-syntax):
3945 2010-07-31  Jan Djärv  <jan.h.d@swipnet.se>
3947         * faces.el (face-all-attributes): Improve documentation (Bug#6767).
3949 2010-07-31  Eli Zaretskii  <eliz@gnu.org>
3951         * files.el (bidi-paragraph-direction): Define safe local values.
3953         * language/hebrew.el ("Hebrew"): Add TUTORIAL.he to
3954         language-info-alist.  Remove outdated FIXME in a comment.
3956 2010-07-31  Alan Mackenzie  <acm@muc.de>
3958         * progmodes/cc-cmds.el (c-mask-paragraph): Fix bug #6688:
3959         Auto-fill broken in C/C++ modes.
3961 2010-07-29  Jan Djärv  <jan.h.d@swipnet.se>
3963         * menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
3964         (menu-bar-showhide-tool-bar-menu-customize-disable)
3965         (menu-bar-showhide-tool-bar-menu-customize-enable-right)
3966         (menu-bar-showhide-tool-bar-menu-customize-enable-bottom)
3967         (menu-bar-showhide-tool-bar-menu-customize-enable-top): New functions
3968         (menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
3969         make a menu for Options => toolbar that can move it.
3971 2010-07-29  Chong Yidong  <cyd@stupidchicken.com>
3973         * emacs-lisp/package-x.el (package--make-rss-entry):
3974         (package-maint-add-news-item, package--update-news)
3975         (package-upload-buffer-internal): New arg ARCHIVE-URL.
3977         * emacs-lisp/package.el (package-archive-url): Rename from
3978         package-archive-id.
3979         (package-install): Doc fix.
3980         (package-download-single, package-download-tar, package-install)
3981         (package-menu-view-commentary): Callers changed.
3983 2010-07-29  Michael Albinus  <michael.albinus@gmx.de>
3985         * net/tramp.el (tramp-handle-start-file-process): Check only for
3986         `remote-tty' process property.
3987         (tramp-open-shell): Don't check for tty.
3988         (tramp-open-connection-setup-interactive-shell): Set `remote-tty'
3989         process property.
3991         * progmodes/gdb-mi.el (gdb-init-1): Check also for tty on a remote
3992         host.
3994 2010-07-28  Chong Yidong  <cyd@stupidchicken.com>
3996         * emacs-lisp/package.el (package-load-list, package-archives)
3997         (package-archive-contents, package-user-dir)
3998         (package-directory-list, package--builtins, package-alist)
3999         (package-activated-list, package-obsolete-alist): Mark as risky.
4001 2010-07-28  Phil Hagelberg  <phil@evri.com>
4003         Add support for non-default package repositories.
4004         * emacs-lisp/package.el (package-archive-base): Var deleted.
4005         (package-archives): New variable.
4006         (package-archive-contents): Doc fix.
4007         (package-load-descriptor): Do nothing if descriptor file is missing.
4008         (package--write-file-no-coding): New function.
4009         (package-unpack-single): Use it.
4010         (package-archive-id): New function.
4011         (package-download-single, package-download-tar)
4012         (package-menu-view-commentary): Use it.
4013         (package-installed-p): Make second argument optional.
4014         (package-read-all-archive-contents): New function.
4015         (package-initialize): Use it.
4016         (package-read-archive-contents): Add ARCHIVE argument.
4017         (package--add-to-archive-contents): New function.
4018         (package-install): Don't call package-read-archive-contents.
4019         (package--download-one-archive): Store archive file in a
4020         subdirectory of package-user-dir.
4021         (package-menu-execute): Remove spurious line movement.
4023 2010-07-28  Jan Djärv  <jan.h.d@swipnet.se>
4025         * cus-start.el (tool-bar-style): Add text-image-horiz.
4027 2010-07-28  Michael Albinus  <michael.albinus@gmx.de>
4029         * progmodes/gud.el (gud-common-init): Check for remoteness of
4030         `file', and not of `default-directory'.
4032 2010-07-28  Michael Albinus  <michael.albinus@gmx.de>
4034         * net/tramp.el (tramp-methods): Move hostname to the end in all
4035         ssh `tramp-login-args'.
4036         (tramp-verbose): Describe verbose level 9.
4037         (tramp-open-shell): Check for tty if `tramp-verbose' >= 9.
4038         (tramp-open-connection-setup-interactive-shell): Trace stty
4039         settings if `tramp-verbose' >= 9.
4040         (tramp-handle-start-file-process): Implement tty setting.
4041         (Bug#4604, Bug#6360)
4043         * net/tramp-cmds.el (tramp-bug): Recommend setting of
4044         `tramp-verbose' to 9.
4046 2010-07-27  Aaron S. Hawley  <ashawley@burlingtontelecom.net>
4048         * emacs-lisp/re-builder.el (reb-re-syntax, reb-lisp-mode)
4049         (reb-lisp-syntax-p, reb-change-syntax, reb-cook-regexp):
4050         Remove references to package `lisp-re' (bug#4369).
4052 2010-07-27  Tom Tromey  <tromey@redhat.com>
4054         * progmodes/js.el (js-mode):
4055         * progmodes/make-mode.el (makefile-mode):
4056         * progmodes/simula.el (simula-mode):
4057         * progmodes/tcl.el (tcl-mode): Derive from prog-mode.
4059 2010-07-27  Juanma Barranquero  <lekktu@gmail.com>
4061         * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
4063         * time.el (display-time-day-and-date): Remove spurious * in docstring.
4064         (display-time-world-buffer-name, display-time-world-mode-map):
4065         Fix typos in docstrings.
4067 2010-07-27  Shyam Karanatt  <shyam@swathanthran.in>  (tiny change)
4069         * image-mode.el (image-display-size): New function.
4070         (image-forward-hscroll, image-next-line, image-eol, image-eob)
4071         (image-mode-fit-frame): Use it (Bug#6639).
4073 2010-07-27  Chong Yidong  <cyd@stupidchicken.com>
4075         * dired.el (dired-buffers-for-dir): Handle list values of
4076         dired-directory (Bug#6636).
4078 2010-07-26  Sam Steingold  <sds@gnu.org>
4080         * mouse.el (mouse-yank-primary, mouse-yank-secondary):
4081         Do not call `x-get-selection' the second time, reuse the value.
4083 2010-07-26  Daiki Ueno  <ueno@unixuser.org>
4085         * epa-mail.el (epa-mail-mode-map): Add alternative key bindings
4086         which consist of control chars only.  Suggested by Richard Stallman.
4088 2010-07-25  Daiki Ueno  <ueno@unixuser.org>
4090         * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE
4091         exists before passing an error to find-file-not-found-functions
4092         (bug#6723).
4094 2010-07-23  Lukas Huonker  <l.huonker@gmail.com>
4096         * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank):
4097         Remove leading nil element, adjust values.
4098         (tetris-shapes, tetris-shape-scores):
4099         Change representation of shapes and remove some redundancy.
4100         (tetris-get-shape-cell, tetris-shape-width, tetris-draw-next-shape)
4101         (tetris-draw-shape, tetris-erase-shape, tetris-test-shape):
4102         Adjust for working with new representation of shapes.
4103         (tetris-shape-rotations): New function.
4104         (tetris-move-bottom, tetris-move-left, tetris-move-right)
4105         (tetris-rotate-prev, tetris-rotate-next):
4106         Adjust for working with the new version of tetris-test-shape.
4108 2010-07-23  Markus Triska  <markus.triska@gmx.at>
4110         * progmodes/ps-mode.el: Use comint (bug#5954).
4111         (ps-run-mode-map): Adapt for comint-mode; omit "\r", [return]..
4112         (ps-mode-other-newline): Simplify.
4113         (ps-run-mode): Derive from comint-mode instead of
4114         fundamental-mode, yielding input history etc.
4115         (ps-run-start, ps-run-quit, ps-run-clear, ps-run-region)
4116         (ps-run-send-string): Adapt for comint-mode.
4117         (ps-run-newline): Remove now unneeded function.
4119 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
4121         * net/tramp.el (tramp-methods): Move hostname to the end in all
4122         plink `tramp-login-args'.
4124 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
4126         * net/tramp.el (tramp-open-shell): New defun.
4127         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4128         Use it.
4130 2010-07-23  Michael Albinus  <michael.albinus@gmx.de>
4132         * net/tramp.el (tramp-file-name-regexp-unified)
4133         (tramp-completion-file-name-regexp-unified): On W32 systems, do
4134         not regard the volume letter as remote filename.  (Bug#5447)
4136 2010-07-23  Juanma Barranquero  <lekktu@gmail.com>
4138         * custom.el (custom-declare-variable): Give a clearer error message
4139         when the docstring is missing (bug#6476).
4141 2010-07-22  Michael R. Mauger  <mmaug@yahoo.com>
4143         * progmodes/sql.el: Version 2.4.  Improved Login prompting.
4144         (sql-login-params): New widget definition.
4145         (sql-oracle-login-params, sql-mysql-login-params)
4146         (sql-solid-login-params, sql-sybase-login-params)
4147         (sql-informix-login-params, sql-ingres-login-params)
4148         (sql-ms-login-params, sql-postgres-login-params)
4149         (sql-interbase-login-params, sql-db2-login-params)
4150         (sql-linter-login-params): Use it.
4151         (sql-sqlite-login-params): Use it; Define "database" parameter as
4152         a file name.
4153         (sql-sqlite-program): Change to "sqlite3".
4154         (sql-comint-sqlite): Make sure database name is complete.
4155         (sql-for-each-login): New function.
4156         (sql-connect, sql-save-connection): Use it.
4157         (sql-get-login-ext): New function.
4158         (sql-get-login): Use it.
4159         (sql-make-alternate-buffer-name): Handle :file parameters.
4161 2010-07-22  Juanma Barranquero  <lekktu@gmail.com>
4163         * dired.el (dired-no-confirm): Document value t and fix defcustom to
4164         accept it (bug#6597).  Suggested by Drew Adams <drew.adams@oracle.com>.
4166 2010-07-22  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
4168         * dired.el (dired-mode-map): Use command remapping (bug#6632).
4170 2010-07-22  Lawrence Mitchell  <wence@gmx.li>
4172         * term/vt100.el (vt100-wide-mode): Fix :init-value keyword (bug#6620).
4174 2010-07-21  Michael Albinus  <michael.albinus@gmx.de>
4176         * net/tramp.el (tramp-get-ls-command)
4177         (tramp-get-ls-command-with-dired): Run tests on "/dev/null"
4178         instead of "/".
4180 2010-07-20  Michael R. Mauger  <mmaug@yahoo.com>
4182         * progmodes/sql.el: Version 2.3.
4183         (sql-connection-alist): Changed keys from symbols to strings;
4184         enhanced the widget definition.
4185         (sql-mode-menu): Added submenu to select connections.
4186         (sql-interactive-mode-menu): Added "Save Connection" item.
4187         (sql-add-product): Fixed menu item.
4188         (sql-get-product-feature): Improved error handling.
4189         (sql--alt-buffer-part, sql--alt-if-not-empty): Removed.
4190         (sql-make-alternate-buffer-name): Simplified.
4191         (sql-product-interactive): Handle missing product.
4192         (sql-connect): Support string keys, minor improvements.
4193         (sql-save-connection): New function.
4194         (sql-connection-menu-filter): New function.
4196 2010-07-20  Michael Albinus  <michael.albinus@gmx.de>
4198         * net/tramp.el (tramp-file-name-handler): Trace 'quit.
4199         (tramp-open-connection-setup-interactive-shell): Apply
4200         workaround for IRIX64 bug.  Move argument of last
4201         `tramp-send-command' where it belongs to.
4203 2010-07-20  Michael Albinus  <michael.albinus@gmx.de>
4205         * net/tramp.el (tramp-perl-file-attributes)
4206         (tramp-perl-directory-files-and-attributes): Don't pass "$3".
4207         (tramp-maybe-open-connection): Use `async-args' and `gw-args' in
4208         front of `login-args'.
4210 2010-07-19  Juanma Barranquero  <lekktu@gmail.com>
4212         * time.el (display-time-world-mode): Define with `define-derived-mode'.
4213         Set `show-trailing-whitespace' to nil.
4214         (display-time-world-display): Simplify.
4216 2010-07-18  Alan Mackenzie  <acm@muc.de>
4218         Enhance `c-file-style' in file/directory local variables.
4219         * progmodes/cc-mode.el (c-count-cfss): New function.
4220         (c-before-hack-hook): Call `c-set-style' differently according to
4221         whether c-file-style was set in file or directory local
4222         variables.
4224 2010-07-18  Michael R. Mauger  <mmaug@yahoo.com>
4226         * progmodes/sql.el: Version 2.2.
4227         (sql-product, sql-user, sql-database, sql-server, sql-port): Use
4228         defcustom :safe keyword rather than putting safe-local-variable
4229         property.
4230         (sql-password): Use defcustom :risky keyword rather than putting
4231         risky-local-variable property.
4232         (sql-oracle-login-params, sql-sqlite-login-params)
4233         (sql-solid-login-params, sql-sybase-login-params)
4234         (sql-informix-login-params, sql-ingres-login-params)
4235         (sql-ms-login-params, sql-postgres-login-params)
4236         (sql-interbase-login-params, sql-db2-login-params)
4237         (sql-linter-login-params): Add `port' option.
4238         (sql-get-product-feature): Added NO-INDIRECT parameter.
4239         (sql-comint-oracle, sql-comint-sybase)
4240         (sql-comint-informix, sql-comint-sqlite, sql-comint-mysql)
4241         (sql-comint-solid, sql-comint-ingres, sql-comint-ms)
4242         (sql-comint-postgres, sql-comint-interbase, sql-comint-db2)
4243         (sql-comint-linter): Renamed sql-connect-* functions to
4244         sql-comint-*.
4245         (sql-product-alist, sql-mode-menu): Renamed as above and
4246         :sqli-connect-func to :sqli-comint-func.
4247         (sql-connection): New variable.
4248         (sql-interactive-mode): Set it.
4249         (sql-connection-alist): New variable.
4250         (sql-connect): New function.
4251         (sql--alt-buffer-part, sql--alt-if-not-empty)
4252         (sql-make-alternate-buffer-name): Improved alternative buffer name.
4254 2010-07-17  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4256         * image-mode.el (image-bookmark-make-record): Do not set context
4257         in an image (Bug#6650).
4259 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
4261         * simple.el (select-active-region): New function.
4262         (push-mark-command, set-mark, activate-mark)
4263         (handle-shift-selection): Use it.
4264         (deactivate-mark): Don't check for size of region.
4266         * mouse.el (mouse-drag-track): Use select-active-region.
4268 2010-07-17  Michael Albinus  <michael.albinus@gmx.de>
4270         * net/tramp.el (tramp-get-ls-command-with-dired): Make test for
4271         "--dired" stronger.
4273 2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
4275         * term/x-win.el (x-select-enable-primary): Change default to nil.
4276         (x-select-enable-clipboard): Add :version keyword.
4278         * mouse.el (mouse-drag-copy-region):
4279         * simple.el (select-active-regions): Likewise.
4281 2010-07-16  Reiner Steib  <Reiner.Steib@gmx.de>
4283         * vc/vc.el (vc-coding-system-inherit-eol): New defvar.
4284         (vc-coding-system-for-diff): Use it to decide whether to inherit
4285         from the file the EOL format for reading the diffs of that file.
4286         (Bug#4451)
4288 2010-07-16  Eli Zaretskii  <eliz@gnu.org>
4290         * mail/rmailmm.el (rmail-mime-save): Make the temp buffer
4291         unibyte, so compressed attachments are not compressed again.
4293 2010-07-16  Michael Albinus  <michael.albinus@gmx.de>
4295         * net/tramp.el (tramp-handle-shell-command): Don't use hard-wired
4296         "/bin/sh" but `tramp-remote-sh' from `tramp-methods'.
4297         (tramp-find-shell): Simplify setting connection property.
4298         (tramp-get-ls-command): Make test for "--color=never" stronger.
4300 2010-07-15  Simon South  <ssouth@member.fsf.org>
4302         * progmodes/delphi.el (delphi-previous-indent-of): Indent case
4303         blocks within record declarations (i.e. variant parts) correctly.
4305 2010-07-15  Simon South  <ssouth@member.fsf.org>
4307         * progmodes/delphi.el (delphi-token-at): Give newlines precedence
4308         over literal tokens when parsing so newlines aren't "absorbed" by
4309         single-line comments.  Corrects the indentation of case blocks
4310         that have a comment on the first line.
4312 2010-07-14  Karl Fogel  <kfogel@red-bean.com>
4314         * bookmark.el (bookmark-load-hook): Fix doc string as suggested
4315         by Drew Adams (Bug#5504).
4317 2010-07-14  Jan Djärv  <jan.h.d@swipnet.se>
4319         * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127
4320         now that Unicode is used (Bug#6594).
4322 2010-07-14  Chong Yidong  <cyd@stupidchicken.com>
4324         * term/x-win.el (x-select-enable-clipboard): Default to t.
4325         (x-initialize-window-system): Don't overwrite Paste menu item.
4327         * simple.el (select-active-regions): Default to t.
4328         (push-mark-command): Don't overwrite primary with empty string.
4330         * mouse.el: Bind mouse-2 to mouse-yank-primary.
4331         (mouse-drag-copy-region): Default to nil.
4333         * menu-bar.el (menu-bar-enable-clipboard): Don't overwrite
4334         Cut/Copy/Paste menu bar items.
4336 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4338         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
4339         Patch applied by Karl Fogel.
4341         * bookmark.el (bookmark-set): Don't set `bookmark-yank-point'
4342         and `bookmark-current-buffer' if they have been already set in
4343         another buffer (e.g gnus-art).
4345 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
4346             Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4348         Preparation for setting bookmarks in Gnus article buffers (Bug#5975).
4350         * bookmark.el (bookmark-make-record-default): Allow unneeded
4351         information to be omitted from the record.
4353         Adjust declarations and calls:
4355         * info.el (bookmark-make-record-default): Adjust declaration.
4356         (Info-bookmark-make-record): Adjust call.
4358         * woman.el (bookmark-make-record-default): Adjust declaration.
4359         (woman-bookmark-make-record): Adjust call.
4361         * man.el (bookmark-make-record-default): Adjust declaration.
4362         (Man-bookmark-make-record): Adjust call.
4364         * image-mode.el (bookmark-make-record-default): Adjust declaration.
4366         * doc-view.el (bookmark-make-record-default): Adjust declaration.
4368 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
4370         * bookmark.el (bookmark-show-annotation): Use `when' instead of `if'.
4371         This is also from Thierry Volpiatto's patch in bug #6444.  However,
4372         because it was extraneous to the functional change in that patch,
4373         and causes a re-indendation, I am committing it separately.
4375 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4377         * bookmark.el (bookmark-show-annotation): Ensure annotations show,
4378         e.g. in Info bookmarks, by using `switch-to-buffer-other-window'.
4379         Patch applied by Karl Fogel (Bug#6444).
4381 2010-07-13  Chong Yidong  <cyd@stupidchicken.com>
4383         * frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
4385 2010-07-13  Adrian Robert  <Adrian.B.Robert@gmail.com>
4387         * term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
4388         Dempsky; bug#5084).  Remove incorrect binding for S-tab.
4389         (ns-alternatives-map): Change S-tab binding to backtab
4390         (bug#6616).
4392         * simple.el (normal-erase-is-backspace-setup-frame): Set mode on
4393         under ns.
4395 2010-07-12  Andreas Schwab  <schwab@linux-m68k.org>
4397         * language/tai-viet.el ("TaiViet"): Try to fix re-encoding bugs.
4398         (Bug#5806)
4400         * language/tv-util.el (tai-viet-re): Remove format.
4402 2010-07-12  Kenichi Handa  <handa@m17n.org>
4404         * language/hebrew.el: Remove no-byte-compile declaration.
4405         Change coding: tag to utf-8.  Register hebrew-shape-gstring in
4406         composition-function-table for 3-character looking back.
4407         (hebrew-font-get-precomposed): New function.
4408         (hebrew-shape-gstring): Utilize precomposed glyphs if available.
4410 2010-07-11  Chong Yidong  <cyd@stupidchicken.com>
4412         * mouse.el (mouse-drag-track): Handle select-active-regions
4413         (Bug#6612).
4415 2010-07-11  Magnus Henoch  <magnus.henoch@gmail.com>
4417         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Do not pass
4418         empty argument to gvfs-copy.
4420 2010-07-10  Glenn Morris  <rgm@gnu.org>
4422         * calendar/calendar.el (calendar-week-end-day): New function.
4423         * calendar/cal-tex.el (cal-tex-cursor-month): Remove unused vars.
4424         Respect calendar-week-start-day.  (Bug#6606)
4425         (cal-tex-insert-day-names, cal-tex-insert-blank-days)
4426         (cal-tex-insert-blank-days-at-end): Respect calendar-week-start-day.
4427         (cal-tex-first-blank-p, cal-tex-last-blank-p): Simplify, and
4428         respect calendar-week-start-day.
4430 2010-07-10  Chong Yidong  <cyd@stupidchicken.com>
4432         * simple.el (use-region-p): Doc fix (Bug#6607).
4434 2010-07-10  Aleksei Gusev  <aleksei.gusev@gmail.com>  (tiny change)
4436         * progmodes/compile.el (compilation-error-regexp-alist-alist): Add
4437         regexps for cucumber and ruby.
4439 2010-07-08  Daiki Ueno  <ueno@unixuser.org>
4441         * epa-file.el (epa-file-error, epa-file--find-file-not-found-function)
4442         (epa-file-insert-file-contents): Hack to prevent
4443         find-file from opening empty buffer when decryption failed
4444         (bug#6568).
4446 2010-07-07  Agustín Martín  <agustin.martin@hispalinux.es>
4448         * textmodes/ispell.el (ispell-alternate-dictionary):
4449         Use file-readable-p.
4450         Return nil if no word-list is found at default locations.
4451         (ispell-complete-word-dict): Default to nil.
4452         (ispell-command-loop): Use 'word-list' when using lookup-words.
4453         (lookup-words): Use ispell-complete-word-dict or
4454         ispell-alternate-dictionary.  Check for word-list availability
4455         and handle errors if needed with better messages (Bug#6539).
4456         (ispell-complete-word): Use ispell-complete-word-dict or
4457         ispell-alternate-dictionary.
4459 2010-07-07  Christoph Scholtes  <cschol2112@gmail.com>
4461         * progmodes/python.el (python-font-lock-keywords): Add Python 2.7
4462         builtins (BufferError, BytesWarning, WindowsError; callables
4463         bin, bytearray, bytes, format, memoryview, next, print; __package__).
4465 2010-07-07  Glenn Morris  <rgm@gnu.org>
4467         * play/zone.el (top-level): Do not require timer, tabify, or cl.
4468         (zone-shift-left): Ignore intangibility, and any errors from
4469         forward-char.
4470         (zone-shift-right): Remove no-op end-of-line.  Ignore intangibility.
4471         (zone-pgm-putz-with-case): Use upcase-region rather than inserting,
4472         deleting, and copying text properties.
4473         (zone-line-specs, zone-pgm-stress): Check forward-line exit status.
4474         (zone-pgm-rotate): Handle odd buffers like that of gomoku, where getting
4475         to point-max is hard.
4476         (zone-fret, zone-fill-out-screen): Replace cl's do with dotimes.
4477         (zone-fill-out-screen): Ignore intangibility.
4479 2010-07-05  Chong Yidong  <cyd@stupidchicken.com>
4481         * menu-bar.el (menu-bar-mode):
4482         * tool-bar.el (tool-bar-mode): Replace default-frame-alist element
4483         if it has been set.
4485         * mouse.el (mouse-drag-track): Call mouse-start-end to handle
4486         word/line selection (Bug#6565).
4488 2010-07-04  Juanma Barranquero  <lekktu@gmail.com>
4490         * net/dbus.el (dbus-send-signal): Declare function.
4492 2010-07-04  Michael Albinus  <michael.albinus@gmx.de>
4494         * net/dbus.el: Implement signal "PropertiesChanged" (from D-Bus 1.3.1).
4495         (dbus-register-property): New optional argument EMITS-SIGNAL.
4496         (dbus-property-handler): Send signal "PropertiesChanged" if requested.
4498 2010-07-03  Chong Yidong  <cyd@stupidchicken.com>
4500         * mouse.el (mouse-drag-overlay): Variable deleted.
4501         (mouse-move-drag-overlay, mouse-show-mark): Functions deleted.
4502         (mouse--remap-link-click-p): New function.
4503         (mouse-drag-track): Handle dragging by using temporary Transient
4504         Mark mode, instead of a special overlay.
4505         (mouse-kill-ring-save, mouse-save-then-kill): Don't call
4506         mouse-show-mark.
4508         * mouse-sel.el (mouse-sel-selection-alist): mouse-drag-overlay
4509         deleted.
4511 2010-07-02  Juri Linkov  <juri@jurta.org>
4513         * autoinsert.el (auto-insert-alist): Fix readability
4514         by using dotted pair notation for lambda.
4516 2010-07-02  Juri Linkov  <juri@jurta.org>
4518         * faces.el (read-face-name): Rename arg `string-describing-default'
4519         to `default'.  Doc fix.  Display the default value in quotes
4520         in the prompt.  With empty input, return the `default' arg,
4521         unless the default value is a string (in which case return nil).
4522         (describe-face): Replace the string `default' arg of `read-face-name'
4523         with the symbol `default'.
4525 2010-07-02  Chong Yidong  <cyd@stupidchicken.com>
4527         * emulation/viper-cmd.el (viper-delete-backward-char)
4528         (viper-del-backward-char-in-insert)
4529         (viper-del-backward-char-in-replace, viper-change)
4530         (viper-backward-indent): Replace delete-backward-char with
4531         delete-char (Bug#6552).
4533 2010-07-01  Chong Yidong  <cyd@stupidchicken.com>
4535         * ruler-mode.el (ruler--save-header-line-format): Fix typos.
4537 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
4539         * frame.el (make-frame): Add default-frame-alist to the PARAMETERS
4540         argument passed to frame-creation-function (Bug#5378).
4542         * faces.el (x-handle-named-frame-geometry)
4543         (x-handle-reverse-video, x-create-frame-with-faces)
4544         (face-set-after-frame-default, tty-create-frame-with-faces): Don't
4545         separately consult default-frame-alist.  It is now passed as the
4546         PARAMETER argument.
4548 2010-06-30  Andreas Schwab  <schwab@linux-m68k.org>
4550         * startup.el (command-line): Don't call tool-bar-setup in a
4551         tty-only build.
4553 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
4555         * ruler-mode.el (ruler--save-header-line-format): New fun.
4556         (ruler-mode): Use it as a setter function, so as not to overwrite
4557         ruler-mode-header-line-format-old if Ruler mode is on (Bug#5370).
4559 2010-06-29  Chong Yidong  <cyd@stupidchicken.com>
4561         * vc/vc.el (vc-deduce-backend): New fun.  Handle diff buffers.
4562         (vc-root-diff, vc-print-root-log, vc-log-incoming)
4563         (vc-log-outgoing): Use it.
4564         (vc-diff-internal): Set diff-vc-backend.
4566         * vc/diff-mode.el (diff-vc-backend): New var.
4568 2010-06-28  Jan Djärv  <jan.h.d@swipnet.se>
4570         * dynamic-setting.el (font-setting-change-default-font): Remove
4571         call to message.
4573 2010-06-28  Kenichi Handa  <handa@m17n.org>
4575         * international/quail.el (quail-insert-kbd-layout): Fix the
4576         showing of untranslated characters.
4578 2010-06-28  Chong Yidong  <cyd@stupidchicken.com>
4580         * simple.el (delete-active-region): New option.
4581         (delete-backward-char): Implement in Lisp.
4582         (delete-forward-char): New command.
4584         * mouse.el (mouse-region-delete-keys): Deleted.
4585         (mouse-show-mark): Simplify.
4587         * bindings.el (global-map): Bind delete and DEL, the former to
4588         delete-forward-char.
4590 2010-06-27  Lennart Borgman  <lennart.borgman@gmail.com>
4592         * progmodes/ruby-mode.el (ruby-mode-map): Don't bind TAB.
4593         (ruby-mode): Bind indent-line-function (Bug#5119).
4595 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
4597         * startup.el (command-line): Recognize "0" X resource value.
4599 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
4601         * startup.el (command-line): Use X resources to set the value of
4602         menu-bar-mode and tool-bar-mode, before calling frame-initialize.
4604         * menu-bar.el (menu-bar-mode):
4605         * tool-bar.el (tool-bar-mode): Don't change default-frame-alist.
4606         Set init-value to t.
4608         * frame.el (frame-notice-user-settings): Don't change
4609         default-frame-alist based on menu-bar-mode and tool-bar-mode, or
4610         vice versa (Bug#2249).
4612 2010-06-26  Eli Zaretskii  <eliz@gnu.org>
4614         * w32-fns.el (w32-convert-standard-filename): Doc fix.
4616 2010-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
4618         * textmodes/flyspell.el (flyspell-check-previous-highlighted-word):
4619         Make sure `flyspell-word' re-checks word after function run (Bug#6504).
4621         * textmodes/ispell.el (ispell-init-process): Make sure ispell and
4622         default directories are expanded (Bug#6143).
4624 2010-06-24  Juri Linkov  <juri@jurta.org>
4626         * minibuffer.el (completions-format): Change default from nil to
4627         `horizontal'.  Remove `nil' value from :type.  Doc fix.  (Bug#6459)
4629 2010-06-24  Juri Linkov  <juri@jurta.org>
4631         * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
4632         buffer-locally to lambda that re-runs the vc diff command.
4633         (Bug#6447)
4635 2010-06-24  Chong Yidong  <cyd@stupidchicken.com>
4637         * kmacro.el (kmacro-call-macro): Don't issue hint message if the
4638         echo area is in use (Bug#3412).
4640 2010-06-22  Glenn Morris  <rgm@gnu.org>
4642         * textmodes/texinfmt.el (texinfo-format-region)
4643         (texinfo-raise-lower-sections, texinfo-format-separate-node)
4644         (texinfo-itemize-item, texinfo-multitable-item, texinfo-alias)
4645         (texinfo-format-option, texinfo-noindent):
4646         Use line-beginning-position and line-end-position.
4648         * calc/calc-aent.el, calc/calc-ext.el, calc/calc-lang.el:
4649         * calc/calc-store.el, calc/calc-units.el, calc/calc.el:
4650         * calc/calccomp.el: Add explicit utf-8 coding cookies to files with
4651         utf-8 characters.
4653 2010-06-21  Karl Fogel  <kfogel@red-bean.com>
4655         * play/zone.el (zone-fall-through-ws): Fix next-line ->
4656         forward-line fallout.
4658 2010-07-06  Chong Yidong  <cyd@stupidchicken.com>
4660         * mouse.el (mouse-appearance-menu): Add docstring.
4662         * help.el (describe-key): Print up-event using key-description.
4664 2010-07-03  Michael Albinus  <michael.albinus@gmx.de>
4666         * net/zeroconf.el (zeroconf-resolve-service)
4667         (zeroconf-service-resolver-handler): Use `dbus-byte-array-to-string'.
4668         (zeroconf-publish-service): Use `dbus-string-to-byte-array'.
4670 2010-07-03  Jan Moringen  <jan.moringen@uni-bielefeld.de>
4672         * net/zeroconf.el (zeroconf-service-remove-hook): New defun.
4674 2010-06-30  Dan Nicolaescu  <dann@ics.uci.edu>
4676         Avoid displaying files with a nil state in vc-dir.
4677         * vc/vc-dir.el (vc-dir-update): Obey the noinsert argument in all
4678         cases that cause insertion.
4679         (vc-dir-resynch-file): Tell vc-dir-update to avoid inserting files
4680         with a nil state.
4682 2010-06-30  Chong Yidong  <cyd@stupidchicken.com>
4684         * xml.el (xml-parse-region): Avoid infloop (Bug#5281).
4686 2010-06-29  Leo  <sdl.web@gmail.com>
4688         * emacs-lisp/rx.el (rx): Doc fix.  (Bug#6537)
4690 2010-06-27  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
4692         * generic-x.el (bat-generic-mode): Fix regexp for command line
4693         switches (Bug#5719).
4695 2010-06-27  Masatake YAMATO  <yamato@redhat.com>
4697         * htmlfontify.el (hfy-face-attr-for-class): Use append instead
4698         of nconc to avoid pure storage error (Bug#6239).
4700 2010-06-27  Christoph  <cschol2112@googlemail.com>  (tiny change)
4702         * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
4703         (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
4704         bindings of bookmark-automatically-show-annotations (Bug#6515).
4706 2010-06-25  Eli Zaretskii  <eliz@gnu.org>
4708         * arc-mode.el (archive-zip-extract): Don't quote the file name on
4709         MS-Windows and MS-DOS.  (Bug#6467, Bug#6144)
4711 2010-06-24  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
4713         * comint.el (make-comint, make-comint-in-buffer): Mention return
4714         value in the docstrings.  (Bug#6498)
4716 2010-06-24  Yoni Rabkin  <yoni@rabkins.net>
4718         * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern,
4719         since it is not present when using some non-default switches.
4721 2010-06-23  Karl Fogel  <kfogel@red-bean.com>
4723         * simple.el (compose-mail): Fix doc string to refer to
4724         `compose-mail-user-agent-warnings', instead of to the
4725         nonexistent `compose-mail-check-user-agent'.
4727 2010-06-21  Alan Mackenzie  <bug-cc-mode@gnu.org>
4729         Fix an indentation bug:
4731         * progmodes/cc-mode.el (c-common-init): Initialise c-new-BEG/END.
4732         (c-neutralize-syntax-in-and-mark-CPP): c-new-BEG/END: Take account
4733         of existing values.
4735         * progmodes/cc-engine.el (c-clear-<-pair-props-if-match-after)
4736         (c-clear->-pair-props-if-match-before): now return t when they've
4737         cleared properties, nil otherwise.
4738         (c-before-change-check-<>-operators): Set c-new-beg/end correctly
4739         by taking account of the existing value.
4741         * progmodes/cc-defs.el
4742         (c-clear-char-property-with-value-function): Fix this to clear the
4743         property rather than overwriting it with nil.
4745 2010-06-20  Chong Yidong  <cyd@stupidchicken.com>
4747         * emacs-lisp/package.el (package-print-package): Add link to
4748         package description via describe-package.
4749         (describe-package-1): List package requirements.  Add button to
4750         perform installation.
4751         (package-menu-describe-package): New command.
4753         * help-mode.el (help-package): New button type.
4755 2010-06-19  Chong Yidong  <cyd@stupidchicken.com>
4757         * emacs-lisp/package.el: Move package-list-packages binding to
4758         menu-bar.el.
4759         (describe-package, describe-package-1, package--dir): New funs.
4760         (package-activate-1): Use package--dir.
4762         * emacs-lisp/package-x.el (gnus-article-buffer): Require package.
4764         * help-mode.el (help-package-def): New button type.
4766         * menu-bar.el: Move package-list-packages binding here from
4767         package.el.
4769 2010-06-19  Gustav Hållberg  <gustav@gmail.com>  (tiny change)
4771         * descr-text.el (describe-char): Avoid trailing whitespace.  (Bug#6423)
4773 2010-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4775         * emacs-lisp/edebug.el (edebug-read-list):
4776         Phase out old-style backquotes.
4778 2010-06-17  Juri Linkov  <juri@jurta.org>
4780         * help-mode.el (help-mode): Set buffer-local variable
4781         revert-buffer-function to help-mode-revert-buffer.
4782         (help-mode-revert-buffer): New function.
4784         * info.el (Info-revert-find-node): Check for major-mode Info-mode
4785         before popping to "*info*" (like in other Info functions).
4786         Keep buffer-name in old-buffer-name.  Keep Info-history-forward in
4787         old-history-forward.  Pop to old-buffer-name or "*info*" to
4788         recreate the killed buffer.  Set Info-history-forward from
4789         old-history-forward.
4790         (Info-breadcrumbs-depth): Add :group and :version.
4792 2010-06-17  Dan Nicolaescu  <dann@ics.uci.edu>
4794         * emacs-lisp/package.el (package-menu-mode-map): Add a menu.
4796 2010-06-17  Agustín Martín  <agustin.martin@hispalinux.es>
4798         * textmodes/ispell.el (ispell-aspell-find-dictionary): Fix regexp
4799         for languages like Portuguese with pt_{BR,PT} and no plain pt.
4801 2010-06-17  Juanma Barranquero  <lekktu@gmail.com>
4803         * emacs-lisp/package.el (package-menu-mode-map):
4804         Move initialization into declaration.
4806         * menu-bar.el (menu-bar-options-menu): Fix typo in menu entry.
4808 2010-06-17  Chong Yidong  <cyd@stupidchicken.com>
4810         * emacs-lisp/package.el (package-archive-base): Point to
4811         elpa.gnu.org.
4812         (package-enable, package-load-list): New defcustoms.
4813         (package-user-dir, package-directory-list): Turn into defcustoms.
4814         Don't include package-user-dir in package-directory-list.
4815         (package--builtins-base): Don't include Emacs as a "package".
4816         (package-subdirectory-regexp): New var.
4817         (package-load-all-descriptors, package-compute-transaction)
4818         (package-download-transaction): Obey package-load-list.
4819         (package-activate-1): Rename from package-do-activate.
4820         (package-list-packages-internal): Check package-load-list.
4821         (package-load-descriptor, package-generate-autoloads)
4822         (package-unpack, package-unpack-single)
4823         (package--read-archive-file, package-delete): Use
4824         expand-file-name.
4826         * emacs-lisp/package-x.el: New file.  Package uploading
4827         functionality split out from package.el.
4829         * startup.el (command-line): Load packages after reading init file.
4831 2010-06-17  Tom Tromey  <tromey@redhat.com>
4833         * emacs-lisp/package.el: New file.
4835 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
4837         Fix vc-annotate for renamed files when using Git.
4838         * vc/vc-git.el (vc-git-find-revision): Deal with empty results from
4839         ls-files.  Doe not pass the object as a file name to cat-file, it
4840         is not a file name.
4841         (vc-git-annotate-command): Pass the file name using -- to avoid
4842         ambiguity with the revision.
4843         (vc-git-previous-revision): Pass a relative file name.
4845 2010-06-22  Glenn Morris  <rgm@gnu.org>
4847         * progmodes/js.el (js-mode-map): Use standard capitalization and
4848         ellipses for menu entries.
4850         * wid-edit.el (widget-complete): Doc fix.
4852 2010-06-22  Jürgen Hötzel  <juergen@hoetzel.info>  (tiny change)
4854         * wid-edit.el (widget-complete): Fix typo in 2009-12-02 change.
4856 2010-06-22  Dan Nicolaescu  <dann@ics.uci.edu>
4858         Fix annotating other revisions for renamed files in vc-annotate.
4859         * vc/vc-annotate.el (vc-annotate): Add an optional argument for the
4860         VC backend.  Use it when non-nil.
4861         (vc-annotate-warp-revision): Pass the VC backend to vc-annotate.
4862         (Bug#6487)
4864         Fix vc-annotate-show-changeset-diff-revision-at-line for git.
4865         * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
4866         Do not pass the file name to the 'previous-revision call when we
4867         don't want a file diff.  (Bug#6489)
4869 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
4871         Fix finding revisions for renamed files in vc-annotate.
4872         * vc/vc.el (vc-find-revision): Add an optional argument for
4873         the VC backend.  Use it when non-nil.
4874         * vc/vc-annotate.el (vc-annotate-find-revision-at-line): Pass the VC
4875         backend to vc-find-revision.  (Bug#6487)
4877 2010-06-21  Dan Nicolaescu  <dann@ics.uci.edu>
4879         Fix reading file names in Git annotate buffers.
4880         * vc/vc-git.el (vc-git-annotate-extract-revision-at-line):
4881         Remove trailing whitespace.  Suggested by Eric Hanchrow.  (Bug#6481)
4883 2010-06-20  Alan Mackenzie  <acm@muc.de>
4885         * progmodes/cc-mode.el (c-before-hack-hook): When the mode is set
4886         in file local variables, set it first.
4888 2010-06-19  Glenn Morris  <rgm@gnu.org>
4890         * descr-text.el (describe-char-unicode-data): Insert separating
4891         space when needed.  (Bug#6422)
4893         * progmodes/idlwave.el (idlwave-action-and-binding):
4894         Fix typo in 2009-12-03 change.  (Bug#6450)
4896 2010-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4898         * emacs-lisp/macroexp.el (macroexpand-all-1): Put back special
4899         handling for `lambda' (misunderstanding).
4901 2010-06-16  Jay Belanger  <jay.p.belanger@gmail.com>
4903         * calc/calc-poly.el (math-accum-factors): Make sure that
4904         constants aren't distributed after they are factored out.
4906 2010-06-16  Juri Linkov  <juri@jurta.org>
4908         * facemenu.el (list-colors-display): Call `pop-to-buffer' before
4909         `list-colors-print'.  (Bug#6332)
4911         * subr.el (read-quoted-char): Fix up last change (bug#6290).
4913 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4915         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't handle `lambda'
4916         specially, since it's a macro.  Fix up wrong hint passed to maybe-cons.
4918         * font-lock.el (font-lock-major-mode): Rename from
4919         font-lock-mode-major-mode to distinguish it from
4920         global-font-lock-mode's own font-lock-mode-major-mode (bug#6135).
4921         (font-lock-set-defaults):
4922         * font-core.el (font-lock-default-function): Adjust users.
4923         (font-lock-mode): Don't set it at all.
4925 2010-06-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4927         * vc/vc-annotate.el (vc-annotate): Use vc-read-revision.
4929 2010-06-16  Glenn Morris  <rgm@gnu.org>
4931         * calendar/appt.el (appt-time-msg-list): Doc fix.
4932         (appt-check): Let-bind appt-warn-time.
4933         (appt-add): Make the 3rd argument optional.
4934         Simplify argument names.  Doc fix.  Check for integer WARNTIME.
4935         Only add WARNTIME to the output list if non-nil.
4937 2010-06-16  Ivan Kanis  <apple@kanis.eu>
4939         * calendar/appt.el (appt-check): Let the 3rd element of
4940         appt-time-msg-list specify the warning time.
4941         (appt-add): Add new argument with the warning time.  (Bug#5176)
4943 2010-06-16  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
4945         * vc/vc-svn.el (vc-svn-after-dir-status): Fix regexp for Subversions
4946         older than version 1.6.  (Bug#6361)
4948 2010-06-16  Helmut Eller  <eller.helmut@gmail.com>
4950         * emacs-lisp/cl-macs.el (destructuring-bind): Bind `bind-enquote',
4951         used by cl-do-arglist.  (Bug#6408)
4953 2010-06-16  Agustín Martín  <agustin.martin@hispalinux.es>
4955         * textmodes/ispell.el (ispell-dictionary-base-alist): Fix
4956         portuguese casechars/not-casechars for missing 'çÇ'.
4957         Suggested by Rolando Pereira (bug#6434).
4959 2010-06-15  Juanma Barranquero  <lekktu@gmail.com>
4961         * facemenu.el (list-colors-sort): Doc fix.
4963 2010-06-15  Bob Rogers  <rogers-emacs@rgrjr.dyndns.org>  (tiny change)
4965         * progmodes/sql.el (sql-connect-mysql): Fix typo.
4967 2010-06-14  Juri Linkov  <juri@jurta.org>
4969         Add sort option `list-colors-sort'.  (Bug#6332)
4970         * facemenu.el (color-rgb-to-hsv): New function.
4971         (list-colors-sort): New defcustom.
4972         (list-colors-sort-key): New function.
4973         (list-colors-display): Doc fix.  Sort list according to the option
4974         `list-colors-sort'.
4975         (list-colors-print): Add HSV values to `help-echo' property of
4976         RGB strings.
4978 2010-06-14  Juri Linkov  <juri@jurta.org>
4980         * compare-w.el: Move to the "vc" subdirectory.
4982 2010-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4984         * image-mode.el (image-mode-map): Remap left-char and right-char.
4986         * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
4988 2010-06-12  Chong Yidong  <cyd@stupidchicken.com>
4990         * term/common-win.el (x-colors): Add all the color names defined
4991         in rgb.txt (Bug#6332).
4993         * facemenu.el (list-colors-print): Don't print extra names if it
4994         will overflow the window width.
4996         * vc/log-edit.el (log-edit-font-lock-keywords): Revert 2010-06-02
4997         change (Bug#6343).
4999 2010-06-12  Eli Zaretskii  <eliz@gnu.org>
5001         * files.el (make-directory): Doc fix (bug#6396).
5003 2010-06-12  Michael Albinus  <michael.albinus@gmx.de>
5005         * net/tramp.el (tramp-remote-process-environment): Protect version
5006         string by apostroph.
5007         (tramp-shell-prompt-pattern): Do not use a shy group in case of
5008         XEmacs.
5009         (tramp-file-name-for-operation): Add `call-process-region'.
5010         (tramp-set-process-query-on-exit-flag): Fix wrong parentheses.
5012         * net/tramp-compat.el (top): Do not autoload
5013         `tramp-handle-file-remote-p'.  Load tramp-util.el and tramp-vc.el
5014         only when `start-file-process' is not bound.
5015         (tramp-advice-file-expand-wildcards): Do not use
5016         `tramp-handle-file-remote-p'.
5017         (tramp-compat-make-temp-file): Handle the case, that
5018         `make-temp-file' has no third argument EXTENSION.
5020 2010-06-11  Juanma Barranquero  <lekktu@gmail.com>
5022         * makefile.w32-in (WINS_BASIC): Include new directory vc.
5024         * loadup.el ("vc-hooks", "ediff-hook"): Load from lisp/vc/.
5026 2010-06-11  Juri Linkov  <juri@jurta.org>
5028         * finder.el (finder-known-keywords): Add keyword "vc"
5029         for version control.
5031         * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
5032         * emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
5033         * vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
5034         * vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
5036 2010-06-11  Juri Linkov  <juri@jurta.org>
5038         Move version control related files to the "vc" subdirectory.
5039         * add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff-diff.el,
5040         * ediff.el, ediff-help.el, ediff-hook.el, ediff-init.el,
5041         * ediff-merg.el, ediff-mult.el, ediff-ptch.el, ediff-util.el,
5042         * ediff-vers.el, ediff-wind.el, emerge.el, log-edit.el, log-view.el,
5043         * pcvs-defs.el, pcvs.el, pcvs-info.el, pcvs-parse.el, pcvs-util.el,
5044         * smerge-mode.el, vc-annotate.el, vc-arch.el, vc-bzr.el, vc-cvs.el,
5045         * vc-dav.el, vc-dir.el, vc-dispatcher.el, vc.el, vc-git.el,
5046         * vc-hg.el, vc-hooks.el, vc-mtn.el, vc-rcs.el, vc-sccs.el, vc-svn.el:
5047         Move files to the "vc" subdirectory.
5049 2010-06-11  Chong Yidong  <cyd@stupidchicken.com>
5051         * comint.el (comint-password-prompt-regexp): Fix 2010-04-10 change
5052         (Bug#6367).
5054 2010-06-11  Stephen Eglen  <stephen@gnu.org>
5056         * shell.el: Bind `shell-resync-dirs' to M-RET.
5058 2010-06-10  Michael Albinus  <michael.albinus@gmx.de>
5060         * notifications.el: Move file from lisp/net, because it is
5061         supposed to talk locally to the user.
5063 2010-06-10  Julien Danjou  <julien@danjou.info>
5065         * net/notifications.el (notifications-on-action-signal)
5066         (notifications-on-closed-signal): Pass notification id as first
5067         argument to the callback functions.  Add docstrings.
5068         (notifications-notify): Fix docstring.
5070 2010-06-10  Glenn Morris  <rgm@gnu.org>
5072         * emacs-lisp/authors.el (authors-ignored-files)
5073         (authors-valid-file-names): Add some files.
5075 2010-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5077         * net/rcirc.el (rcirc-server-alist, rcirc, rcirc-connect): Resolve
5078         merge conflict, giving preference to the emacs-23 version of the code.
5080 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5082         * emacs-lisp/advice.el (ad-compile-function):
5083         Define warning-suppress-types before we let-bind it (bug#6275).
5085         * vc-dispatcher.el: Rename mode-line-hook to vc-mode-line-hook;
5086         declare it, make it buffer-local and permanent-local (bug#6324).
5087         (vc-resynch-window): Adjust name.
5088         * vc-hooks.el (vc-find-file-hook): Adjust name.
5090 2010-06-09  Michael Albinus  <michael.albinus@gmx.de>
5092         * net/notifications.el (notifications-notify): Fix docstring.
5094 2010-06-09  Juanma Barranquero  <lekktu@gmail.com>
5096         Update to Unicode 6.0.0 beta.
5097         * international/charprop.el: Update copyright.
5098         * international/mule-cmds.el (ucs-names): Update character ranges.
5099         * international/uni-bidi.el:
5100         * international/uni-category.el:
5101         * international/uni-combining.el:
5102         * international/uni-comment.el:
5103         * international/uni-decimal.el:
5104         * international/uni-decomposition.el:
5105         * international/uni-digit.el:
5106         * international/uni-lowercase.el:
5107         * international/uni-mirrored.el:
5108         * international/uni-name.el:
5109         * international/uni-numeric.el:
5110         * international/uni-old-name.el:
5111         * international/uni-titlecase.el:
5112         * international/uni-uppercase.el: Regenerate.
5114 2010-06-09  Juanma Barranquero  <lekktu@gmail.com>
5116         * emacs-lisp/smie.el (comment-string-strip): Declare function.
5117         (smie-precs-precedence-table): Fix typo in docstring.
5119         * vc-mtn.el (log-edit-extract-headers): Declare function.
5121         * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration.
5123         * net/notifications.el (dbus-register-signal): Declare function.
5124         (notifications-notify): Fix typos and reflow docstring.
5126 2010-06-09  Dan Nicolaescu  <dann@ics.uci.edu>
5128         Improve VC create/retrieve tag/branch.
5129         * vc.el (vc-create-tag): Do not read the directory name for VCs
5130         with repository revision granularity.  Adjust the tag/branch
5131         prompt.  Reset VC properties.
5132         (vc-retrieve-tag): Do not read the directory name for VCs
5133         with repository revision granularity.  Reset VC properties.
5135 2010-06-09  Julien Danjou  <julien@danjou.info>
5137         * net/notifications.el: New file.
5139 2010-06-09  Dan Nicolaescu  <dann@ics.uci.edu>
5141         Add optional support for resetting VC properties.
5142         * vc-dispatcher.el (vc-resynch-window): Add new optional argument,
5143         call vc-file-clearprops when true.
5144         (vc-resynch-buffer): Add new optional argument, pass it down.
5145         (vc-resynch-buffers-in-directory): Likewise.
5147         Improve support for special markup in the VC commit message.
5148         * vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup.
5149         * vc-hg.el (vc-hg-checkin): Add support for Date:.
5150         * vc-git.el (vc-git-checkin):
5151         * vc-bzr.el (vc-bzr-checkin): Likewise.
5153 2010-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5155         * emacs-lisp/smie.el (smie-indent-keyword): Remove special case that
5156         can be handled with a ((:before "fn") (:prev "=>" parent)) rule.
5158 2010-06-07  Martin Pohlack  <mp26@os.inf.tu-dresden.de>
5160         * iimage.el: Remove images as soon as the underlying text is modified.
5161         (iimage-modification-hook): New function.
5162         (iimage-mode-buffer): Use it.
5164 2010-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5166         * emacs-lisp/smie.el (smie-indent-offset-rule): Rename from
5167         smie-indent-offset-after.  Add :prev case.  Make a bit more generic.
5168         (smie-indent-virtual): Remove `virtual' arg.  Update callers.
5169         (smie-indent-keyword): Add handling of open-paren keywords.
5170         (smie-indent-comment-continue): Don't assume comment-continue.
5172 2010-06-07  Martin Rudalics  <rudalics@gmx.at>
5174         * window.el (pop-to-buffer): Remove the conditional that
5175         compares new-window and old-window, so it will reselect
5176         the selected window unconditionally.
5177         http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00078.html
5179 2010-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5181         * emacs-lisp/smie.el (smie-indent-offset-after)
5182         (smie-indent-forward-token, smie-indent-backward-token): New functions.
5183         (smie-indent-after-keyword): Use them.
5184         (smie-indent-fixindent): Only applies to the indentation of the BOL.
5185         (smie-indent-keyword): Tweak the black magic.
5186         (smie-indent-comment-continue): Strip comment-continue before use.
5187         (smie-indent-functions): Indent comments before keywords.
5189 2010-06-06  Juri Linkov  <juri@jurta.org>
5191         * isearch.el (isearch-lazy-highlight-search): Fix looping
5192         by checking for empty match.  This syncs this loop with the
5193         similar loop in `isearch-search'.  (Bug#6362)
5195 2010-06-05  Juanma Barranquero  <lekktu@gmail.com>
5197         * net/dbus.el (dbus-register-method): Declare function.
5198         (dbus-handle-event, dbus-property-handler): Fix typos in docstrings.
5199         (dbus-introspect): Doc fix.
5200         (dbus-event-bus-name, dbus-introspect-get-interface)
5201         (dbus-introspect-get-argument): Reflow docstrings.
5203 2010-06-05  Dan Nicolaescu  <dann@ics.uci.edu>
5205         vc-log-incoming/vc-log-outgoing fixes for Git.
5206         * vc-git.el (vc-git-log-view-mode): Fix font lock for
5207         incoming/outgoing logs.
5208         (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream}
5209         instead of vc-git-compute-remote.
5210         (vc-git-compute-remote): Remove.
5212 2010-06-04  Chong Yidong  <cyd@stupidchicken.com>
5214         * term/common-win.el (x-colors): Add "dark green" and "dark
5215         turquoise" (Bug#6332).
5217 2010-06-04  Juri Linkov  <juri@jurta.org>
5219         * simple.el (kill-new): Fix logic of kill-do-not-save-duplicates.
5220         Instead of setting `replace' to t and replacing the same string
5221         with itself, don't do certain actions when
5222         kill-do-not-save-duplicates is non-nil and string is equal to car
5223         of kill-ring: don't call menu-bar-update-yank-menu, don't push
5224         interprogram-paste strings to kill-ring, and don't push the input
5225         argument `string' to kill-ring.
5226         http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00072.html
5228 2010-06-04  Juanma Barranquero  <lekktu@gmail.com>
5230         * subr.el (directory-sep-char): Move from fileio.c and make a defconst.
5232 2010-06-04  Michael Albinus  <michael.albinus@gmx.de>
5234         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name): Expand "~/".
5235         (tramp-gvfs-handler-mounted-unmounted)
5236         (tramp-gvfs-connection-mounted-p): Handle default-location.
5238         * net/tramp-smb.el (tramp-smb-handle-delete-directory): Don't try to
5239         move files to trash.
5241 2010-06-04  Juanma Barranquero  <lekktu@gmail.com>
5243         * international/mule-cmds.el (nonascii-insert-offset)
5244         (nonascii-translation-table): Add obsolescence information.
5246         * international/mule.el (make-translation-table-from-vector): Doc fix.
5248 2010-06-03  Glenn Morris  <rgm@gnu.org>
5250         * desktop.el (desktop-clear-preserve-buffers):
5251         Add "*Warnings*" buffer.  (Bug#6336)
5253 2010-06-03  Dan Nicolaescu  <dann@ics.uci.edu>
5255         vc-log-incoming/vc-log-outgoing improvements for Git.
5256         * vc-git.el (vc-git-log-outgoing): Use the same format as the
5257         short log.
5258         (vc-git-log-incoming): Likewise.  Run "git fetch" before the log command.
5260         Add bindings for vc-log-incoming and vc-log-outgoing.
5261         * vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
5262         and vc-log-outgoing.
5263         * vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
5264         and vc-log-outgoing.
5266 2010-06-03  Chong Yidong  <cyd@stupidchicken.com>
5268         * net/rcirc.el (rcirc-sort-nicknames): Remove.
5269         (rcirc-handler-366): Always sort nicknames.
5271 2010-06-03  Juanma Barranquero  <lekktu@gmail.com>
5273         * emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
5275 2010-06-03  Chong Yidong  <cyd@stupidchicken.com>
5277         * net/rcirc.el (rcirc-nickname<, rcirc-sort-nicknames-join): Doc fix.
5279 2010-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5281         * net/rcirc.el (rcirc-sort-nicknames): Change default.
5282         (rcirc-sort-nicknames-join): Avoid setq.
5284 2010-06-03  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
5286         * net/rcirc.el (rcirc-sort-nicknames): New custom.
5287         (rcirc-nickname<, rcirc-sort-nicknames-join): New funs.
5288         (rcirc-handler-366): Use them.
5290 2010-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5292         Split smie-indent-calculate into more manageable chunks.
5293         * emacs-lisp/smie.el (smie-indent-virtual, smie-indent-fixindent)
5294         (smie-indent-comment, smie-indent-after-keyword, smie-indent-keyword)
5295         (smie-indent-close, smie-indent-comment-continue, smie-indent-bob)
5296         (smie-indent-exps): Extract from smie-indent-calculate.
5297         (smie-indent-functions): New var.
5298         (smie-indent-functions): Use them.
5300 2010-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5302         * emacs-lisp/smie.el (smie-indent-hanging-p): Use smie-bolp.
5303         (smie-indent-calculate): Simplify and cleanup.
5305 2010-06-02  Michael Albinus  <michael.albinus@gmx.de>
5307         * net/tramp-gvfs.el (top): Require url-util.
5308         (tramp-gvfs-mount-point): Remove.
5309         (tramp-gvfs-stringify-dbus-message, tramp-gvfs-send-command):
5310         New defuns.
5311         (with-tramp-dbus-call-method): Format trace message.
5312         (tramp-gvfs-handle-copy-file, tramp-gvfs-handle-rename-file):
5313         Implement backup call, when operation on local files fails.
5314         Use progress reporter.  Flush properties of changed files.
5315         (tramp-gvfs-handle-make-directory): Make more traces.
5316         (tramp-gvfs-url-file-name): Hexify file name in url.
5317         (tramp-gvfs-fuse-file-name): Take also prefix (like dav shares)
5318         into account for the resulting file name.
5319         (tramp-gvfs-handler-askquestion): Return dummy mountpoint, when
5320         the answer is "no".  See `tramp-gvfs-maybe-open-connection'.
5321         (tramp-gvfs-handler-mounted-unmounted)
5322         (tramp-gvfs-connection-mounted-p): Test also for new mountspec
5323         attribute "default_location".  Set "prefix" property.
5324         (tramp-gvfs-mount-spec): Return both prefix and mountspec.
5325         (tramp-gvfs-maybe-open-connection): Test, whether mountpoint
5326         exists.  Raise an error, if not (due to a corresponding answer
5327         "no" in interactive questions, for example).
5329 2010-06-02  Dan Nicolaescu  <dann@ics.uci.edu>
5331         * log-edit.el (log-edit-font-lock-keywords): Make group 4 match lax.
5333 2010-06-01  Juanma Barranquero  <lekktu@gmail.com>
5335         * emacs-lisp/eldoc.el: Add completions for new commands left-* and
5336         right-*.  (Bug#6265)
5338 2010-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
5340         Add support for vc-log-incoming, improve vc-log-outgoing for Git.
5341         * vc-git.el (vc-git-compute-remote): New function.
5342         (vc-git-log-outgoing): Use it instead of hard coding a value.
5343         (vc-git-log-incoming): New function.
5345         Improve state updating for VC tag commands.
5346         * vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
5347         to update the state of all buffers in the directory.
5349         * vc-dir.el (vc-dir-update): Remove entries with a nil state (bug#5539).
5351 2010-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5353         * vc-bzr.el (vc-bzr-revision-completion-table): Apply
5354         `file-directory-p' to the filename part rather than to the whole text.
5356 2010-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5358         * man.el (Man-completion-table): Let the user type "-k " (bug#6319).
5360 2010-05-31  Drew Adams  <drew.adams@oracle.com>
5362         * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
5364 2010-05-31  Juanma Barranquero  <lekktu@gmail.com>
5366         * subr.el (momentary-string-display): Just use read-event to read
5367         the exit event (Bug#6238).
5369 2010-05-30  Eli Zaretskii  <eliz@gnu.org>
5371         * international/mule.el (define-coding-system): Doc fix (bug#6313).
5373 2010-05-30  Juanma Barranquero  <lekktu@gmail.com>
5375         * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
5376         Suggested by Eli Zaretskii <eliz@gnu.org>.
5378 2010-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5380         * minibuffer.el (completion-file-name-table): Don't return a boundary
5381         past the end of `string' (bug#6299).
5382         (completion--file-name-table): Delegate to completion-file-name-table
5383         for the `boundaries' case.
5385 2010-05-30  Juanma Barranquero  <lekktu@gmail.com>
5387         * emulation/cua-base.el: Recognize `right-char' and `left-char' as
5388         movement commands.
5390         * progmodes/ada-xref.el (ada-prj-ada-project-path-sep): Set from
5391         `path-separator', but maintain compatibility with Emacs 20.2.
5393 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
5395         * server.el (server-process-filter): Receive parent-id argument
5396         from emacsclient.
5397         (server-create-window-system-frame): New arg.  Pass parent-id as
5398         frame parameter.
5400 2010-05-29  Eli Zaretskii  <eliz@gnu.org>
5402         Bidi-sensitive word movement with arrow keys.
5403         * subr.el (right-arrow-command, left-arrow-command): Move to
5404         bindings.el.
5406         * bindings.el (right-char, left-char): Move from subr.el and
5407         rename from right-arrow-command and left-arrow-command.
5408         (right-word, left-word): New functions.
5409         (global-map) <right>: Bind to right-char.
5410         (global-map) <left>: Bind to left-char.
5411         (global-map) <C-right>: Bind to right-word.
5412         (global-map) <C-left>: Bind to left-word.
5414         * ls-lisp.el (ls-lisp-classify-file): New function.
5415         (ls-lisp-insert-directory): Call it if switches include -F (bug#6294).
5416         (ls-lisp-classify): Call ls-lisp-classify-file.
5417         (insert-directory): Remove blanks from switches.
5419 2010-05-29  Chong Yidong  <cyd@stupidchicken.com>
5421         * ansi-color.el: Delete unused escape sequences (Bug#6085).
5422         (ansi-color-drop-regexp): New constant.
5423         (ansi-color-apply, ansi-color-filter-region)
5424         (ansi-color-apply-on-region): Delete unrecognized control sequences.
5425         (ansi-color-apply): Build string list before calling concat.
5427 2010-05-28  Juri Linkov  <juri@jurta.org>
5429         * image-dired.el (image-dired-dired-toggle-marked-thumbs):
5430         Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
5431         (Bug#5270)
5433 2010-05-28  Michael Albinus  <michael.albinus@gmx.de>
5435         * net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'
5436         to ignored backtrace functions.
5437         (with-progress-reporter): Expand docstring.
5438         (tramp-handle-delete-file): Implement TRASH argument.
5439         (tramp-get-remote-trash): New defun.
5441 2010-05-28  Michael Albinus  <michael.albinus@gmx.de>
5443         * net/tramp-compat.el (tramp-compat-delete-file): Use
5444         `symbol-value' for backward compatibility.
5446         * net/tramp.el (tramp-handle-make-symbolic-link)
5447         (tramp-handle-load)
5448         (tramp-do-copy-or-rename-file-via-buffer)
5449         (tramp-do-copy-or-rename-file-directly)
5450         (tramp-do-copy-or-rename-file-out-of-band)
5451         (tramp-handle-process-file, tramp-handle-call-process-region)
5452         (tramp-handle-shell-command, tramp-handle-file-local-copy)
5453         (tramp-handle-insert-file-contents, tramp-handle-write-region)
5454         (tramp-delete-temp-file-function): Use `delete-file' instead
5455         of `tramp-compat-delete-file'.
5457         * net/tramp-fish.el (tramp-fish-handle-delete-directory)
5458         (tramp-fish-handle-make-symbolic-link)
5459         (tramp-fish-handle-process-file): Use `delete-file' instead
5460         of `tramp-compat-delete-file'.
5462         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use
5463         `delete-file' instead of `tramp-compat-delete-file'.
5465         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
5466         (tramp-gvfs-handle-write-region): Use `delete-file' instead of
5467         `tramp-compat-delete-file'.
5469         * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file): Use
5470         `delete-file' instead of `tramp-compat-delete-file'.
5472         * net/tramp-smb.el (tramp-smb-handle-copy-file)
5473         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5474         (tramp-smb-handle-write-region): Use `delete-file' instead of
5475         `tramp-compat-delete-file'.
5476         (tramp-smb-handle-delete-directory): Use 'trash as arg.
5478 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
5480         * dired.el (dired-delete-file): New arg TRASH.
5481         (dired-internal-do-deletions): New arg TRASH.  Use progress reporter.
5482         (dired-do-flagged-delete, dired-do-delete): Use trash.
5484         * speedbar.el (speedbar-item-delete): Allow trashing.
5486         * files.el (delete-directory): New arg TRASH.
5488         * net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file)
5489         (ange-ftp-rename-remote-to-remote)
5490         (ange-ftp-rename-local-to-remote)
5491         (ange-ftp-rename-remote-to-local, ange-ftp-load)
5492         (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from
5493         `delete-file'.
5494         (ange-ftp-delete-directory): Add optional arg to `delete-file', to
5495         allow trashing.
5497         * net/tramp-compat.el (tramp-compat-delete-file): Rewrite to
5498         handle new TRASH arg of `delete-file'.
5500         * net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH.
5501         (tramp-handle-make-symbolic-link, tramp-handle-load)
5502         (tramp-do-copy-or-rename-file-via-buffer)
5503         (tramp-do-copy-or-rename-file-directly)
5504         (tramp-do-copy-or-rename-file-out-of-band)
5505         (tramp-handle-process-file, tramp-handle-call-process-region)
5506         (tramp-handle-shell-command, tramp-handle-file-local-copy)
5507         (tramp-handle-insert-file-contents, tramp-handle-write-region)
5508         (tramp-delete-temp-file-function): Use null TRASH arg in
5509         tramp-compat-delete-file call.
5511         * net/tramp-fish.el (tramp-fish-handle-delete-directory)
5512         (tramp-fish-handle-delete-file)
5513         (tramp-fish-handle-make-symbolic-link)
5514         (tramp-fish-handle-process-file): Use null TRASH arg in
5515         `tramp-compat-delete-file' call.
5517         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH
5518         arg in `tramp-compat-delete-file' call.
5520         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg.
5521         (tramp-gvfs-handle-write-region): Use null TRASH arg in
5522         `tramp-compat-delete-file' call.
5524         * net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg.
5525         (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in
5526         `tramp-compat-delete-file' call.
5528         * net/tramp-smb.el (tramp-smb-handle-copy-file)
5529         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
5530         (tramp-smb-handle-write-region): Use null TRASH arg in
5531         tramp-compat-delete-file call.
5532         (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file.
5533         (tramp-smb-handle-delete-file): Rename arg.
5535         * diff.el (diff-sentinel):
5536         * epg.el (epg--make-temp-file, epg-decrypt-string)
5537         (epg-verify-string, epg-sign-string, epg-encrypt-string):
5538         * jka-compr.el (jka-compr-partial-uncompress)
5539         (jka-compr-call-process, jka-compr-write-region):
5540         * server.el (server-sentinel): Remove optional arg from
5541         delete-file, reverting 2010-05-03 change.
5543 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
5545         * progmodes/verilog-mode.el (verilog-type-font-keywords): Use
5546         font-lock-constant-face, not obsolete font-lock-reference-face.
5548 2010-05-27  Kenichi Handa  <handa@m17n.org>
5550         * language/hebrew.el (hebrew-shape-gstring): Check if a glyph
5551         element of GSTRING is nil.
5553 2010-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5555         * emacs-lisp/smie.el (smie-forward-token-function)
5556         (smie-backward-token-function): New vars.
5557         (smie-backward-sexp, smie-forward-sexp)
5558         (smie-indent-hanging-p, smie-indent-calculate): Use them.
5559         (smie-default-backward-token): Rename from smie-backward-token and
5560         skip comments.
5561         (smie-default-forward-token): Rename from smie-forward-token and
5562         skip comments.
5563         (smie-next-sexp): Handle nil results from next-token.
5564         (smie-indent-calculate): Add a new case for special `fixindent' comments.
5566 2010-05-27  Chong Yidong  <cyd@stupidchicken.com>
5568         * progmodes/verilog-mode.el (verilog-type-font-keywords):
5569         Use font-lock-constant-face, not obsolete font-lock-reference-face.
5571 2010-05-27  Masatake YAMATO  <yamato@redhat.com>
5573         * htmlfontify.el (hfy-face-resolve-face): New function.
5574         (hfy-face-to-style): Use it (Bug#6279).
5576 2010-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5578         * progmodes/ada-xref.el (ada-gnat-parse-gpr):
5579         * emulation/edt.el (edt-load-keys): Avoid (expand-file-name ".").
5581 2010-05-26  Glenn Morris  <rgm@gnu.org>
5583         * emulation/edt.el (edt-load-keys): Use locate-library.
5585 2010-05-25  Chong Yidong  <cyd@stupidchicken.com>
5587         * log-edit.el (log-edit-strip-single-file-name): Default to nil.
5588         (log-edit-changelog-entries): Doc fix.
5589         (log-edit-changelog-insert-entries): Args changed.
5590         Rename relative filenames in ChangeLog entries.  Delete tabs.
5591         (log-edit-insert-changelog-entries): Reorganize return value of
5592         `log-edit-changelog-entries' to pass filenames to
5593         log-edit-changelog-insert-entries.
5595 2010-05-25  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5597         * dired.el (dired-mode-map): Rebind "\C-t\C-t" from
5598         `image-dired-dired-insert-marked-thumbs' to
5599         `image-dired-dired-toggle-marked-thumbs'.
5601         * image-dired.el: Require cl when compiling.
5602         (image-dired-dired-toggle-marked-thumbs): Rename from
5603         `image-dired-dired-insert-marked-thumbs'.  Add ARG.  Doc fix.
5604         Use interactive spec "P".  Set LOCALP arg of `dired-get-filename'
5605         to 'no-dir.  Skip files whose names don't match
5606         `image-file-name-regexp'.  When file has a thumbnail overlay,
5607         delete it.  (Bug#5270)
5609 2010-05-25  Juri Linkov  <juri@jurta.org>
5611         * image-mode.el (image-mode): Add image-after-revert-hook to
5612         after-revert-hook.
5613         (image-after-revert-hook): New function.  (Bug#5669)
5615 2010-05-25  Juri Linkov  <juri@jurta.org>
5617         * image.el (image-animated-p): When delay between animated images
5618         is 0, set it to 10 (0.1 sec).  (Bug#6258)
5620 2010-05-25  Christian Lynbech  <christian.lynbech@tieto.com>  (tiny change)
5622         * net/tramp.el (tramp-handle-insert-directory): Don't use
5623         `forward-word', its default syntax could be changed.
5625 2010-05-25  Michael Albinus  <michael.albinus@gmx.de>
5627         * net/tramp.el (tramp-progress-reporter-update): New defun.
5628         (with-progress-reporter): Use it.
5629         (tramp-process-actions):
5630         * net/tramp-gvfs.el (tramp-gvfs-handler-askquestion): Preserve
5631         current message, in order to let progress reporter continue
5632         afterwards.  (Bug#6257)
5634 2010-05-25  Glenn Morris  <rgm@gnu.org>
5636         * net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name):
5637         Add :version.
5639 2010-05-25  Ryan Yeske  <rcyeske@gmail.com>
5641         * net/rcirc.el (rcirc-default-user-name): Change to "user".
5642         (rcirc-default-full-name): Change to "unknown".
5643         (rcirc-user-name-history): Add variable.
5645 2010-05-25  Ryan Yeske  <rcyeske@gmail.com>
5646             Jonathan Rockway  <jon@jrock.us>
5648         * net/rcirc.el (rcirc-server-alist): Add :pass.
5649         (rcirc): When prompting for connection parameters, also prompt for
5650         username and password.
5651         (rcirc-connect): Take a PASS argument.  If PASS is non-nil, send
5652         value to server when connecting.
5654 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5656         * emacs-lisp/smie.el (smie-set-prec2tab): Check override before use.
5657         (smie-merge-prec2s): Pass the tables as separate args.
5658         (smie-bnf-precedence-table): Adjust call accordingly.
5659         (smie-prec2-levels): Set levels at the end.
5661         Replace Lisp calls to delete-backward-char by delete-char.
5662         * bs.el, expand.el, ido.el, image-dired.el, lpr.el, pcomplete.el,
5663         * skeleton.el, term.el, time.el, wid-edit.el, woman.el,
5664         * calc/calc-graph.el, calc/calc-help.el, calc/calc-incom.el,
5665         * calc/calc.el, emacs-lisp/cl-extra.el, emacs-lips/cl-loaddefs.el,
5666         * emulation/cua-rect.el, emulation/viper-ex.el, eshell/esh-test.el,
5667         * eshell/eshell.el, gnus/gnus-uu.el, gnus/nndoc.el, gnus/nnrss.el,
5668         * gnus/rfc2047.el, gnus/utf7.el, international/utf-7.el,
5669         * language/ethio-util.el, mh-e/mh-alias.el, mh-e/mh-search.el,
5670         * net/imap.el, net/rcirc.el, obsolete/complete.el, play/decipher.el,
5671         * progmodes/ada-mode.el, progmodes/cc-awk.el, progmodes/dcl-mode.el,
5672         * progmodes/ps-mode.el, progmodes/verilog-mode.el,
5673         * progmodes/vhdl-mode.el, textmodes/bibtex.el, textmodes/fill.el,
5674         * textmodes/reftex-auc.el, textmodes/rst.el, textmodes/sgml-mode.el,
5675         * textmodes/table.el, textmodes/texinfmt.el: Replace Lisp calls to
5676         delete-backward-char by calls to delete-char.
5678 2010-05-25  Kenichi Handa  <handa@m17n.org>
5680         * language/hebrew.el (hebrew-shape-gstring): New function.
5681         Register it in composition-function-table for all Hebrew combining
5682         characters.
5684 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5686         * epa.el (epa--select-keys): Don't explicitly delete the window since
5687         that can fail (e.g. sole window in frame).  Use dedication instead.
5689 2010-05-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
5691         * textmodes/fill.el (fill-region): Don't fill past the end (bug#6201).
5693 2010-05-22  Chong Yidong  <cyd@stupidchicken.com>
5695         * image.el (image-refresh): Define as an alias for image-flush.
5697         * image-mode.el (image-toggle-display-image): Caller changed.
5699 2010-05-21  Juri Linkov  <juri@jurta.org>
5701         * progmodes/grep.el (grep-read-files): Fix multi-pattern aliases.
5702         Remove "all" from grep-files-aliases.  Split grep-files-aliases by
5703         whitespace, call wildcard-to-regexp on substrings and concat them
5704         with "\\|".  (Bug#6114)
5706 2010-05-21  Alan Mackenzie  <acm@muc.de>
5708         * progmodes/cc-engine.el (c-parse-state-get-strategy):
5709         Replace parameter `here' with `here-' and `here-plus', which sandwich
5710         any pertinent CPP construct.
5711         (c-remove-stale-state-cache-backwards): Fix a bug which happens
5712         when doing (c-parse-state) in a CPP construct: Exclude any "new"
5713         CPP construct from taking part in the scanning.
5715 2010-05-21  Michael Albinus  <michael.albinus@gmx.de>
5717         * net/tramp.el (tramp-do-copy-or-rename-file)
5718         (tramp-handle-file-local-copy, tramp-maybe-open-connection):
5719         Tune `with-progress-reporter' messages.
5720         (tramp-handle-vc-registered):
5721         * net/tramp-fish.el (tramp-fish-handle-file-local-copy)
5722         (tramp-fish-handle-insert-file-contents)
5723         (tramp-fish-maybe-open-connection):
5724         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
5725         * net/tramp-imap.el (tramp-imap-do-copy-or-rename-file)
5726         (tramp-imap-handle-insert-file-contents)
5727         (tramp-imap-handle-file-local-copy): Use `with-progress-reporter'.
5729 2010-05-21  Juanma Barranquero  <lekktu@gmail.com>
5731         * add-log.el (change-log-font-lock-keywords):
5732         Highlight all authors in multi-author entries.
5734         * smerge-mode.el (smerge-refine-ignore-whitespace)
5735         (smerge-refine-weight-hack, smerge-refine, smerge-makeup-conflict):
5736         Fix typos in docstrings.
5737         (smerge-resolve, smerge-refine-subst): Reflow docstrings.
5739 2010-05-21  Glenn Morris  <rgm@gnu.org>
5741         * progmodes/fortran.el (fortran-mode):
5742         * progmodes/f90.el (f90-mode): Derive from prog-mode.
5744         * loadup.el [CANNOT_DUMP]: Update for bootstrap-emacs no longer
5745         having a relative path in src/Makefile.in.
5747 2010-05-20  Kevin Ryde  <user42@zip.com.au>
5749         * help-mode.el (help-make-xrefs): For Info node links turn
5750         newlines into spaces.  Link node names with newlines are matched
5751         by help-xref-info-regexp and buttonized, this change ensures they
5752         can be followed successfully with RET.  (Bug#6206)
5754 2010-05-20  Juri Linkov  <juri@jurta.org>
5756         * locate.el (locate): Use pop-to-buffer instead of
5757         switch-to-buffer-other-window.  (Bug#6204)
5759 2010-05-20  Juri Linkov  <juri@jurta.org>
5761         * replace.el (replace-highlight): Fix lazy-highlighting
5762         for `M-s w str M-% str RET'.
5764 2009-12-15  Masatake YAMATO  <yamato@redhat.com>
5766         * isearch.el (isearch-yank-word-or-char): Pull next subword
5767         when `subword-mode' is activated.  (Bug#6220)
5769 2010-05-20  Mark A. Hershberger  <mah@everybody.org>
5771         * isearch.el (isearch-update-post-hook): New hook.
5772         (isearch-update): Use the new hook.  (Bug#6225)
5774 2010-05-20  Juri Linkov  <juri@jurta.org>
5776         * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
5777         [f1], [help], and (char-to-string help-char) instead of "\C-h".
5778         (Bug#6222)
5780 2010-05-20  Juri Linkov  <juri@jurta.org>
5782         * isearch.el (isearch-yank-string): Use isearch-process-search-string.
5783         (Bug#6223)
5785 2010-05-20  Juri Linkov  <juri@jurta.org>
5787         * dired-x.el (dired-jump, dired-jump-other-window): Add arg
5788         FILE-NAME to read from the minibuffer when called interactively
5789         with prefix argument instead of using buffer-file-name.
5790         http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html
5792         * dired.el: Update autoloads.
5794 2010-05-20  Chong Yidong  <cyd@stupidchicken.com>
5796         * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
5797         nxml-finish-element, for consistency with SGML mode.
5799         * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
5800         octave-close-block.
5802 2010-05-20  Juanma Barranquero  <lekktu@gmail.com>
5804         * composite.el: Require cl when compiling.
5805         (reference-point-alist, compose-gstring-for-graphic)
5806         (compose-gstring-for-terminal): Fix typos in docstrings.
5808 2010-05-19  Juri Linkov  <juri@jurta.org>
5810         * emacs-lisp/cl-macs.el (window-parameter): Add defsetf with
5811         set-window-parameter.
5813 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
5815         * net/tramp.el (tramp-methods): Add `tramp-async-args' attribute
5816         where appropriate.
5817         (tramp-maybe-open-connection): Use it.
5819 2010-05-19  Eli Zaretskii  <eliz@gnu.org>
5821         * simple.el (move-end-of-line): Make sure we are at line beginning
5822         before backing up to end of previous line.
5824 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
5826         * password-cache.el (password-cache-remove): Fix docstring.
5828         * net/secrets.el: Autoload the widget functions.
5829         (secrets-search-items, secrets-create-item)
5830         (secrets-get-attributes, secrets-expand-item): Attributes will be
5831         stored on the password database without leading ":", as all other
5832         clients do as well.
5833         (secrets-mode): Fix docstring.
5834         (secrets-show-secrets): Provide it as autoloaded command only when
5835         D-Bus support is available.  Check existence of Secret Service API.
5837 2010-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5839         * indent.el (indent-region): Deactivate region (bug#6200).
5841 2010-05-19  Glenn Morris  <rgm@gnu.org>
5843         * vc-dir.el (vc-dir): Don't pop-up-windows.  (Bug#6204)
5845 2010-05-19  Kenichi Handa  <handa@m17n.org>
5847         * composite.el: Register compose-gstring-for-graphic in
5848         composition-function-table only for combining characters (Mn, Mc, Me).
5850 2010-05-18  Jay Belanger  <jay.p.belanger@gmail.com>
5852         * calc/calc-trail.el (calc-trail-isearch-forward)
5853         (calc-trail-isearch-backward): Ensure that the new window
5854         point is set correctly.
5856 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5858         * subr.el (read-quoted-char): Resolve modifiers after key
5859         remapping (bug#6212).
5861 2010-05-18  Michael Albinus  <michael.albinus@gmx.de>
5863         Add visualization code for secrets.
5864         * net/secrets.el (secrets-mode): New major mode.
5865         (secrets-show-secrets, secrets-show-collections)
5866         (secrets-expand-collection, secrets-expand-item)
5867         (secrets-tree-widget-after-toggle-function)
5868         (secrets-tree-widget-show-password): New defuns.
5870 2010-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5872         * emacs-lisp/smie.el (smie-next-sexp): Break inf-loop at BOB.
5873         (smie-backward-sexp, smie-forward-sexp): Remove boundary condition now
5874         handled in smie-next-sexp.
5875         (smie-indent-calculate): Provide a starting indentation (so the
5876         recursion is well-founded ;-).
5878         Fix handling of non-associative equal levels.
5879         * emacs-lisp/smie.el (smie-prec2-levels): Choose distinct levels even
5880         when it's not needed.
5881         (smie-op-left, smie-op-right): New functions.
5882         (smie-next-sexp): New function, extracted from smie-backward-sexp.
5883         Better handle equal levels to distinguish the associative case from
5884         the "multi-keyword construct" case.
5885         (smie-backward-sexp, smie-forward-sexp): Use it.
5887 2010-05-18  Juanma Barranquero  <lekktu@gmail.com>
5889         * progmodes/prolog.el (smie-indent-basic): Declare for byte-compiler.
5891         * emacs-lisp/smie.el (smie-precs-precedence-table, smie-backward-sexp)
5892         (smie-forward-sexp, smie-indent-calculate): Fix typos in docstrings.
5894 2010-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5896         Provide a simple generic indentation engine and use it for Prolog.
5897         * emacs-lisp/smie.el: New file.
5898         * progmodes/prolog.el (prolog-smie-op-levels)
5899         (prolog-smie-indent-rules): New var.
5900         (prolog-mode-variables): Use them to configure SMIE.
5901         (prolog-indent-line, prolog-indent-level): Remove.
5903 2010-05-17  Jay Belanger  <jay.p.belanger@gmail.com>
5905         * calc/calc-vec.el (math-vector-avg): Put the vector elements in
5906         order before computing the averages.
5908 2010-05-16  Jay Belanger  <jay.p.belanger@gmail.com>
5910         * calc/calc-vec.el (calc-histogram):
5911         (calcFunc-histogram): Allow vectors as inputs.
5912         (math-vector-avg): New function.
5914         * calc/calc-ext.el (math-group-float): Have the number of digits
5915         being grouped depend on the radix (Bug#6189).
5917 2010-05-15  Ken Raeburn  <raeburn@raeburn.org>
5919         * version.el (emacs-copyright, emacs-version): Don't define here,
5920         now that emacs.c defines it.
5922 2010-05-15  Eli Zaretskii  <eliz@gnu.org>
5924         * international/mule-cmds.el (mule-menu-keymap): Fix definition of
5925         "Describe Language Environment" menu item.
5927         * language/hebrew.el ("Hebrew", "Windows-1255"): Doc fix.
5929         Bidi-sensitive movement with arrow keys.
5930         * subr.el (right-arrow-command, left-arrow-command): New functions.
5932         * bindings.el (global-map): Bind them to right and left arrow keys.
5934         Don't override standard definition of convert-standard-filename.
5935         * files.el (convert-standard-filename): Call
5936         w32-convert-standard-filename and dos-convert-standard-filename on
5937         the corresponding systems.
5939         * w32-fns.el (w32-convert-standard-filename): Rename from
5940         convert-standard-filename.  Doc fix.
5942         * dos-fns.el (dos-convert-standard-filename): Doc fix.
5943         (convert-standard-filename): Don't defalias.
5944         (register-name-alist, make-register, register-value)
5945         (set-register-value, intdos): Obsolete aliases for the
5946         corresponding dos-* functions and variables.
5947         (dos-intdos): Add a doc string.
5949 2010-05-15  Jay Belanger  <jay.p.belanger@gmail.com>
5951         * calc/calc-aent.el (math-read-token, math-find-user-tokens):
5952         * calc/calc-lang.el (math-read-big-rec, math-lang-read-symbol):
5953         (math-compose-tex-func):
5954         * calc/calccomp.el (math-compose-expr):
5955         * calc/calc-ext.el (math-format-flat-expr-fancy):
5956         * calc/calc-store.el (calc-read-var-name):
5957         * calc/calc-units.el (calc-explain-units-rec): Allow Greek letters.
5959         * calc/calc.el (var-π, var-φ, var-γ): New variables.
5960         * calc/calc-aent.el (math-read-replacement-list): Add "micro" symbol.
5961         * calc/calc-units.el (math-unit-prefixes): Add mu for micro.
5962         (math-standard-units): Add units.
5964 2010-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5966         * progmodes/asm-mode.el (asm-mode):
5967         * progmodes/prolog.el (prolog-mode): Use define-derived-mode.
5969         * pcomplete.el (pcomplete-completions-at-point): New function,
5970         extracted from pcomplete-std-complete.
5971         (pcomplete-std-complete): Use it.
5973 2010-05-15  Glenn Morris  <rgm@gnu.org>
5975         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
5976         Remove references to CVS, RCS and Old directories.
5978 2010-05-14  Jay Belanger  <jay.p.belanger@gmail.com>
5980         * calc/calc-bin.el (math-format-twos-complement): Group digits when
5981         appropriate.
5983 2010-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5985         * progmodes/sh-script.el (sh-mode-default-syntax-table): Remove.
5986         (sh-mode-syntax-table): Give it a default value instead.
5987         (sh-header-marker): Make buffer-local.
5988         (sh-mode): Move make-local-variable to the corresponding setq.
5989         (sh-add-completer): Avoid gratuitously let-binding a buffer-local var.
5990         Use complete-with-action.
5992         * simple.el (prog-mode): New (abstract) major mode.
5993         * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it.
5994         * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
5996 2010-05-14  Juanma Barranquero  <lekktu@gmail.com>
5998         * progmodes/sql.el (sql-oracle-program): Reflow docstring.
5999         (sql-oracle-scan-on, sql-sybase-program, sql-product-font-lock)
6000         (sql-add-product-keywords, sql-highlight-product, sql-set-product)
6001         (sql-make-alternate-buffer-name, sql-placeholders-filter)
6002         (sql-escape-newlines-filter, sql-input-sender)
6003         (sql-send-magic-terminator, sql-sybase): Fix typos in docstrings.
6005 2010-05-13  Chong Yidong  <cyd@stupidchicken.com>
6007         Add TeX open-block and close-block keybindings to SGML, and vice versa.
6009         * textmodes/tex-mode.el (tex-mode-map): Bind C-c C-t to
6010         latex-open-block and C-c / to latex-close-block.
6012         * textmodes/sgml-mode.el (sgml-mode-map): Bind C-c C-o to sgml-tag
6013         and C-c C-e to sgml-close-tag.
6015 2010-05-13  Michael Albinus  <michael.albinus@gmx.de>
6017         * net/tramp.el (with-progress-reporter): Create reporter object
6018         only when the message would be displayed.  Handle nested calls.
6019         (tramp-handle-load, tramp-handle-file-local-copy)
6020         (tramp-handle-insert-file-contents, tramp-handle-write-region)
6021         (tramp-maybe-send-script, tramp-find-shell):
6022         Use `with-progress-reporter'.
6023         (tramp-handle-dired-compress-file, tramp-maybe-open-connection):
6024         Fix message text.
6026         * net/tramp-smb.el (tramp-smb-handle-copy-file)
6027         (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file)
6028         (tramp-smb-handle-write-region, tramp-smb-maybe-open-connection):
6029         Use `with-progress-reporter'.
6031 2010-05-13  Agustín Martín  <agustin.martin@hispalinux.es>
6033         * textmodes/ispell.el (ispell-init-process): Do not kill ispell
6034         process everytime when spellchecking from the minibuffer (bug#6143).
6036 2010-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6038         * progmodes/sh-script.el (sh-mode): Use define-derived-mode.
6040         * dos-fns.el: Add "dos-" prefix for namespace control.
6041         (convert-standard-filename): Define as alias for
6042         dos-convert-standard-filename but only if applicable.
6044 2010-05-12  Alan Mackenzie  <acm@muc.de>
6046         * progmodes/cc-cmds.el (c-beginning-of-defun, c-end-of-defun):
6047         Push the mark at the start of these functions when appropriate.
6049 2010-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6051         * minibuffer.el (completion-cycle-threshold): New custom var.
6052         (completion--do-completion): Use it.
6053         (minibuffer-complete): Use cycling if appropriate.
6055 2010-05-11  Juanma Barranquero  <lekktu@gmail.com>
6057         * dirtrack.el (dirtrackp): Remove defcustom; don't make automatically
6058         buffer-local (it's an obsolete alias for `dirtrack-mode') (bug#6173).
6060 2010-05-11  Juri Linkov  <juri@jurta.org>
6062         * scroll-all.el (scroll-all-check-to-scroll):
6063         Add `scroll-up-command' and `scroll-down-command' (bug#6164).
6065 2010-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6067         * iimage.el (iimage-mode-map): Move initialization into declaration.
6068         (iimage-mode-buffer): Use with-silent-modifications.
6069         Simplify calling convention.  Adjust callers.
6070         (iimage-mode): Don't run hook redundantly.
6072         * minibuffer.el (completion-pcm--pattern->regex):
6073         Fix last change (bug#6160).
6075 2010-05-10  Juri Linkov  <juri@jurta.org>
6077         Remove nodes visited during Isearch from the Info history.
6078         * info.el (Info-isearch-initial-history)
6079         (Info-isearch-initial-history-list): New variables.
6080         (Info-isearch-start): Record initial values of
6081         Info-isearch-initial-history and Info-isearch-initial-history-list.
6082         Add Info-isearch-end to isearch-mode-end-hook.
6083         (Info-isearch-end): New function.
6085 2010-05-10  Michael Albinus  <michael.albinus@gmx.de>
6087         * net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
6088         format string, in order to work around a bug in pdksh.
6089         Reported by Gilles Pion <gpion@lfdj.com>.
6090         (tramp-handle-verify-visited-file-modtime): Do not send a command
6091         when the connection is not established.
6092         (tramp-handle-set-file-times): Simplify the check for utc.
6094 2010-05-10  Juanma Barranquero  <lekktu@gmail.com>
6096         Fix use of `filter-buffer-substring' (rework previous change).
6097         * emulation/cua-base.el (cua--filter-buffer-noprops): New function.
6098         (cua-repeat-replace-region):
6099         * emulation/cua-rect.el (cua--extract-rectangle, cua-incr-rectangle):
6100         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
6101         (cua-cut-region-to-global-mark): Use it.
6103 2010-05-09  Michael R. Mauger  <mmaug@yahoo.com>
6105         * progmodes/sql.el: Version 2.1.
6106         (sql-product-alist): Redesign structure of product info.
6107         (sql-product, sql-user, sql-server, sql-database): Safe variables.
6108         (sql-port, sql-port-history): New variables.
6109         (sql-interactive-product): New variable.
6110         (sql-send-terminator): New variable.
6111         (sql-imenu-generic-expression): Add "Types" imenu entry.
6112         (sql-oracle-login-params, sql-sqlite-login-params)
6113         (sql-mysql-login-params, sql-solid-login-params)
6114         (sql-sybase-login-params, sql-informix-login-params)
6115         (sql-ingres-login-params, sql-ms-login-params)
6116         (sql-postgres-login-params, sql-interbase-login-params)
6117         (sql-db2-login-params, sql-linter-login-params)
6118         (sql-oracle-scan-on): New variables.
6119         (sql-mode-map): Add C-c C-i to start interactive mode.
6120         (sql-mode-menu): Update existing menu entries.
6121         (sql-font-lock-keywords-builder): Compile-time font-lock optimization.
6122         (sql-mode-oracle-font-lock-keywords)
6123         (sql-mode-postgres-font-lock-keywords)
6124         (sql-mode-ms-font-lock-keywords)
6125         (sql-mode-sybase-font-lock-keywords)
6126         (sql-mode-informix-font-lock-keywords)
6127         (sql-mode-interbase-font-lock-keywords)
6128         (sql-mode-ingres-font-lock-keywords)
6129         (sql-mode-solid-font-lock-keywords)
6130         (sql-mode-mysql-font-lock-keywords)
6131         (sql-mode-sqlite-font-lock-keywords)
6132         (sql-mode-db2-font-lock-keywords)
6133         (sql-mode-linter-font-lock-keywords): Update initialization to
6134         reduce run-time complexity.
6135         (sql-add-product, sql-del-product): New functions.
6136         (sql-set-product-feature, sql-get-product-feature): New functions.
6137         (sql-product-font-lock): Update product API.
6138         (sql-add-product-keywords): New function.
6139         (sql-highlight-product): Update product API.
6140         (sql-help-list-products): New function.
6141         (sql-help): Dynamically lists free and non-free products.
6142         (sql-get-login): Correct bug in handling history and added
6143         prompt for port.
6144         (sql-copy-column): Copy without properties.
6145         (sqli-input-sender): Apply filters to SQLi input.
6146         (sql-query-placeholders-and-send): Obey `sql-oracle-scan-on' setting.
6147         Implement as a filter.
6148         (sql-escape-newlines-filter): Implement as a filter.
6149         (sql-remove-tabs-filter): New function.
6150         (sql-send-magic-terminator): New function.
6151         (sql-send-string): Implement magic terminator.
6152         (sql-send-region): Use `sql-send-string'.
6153         (sql-interactive-mode): Use product API.
6154         (sql-product-interactive): Use product API.
6155         (sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
6156         (sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
6157         (sql-db2, sql-linter): Use `sql-product-interactive'.
6158         (sql-connect): New function.
6159         (sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
6160         (sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
6161         (sql-connect-ingres, sql-connect-ms, sql-connect-postgres)
6162         (sql-connect-interbase, sql-connect-db2, sql-connect-linter):
6163         Use `sql-connect'.
6165 2010-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6167         * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
6168         New custom variable.
6169         (completion-pcm--string->pattern): Use it.
6170         (completion-pcm--pattern->regex, completion-pcm--pattern->string):
6171         Make it handle any symbol as `any'.
6172         (completion-pcm--merge-completions): Extract common suffix for the new
6173         `prefix' symbol as well.
6174         (completion-substring--all-completions): Use the new `prefix' symbol.
6176 2010-05-09  Michael Albinus  <michael.albinus@gmx.de>
6178         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Define if
6179         not bound.
6180         (tramp-compat-copy-file): Add PRESERVE-SELINUX-CONTEXT.
6181         (tramp-compat-funcall): New defmacro.
6182         (tramp-compat-line-beginning-position)
6183         (tramp-compat-line-end-position)
6184         (tramp-compat-temporary-file-directory)
6185         (tramp-compat-make-temp-file, tramp-compat-file-attributes)
6186         (tramp-compat-copy-file, tramp-compat-copy-directory)
6187         (tramp-compat-delete-file, tramp-compat-delete-directory)
6188         (tramp-compat-number-sequence, tramp-compat-process-running-p)
6189         * net/tramp.el (top, with-progress-reporter)
6190         (tramp-rfn-eshadow-setup-minibuffer)
6191         (tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
6192         (tramp-handle-dired-compress-file, tramp-handle-shell-command)
6193         (tramp-completion-mode-p, tramp-check-for-regexp)
6194         (tramp-open-connection-setup-interactive-shell)
6195         (tramp-compute-multi-hops, tramp-read-passwd, tramp-clear-passwd)
6196         (tramp-time-diff, tramp-coding-system-change-eol-conversion)
6197         (tramp-set-process-query-on-exit-flag, tramp-unload-tramp)
6198         * net/tramp-cmds.el (tramp-cleanup-all-connections)
6199         (tramp-reporter-dump-variable, tramp-load-report-modules)
6200         (tramp-append-tramp-buffers)
6201         * net/tramp-gvfs.el (tramp-gvfs-handle-file-selinux-context): Use it.
6203         * net/tramp-imap.el (top): Autoload `epg-make-context'.
6205 2010-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6207         * progmodes/compile.el (compilation-buffer-modtime): Rename from
6208         buffer-modtime.  Adjust users.
6210 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
6212         * international/mule.el (auto-coding-alist): Only purecopy
6213         car of each item, not the whole list (Bug#6083).
6215 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
6217         * progmodes/js.el (js-mode): Make paragraph variables local before
6218         calling c-setup-paragraph-variables (Bug#6071).
6220 2010-05-08  Eli Zaretskii  <eliz@gnu.org>
6222         * composite.el (compose-region, reference-point-alist): Fix typos
6223         in the doc strings.
6225 2010-05-08  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
6227         * calc/calc-graph.el (calc-graph-plot): Use the proper form for
6228         gnuplot's "set" command.
6230 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
6232         * abbrev.el (last-abbrev-text): Doc fix.
6233         (abbrev-prefix-mark): Don't escape parenthesis.
6235 2010-05-08  Andreas Schwab  <schwab@linux-m68k.org>
6237         * composite.el (find-composition): Doc fix.
6239 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
6241         * progmodes/sql.el (sql-electric-stuff): Fix typo in tag.
6242         (sql-oracle-program, sql-sqlite-options)
6243         (sql-query-placeholders-and-send): Doc fixes.
6244         (sql-set-product, sql-interactive-mode): Reflow docstrings.
6245         (sql-imenu-generic-expression, sql-buffer)
6246         (sql-mode-ansi-font-lock-keywords, sql-mode-oracle-font-lock-keywords)
6247         (sql-mode-postgres-font-lock-keywords, sql-mode-ms-font-lock-keywords)
6248         (sql-mode-sybase-font-lock-keywords)
6249         (sql-mode-informix-font-lock-keywords)
6250         (sql-mode-interbase-font-lock-keywords)
6251         (sql-mode-ingres-font-lock-keywords, sql-mode-solid-font-lock-keywords)
6252         (sql-mode-mysql-font-lock-keywords, sql-mode-sqlite-font-lock-keywords)
6253         (sql-mode-db2-font-lock-keywords, sql-mode-font-lock-keywords)
6254         (sql-product-feature, sql-highlight-product)
6255         (comint-line-beginning-position, sql-rename-buffer)
6256         (sql-toggle-pop-to-buffer-after-send-region sql-oracle)
6257         (sql-sybase, sql-informix, sql-sqlite, sql-mysql, sql-solid)
6258         (sql-ingres, sql-ms, sql-postgres, sql-interbase, sql-db2, sql-linter):
6259         Fix typos in docstrings.
6261 2010-05-08  Juri Linkov  <juri@jurta.org>
6263         * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display'
6264         property instead of `invisible' and `after-string' (bug#5998).
6266 2010-05-08  Juri Linkov  <juri@jurta.org>
6268         * image-mode.el (image-mode-as-text): Fix typo in docstring.
6270 2010-05-08  Juanma Barranquero  <lekktu@gmail.com>
6272         * filecache.el (file-cache-add-directory-list)
6273         (file-cache-add-directory-recursively): Fix typos in docstrings.
6275 2010-05-08  Kenichi Handa  <handa@m17n.org>
6277         * language/indian.el (gurmukhi-composable-pattern): Fix typo.
6278         (gujarati-composable-pattern): Fix typo.
6280 2010-05-08  Kenichi Handa  <handa@m17n.org>
6282         * language/indian.el (oriya-composable-pattern)
6283         (tamil-composable-pattern, malayalam-composable-pattern):
6284         Add two-part vowels to "v" (vowel sign).
6286 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
6288         * files.el (copy-directory): Handle symlinks (Bug#5982).
6290 2010-05-08  Dan Nicolaescu  <dann@ics.uci.edu>
6292         * vc-hg.el (vc-hg-state): Use HGRCPATH, not HGRC.
6293         (vc-hg-working-revision): Likewise.  Use hg parents, not hg parent
6294         (Bug#5846).
6296 2010-05-08  Glenn Morris  <rgm@gnu.org>
6298         * emacs-lisp/lisp.el (lisp-completion-at-point): Give it a doc string.
6300         * minibuffer.el (completion-at-point): Doc fix.
6302 2010-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6304         * electric.el (Electric-command-loop): Minor tweak.
6306         * ebuff-menu.el (electric-buffer-list): Try and make it behave a bit
6307         better with dedicated windows.
6309 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
6311         * Version 23.2 released.
6313 2010-05-07  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
6314             Stefan Monnier  <monnier@iro.umontreal.ca>
6316         Highlight vendor specific properties.
6317         * textmodes/css-mode.el (css-proprietary-nmstart-re): New var.
6318         (css-proprietary-property): New face.
6319         (css-font-lock-keywords): Use them.
6321 2010-05-07  Eli Zaretskii  <eliz@gnu.org>
6323         * cus-start.el (all): Add native condition for tool-bar-* symbols.
6325 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6327         * textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
6328         * files.el (auto-mode-alist): Remove redundant entries.
6330         * files.el (auto-save-mode): Move to simple.el to fix bootstrap.
6331         * simple.el (auto-save-mode): Move from files.el.
6332         * minibuffer.el (completion--common-suffix): Fix copy&paste error.
6334 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
6336         * epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592).
6338 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6340         * mail/binhex.el (binhex-decode-region-internal)
6341         * mail/uudecode.el (uudecode-decode-region-internal)
6342         * net/dns.el (dns-read-string-name, dns-write, dns-read)
6343         (dns-read-type, dns-query)
6344         * pgg-parse.el (pgg-parse-armor)
6345         * pgg.el (pgg-verify-region)
6346         * sha1.el (sha1-string-external): Don't run set-buffer-multibyte for
6347         XEmacs.
6349         * net/imap.el (imap-disable-multibyte): Redefine it as a macro.
6351 2010-05-07  Juanma Barranquero  <lekktu@gmail.com>
6353         * progmodes/cperl-mode.el (cperl-mode-unload-function): New function.
6355         Fix use of `filter-buffer-substring' (4th arg NOPROPS removed).
6356         * emulation/cua-base.el (cua-repeat-replace-region):
6357         * emulation/cua-gmrk.el (cua-copy-region-to-global-mark)
6358         (cua-cut-region-to-global-mark):
6359         Remove text properties with `set-text-properties'.
6361 2010-05-06  Michael Albinus  <michael.albinus@gmx.de>
6363         * net/tramp.el (top, with-progress-reporter):
6364         Use `symbol-function' inside `funcall'.
6366         * net/tramp-compat.el (tramp-compat-file-attributes)
6367         (tramp-compat-delete-file, tramp-compat-delete-directory):
6368         Handle only `wrong-number-of-arguments' error.
6370         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file): Fix typo.
6371         (tramp-gvfs-handle-file-selinux-context): Use `symbol-function'
6372         inside `funcall'.
6374 2010-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
6376         * minibuffer.el (completion--sreverse, completion--common-suffix):
6377         New functions.
6378         (completion-pcm--merge-completions): Extract common suffix when safe.
6380         * emacs-lisp/easy-mmode.el (define-minor-mode):
6381         Make :variable more flexible.
6382         * files.el (auto-save-mode): Use it to define using define-minor-mode.
6384 2010-05-05  Juri Linkov  <juri@jurta.org>
6386         Add `slow' and `history' tags to the desktop data.
6388         * info.el (Info-virtual-nodes) [*Index*]: Add `slow' tag.
6389         (Info-virtual-files) [*Apropos*]: Add `slow' tag.
6390         (Info-finder-find-node): Require `finder.el' to be able
6391         to restore node from the desktop.
6392         (Info-desktop-buffer-misc-data): Save all nodes.  Save additional
6393         data `Info-history' and `slow' tag in the assoc list.
6394         (Info-restore-desktop-buffer): Don't restore nodes with the
6395         `slow' tag.  Restore `Info-history'.
6397 2010-05-05  Michael Albinus  <michael.albinus@gmx.de>
6399         Add FORCE argument to `delete-file'.
6401         * net/ange-ftp.el (ange-ftp-del-tmp-name): Make it a defun,
6402         forcing to delete the temporary file.
6403         (ange-ftp-delete-file): Add FORCE arg.
6404         (ange-ftp-rename-remote-to-remote)
6405         (ange-ftp-rename-local-to-remote, ange-ftp-rename-remote-to-local)
6406         (ange-ftp-load, ange-ftp-compress, ange-ftp-uncompress):
6407         Force file deletion.
6409         * net/tramp-compat.el (tramp-compat-delete-file): New defun.
6411         * net/tramp.el (tramp-handle-delete-file): Add FORCE arg.
6412         (tramp-handle-make-symbolic-link, tramp-handle-load)
6413         (tramp-do-copy-or-rename-file-via-buffer)
6414         (tramp-do-copy-or-rename-file-directly)
6415         (tramp-do-copy-or-rename-file-out-of-band)
6416         (tramp-handle-process-file, tramp-handle-call-process-region)
6417         (tramp-handle-shell-command, tramp-handle-file-local-copy)
6418         (tramp-handle-insert-file-contents, tramp-handle-write-region)
6419         (tramp-delete-temp-file-function): Use `tramp-compat-delete-file'.
6421         * net/tramp-fish.el (tramp-fish-handle-delete-file): Add FORCE arg.
6422         (tramp-fish-handle-make-symbolic-link)
6423         (tramp-fish-handle-process-file): Use `tramp-compat-delete-file'.
6425         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
6426         Use `tramp-compat-delete-file'.
6428         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Add FORCE arg.
6429         (tramp-gvfs-handle-write-region): Use `tramp-compat-delete-file'.
6431         * net/tramp-imap.el (tramp-imap-handle-delete-file): Add FORCE arg.
6432         (tramp-imap-do-copy-or-rename-file): Use `tramp-compat-delete-file'.
6434         * net/tramp-smb.el (tramp-smb-handle-delete-file): Add FORCE arg.
6435         (tramp-smb-handle-copy-file, tramp-smb-handle-file-local-copy)
6436         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region): Use
6437         `tramp-compat-delete-file'.
6439 2010-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6441         Minor cleanups.
6442         * subr.el (add-minor-mode): Use push.
6443         * mail/supercite.el (sc-electric-mode): Use more descriptive arg name.
6444         * emulation/edt.el (edt-select-mode): Simplify.
6446         Use define-minor-mode in more cases.
6447         * term/tvi970.el (tvi970-set-keypad-mode):
6448         * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
6449         (normal-erase-is-backspace-mode):
6450         * scroll-bar.el (scroll-bar-mode): Use it and define-minor-mode.
6451         (set-scroll-bar-mode-1): (Re)move to its sole caller.
6452         (get-scroll-bar-mode): New function.
6453         * emacs-lisp/cl-macs.el (eq): Handle a non-variable first arg.
6455         Use define-minor-mode for less obvious cases.
6456         * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword.
6457         * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method.
6458         * international/iso-ascii.el (iso-ascii-mode):
6459         * frame.el (auto-raise-mode, auto-lower-mode):
6460         * composite.el (global-auto-composition-mode): Use define-minor-mode.
6462 2010-05-04  Michael Albinus  <michael.albinus@gmx.de>
6464         * net/tramp.el (tramp-methods): Remove "-q" from `tramp-login-args'
6465         in order to see error messages for failed logins.
6467 2010-05-03  Chong Yidong  <cyd@stupidchicken.com>
6469         * diff.el (diff-sentinel):
6471         * epg.el (epg--make-temp-file, epg-decrypt-string)
6472         (epg-verify-string, epg-sign-string, epg-encrypt-string):
6474         * jka-compr.el (jka-compr-partial-uncompress)
6475         (jka-compr-call-process, jka-compr-write-region, jka-compr-load):
6477         * server.el (server-sentinel): Use delete-file's new FORCE arg
6478         (Bug#6070).
6480 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6482         Use define-minor-mode where applicable.
6483         * view.el (view-mode):
6484         * type-break.el (type-break-query-mode)
6485         (type-break-mode-line-message-mode):
6486         * textmodes/reftex.el (reftex-mode):
6487         * term/vt100.el (vt100-wide-mode):
6488         * tar-mode.el (tar-subfile-mode):
6489         * savehist.el (savehist-mode):
6490         * ibuf-ext.el (ibuffer-auto-mode):
6491         * composite.el (auto-composition-mode):
6492         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
6493         Use define-minor-mode.
6494         (vhdl-mode): Use static mode-line format.
6495         (vhdl-mode-line-update): Delete.
6496         (vhdl-create-mode-menu, vhdl-activate-customizations)
6497         (vhdl-hs-minor-mode): Don't bother calling it.
6499 2010-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6501         * simple.el (with-wrapper-hook): Move.
6502         (buffer-substring-filters): Mark obsolete.
6503         (filter-buffer-substring-functions): New variable.
6504         (filter-buffer-substring): Use it.  Remove unused arg `noprops'.
6506 2010-05-01  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
6507             Michael Albinus  <michael.albinus@gmx.de>
6509         Implement compression for inline methods.
6511         * net/tramp.el (tramp-inline-compress-start-size): New defcustom.
6512         (tramp-copy-size-limit): Allow also nil.
6513         (tramp-inline-compress-commands): New defconst.
6514         (tramp-find-inline-compress, tramp-get-inline-compress)
6515         (tramp-get-inline-coding): New defuns.
6516         (tramp-get-remote-coding, tramp-get-local-coding): Remove,
6517         replaced by `tramp-get-inline-coding'.
6518         (tramp-handle-file-local-copy, tramp-handle-write-region)
6519         (tramp-method-out-of-band-p): Use `tramp-get-inline-coding'.
6521 2010-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6523         * bindings.el (mode-line-abbrev-mode, mode-line-auto-fill-mode):
6524         Remove unused functions.
6526         * emacs-lisp/lisp-mode.el (lisp-mode): Use define-derived-mode.
6527         Set find-tag-default-function as a variable rather than a property.
6529         * minibuffer.el (tags-completion-at-point-function): Move to etags.el.
6530         * progmodes/etags.el (tags-completion-at-point-function):
6531         Remove left over interactive spec.  Add autoloading stub.
6532         (complete-tag): Use tags-completion-at-point-function.
6534 2010-04-30  Chong Yidong  <cyd@stupidchicken.com>
6536         * minibuffer.el (tags-completion-at-point-function): Fix return value.
6538 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
6540         * ido.el (ido-init-completion-maps): Remove C-v binding.
6541         (ido-minibuffer-setup): Don't set cua-inhibit-cua-keys (Bug#5765).
6543 2010-04-29  Chong Yidong  <cyd@stupidchicken.com>
6545         * minibuffer.el (tags-completion-at-point-function): New function.
6546         (completion-at-point-functions): Use it.
6548         * progmodes/etags.el (complete-tag): Revert last change.
6550 2010-04-29  Alan Mackenzie  <acm@muc.de>
6552         * progmodes/cc-mode.el (c-extend-region-for-CPP): Fix an
6553         off-by-one error (in end of macro position).
6555 2010-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6557         * net/browse-url.el (browse-url-firefox-program): Use iceweasel if
6558         firefox is absent.  Don't autoload.
6559         (browse-url-galeon-program): Don't autoload.
6561 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
6563         * bindings.el (complete-symbol): Move into minibuffer.el.
6565         * minibuffer.el (complete-tag): Move from etags.el.  If tags
6566         completion cannot be performed, return nil instead of signalling
6567         an error.
6568         (completion-at-point): Make it an alias for complete-symbol.
6569         (complete-symbol): Move from bindings.el, and replace with the
6570         body of completion-at-point.
6572         * progmodes/etags.el (complete-tag): Move to minibuffer.el.
6574 2010-04-28  Michael Albinus  <michael.albinus@gmx.de>
6576         * net/tramp.el (tramp-remote-selinux-p): New defun.
6577         (tramp-handle-file-selinux-context)
6578         (tramp-handle-set-file-selinux-context): Use it.
6580 2010-04-28  Sam Steingold  <sds@gnu.org>
6582         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
6583         `safe-local-variable' if the value is a string or a symbol with
6584         the property `bug-reference-url-format'.
6586 2010-04-28  Chong Yidong  <cyd@stupidchicken.com>
6588         * progmodes/bug-reference.el (bug-reference-url-format):
6589         Revert 2010-04-27 change due to security risk.
6591 2010-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6593         Make it possible to locally disable a globally enabled mode.
6594         * simple.el (fundamental-mode): Run fundamental-mode-hook.
6595         * emacs-lisp/derived.el (define-derived-mode): Use fundamental-mode
6596         rather than kill-all-local-variables so it runs fundamental-mode-hook.
6597         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6598         Use fundamental-mode-hook to run MODE-enable-in-buffers earlier, so
6599         that subsequent hooks get a chance to disable it.
6601 2010-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6603         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6604         Avoid re-enabling a minor mode after the user turned the minor mode
6605         off if MODE-enable-in-buffers is run twice (typically once from
6606         fundamental-mode's after-change-major-mode-hook and a second time from
6607         run-mode-hook's own after-change-major-mode-hook).
6609         * emacs-lisp/lisp.el (lisp-complete-symbol): Fail gracefully.
6611 2010-04-27  Sam Steingold  <sds@gnu.org>
6613         * progmodes/bug-reference.el (bug-reference-url-format): Mark as
6614         `safe-local-variable' if the value is a string or a function, as
6615         documented and implemented on 2010-04-02.
6617 2010-04-27  Juanma Barranquero  <lekktu@gmail.com>
6619         * ido.el (ido-buffer-internal): Bind `ido-use-virtual-buffers' to nil
6620         when method is 'kill.
6622 2010-04-27  Agustín Martín  <agustin.martin@hispalinux.es>
6624         * textmodes/ispell.el (ispell-init-process): Fix personal dictionary
6625         condition in default directory check.
6626         (ispell-init-process,ispell-kill-ispell,kill-buffer-hook):
6627         Kill ispell process when killing its associated buffer.
6629 2010-04-27  Jan Djärv  <jan.h.d@swipnet.se>
6631         * desktop.el (desktop-kill): ask-if-new: Ask if desktop file exists,
6632         but we aren't using it.
6634 2010-04-25  Jan Djärv  <jan.h.d@swipnet.se>
6636         * tool-bar.el (tool-bar-local-item-from-menu): Revert unintended
6637         checkin in 2010-04-23T16:26:11Z!monnier@iro.umontreal.ca.
6639 2010-04-24  Glenn Morris  <rgm@gnu.org>
6641         * emacs-lisp/authors.el (authors-obsolete-files-regexps):
6642         Ignore VCS-ignore files, and deleted nextstep preferences files.
6643         (authors-ignored-files): Ignore deleted cedet test files, and "*.el".
6644         (authors-ambiguous-files): New list.
6645         (authors-valid-file-names): Add some deleted files.
6646         (authors-renamed-files-alist): Add font-setting.el, edt-user.doc.
6647         (authors-disambiguate-file-name): New function.  (Bug#5501)
6648         (authors-canonical-file-name): Doc fix.
6649         Don't warn about obsolete files.
6650         (authors-canonical-file-name, authors-scan-el):
6651         Use authors-disambiguate-file-name.
6653         * hfy-cmap.el (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
6654         Add autoload cookies.
6655         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values): Add docs.
6656         (generated-autoload-file): Set file-local value to "htmlfontify.el".
6657         * htmlfontify.el (caddr, cadddr): Remove fallback definitions.
6658         They have definitions / compiler macros in cl.el.
6659         (htmlfontify-load-rgb-file, hfy-fallback-colour-values):
6660         Replace manual autoloads with generated ones.
6661         (htmlfontify-unload-rgb-file): Remove autoload.
6662         * Makefile.in (autoloads): Ensure htmlfontify.el is writable.
6664 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6666         * emacs-lisp/bytecomp.el (byte-compile-set-default): New function.
6667         (byte-compile-setq-default): Optimize for the
6668         single-var case and don't call byte-compile-form in this case to avoid
6669         inf-loop with byte-compile-set-default.
6671         * progmodes/compile.el (compilation-start): Abbreviate default directory.
6673 2010-04-23  Michael Albinus  <michael.albinus@gmx.de>
6675         Implement SELINUX backends.
6677         * net/tramp.el (tramp-file-name-handler-alist):
6678         Add `file-selinux-context' and `set-file-selinux-context'.
6679         (tramp-handle-file-selinux-context)
6680         (tramp-handle-set-file-selinux-context): New defuns.
6681         (tramp-handle-copy-file, tramp-do-copy-or-rename-file):
6682         Handle PRESERVE-SELINUX-CONTEXT.
6684         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6685         Add `file-selinux-context' and `set-file-selinux-context'.
6686         (tramp-gvfs-handle-file-selinux-context)
6687         (tramp-gvfs-handle-set-file-selinux-context): New defuns.
6688         (tramp-gvfs-handle-copy-file): Handle PRESERVE-SELINUX-CONTEXT.
6690         * net/ange-ftp.el (ange-ftp-copy-file):
6691         * net/tramp-fish.el (tramp-fish-handle-copy-file):
6692         * net/tramp-imap.el (tramp-imap-handle-copy-file):
6693         * net/tramp-smb.el (tramp-smb-handle-copy-file):
6694         Add PRESERVE-SELINUX-CONTEXT.
6696 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
6698         Synchronize with Tramp repository.
6700         * net/tramp.el (with-connection-property, tramp-completion-mode-p)
6701         (tramp-action-process-alive, tramp-action-out-of-band)
6702         (tramp-check-for-regexp, tramp-file-name-p, tramp-equal-remote)
6703         (tramp-exists-file-name-handler): Fix docstring.
6704         (with-progress-reporter): New defmacro.
6705         (tramp-do-copy-or-rename-file, tramp-handle-dired-compress-file)
6706         (tramp-maybe-open-connection): Use it.
6708 2010-04-22  Noah Lavine  <noah549@gmail.com>  (tiny change)
6710         Detect ssh 'ControlMaster' argument automatically in some cases.
6712         * net/tramp.el (tramp-detect-ssh-controlmaster): New defun.
6713         (tramp-default-method): Use it.
6715 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
6717         * net/tramp.el (tramp-handle-copy-file): Add new optional
6718         parameter `preserve-selinux-context'.
6719         (tramp-file-name-for-operation): Add `set-file-selinux-context'.
6721 2010-04-22  Michael Albinus  <michael.albinus@gmx.de>
6723         * net/tramp.el (tramp-completion-handle-file-name-all-completions):
6724         Ensure, that non remote files are still checked.  Oops.
6726 2010-04-21  Michael Albinus  <michael.albinus@gmx.de>
6728         Fix Bug#5840.
6730         * icomplete.el (icomplete-completions): Use `non-essential'.
6732         * net/tramp.el (tramp-connectable-p): New defun.
6733         (tramp-handle-expand-file-name)
6734         (tramp-completion-handle-file-name-all-completions)
6735         (tramp-completion-handle-file-name-completion): Use it.
6737 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6739         * emacs-lisp/lisp.el (lisp-completion-at-point): Try and handle errors.
6741 2010-04-21  Jan Djärv  <jan.h.d@swipnet.se>
6743         * vc-dir.el (vc-dir-tool-bar-map): Add :label on some tool bar items.
6745         * tool-bar.el (tool-bar-setup): Add :label on some tool bar items.
6747         * loadup.el: Load dynamic-setting.el if feature dynamic-setting
6748         is present.
6750         * info.el (info-tool-bar-map): Add labels.
6752         * cus-start.el (all): Add tool-bar-style and tool-bar-max-label-size.
6754         * cus-edit.el (custom-commands): Add labels for tool bar.
6755         (custom-buffer-create-internal, Custom-mode): Adjust for
6756         labels in custom-commands.
6758         * dynamic-setting.el: Renamed from font-setting.el.
6760 2010-04-21  John Wiegley  <jwiegley@gmail.com>
6762         * ido.el (ido-init-completion-maps): For ido-switch-buffer, C-o
6763         toggles the use of virtual buffers.
6764         (ido-buffer-internal): Guard `ido-use-virtual-buffers' global value.
6765         (ido-toggle-virtual-buffers): New function.
6767 2010-04-21  Juanma Barranquero  <lekktu@gmail.com>
6769         Use `define-derived-mode'; fix window selection; doc fixes.
6770         * play/tetris.el (tetris, tetris-update-speed-function)
6771         (tetris-tty-colors, tetris-x-colors, tetris-move-bottom)
6772         (tetris-move-left, tetris-move-right, tetris-rotate-prev)
6773         (tetris-rotate-next, tetris-end-game, tetris-start-game)
6774         (tetris-pause-game): Fix typos in docstrings.
6775         (tetris-mode-map, tetris-null-map):
6776         Move initialization into declaration.
6777         (tetris-mode): Define with `define-derived-mode';
6778         set show-trailing-whitespace to nil.
6779         (tetris): Prefer window already displaying the "*Tetris*" buffer.
6781 2010-04-21  Karel Klíč  <kklic@redhat.com>
6783         * files.el (backup-buffer): Handle SELinux context, and return it
6784         if a backup was made by renaming.
6785         (backup-buffer-copy): Set SELinux context to the target file.
6786         (basic-save-buffer): Set SELinux context of the newly written file.
6787         (basic-save-buffer-1): Now it also returns any SELinux context.
6788         (basic-save-buffer-2): Set SELinux context of the newly created file,
6789         and return it.
6790         * net/tramp.el (tramp-file-name-for-operation):
6791         Add file-selinux-context.
6793 2010-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6795         Make the log-edit comments use RFC822 format throughout.
6797         * vc.el (vc-checkin, vc-modify-change-comment):
6798         Adjust to new vc-start/finish-logentry.
6799         (vc-find-conflicted-file): New command.
6800         (vc-transfer-file): Adjust to new vc-checkin.
6801         (vc-next-action): Improve scoping.
6803         * vc-hg.el (vc-hg-log-edit-mode): Remove.
6804         (vc-hg-checkin): Remove extra arg.  Use log-edit-extract-headers.
6806         * vc-git.el (vc-git-log-edit-mode): Remove.
6807         (vc-git-checkin): Remove extra arg.  Use log-edit-extract-headers.
6808         (vc-git-commits-coding-system): Rename from git-commits-coding-system.
6810         * vc-dispatcher.el (vc-log-edit): Shorten names for log-edit-show-files.
6811         (vc-start-logentry): Remove argument `extra'.
6812         (vc-finish-logentry): Remove extra args.
6814         * vc-bzr.el (vc-bzr-log-edit-mode): Remove.
6815         (vc-bzr-checkin): Remove extra arg.  Use log-edit-extract-headers.
6816         (vc-bzr-conflicted-files): New function.
6818         * log-edit.el (log-edit-extra-flags)
6819         (log-edit-before-checkin-process): Remove.
6820         (log-edit-summary, log-edit-header, log-edit-unknown-header): New faces.
6821         (log-edit-headers-alist): New var.
6822         (log-edit-header-contents-regexp): New const.
6823         (log-edit-match-to-eoh): New function.
6824         (log-edit-font-lock-keywords): Use them.
6825         (log-edit): Insert a "Summary:" header as default.
6826         (log-edit-mode): Mark font-lock rules as case-insensitive.
6827         (log-edit-done): Cleanup headers.
6828         (log-view-process-buffer): Remove.
6829         (log-edit-extract-headers): New function to replace it.
6831 2010-04-20  Juanma Barranquero  <lekktu@gmail.com>
6833         * subr.el (default-direction-reversed): Remove obsolescence info.
6835 2010-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6837         * vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with the
6838         windows/frames.
6840         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete around point.
6841         I.e. include text after point in the completion region.
6842         Also, return nil when we're not after/in a symbol.
6844         * international/mule-cmds.el (view-hello-file): Don't fiddle with the
6845         default enable-multibyte-characters.
6847 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6849         * international/mule.el: Help the user choose a valid coding-system.
6850         (read-buffer-file-coding-system): New function.
6851         (set-buffer-file-coding-system): Use it.  Prompt the user if the
6852         coding-system cannot encode all the chars.
6854         * vc-bzr.el: Use standard *vc* and *vc-diff* buffers.
6855         (vc-bzr-shelve-show, vc-bzr-shelve-apply)
6856         (vc-bzr-shelve-apply-and-keep, vc-bzr-shelve-snapshot):
6857         Don't use *vc-bzr-shelve*.
6859 2010-04-19  Dan Nicolaescu  <dann@ics.uci.edu>
6861         Fix the version number for added files.
6862         * vc-hg.el (vc-hg-working-revision): Check if the file is
6863         registered after hg parent fails (Bug#5961).
6865 2010-04-19  Glenn Morris  <rgm@gnu.org>
6867         * htmlfontify.el (htmlfontify-buffer)
6868         (htmlfontify-copy-and-link-dir): Autoload entry points.
6870 2010-04-19  Magnus Henoch  <magnus.henoch@gmail.com>
6872         * vc-hg.el (vc-hg-annotate-extract-revision-at-line): Expand file
6873         name relative to the project root (Bug#5960).
6875 2010-04-19  Glenn Morris  <rgm@gnu.org>
6877         * vc-git.el (vc-git-print-log): Doc fix.
6879 2010-04-19  Óscar Fuentes  <ofv@wanadoo.es>
6881         * ido.el (ido-file-internal): Fix 2009-12-02 change.
6883 2010-04-19  Christoph  <cschol2112@googlemail.com>  (tiny change)
6885         * progmodes/grep.el (grep-compute-defaults): Fix handling of host
6886         default settings (Bug#5928).
6888 2010-04-19  Glenn Morris  <rgm@gnu.org>
6890         * progmodes/fortran.el (fortran-match-and-skip-declaration):
6891         New function.
6892         (fortran-font-lock-keywords-3): Use it.  (Bug#1385)
6894 2010-04-19  Kenichi Handa  <handa@m17n.org>
6896         * language/indian.el (malayalam-composable-pattern): Fix previous
6897         change (add U+0D4D "SIGN VIRAMA").
6898         (oriya-composable-pattern): Add U+0B30 and fix typo in the regexp.
6899         (tamil-composable-pattern): Fix typo in the regexp.
6900         (telugu-composable-pattern): Fix U+0C4D and typo in the regexp.
6901         (kannada-composable-pattern): Fix U+0CB0 and typo in the regexp.
6902         (malayalam-composable-pattern): Fix U+0D4D and typo in the regexp.
6904 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
6906         * textmodes/tex-mode.el (latex-mode): Revert 2008-03-03 change to
6907         paragraph-separate (Bug#5821).
6909 2010-04-19  Juri Linkov  <juri@jurta.org>
6911         Put breadcrumbs on overlay instead of inserting to buffer (bug#5809).
6913         * info.el (Info-find-node-2): Comment out code that skips
6914         breadcrumbs line.
6915         (Info-mouse-follow-link): New command.
6916         (Info-link-keymap): New keymap.
6917         (Info-breadcrumbs): Rename from `Info-insert-breadcrumbs'.
6918         Return a string with links instead of inserting breadcrumbs
6919         to the Info buffer.
6920         (Info-fontify-node): Comment out code that inserts breadcrumbs.
6921         Instead of putting the `invisible' text property over the Info
6922         header, make an overlay over the Info header with the `invisible'
6923         property and `after-string' set to the string returned by
6924         `Info-breadcrumbs'.
6926 2010-04-19  Chong Yidong  <cyd@stupidchicken.com>
6928         * help.el (help-window-setup-finish): Doc fix (Bug#5830).
6929         Reported by monkey@sandpframing.com.
6931 2010-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6933         * tmm.el (tmm-prompt): Remove obsolete call to x-popup-menu.
6934         (tmm-get-keymap): Add key-binding shortcuts now that they're not
6935         available in the "keyseq cache" any more.
6937         * custom.el (defcustom): Add edebug spec.
6939 2010-04-18  Juri Linkov  <juri@jurta.org>
6941         Test for special mode-class in view-buffer instead of view-file (bug#5513).
6943         * view.el (view-file, view-buffer): Move test for special mode-class
6944         from view-file to view-buffer.
6946         * tar-mode.el (tar-extract): Turn if's into one cond
6947         like in arc-mode.el.
6949 2010-04-18  Juri Linkov  <juri@jurta.org>
6951         Add 7z archive format support (bug#5475).
6953         * arc-mode.el (archive-zip-extract): Try to find 7z executable.
6954         (archive-7z-extract): New defcustom.
6955         (archive-find-type): Add magic string for 7z.
6956         (archive-extract-by-stdout): Add new optional arg `stderr-file'.
6957         If `stderr-file' is non-nil, use `(t stderr-file)' for the
6958         `buffer' arg of `call-process'.
6959         (archive-zip-extract): Check `archive-zip-extract' for "7z" and
6960         call the function `archive-7z-extract' with the variable
6961         `archive-7z-extract' let-bound to `archive-zip-extract'.
6962         (archive-7z-summarize, archive-7z-extract): New functions.
6964         * international/mule.el (auto-coding-alist):
6965         * files.el (auto-mode-alist): Add 7z file extension.
6967 2010-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6969         * loadup.el: Setup hash-cons for pure data.
6971         Fix duplicate entries in cedet's loaddefs.el files.
6972         * emacs-lisp/autoload.el (autoload-file-load-name): Be more clever.
6973         Should make most file-local generated-autoload-file unnecessary.
6974         (print-readably): Silence warnings.
6975         (autoload-find-destination): Take load-name as an arg to make sure
6976         it's the same as the one that will be in the file.
6977         (autoload-generate-file-autoloads): Adjust to above changes.
6978         Try to make the dataflow a bit simpler.
6980         * cvs-status.el (cvs-refontify): Remove unused.
6982 2010-04-18  Jay Belanger  <jay.p.belanger@gmail.com>
6984         * calc/calc.el (calc-mode-map): Bind "O" to `calc-missing-key'.
6986         * calc/calc-bin.el (calc-radix): Have the "O" option turn on
6987         twos-complement mode.
6989 2010-04-17  Jay Belanger  <jay.p.belanger@gmail.com>
6991         * calc/calc-ext.el (calc-init-extensions): Add keybinding for
6992         'calc-option'.  Add `calc-option-prefix-help' to calc-help autoloads.
6993         (calc-inverse): Add "Option" to message, as appropriate.
6994         (calc-hyperbolic): Add "Option" to message, as appropriate.
6995         (calc-option, calc-is-option): New functions.
6997         * calc/calc-help.el (calc-full-help): Add `calc-option-help'.
6998         (calc-option-prefix-help): New function.
7000         * calc/calc-misc.el (calc-help): Add "Option" entry.
7002         * calc/calc.el (calc-local-var-list): Add `calc-option-flag'.
7003         (calc-option-flag): New variable.
7004         (calc-do): Set `calc-option-flag to nil.
7005         (calc-set-mode-line): Add "Opt " as appropriate.
7007 2010-04-16  Juri Linkov  <juri@jurta.org>
7009         Move scrolling commands from simple.el to window.el
7010         because their primitives are implemented in window.c.
7012         * simple.el (scroll-error-top-bottom)
7013         (scroll-up-command, scroll-down-command, scroll-up-line)
7014         (scroll-down-line, scroll-other-window-down)
7015         (beginning-of-buffer-other-window, end-of-buffer-other-window):
7016         * window.el (scroll-error-top-bottom)
7017         (scroll-up-command, scroll-down-command, scroll-up-line)
7018         (scroll-down-line, scroll-other-window-down)
7019         (beginning-of-buffer-other-window, end-of-buffer-other-window):
7020         Move from simple.el to window.el because their primitives are
7021         implemented in window.c.
7023 2010-04-16  Juri Linkov  <juri@jurta.org>
7025         * isearch.el (isearch-lookup-scroll-key): Check both
7026         `isearch-scroll' and `scroll-command' properties.
7027         (scroll-up, scroll-down): Remove `isearch-scroll' property.
7029         * mwheel.el (mwheel-scroll): Remove `isearch-scroll' property.
7031         * simple.el (scroll-up-command, scroll-down-command)
7032         (scroll-up-line, scroll-down-line): Remove `isearch-scroll' property.
7034 2010-04-15  Juri Linkov  <juri@jurta.org>
7036         * simple.el (scroll-up-command, scroll-down-command)
7037         (scroll-up-line, scroll-down-line): Put `scroll-command'
7038         property on the these symbols.  Remove them from
7039         `scroll-preserve-screen-position-commands'.
7041         * mwheel.el (mwheel-scroll): Put `scroll-command' and
7042         `isearch-scroll' properties on the `mwheel-scroll' symbol.
7043         Remove it from `scroll-preserve-screen-position-commands'.
7045         * isearch.el (isearch-allow-scroll): Doc fix.
7047 2010-04-15  Michael Albinus  <michael.albinus@gmx.de>
7049         * net/tramp.el (tramp-error-with-buffer): Don't show the
7050         connection buffer when we are in completion mode.
7051         (tramp-file-name-handler): Catch the error for some operations
7052         when we are in completion mode.  This gives the user the chance to
7053         correct the file name in the minibuffer.
7055 2010-04-15  Glenn Morris  <rgm@gnu.org>
7057         * progmodes/verilog-mode.el (verilog-forward-sexp): Avoid free variable.
7059 2010-04-15  Juanma Barranquero  <lekktu@gmail.com>
7061         Simplify by using `define-derived-mode'.
7062         * info.el (Info-mode):
7063         * calendar/todo-mode.el (todo-mode):
7064         * play/gomoku.el (gomoku-mode): Define with `define-derived-mode'.
7065         (gomoku-mode-map): Move initialization into declaration.
7067 2010-04-14  Michael Albinus  <michael.albinus@gmx.de>
7069         Fix Bug#5840.
7070         * ido.el (ido-file-name-all-completions-1):
7071         * minibuffer.el (minibuffer-completion-help):
7072         * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
7074 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7076         * simple.el (non-essential): New var.
7078         Add a new field `location' to bookmarks for non-file bookmarks.
7079         * bookmark.el (bookmark-location): Use the new field, if present.
7080         (bookmark-insert-location): Undo last change, not needed any more.
7081         * man.el (Man-bookmark-make-record):
7082         * woman.el (woman-bookmark-make-record): Add `location' field.
7084 2010-04-14  Juri Linkov  <juri@jurta.org>
7086         * simple.el (scroll-error-top-bottom): New defcustom.
7087         (scroll-up-command, scroll-down-command): Use it.  Doc fix.
7089         * emulation/pc-select.el (pc-select-override-scroll-error):
7090         Obsolete in favor of `scroll-error-top-bottom'.
7092 2010-04-14  Juri Linkov  <juri@jurta.org>
7094         * tutorial.el (tutorial--default-keys): Rebind `C-v' to
7095         `scroll-up-command' and `M-v' to `scroll-down-command'.
7097         * emulation/cua-rect.el (cua--init-rectangles):
7098         * forms.el (forms--change-commands):
7099         * image-mode.el (image-mode-map):
7100         Remap scroll-down-command and scroll-up-command
7101         in addition to scroll-down and scroll-up.
7103 2010-04-14  Juri Linkov  <juri@jurta.org>
7105         * mwheel.el (scroll-preserve-screen-position-commands):
7106         Add mwheel-scroll to this list of commands.
7108         * simple.el (scroll-preserve-screen-position-commands):
7109         Add scroll-up-command, scroll-down-command, scroll-up-line,
7110         scroll-down-line to this list of commands.
7112 2010-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7114         * obsolete/complete.el: Move from lisp/complete.el.
7116         * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
7118         * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
7119         to the minor mode function now turns the mode ON unconditionally.
7121 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7123         * vc-dir.el (vc-dir-kill-line): New command.
7124         (vc-dir-mode-map): Bind it to C-k.
7126         * bookmark.el (bookmark-insert-location): Handle a nil filename.
7128         * woman.el: Add bookmark declarations to silence the compiler.
7129         (bookmark-prop-get): Use `man-args' rather than `filename' as a first
7130         step to compatibility between man and woman bookmarks.
7131         Adjust for Man-default-bookmark-title renaming.
7132         (woman-bookmark-jump): Adjust accordingly.  Don't forget to autoload.
7134         * man.el: Add bookmark declarations to silence the compiler.
7135         (Man-name-local-regexp): Make it match NAME as well.
7136         (Man-getpage-in-background): Return the buffer.
7137         (Man-notify-when-ready): Use `case'.
7138         (man-set-default-bookmark-title): Rename to Man-default-bookmark-title.
7139         Don't hardcode "NAME".  Simplify.
7140         (Man-bookmark-make-record): Use Man-arguments rather than buffer-name.
7141         Rename from Man-bookmark-make-record.
7142         (Man-bookmark-jump): Rename from man-bookmark-jump.  Simplify now that
7143         we have the actual man-args.  Use Man-getpage-in-background rather
7144         than `man' since the arg is already processed.  Let bookmark.el do the
7145         window handling.  Only wait for the relevant process.
7146         Don't forget to autoload.
7148         * bookmark.el (bookmark-default-file): Use locate-user-emacs-file.
7150 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7152         * woman.el (woman-bookmark-make-record, woman-bookmark-jump):
7153         New functions.
7154         (woman-mode): Setup bookmark support.
7156         * man.el (man-set-default-bookmark-title, man-bookmark-make-record)
7157         (man-bookmark-jump): New functions.
7158         (Man-mode): Setup bookmark support.
7160 2010-04-10  Jari Aalto  <jari.aalto@cante.net>
7162         * comint.el (comint-password-prompt-regexp): Use regexp-opt, and
7163         recognize ssh-keygen prompt (Bug#2817).
7165 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
7167         * net/tramp.el (tramp-do-copy-or-rename-file): Add progress reporter.
7169 2010-04-10  Michael Albinus  <michael.albinus@gmx.de>
7171         Synchronize with Tramp repository.
7173         * net/tramp.el (tramp-completion-function-alist)
7174         (tramp-file-name-regexp, tramp-chunksize)
7175         (tramp-local-coding-commands, tramp-remote-coding-commands):
7176         Fix docstring.
7177         (tramp-remote-process-environment): Use `format' instead of `concat'.
7178         (tramp-handle-directory-files-and-attributes)
7179         (tramp-get-remote-path): Use `copy-tree'.
7180         (tramp-handle-file-name-all-completions): Backward/ XEmacs
7181         compatibility: Use `completion-ignore-case' if
7182         `read-file-name-completion-ignore-case' does not exist.
7183         (tramp-do-copy-or-rename-file-directly): Do not use
7184         `tramp-handle-file-remote-p'.
7185         (tramp-do-copy-or-rename-file-out-of-band):
7186         Use `tramp-compat-delete-directory'.
7187         (tramp-do-copy-or-rename-file-out-of-band)
7188         (tramp-compute-multi-hops, tramp-maybe-open-connection):
7189         Use `format-spec-make'.
7190         (tramp-find-foreign-file-name-handler)
7191         (tramp-advice-make-auto-save-file-name)
7192         (tramp-set-auto-save-file-modes): Remove superfluous check for
7193         `stringp'.  This is done inside `tramp-tramp-file-p'.
7194         (tramp-debug-outline-regexp): New defconst.
7195         (tramp-get-debug-buffer): Use it.
7196         (tramp-check-for-regexp): Use (forward-line 1).
7197         (tramp-set-auto-save-file-modes): Adapt version check.
7199         * net/tramp-compat.el (tramp-advice-file-expand-wildcards):
7200         Wrap call of `featurep' for 2nd argument.
7201         (tramp-compat-make-temp-file): Simplify fallback implementation.
7202         (tramp-compat-copy-tree): Remove function.
7203         (tramp-compat-delete-directory): Provide implementation for older
7204         Emacsen.
7206         * net/tramp-fish.el (tramp-fish-handle-directory-files-and-attributes):
7207         Do not use `tramp-fish-handle-file-attributes.
7209         * net/trampver.el: Update release number.
7211 2010-04-10  Glenn Morris  <rgm@gnu.org>
7213         * progmodes/compile.el (compilation-save-buffers-predicate):
7214         Add missing :version tag.
7216 2010-04-09  Sam Steingold  <sds@gnu.org>
7218         * progmodes/compile.el (compilation-save-buffers-predicate):
7219         Remove the "autoload" cookie.
7221         * progmodes/bug-reference.el (turn-on-bug-reference-mode)
7222         (turn-on-bug-reference-prog-mode): Remove, `bug-reference-mode'
7223         and `bug-reference-prog-mode' can be used in hooks directly.
7225 2010-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
7227         Add --author support to git commit.
7228         * vc-git.el (vc-git-checkin): Pass extra-args to the commit command.
7229         (vc-git-log-edit-mode): New minor mode.
7230         (log-edit-mode, log-edit-extra-flags, log-edit-mode):
7231         New declarations.
7233 2010-04-09  Eric Raymond  <esr@snark.thyrsus.com>
7235         * vc-hooks.el, vc-git.el: Improve documentation comments.
7237 2010-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7239         Fix some of the problems in defsubst* (bug#5728).
7240         * emacs-lisp/cl-macs.el (defsubst*): Don't substitute non-trivial args.
7241         (cl-defsubst-expand): Do the substitutions simultaneously (bug#5728).
7243 2010-04-07  Sam Steingold  <sds@gnu.org>
7245         * progmodes/compile.el (compilation-save-buffers-predicate):
7246         New custom variable.
7247         (compile, recompile): Pass it to `save-some-buffers'.
7249 2010-04-07  Jan Djärv  <jan.h.d@swipnet.se>
7251         * wid-edit.el (widget-choose): Move cursor to the second line of
7252         the buffer (Bug#5695).
7254 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
7256         Add new VC methods: vc-log-incoming and vc-log-outgoing.
7257         * vc.el (vc-print-log-setup-buttons): New function split out from
7258         vc-print-log-internal.
7259         (vc-log-internal-common): New function, a parametrized version of
7260         vc-print-log-internal.
7261         (vc-print-log-internal): Just call vc-log-internal-common with the
7262         right arguments.
7263         (vc-incoming-outgoing-internal):
7264         (vc-log-incoming, vc-log-outgoing): New functions.
7265         (vc-log-view-type): New permanent local variable.
7267         * vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.
7269         * vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
7270         of the dynamic bound vc-short-log.
7271         (vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.
7273         * vc-git.el (vc-git-log-outgoing): New function.
7274         (vc-git-log-view-mode): Use vc-log-view-type instead
7275         of the dynamic bound vc-short-log.
7277         * vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead
7278         of the dynamic bound vc-short-log.  Highlight the tag.
7279         (vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
7280         (vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
7281         (vc-hg-incoming-mode): Remove.
7282         (vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.
7284 2010-04-07  Dan Nicolaescu  <dann@ics.uci.edu>
7286         Fix default-directory for vc-root-diff.
7287         * vc.el (vc-root-diff): Bind default-directory to the root
7288         directory for the diff command.
7290 2010-04-07  Michael McNamara  <mac@mail.brushroad.com>
7292         * progmodes/verilog-mode.el (verilog-forward-sexp):
7293         (verilog-calc-1): Support "disable fork" and "fork wait" multi
7294         word keywords, suggested by Steve Pearlmutter.
7295         (verilog-pretty-declarations): Support lineup of declarations in
7296         port lists.
7297         (verilog-skip-backward-comments, verilog-skip-forward-comment-p):
7298         fix bug for /* / comments.
7299         (verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
7300         Speed up and simplfy as this is never called with a bound.
7301         (verilog-pretty-declarations): Enhance to line up declarations
7302         inside a parameter list, suggested by Alan Morgan.
7303         (verilog-pretty-expr): Tune assignment regular expression match
7304         string for corner cases; also use markers instead of character
7305         number as indent changes the later.
7307 2010-04-07  Wilson Snyder  <wsnyder@wsnyder.org>
7309         * progmodes/verilog-mode.el (verilog-type-keywords): Fix pulldown
7310         as missing keyword.
7311         (verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
7312         causing truncation of AUTOWIRE signals.  Reported by Bruce Tennant.
7313         (verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
7314         AUTO_TEMPLATEs needing multiple array bits.  Suggested by Bruce
7315         Tennant.
7316         (verilog-keywords):
7317         (verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
7318         1800-2009 keywords, including "global.".
7320 2010-04-06  John Wiegley  <jwiegley@gmail.com>
7322         * ido.el (ido-add-virtual-buffers-to-list): Fix duplicated names
7323         appearing in buffer list (if a live buffer name matched a recentf
7324         file basename).  Should use uniquify to offer a real solution.
7326 2010-04-06  John Wiegley  <jwiegley@gmail.com>
7328         * ido.el (ido-use-virtual-buffers, ido-virtual): Move a ChangeLog
7329         comment to code, and add a :version tag.
7330         (ido-virtual-buffers): Move defvar to fix byte-compiler warning.
7332 2010-04-06  Juanma Barranquero  <lekktu@gmail.com>
7334         Enable recentf-mode if using virtual buffers.
7335         * ido.el (recentf-list): Declare for byte-compiler.
7336         (ido-virtual-buffers): Move up to silence byte-compiler.  Add docstring.
7337         (ido-make-buffer-list): Simplify.
7338         (ido-add-virtual-buffers-to-list): Simplify.  Enable recentf-mode.
7340 2010-04-05  Juri Linkov  <juri@jurta.org>
7342         Scrolling commands which scroll a line instead of full screen.
7343         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
7345         * simple.el (scroll-up-line, scroll-down-line): New commands.
7346         Put property isearch-scroll=t on them.
7348         * emulation/ws-mode.el (scroll-down-line, scroll-up-line):
7349         Remove commands.
7351 2010-04-05  Juri Linkov  <juri@jurta.org>
7353         Scrolling commands which do not signal errors at top/bottom.
7354         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01452.html
7356         * simple.el (scroll-up-command, scroll-down-command): New commands.
7357         Put property isearch-scroll=t on them.
7359         * bindings.el (global-map): Rebind [prior] from `scroll-down' to
7360         `scroll-down-command' and [next] from `scroll-up' to
7361         `scroll-up-command'.
7363         * emulation/cua-base.el: Put property CUA=move on
7364         `scroll-up-command' and `scroll-down-command'.
7365         (cua--init-keymaps): Remap `scroll-up-command' to `cua-scroll-up'
7366         and `scroll-down-command' to `cua-scroll-down'.
7368 2010-04-05  Juanma Barranquero  <lekktu@gmail.com>
7370         * help.el (describe-mode): Return nil.
7372 2010-04-04  John Wiegley  <jwiegley@gmail.com>
7374         * ido.el (ido-use-virtual-buffers): New variable to indicate
7375         whether "virtual buffer" support is enabled for IDO.
7376         (ido-virtual): Face used to indicate virtual buffers in the list.
7377         (ido-buffer-internal): If a buffer is chosen, and no such buffer
7378         exists, but a virtual buffer of that name does (which would be why
7379         it was in the list), recreate the buffer by reopening the file.
7380         (ido-make-buffer-list): If virtual buffers are being used, call
7381         `ido-add-virtual-buffers-to-list' before the make list hook.
7382         (ido-virtual-buffers): New variable which contains a copy of the
7383         current contents of the `recentf-list', albeit pared down for the
7384         sake of speed, and with proper faces applied.
7385         (ido-add-virtual-buffers-to-list): Using the `recentf-list',
7386         create a list of "virtual buffers" to present to the user in
7387         addition to the currently open set.  Note that this logic could
7388         get rather slow if that list is too large.  With the default
7389         `recentf-max-saved-items' of 200, there is little speed penalty.
7391 2010-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7393         * font-lock.el: Require CL when compiling.
7394         (font-lock-turn-on-thing-lock): Use `case'.
7396 2010-04-03  Eli Zaretskii  <eliz@gnu.org>
7398         * emacs-lisp/authors.el (authors-fixed-entries): Add entry for Eli
7399         Zaretskii.
7401 2010-04-02  Juri Linkov  <juri@jurta.org>
7403         * ehelp.el (electric-help-orig-major-mode):
7404         New buffer-local variable.
7405         (electric-help-mode): Set it to original major-mode.  Doc fix.
7406         (with-electric-help): Use `electric-help-orig-major-mode' instead
7407         of (default-value 'major-mode).  Doc fix.
7408         http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00069.html
7410 2010-04-02  Sam Steingold  <sds@gnu.org>
7412         * vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
7413         `vc-hg-command' with a list of flags.
7415         * progmodes/bug-reference.el (bug-reference-bug-regexp):
7416         Also accept "patch" and "RFE".
7417         (bug-reference-fontify): `bug-reference-url-format' can also be a
7418         function to be able to handle the bug kind.
7419         (turn-on-bug-reference-mode, turn-on-bug-reference-prog-mode): Add.
7421 2010-04-02  Jan Djärv  <jan.h.d@swipnet.se>
7423         * tmm.el (tmm-get-keymap): Check with symbolp before passing
7424         value to fboundp, it may not be a symbol.
7426 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
7428         * cus-edit.el (custom-buffer-sort-alphabetically): Update :version.
7430 2010-03-31  Juri Linkov  <juri@jurta.org>
7432         * simple.el (next-line, previous-line): Re-throw a signal
7433         with `signal' instead of using `ding'.
7434         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01432.html
7436 2010-03-31  Juri Linkov  <juri@jurta.org>
7438         * simple.el (keyboard-escape-quit): Raise deselecting the active
7439         region higher than exiting the minibuffer.
7440         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00904.html
7442 2010-03-31  Juri Linkov  <juri@jurta.org>
7444         * image.el (image-animated-p): Use `image-metadata' instead of
7445         `image-extension-data'.  Get GIF extenstion data from metadata
7446         property `extension-data'.
7448 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
7450         * simple.el (append-to-buffer): Simplify.
7452 2010-03-31  Tomas Abrahamsson  <tab@lysator.liu.se>
7454         * textmodes/artist.el (artist-mode): Fix typo in docstring.
7455         Reported by Alex Schröder <kensanata@gmail.com>.  (Bug#5807)
7457 2010-03-31  Kenichi Handa  <handa@m17n.org>
7459         * language/sinhala.el (composition-function-table): Fix regexp for
7460         the new Unicode specification.
7462         * language/indian.el (devanagari-composable-pattern)
7463         (tamil-composable-pattern, kannada-composable-pattern)
7464         (malayalam-composable-pattern): Adjust for the new Unicode
7465         specification.
7466         (bengali-composable-pattern, gurmukhi-composable-pattern)
7467         (gujarati-composable-pattern, oriya-composable-pattern)
7468         (telugu-composable-pattern): New variables to cope with the new
7469         Unicode specification.  Use them in composition-function-table.
7471 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
7473         Make tmm-menubar work for the Buffers menu again (bug#5726).
7474         * tmm.el (tmm-prompt): Also handle keymap entries in the form of
7475         vectors rather than cons cells, as used in menu-bar-update-buffers.
7477 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
7479         * progmodes/js.el (js-auto-indent-flag, js-mode-map)
7480         (js-insert-and-indent): Revert 2009-08-15 change, restoring
7481         electric punctuation for "{}();,:" (Bug#5586).
7483         * mail/sendmail.el (mail-default-directory): Doc fix.
7485 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
7487         * mail/sendmail.el (mail-default-directory): Doc fix.
7489 2010-03-31  Eli Zaretskii  <eliz@gnu.org>
7491         * subr.el (version-regexp-alist, version-to-list)
7492         (version-list-<, version-list-=, version-list-<=)
7493         (version-list-not-zero, version<, version<=, version=): Doc fix.
7494         (Bug#5744).
7496 2010-02-31  Dan Nicolaescu  <dann@ics.uci.edu>
7498         * vc.el (vc-root-diff): Doc fix.
7500 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
7502         * vc.el (vc-print-log, vc-print-root-log): Doc fix.
7504         * simple.el (append-to-buffer): Fix last change.
7506 2010-03-31  Chong Yidong  <cyd@stupidchicken.com>
7508         * simple.el (append-to-buffer): Ensure that point is preserved if
7509         BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
7510         (Bug#5749)
7512 2010-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
7514         * files.el (auto-mode-case-fold): Change default to t.
7516 2010-03-30  Juri Linkov  <juri@jurta.org>
7518         * dired-x.el (dired-omit-mode): Doc fix.
7520 2010-03-30  Juri Linkov  <juri@jurta.org>
7522         * replace.el (occur-accumulate-lines): Move occur-engine related
7523         functions `occur-accumulate-lines' and `occur-engine-add-prefix'
7524         to be located after `occur-engine'.
7526 2010-03-30  Juri Linkov  <juri@jurta.org>
7528         Make occur handle multi-line matches cleanly with context.
7529         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
7531         * replace.el (occur-accumulate-lines): Add optional arg `pt'.
7532         (occur-engine): Add local variables `ret', `prev-after-lines',
7533         `prev-lines'.  Use more arguments for `occur-context-lines'.
7534         Set first elem of its returned list to `data', and the second elem
7535         to `prev-after-lines'.  Don't print the separator line.
7536         In the end, print remaining context after-lines.
7537         (occur-context-lines): Add new arguments `begpt', `endpt',
7538         `lines', `prev-lines', `prev-after-lines'.  Rewrite to combine
7539         after-lines of the previous match with before-lines of the
7540         current match and not overlap them.  Return a list with two
7541         values: the output line and the list of context after-lines.
7543 2010-03-30  Juri Linkov  <juri@jurta.org>
7545         * replace.el (occur-accumulate-lines): Fix a bug where the first
7546         context line at the beginning of the buffer was missing.
7548 2010-03-30  Eli Zaretskii  <eliz@gnu.org>
7550         * files.el: Make bidi-display-reordering safe variable for boolean
7551         values.
7553 2010-03-29  Phil Hagelberg  <phil@evri.com>
7554             Chong Yidong  <cyd@stupidchicken.com>
7556         * subr.el: Extend progress reporters to perform "spinning".
7557         (progress-reporter-update, progress-reporter-do-update):
7558         Handle non-numeric value arguments.
7559         (progress-reporter--pulse-characters): New var.
7561 2010-03-28  Chong Yidong  <cyd@stupidchicken.com>
7563         * progmodes/compile.el (compilation-start): Fix regexp detection
7564         of initial cd command (Bug#5771).
7566 2010-03-28  Stefan Guath  <stefan@automata.se>  (tiny change)
7568         * find-dired.el (find-dired): Use read-directory-name (Bug#5777).
7570 2010-03-27  Nick Roberts  <nickrob@snap.net.nz>
7572         Restore GDB/MI fuctionality removed by 2009-12-29T07:15:34Z!nickrob@snap.net.nz.
7573         * progmodes/gdb-mi.el: Restore.
7574         * progmodes/gdb-ui.el: Remove.
7575         * progmodes/gud.el: Re-accommodate for gdb-mi.el.
7577 2010-03-25  Glenn Morris  <rgm@gnu.org>
7579         * desktop.el (desktop-save-buffer-p): Don't mistakenly include
7580         all dired buffers, even tramp ones.  (Bug#5755)
7582 2010-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7584         Add "union tags" in mpc.el.
7585         * mpc.el: Remove backward compatibility code.
7586         (mpc-browser-tags): Change default.
7587         (mpc--find-memoize-union-tags): New var.
7588         (mpc-cmd-flush, mpc-cmd-special-tag-p): New fun.
7589         (mpc-cmd-find): Handle the case where the playlist does not exist.
7590         Handle union-tags.
7591         (mpc-cmd-list): Use mpc-cmd-special-tag-p.  Handle union-tags.
7592         (mpc-cmd-add): Use mpc-cmd-flush.
7593         (mpc-tagbrowser-tag-name): New fun.
7594         (mpc-tagbrowser-buf): Use it.
7595         (mpc-songs-refresh): Use cond.  Move to point-min as a fallback.
7597 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7599         Misc cleanup.
7600         * progmodes/make-mode.el (makefile-bsdmake-rule-action-regex):
7601         Use replace-regexp-in-string.
7602         (makefile-mode-abbrev-table): Merge defvar and define-abbrev-table.
7603         (makefile-imake-mode-syntax-table): Move init into defvar.
7604         (makefile-mode): Use define-derived-mode.
7606         * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
7607         (makefile-make-font-lock-keywords): Adjust rule since submatch 1 may
7608         not be present any more.
7610 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
7612         * faces.el (set-face-attribute): Fix typo in docstring.
7613         (face-valid-attribute-values): Reflow docstring.
7615 2010-03-24  Glenn Morris  <rgm@gnu.org>
7617         * textmodes/flyspell.el (sgml-lexical-context): Autoload it (Bug#5752).
7619 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
7621         * indent.el (indent-for-tab-command): Doc fix.
7623 2010-03-24  Alan Mackenzie  <acm@muc.de>
7625         * progmodes/cc-engine.el (c-remove-stale-state-cache):
7626         Fix off-by-one error.  Fixes bug #5747.
7628 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
7630         * image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
7631         (image-dired-read-comment): Doc fix.
7633         * json.el (json-object-type, json-array-type, json-key-type)
7634         (json-false, json-null, json-read-number):
7635         * minibuffer.el (completion-in-region-functions):
7636         * calendar/cal-tex.el (cal-tex-daily-end, cal-tex-number-weeks)
7637         (cal-tex-cursor-week):
7638         * emacs-lisp/trace.el (trace-function):
7639         * eshell/em-basic.el (eshell/printnl):
7640         * eshell/em-dirs.el (eshell-last-dir-ring, eshell-parse-drive-letter)
7641         (eshell-read-last-dir-ring, eshell-write-last-dir-ring):
7642         * obsolete/levents.el (allocate-event, event-key, event-object)
7643         (event-point, event-process, event-timestamp, event-to-character)
7644         (event-window, event-x, event-x-pixel, event-y, event-y-pixel):
7645         * textmodes/reftex-vars.el (reftex-index-macros-builtin)
7646         (reftex-section-levels, reftex-auto-recenter-toc, reftex-toc-mode-hook)
7647         (reftex-cite-punctuation, reftex-search-unrecursed-path-first)
7648         (reftex-highlight-selection): Fix typos in docstrings.
7650 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
7652         * minibuffer.el (completion-in-region-functions): Fix docstring typos.
7654 2010-03-24  Glenn Morris  <rgm@gnu.org>
7656         * mail/rmail.el (rmail-highlight-face): Restore option deleted
7657         2008-02-13 without comment; mark it obsolete.
7658         (rmail-highlight-headers): Use rmail-highlight-face once more.
7660 2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
7662         * woman.el (woman2-process-escapes): Only consume the newline if
7663         the filler character is on a line by itself (Bug#5729).
7665 2010-03-24  Kenichi Handa  <handa@m17n.org>
7667         * language/indian.el (devanagari-composable-pattern): Add more
7668         consonants.
7670 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
7672         * net/trampver.el: Update release number.
7674 2010-03-24  Michael Albinus  <michael.albinus@gmx.de>
7676         * net/tramp.el (tramp-find-executable):
7677         Use `tramp-get-connection-buffer'.  Make the regexp for checking
7678         output of "wc -l" more robust.
7679         (tramp-find-shell): Use another shell but /bin/sh on OpenSolaris.
7680         (tramp-open-connection-setup-interactive-shell): Remove workaround
7681         for OpenSolaris bug, it is not needed anymore.
7683 2010-03-24  Glenn Morris  <rgm@gnu.org>
7685         * emacs-lisp/cl-macs.el (defsubst*): Add autoload cookie.  (Bug#4427)
7687 2010-03-24  Wilson Snyder  <wsnyder@wsnyder.org>
7689         * files.el (auto-mode-alist): Accept more verilog file patterns.
7691 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7693         * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
7695 2010-03-24  Glenn Morris  <rgm@gnu.org>
7697         * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
7698         log-edit-before-checkin-process.
7700         * vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.
7702         * vc.el, vc-bzr.el, vc-hg.el (log-edit-mode): Declare.
7704         * vc-dispatcher.el (vc-start-logentry): Doc fix.
7705         (log-view-process-buffer, log-edit-extra-flags): Declare.
7707         * log-edit.el (log-edit-before-checkin-process): Doc fix.
7709 2010-03-23  Sam Steingold  <sds@gnu.org>
7711         Fix bug#5620: recalculate all markers on compilation buffer
7712         modifications, not on file modifications.
7713         * progmodes/compile.el (buffer-modtime): New buffer-local variable:
7714         the buffer modification time, for buffers not associated with files.
7715         (compilation-mode): Create it.
7716         (compilation-filter): Update it.
7717         (compilation-next-error-function): Use it instead of
7718         `visited-file-modtime' for timestamp.
7720 2010-03-23  Juri Linkov  <juri@jurta.org>
7722         Implement Occur multi-line matches.
7723         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01044.html
7725         * replace.el (occur): Doc fix.
7726         (occur-engine): Set `begpt' to the beginning of the first line.
7727         Set `endpt' to the end of the last match line.  At first, count
7728         line numbers between `origpt' and `begpt'.  Split out code from
7729         `out-line' variable to new let-bindings `match-prefix' and
7730         `match-str'.  In `out-line' add non-numeric prefix to all
7731         non-first lines of multi-line matches.  Finally, count lines
7732         between `begpt' and `endpt' and add to `lines'.
7734 2010-03-23  Juri Linkov  <juri@jurta.org>
7736         * replace.el (occur-accumulate-lines, occur-engine):
7737         Use `occur-engine-line' instead of duplicate code.
7738         (occur-engine-line): New function created from duplicate code
7739         in `occur-accumulate-lines' and `occur-engine'.
7741         * replace.el (occur-engine-line): Add optional arg `keep-props'.
7742         (occur-accumulate-lines, occur-engine): Add arg `keep-props'.
7744 2010-03-23  Juri Linkov  <juri@jurta.org>
7746         * finder.el: Remove TODO tasks.
7748         * info.el (Info-finder-find-node): Add node "all"
7749         with all package info.  Handle a list of multiple keywords
7750         separated by comma.
7751         (info-finder): In interactive use with a prefix argument,
7752         use `completing-read-multiple' to read a list of keywords
7753         separated by comma.
7755 2010-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7757         Add a new completion style `substring'.
7758         * minibuffer.el (completion-basic--pattern): New function.
7759         (completion-basic-try-completion, completion-basic-all-completions):
7760         Use it.
7761         (completion-substring--all-completions)
7762         (completion-substring-try-completion)
7763         (completion-substring-all-completions): New functions.
7764         (completion-styles-alist): New style `substring'.
7766 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7768         Get rid of .elc files after removal of the corresponding .el.
7769         * Makefile.in (compile-clean): New target.
7770         (compile-main): Use it.
7772 2010-03-22  Jan Djärv  <jan.h.d@swipnet.se>
7774         * Makefile.in (compile-main): cd to $(lisp) in a sub-shell, so we
7775         don't do make there.  When compiling with separate object dir, there
7776         is no Makefile there.
7778 2010-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7780         Get rid of the ELCFILES abomination, again.
7781         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
7782         (all, compile): Don't call compile-last.
7783         (compile-main): Build the "elcfiles" list dynamically.
7784         (compile-targets): New (internal) target.
7786 2010-03-21  Andreas Schwab  <schwab@linux-m68k.org>
7788         * Makefile.in (top_srcdir): Define.
7789         (abs_top_builddir): Define.
7790         (srcdir): Don't append `/..'.
7791         (EMACS): Use ${abs_top_builddir}.
7792         (all, compile, compile-always, compile-last): Don't set emacswd.
7793         (update-subdirs, update-authors): Use $(top_srcdir) instead of
7794         $(srcdir).
7795         (lisp): Use $(srcdir) instead of @srcdir@.
7797 2010-03-21  Juri Linkov  <juri@jurta.org>
7799         Fix message of multi-line occur regexps and multi-buffer header lines.
7800         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00457.html
7802         * replace.el (occur-1): Don't display regexp if it is longer
7803         than window-width.  Use `query-replace-descr' to display regexp.
7804         (occur-engine): Don't display regexp in the buffer header for
7805         multi-buffer occur.  Display a separate header line with total
7806         match count and regexp for multi-buffer occur.
7807         Use `query-replace-descr' to display regexp.
7809 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
7811         * net/secrets.el: Fix parenthesis.
7812         (secrets-enabled): Fix parenthesis.
7814 2010-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7816         Use more relative file and directory names.
7817         * Makefile.in (EMACS): Arrange for it to work when we chdir.
7818         (setwins, setwins_almost, setwins_for_subdirs):
7819         Don't `cd'; output relative names.
7820         (all, compile, compile-always, compile-last): Set emacswd.
7821         (custom-deps, finder-data, autoloads, update-subdirs, compile-last):
7822         Just cd to the lisp source dir so we can use relative file names.
7824         * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).
7826 2010-03-20  Glenn Morris  <rgm@gnu.org>
7828         * textmodes/rst.el: Use faces for font-lock customization, and make the
7829         old -face variables obsolete.
7830         (rst-block, rst-external, rst-definition, rst-directive, rst-comment)
7831         (rst-emphasis1, rst-emphasis2, rst-literal, rst-reference): New faces.
7832         (rst-block-face, rst-external-face, rst-definition-face)
7833         (rst-directive-face, rst-comment-face, rst-emphasis1-face)
7834         (rst-emphasis2-face, rst-literal-face, rst-reference-face):
7835         Make obsolete.
7836         (rst-font-lock-keywords-function): Update for above changes.
7838 2010-03-20  Juri Linkov  <juri@jurta.org>
7840         * s-region.el:
7841         * obsolete/s-region.el: Move to obsolete.
7843 2010-03-19  Juanma Barranquero  <lekktu@gmail.com>
7845         * vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
7847 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
7849         * vc-hooks.el (vc-path): Remove variable and obsolete declaration.
7851 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
7853         Add special markup processing for commit logs.
7854         * log-edit.el (log-edit-extra-flags): New variable.
7855         (log-edit): Add new argument MODE.  Use that mode when non-nil
7856         instead of the log-view-mode.
7857         (log-view-process-buffer): New function.
7859         * vc.el: Document that the checkin method takes optional
7860         arguments.  Document new backend specific method: log-view-mode.
7861         (vc-default-log-edit-mode): New function.
7862         (vc-checkin): Use a backend specific log-view-mode.
7863         Pass extra arguments to the checkin method.
7864         (vc-modify-change-comment): Pass a dummy extra argument.
7866         * vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
7867         log-edit.
7868         (vc-start-logentry): Add a mode argument, pass it to vc-log-edit.
7869         (vc-finish-logentry): Process the log buffer before passing it
7870         down.  Pass log-edit-extra-flags.
7872         * vc-bzr.el (vc-bzr-checkin): Pass extra arguments to the commit
7873         command.
7874         (log-edit-extra-flags, log-edit-before-checkin-process):
7875         New declarations.
7877         * vc-hg.el (vc-hg-checkin): Pass extra arguments to the commit
7878         command.
7879         (log-edit-extra-flags, log-edit-before-checkin-process):
7880         New declarations.
7881         (vc-hg-log-edit-mode): New derived mode.
7883         * vc-arch.el (vc-arch-checkin):
7884         * vc-cvs.el (vc-cvs-checkin):
7885         * vc-git.el (vc-git-checkin):
7886         * vc-mtn.el (vc-mtn-checkin):
7887         * vc-rcs.el (vc-rcs-checkin):
7888         * vc-sccs.el (vc-sccs-checkin):
7889         * vc-svn.el (vc-svn-checkin): Add an optional ignored argument.
7891 2010-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7893         * outline.el (hide-sublevels): Don't hide trailing newline (and fix
7894         parent typo).
7896 2010-03-19  Glenn Morris  <rgm@gnu.org>
7898         * password-cache.el (password-cache, password-cache-expiry): Autoload.
7900 2010-03-18  Glenn Morris  <rgm@gnu.org>
7902         * emacs-lisp/autoload.el (autoload-rubric): Doc fix.
7904         * replace.el (query-replace-history): Give it a doc string.
7905         (map-query-replace-regexp): Use query-replace-from-history-variable
7906         and query-replace-to-history-variable.
7908         * mail/hashcash.el (declare-function): Remove duplicate definition.
7910         * mail/emacsbug.el (report-emacs-bug-pretest-address):
7911         Make it an obsolete alias for report-emacs-bug-address.
7912         (message-strip-special-text-properties): Declare.
7913         (report-emacs-bug): Remove test for a pretest bug address.
7914         Combine message-mode-specific code.
7916         * mail/supercite.el: Don't require sendmail.
7917         (mh-in-header-p): Declare rather than using with-no-warnings.
7918         (sc-no-blank-line-or-header): Use rfc822-goto-eoh rather than
7919         mail-header-end.  Don't bind mysterious variable `kill-lines-magic'.
7921         * calendar/cal-french.el: Convert to utf-8.
7923         * files.el (interpreter-mode-alist): Use emacs-lisp-mode for
7924         Emacs scripts.
7926 2010-03-16  Michael Albinus  <michael.albinus@gmx.de>
7928         * net/secrets.el (secrets-enabled): New variable.  Use it instead
7929         of a subfeature.
7931 2010-03-15  Michael Albinus  <michael.albinus@gmx.de>
7933         * net/secrets.el (top): Register the D-Bus signals only when the
7934         service "org.freedesktop.secrets" can be pinged.
7935         Provide subfeature `enabled'.
7937 2010-03-14  Juri Linkov  <juri@jurta.org>
7939         Add finder unknown keywords.
7941         * finder.el (finder-unknown-keywords): New function.
7943         * info.el (Info-finder-find-node): Use `finder-unknown-keywords'
7944         to create a Finder node with unknown keywords.
7946 2010-03-14  Juri Linkov  <juri@jurta.org>
7948         * finder.el (finder-compile-keywords): Replace `princ' with
7949         `prin1' on a list of symbols interned from keyword strings.
7951         * emacs-lisp/lisp-mnt.el (lm-keywords-list): If `keywords' contains
7952         a comma, then split keywords using a comma and optional whitespace.
7953         Otherwise, split by whitespace.
7955         * complete.el:
7956         * face-remap.el:
7957         * log-view.el:
7958         * net/hmac-def.el:
7959         * net/hmac-md5.el:
7960         * net/netrc.el:
7961         * progmodes/mixal-mode.el: Fix keywords.
7963 2010-03-13  Michael Albinus  <michael.albinus@gmx.de>
7965         * Makefile.in (ELCFILES): Add net/secrets.elc.
7967         * net/secrets.el: New file.
7969 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
7971         * facemenu.el (list-colors-display, list-colors-print): New arg
7972         callback.  Use it to allow selecting colors.
7974         * wid-edit.el (widget-image-insert): Insert image prop even if the
7975         current display is non-graphic.
7976         (widget-field-value-set): New fun.
7977         (editable-field): Use it.
7978         (widget-field-value-get): Clean up unused var.
7979         (widget-color-value-create, widget-color--choose-action):
7980         New funs.  Allow using list-colors-display to choose color.
7982 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
7984         * cus-edit.el: Resort topmost custom groups.
7985         (custom-buffer-sort-alphabetically): Default to t.
7986         (customize-apropos): Use apropos-parse-pattern.
7987         (custom-search-field): New var.
7988         (custom-buffer-create-internal): Add custom-apropos search field.
7989         (custom-add-parent-links): Don't display parent doc.
7990         (custom-group-value-create): Don't sort top-level custom group.
7991         (custom-magic-value-create): Show visibility button before option name.
7993         (custom-variable-state): New fun, from custom-variable-state-set.
7994         (custom-variable-state-set): Use it.
7995         (custom-group-value-create): Hide options with standard values
7996         using the :hidden-states property.  Use progress reporter.
7998         (custom-show): Simplify.
7999         (custom-visibility): Disable images by default.
8000         (custom-variable): New property :hidden-states.
8001         (custom-variable-value-create): Enable images for
8002         custom-visibility widgets.  Use :hidden-states property to
8003         determine initial visibility.
8005         * wid-edit.el (widget-image-find): Give images center ascent.
8006         (visibility): Add :on-image and :off-image properties.
8007         (widget-visibility-value-create): Use them.
8009 2010-03-12  Chong Yidong  <cyd@stupidchicken.com>
8011         * cus-edit.el (processes): Remove from development group.
8012         (oop, hypermedia): Delete group.
8013         (comm): Promote to top-level group.
8015         * net/browse-url.el (browse-url):
8016         * net/xesam.el (xesam):
8017         * net/tramp.el (tramp):
8018         * net/goto-addr.el (goto-address):
8019         * net/ange-ftp.el (ange-ftp): Put in comm group.
8021         * view.el (view): Remove from editing group.
8023         * uniquify.el (uniquify): Put in files group.
8025         * net/browse-url.el (browse-url):
8026         * ps-print.el (postscript): Put in external group.
8028         * cus-edit.el (outlines):
8029         * textmodes/text-mode.el (text-mode-hook):
8030         * textmodes/table.el (table):
8031         * textmodes/picture.el (picture):
8032         * outline.el (outlines): Put in wp group.
8034         * nxml/nxml-mode.el (nxml): Remove from wp group.
8036         * net/tramp-imap.el (tramp-imap): Put in tramp group.
8038         * mail/metamail.el (metamail): Remove from hypermedia group.
8040         * cus-edit.el (abbrev):
8041         * whitespace.el (whitespace):
8042         * vcursor.el (vcursor):
8043         * reveal.el (reveal):
8044         * hl-line.el (hl-line): Put in convenience group.
8046         * epg-config.el (epg): Put in data group.
8048         * emulation/pc-select.el (pc-select): Put in emulations group.
8050         * calculator.el (calculator): Put in applications group.
8052 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
8054         Add .dir-locals.el support for file-less buffers.
8055         * files.el (hack-local-variables): Split out code to apply local
8056         variable settings ...
8057         (hack-local-variables-apply): ... here.  New function.
8058         (hack-dir-local-variables): Use the default directory for when the
8059         buffer does not have an associated file.
8060         (hack-dir-local-variables-non-file-buffer): New function.
8061         * diff-mode.el (diff-mode):
8062         * vc-annotate.el (vc-annotate-mode):
8063         * vc-dir.el (vc-dir-mode):
8064         * log-edit.el (log-edit-mode):
8065         * log-view.el (log-view-mode): Call hack-dir-local-variables-non-file-buffer.
8067 2010-03-12  Dan Nicolaescu  <dann@ics.uci.edu>
8069         Add support for shelving snapshots and for showing shelves.
8070         * vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
8071         (vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
8072         New functions.
8073         (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
8074         (vc-bzr-extra-menu-map): Map them.
8076 2010-03-11  Glenn Morris  <rgm@gnu.org>
8078         * cus-edit.el (customize-changed-options-previous-release):
8079         Bump to 23.1.
8081         * image.el (image-animate-max-time): Fix :version tag.
8083 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
8085         * Branch for 23.2.
8087 2010-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8089         * vc-git.el (vc-git-revision-table): Include remote branches.
8091 2010-03-10  Kim F. Storm  <storm@cua.dk>
8093         Animated image API.
8094         http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg00211.html
8096         * image.el (image-animate-max-time): New defcustom.
8097         (image-animated-types): New defconst.
8098         (create-animated-image, image-animate-timer)
8099         (image-animate-start, image-animate-stop, image-animate-timeout)
8100         (image-animated-p): New functions.
8102         * image-mode.el (image-toggle-display-image):
8103         Replace `create-image' with `create-animated-image'.
8105 2010-03-09  Miles Bader  <miles@gnu.org>
8107         * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog,
8108         instead of "format:"; this ensures that the output is
8109         newline-terminated.
8111 2010-03-08  Chong Yidong  <cyd@stupidchicken.com>
8113         * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure
8114         that all errors are caught, and that the return value is always a
8115         list (Bug#5692).
8117 2010-03-08  Kenichi Handa  <handa@m17n.org>
8119         * language/misc-lang.el (windows-1256): New coding system.
8120         (cp1256): New alias of windows-1256 (bug#5690).
8122 2010-03-07  Andreas Schwab  <schwab@linux-m68k.org>
8124         * mail/rfc822.el (rfc822-addresses): Move catch clause down around
8125         call to rfc822-bad-address.  (Bug#5692)
8127 2010-03-07  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
8129         * vc-git.el (vc-git-annotate-extract-revision-at-line):
8130         Use vc-git-root as default directory for revision path (Bug#5657).
8132 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
8134         * calculator.el (calculator): Don't bind split-window-keep-point
8135         (Bug#5674).
8137 2010-03-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8139         * vc-git.el: Re-flow to fit into 80 columns.
8140         (vc-git-after-dir-status-stage, vc-git-dir-status-goto-stage):
8141         Remove spurious `quote' element in each case alternative.
8142         (vc-git-show-log-entry): Use prog1.
8143         (vc-git-after-dir-status-stage): Remove unused var `remaining'.
8145 2010-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8147         * man.el (Man-files-regexp): Tighten up the regexp (bug#5686).
8149 2010-03-03  Chong Yidong  <cyd@stupidchicken.com>
8151         * macros.el (insert-kbd-macro): Look up keyboard macro using the
8152         definition, not the name (Bug#5481).
8154 2010-03-03  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
8156         * subr.el (momentary-string-display): Don't overwrite the MESSAGE
8157         argument with a local variable.  (Bug#5670)
8159 2010-03-02  Juri Linkov  <juri@jurta.org>
8161         * info.el (Info-index-next): Decrement line number by 2.  (Bug#5652)
8163 2010-03-02  Michael Albinus  <michael.albinus@gmx.de>
8165         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix an
8166         error when FILENAME and NEWNAME are existing remote directories.
8168         * net/tramp-compat.el (tramp-compat-make-temp-file): Add optional
8169         parameter DIR-FLAG.
8171 2010-03-02  Glenn Morris  <rgm@gnu.org>
8173         * calendar/cal-hebrew.el (holiday-hebrew-passover): Fix date
8174         of Yom HaAtzma'ut when it falls on a Monday (rule changed in 2004).
8176 2010-03-01  Kenichi Handa  <handa@m17n.org>
8178         * language/burmese.el (burmese-composable-pattern): Rename from
8179         myanmar-composable-pattern.
8181         * international/characters.el (script-list):
8182         * international/fontset.el (script-representative-chars):
8183         Change myanmar to burmese.
8184         (otf-script-alist): Likewise.
8185         (setup-default-fontset): Likewise.  Re-fix :otf spec.
8187 2010-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8189         * menu-bar.el (menu-bar-manuals-menu): Fix typo.
8191 2010-02-28  Jan Djärv  <jan.h.d@swipnet.se>
8193         * scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654.
8195 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
8197         * net/tramp.el (tramp-handle-write-region): START can be a string.
8198         Take care in the checks.  Reported by Dan Davison
8199         <davison@stats.ox.ac.uk>.
8201 2010-02-28  Michael Albinus  <michael.albinus@gmx.de>
8203         * net/dbus.el (dbus-introspect, dbus-get-property)
8204         (dbus-set-property, dbus-get-all-properties):
8205         Use `dbus-call-method' when noninteractive.  (Bug#5645)
8207 2010-02-28  Chong Yidong  <cyd@stupidchicken.com>
8209         * textmodes/reftex-toc.el (reftex-toc-promote-prepare):
8210         * emacs-lisp/elint.el (elint-add-required-env):
8211         * calendar/icalendar.el (icalendar--add-diary-entry):
8212         * calc/calcalg2.el (math-tracing-integral):
8213         * files.el (recover-session-finish): Use with-current-buffer
8214         instead of save-excursion.
8216 2010-02-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8218         Fix in-buffer completion when after-change-functions modify the buffer.
8219         * minibuffer.el (completion--replace): New function.
8220         (completion--do-completion): Use it and use relative movement.
8222 2010-02-27  Chong Yidong  <cyd@stupidchicken.com>
8224         * international/fontset.el (setup-default-fontset): Fix :otf spec.
8226 2010-02-27  Jeremy Whitlock  <jcscoobyrs@gmail.com>  (tiny change)
8228         * progmodes/python.el (python-pdbtrack-stack-entry-regexp):
8229         Allow the characters _<> in the stack entry (Bug#5653).
8231 2010-02-26  Kenichi Handa  <handa@m17n.org>
8233         * language/burmese.el: Fix entries in composition-function-table.
8234         (myanmar-composable-pattern): New variable.
8236         * international/fontset.el (setup-default-fontset): Add an entry
8237         for myanmar.
8239         * international/characters.el (script-list): Add Myanmar
8240         Extended-A.
8242 2010-02-26  Glenn Morris  <rgm@gnu.org>
8244         * custom.el (custom-initialize-delay): Doc fix.
8246         * mail/sendmail.el (send-mail-function): Autoload the call
8247         to custom-initialize-delay, not otherwise preserved in loaddefs.el.
8249 2010-02-24  Chong Yidong  <cyd@stupidchicken.com>
8251         * files.el (hack-local-variables-filter): For eval forms, also
8252         check safe-local-variable-p (Bug#5636).
8254 2010-02-22  Michael Albinus  <michael.albinus@gmx.de>
8256         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Protect
8257         setting the modes by `ignore-errors'.  It might fail, for example
8258         if the file is not owned by the user but the group.
8259         (tramp-handle-write-region): Ensure, that `tmpfile' is always readable.
8261 2010-02-21  Chong Yidong  <cyd@stupidchicken.com>
8263         * files.el (directory-listing-before-filename-regexp): Use
8264         stricter matching for iso-style dates, to avoid false matches with
8265         date-like filenames (Bug#5597).
8267         * htmlfontify.el (htmlfontify): Doc fix.
8269         * eshell/eshell.el (eshell): Doc fix.
8271         * startup.el (fancy-about-screen): In mode-line, apply
8272         mode-line-buffer-id face only to the buffer name (Bug#5613).
8274 2010-02-20  Kevin Ryde  <user42@zip.com.au>
8276         * progmodes/compile.el (compilation-error-regexp-alist-alist):
8277         In `watcom' anchor regexp to start of line, to avoid slowness
8278         (Bug#5599).
8280 2010-02-20  Eli Zaretskii  <eliz@gnu.org>
8282         * subr.el (remove-yank-excluded-properties): Explain in a comment
8283         why `category' property is removed.
8285 2010-02-19  Chong Yidong  <cyd@stupidchicken.com>
8287         * isearch.el (isearch-update-post-hook, isearch-update): Revert
8288         2010-02-17 change.
8290 2010-02-19  Ulf Jasper  <ulf.jasper@web.de>
8292         * calendar/icalendar.el (icalendar--convert-ordinary-to-ical)
8293         (icalendar--convert-weekly-to-ical)
8294         (icalendar--convert-yearly-to-ical)
8295         (icalendar--convert-block-to-ical)
8296         (icalendar--convert-cyclic-to-ical)
8297         (icalendar--convert-anniversary-to-ical): Take care of time
8298         specifications where hour has 1-digit only (Bug#5549).
8300 2010-02-19  Nick Roberts  <nickrob@snap.net.nz>
8302         * progmodes/gdb-ui.el (gdb-assembler-handler): Accommodate change
8303         of disassemble output in GDB 7.1.
8305 2010-02-19  Glenn Morris  <rgm@gnu.org>
8307         * progmodes/f90.el (f90-electric-insert): Give it a delete-selection
8308         property.  (Bug#5593)
8310 2010-02-18  Sam Steingold  <sds@gnu.org>
8312         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
8314 2010-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8316         Use abbreviated file names in bookmarks (bug#5591).
8317         * bookmark.el (bookmark-maybe-load-default-file): Remove redundant
8318         calls to expand-file-name.
8319         (bookmark-relocate): Use abbreviated file names in bookmarks.
8320         (bookmark-load): Use abbreviated file names in messages.
8322 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
8324         * net/tramp.el (tramp-handle-directory-files): When FULL, do not
8325         expand "." and "..".  Reported by Thierry Volpiatto
8326         <thierry.volpiatto@gmail.com>.
8328 2010-02-18  Michael Albinus  <michael.albinus@gmx.de>
8330         * net/tramp.el (tramp-handle-insert-file-contents): Set always the
8331         permissions of the temporary file to "0600".  In case the remote
8332         file has no read permissions for the owner, there might be
8333         problems otherwise.  Reported by Ole Laursen <olau@iola.dk>.
8335 22010-02-18  Glenn Morris  <rgm@gnu.org>
8337         * emacs-lisp/authors.el (authors-renamed-files-alist):
8338         Add entries for INSTALL.CVS.
8340 2010-02-17  Mark A. Hershberger  <mah@everybody.org>
8342         * vc-bzr.el: Fix typo in Known Bugs section.
8344         * isearch.el (isearch-update-post-hook): New hook.
8345         (isearch-update): Use the new hook.
8347 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
8349         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
8350         Fix errors in copying directories.
8351         (tramp-handle-add-name-to-file, tramp-handle-copy-directory)
8352         (tramp-do-copy-or-rename-file, tramp-handle-delete-directory)
8353         (tramp-handle-delete-file)
8354         (tramp-handle-dired-recursive-delete-directory)
8355         (tramp-handle-write-region): Flush also the cache for the upper
8356         directory.
8358 2010-02-16  Chong Yidong  <cyd@stupidchicken.com>
8360         * simple.el (save-interprogram-paste-before-kill): Doc fix.
8362         * cus-edit.el (hardware): Doc fix.
8364         * man.el (man): Add to external custom group.
8366         * delim-col.el (columns): Move to wp custom group.
8368         * doc-view.el (doc-view): Add to data custom group.
8370         * nxml/nxml-mode.el (nxml-faces): Remove from font-lock-faces group.
8372         * textmodes/flyspell.el (flyspell-word): Obey the offset specified
8373         by ispell-parse-output (Bug#5575).
8375 2010-02-16  Kenichi Handa  <handa@m17n.org>
8377         * international/ja-dic-cnv.el (iso-2022-7bit-short): Delete it.
8378         (skkdic-convert-okuri-ari): Ignore lines starting with '>'.
8379         (skkdic-convert): Use `euc-japan' coding system for writing.
8381 2010-02-16  Glenn Morris  <rgm@gnu.org>
8383         * textmodes/tex-mode.el (tex-bibtex-file): Expand the result of
8384         tex-main-file before using it.  (Bug#5562)
8386 2010-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8388         * emacs-lisp/advice.el (ad-compile-function): Suppress byte-compiler
8389         warnings, since it is annoying for the user to see them each time he
8390         runs the code.
8392 2010-02-15  Michael Albinus  <michael.albinus@gmx.de>
8394         * net/tramp.el (tramp-process-actions, tramp-read-passwd):
8395         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection): Use VEC
8396         instead of PROC for caching "first-password-request".  Otherwise,
8397         new processes would not profit from passwords already entered.
8399         * net/tramp-cache.el (tramp-dump-connection-properties):
8400         Don't save "first-password-request" property.
8402 2010-02-14  Juanma Barranquero  <lekktu@gmail.com>
8404         * outline.el (outline-head-from-level):
8405         * simple.el (with-wrapper-hook):
8406         * emacs-lisp/elint.el (elint-extra-errors, elint-current-buffer)
8407         (elint-defun, elint-buffer-env, elint-top-form-logged)
8408         (elint-unbound-variable):
8409         * textmodes/reftex-toc.el (reftex-toc-newhead-from-alist):
8410         Fix typos in docstrings.
8412 2010-02-14  Michael Albinus  <michael.albinus@gmx.de>
8414         * files.el (insert-directory): When WILDCARD-REGEXP and
8415         FULL-DIRECTORY-P are nil, insert the file entry instead of the
8416         whole directory.  (Bug#5551)
8418         * net/ange-ftp.el (ange-ftp-insert-directory): Insert "  " for
8419         dired's alignment sanity.  (Bug#5516)
8421 2010-02-14  Juri Linkov  <juri@jurta.org>
8423         * man.el (Man-fontify-manpage, Man-cleanup-manpage):
8424         Remove remaining ^H with their preceding chars.  (Bug#5566)
8426 2010-02-13  Glenn Morris  <rgm@gnu.org>
8428         * simple.el (transpose-subr): Give it a doc-string.
8430         * textmodes/paragraphs.el (transpose-paragraphs, transpose-sentences):
8431         Doc fixes.
8433 2010-02-12  Juri Linkov  <juri@jurta.org>
8435         * arc-mode.el (archive-unique-fname): Make directories for nested
8436         archives.  (Bug#5540)
8438 2010-02-12  Juri Linkov  <juri@jurta.org>
8440         * ffap.el (dired-at-point): Fix docstring.  (Bug#5565)
8442 2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8444         * subr.el (copy-overlay): Handle deleted overlays.
8446         * man.el (Man-completion-table): Don't signal an error if we can't run
8447         manual-program (bug#4056).
8449 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
8451         * textmodes/artist.el (artist-mt): Fix typos in docstring.
8453 2010-02-10  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
8455         * info.el (Info-bookmark-jump): Simplify.
8457         * bookmark.el (bookmark-handle-bookmark): Catch the right error.
8458         (bookmark-default-handler): Accept new bookmark field `buffer'.
8460 2010-02-10  Chong Yidong  <cyd@stupidchicken.com>
8462         * iswitchb.el (iswitchb-completions): Revert last change.
8464 2010-02-10  Michael Albinus  <michael.albinus@gmx.de>
8466         * ls-lisp.el (ls-lisp-insert-directory): When WILDCARD-REGEXP and
8467         FULL-DIRECTORY-P are nil, and FILE is absolute, expand it.
8468         This prevents file names like "~/" being listed literally.
8470 2010-02-10  Dan Nicolaescu  <dann@ics.uci.edu>
8472         * term/xterm.el (xterm-maybe-set-dark-background-mode):
8473         Remove dead code.  (Bug#5546)
8475 2010-02-09  Chong Yidong  <cyd@stupidchicken.com>
8477         * eshell/em-ls.el (eshell-ls-applicable): Frob file attributes
8478         correctly (Bug#5548).
8480 2010-02-08  Jose E. Marchesi  <jemarch@gnu.org>
8482         * progmodes/ada-mode.el (ada-in-numeric-literal-p): New function.
8483         (ada-adjust-case): Don't adjust case in hexadecimal number literals.
8485 2010-02-08  Kenichi Handa  <handa@m17n.org>
8487         * international/mule-util.el (with-coding-priority): Add autoload
8488         cookie for putting `lisp-indent-function'.
8490 2010-02-07  Glenn Morris  <rgm@gnu.org>
8492         * progmodes/f90.el (f90-font-lock-keywords-1, f90-font-lock-keywords-2):
8493         Move F2003 named interfaces from keywords-2 to keywords-1, and
8494         use function-name-face rather than constant-face.
8495         Simplify "abstract interface" regexp.
8497 2010-02-07  Chong Yidong  <cyd@stupidchicken.com>
8499         * eshell/esh-util.el (eshell-file-attributes): New optional arg
8500         ID-FORMAT.  Pass it to `file-attributes'.
8502         * eshell/em-ls.el (eshell-do-ls): Use it (Bug#5528).
8504 2010-02-07  sj  <prime.wizard+emacs@gmail.com>  (tiny change)
8506         * faces.el (set-face-attribute): Allow calling
8507         internal-set-lisp-face-attribute with 'unspecified family and
8508         foundry argument (Bug#5536).
8510 2010-02-07  Glenn Morris  <rgm@gnu.org>
8512         * progmodes/f90.el (f90-font-lock-keywords-2)
8513         (f90-looking-at-type-like, f90-looking-at-program-block-end):
8514         Handle F2003 named interfaces.
8516 2010-02-06  Chong Yidong  <cyd@stupidchicken.com>
8518         * progmodes/cc-mode.el (c-common-init): Bind temporary variables
8519         beg and end before calling c-get-state-before-change-functions.
8521 2010-02-06  Dan Nicolaescu  <dann@ics.uci.edu>
8523         * vc-bzr.el (vc-bzr-dir-extra-headers): Disable the pending merges header.
8525 2010-02-05  Juri Linkov  <juri@jurta.org>
8527         * doc-view.el (doc-view-mode):
8528         * image-mode.el (image-mode): Put property mode-class=special.
8529         (Bug#4896)
8531 2010-02-05  Mark A. Hershberger  <mah@everybody.org>
8533         * vc-svn.el (vc-svn-revision-table): New function.
8535 2010-02-05  Michael Albinus  <michael.albinus@gmx.de>
8537         * net/ange-ftp.el (ange-ftp-insert-directory):
8538         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
8539         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
8540         Handle also directories.  (Bug#5478)
8542 2010-02-05  Glenn Morris  <rgm@gnu.org>
8544         * progmodes/f90.el (f90-font-lock-keywords-2): Fix `enum'.
8546 2010-02-05  Chong Yidong  <cyd@stupidchicken.com>
8548         * startup.el (command-line-1): Convert options beginning with a
8549         single dash as well (Bug#5519).
8551 2010-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
8553         Make `initials' completion work for /hh -> /home/horn again (bug#5524).
8554         * minibuffer.el (completion-initials-expand): Only check the presence
8555         of delims *within* the boundaries, since otherwise the / delim is
8556         always found for files.
8558         Fix up various corner case problems.
8559         * doc-view.el (doc-view-last-page-number): New function.
8560         (doc-view-mode, doc-view-last-page, doc-view-goto-page): Use it.
8561         (doc-view-goto-page): Avoid inf-loops when the conversion fails.
8562         (doc-view-kill-proc): Avoid inf-loop in freak cases.
8563         (doc-view-reconvert-doc): Use the new recursive delete-directory.
8564         (doc-view-convert-current-doc): Don't create the resolution.el file
8565         here any more.
8566         (doc-view-pdf/ps->png): Do it here instead.
8567         (doc-view-already-converted-p): Check that resolution.el is present.
8568         (doc-view-pdf->png): Don't rely on doc-view-pdf/ps->png for the few
8569         windows that are not yet showing images.
8571 2010-02-04  Michael Albinus  <michael.albinus@gmx.de>
8573         * dired.el (dired-revert): If DIRED-DIRECTORY is a cons cell, call
8574         `dired-uncache' for every elemnt which is an absolute file name.
8576         * net/tramp.el (tramp-handle-dired-uncache): When DIR is not a
8577         directory, handle its directory component.
8578         (tramp-handle-file-remote-p): Let-bind `tramp-verbose' to 3; this
8579         function is called permanently and creates noise, otherwise.
8581         * net/tramp-imap.el (tramp-imap-handle-insert-directory):
8582         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
8583         Handle the case, FILENAME is not in `default-directory'.  (Bug#5478)
8585 2010-02-04  David Burger  <dburger@google.com>  (tiny change)
8587         * macros.el (apply-macro-to-region-lines):
8588         Minor simplification.  (Bug#5485)
8590 2010-02-04  Glenn Morris  <rgm@gnu.org>
8592         * mail/rmail.el (rmail-show-message-1): Handle malformed
8593         quoted-printable text.  (Bug#5441)
8595         * mail/mail-utils.el (mail-unquote-printable-region): Doc fix.
8597         * simple.el (visual-line-mode): Capitalize lighter.
8599 2010-02-03  John Wiegley  <jwiegley@gmail.com>
8601         * iswitchb.el (iswitchb-completions): Add bookmark files to the
8602         list of files considered for "virtual buffer" completions.
8604 2010-02-03  Michael Albinus  <michael.albinus@gmx.de>
8606         * net/ange-ftp.el (ange-ftp-insert-directory): Parse directory
8607         also in case of (and (not full) (not wildcard)).  This is needed
8608         when dired is called with a list of files, which are not in
8609         `default-directory'.  (Bug#5478)
8611 2010-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8613         * vc-hooks.el (vc-path): Make it an obsolete var, rather than function.
8615 2010-02-02  Juri Linkov  <juri@jurta.org>
8617         * textmodes/ispell.el (ispell-message-text-end): Remove final newline
8618         from unidiff to allow function-line after @@.
8620 2010-02-02  Juri Linkov  <juri@jurta.org>
8622         * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by
8623         '(RCS SCCS) with inverted condition.
8625 2010-02-02  Michael Albinus  <michael.albinus@gmx.de>
8627         * net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
8628         messages.
8630 2010-02-01  Juri Linkov  <juri@jurta.org>
8632         * arc-mode.el (archive-zip-extract): Use `member-ignore-case' to
8633         compare with "pkunzip" and "pkzip" instead of only "pkzip".
8634         In the `archive-extract-by-stdout' branch use `shell-quote-argument'
8635         only when (car archive-zip-extract) is "unzip".  (Bug#5475)
8637 2010-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8639         * doc-view.el (doc-view-new-window-function): Be a bit more defensive.
8640         (doc-view-revert-buffer): New command.
8641         (doc-view-mode-map): Use it.
8643 2010-02-01  Dan Nicolaescu  <dann@ics.uci.edu>
8645         * vc-bzr.el (vc-bzr-dir-extra-headers): Add a header when a
8646         pending merge is detected.
8648 2010-01-31  Juri Linkov  <juri@jurta.org>
8650         * progmodes/grep.el (zrgrep): Call `grep-compute-defaults' at the
8651         beginning of interactive spec like all other grep commands do.
8652         Put "all" in front of "gz".  (Bug#5260)
8654 2010-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
8656         * vc-bzr.el (vc-bzr-after-dir-status): Match another renaming indicator.
8658 2010-01-29  Chong Yidong  <cyd@stupidchicken.com>
8660         * dirtrack.el (dirtrack): Warn instead of signalling error if the
8661         regexp is incorrect (Bug#5476).
8663 2010-01-29  Michael Albinus  <michael.albinus@gmx.de>
8665         * net/tramp.el (tramp-handle-insert-directory): Handle also
8666         symlinks, when FILENAME is not in `default-directory'.
8668 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
8670         * net/ange-ftp.el (ange-ftp-insert-directory): Handle the case,
8671         FILE is not in `default-directory'.  (Bug#5478)
8673         * net/tramp.el (tramp-handle-insert-directory): Simplify handling
8674         of SWITCHES.  Handle the case, FILENAME is not in
8675         `default-directory'.  (Bug#5478)
8676         (tramp-register-file-name-handlers): Add safe-magic property.
8678 2010-01-28  Chong Yidong  <cyd@stupidchicken.com>
8680         * arc-mode.el (archive-zip-extract): Quote the argument passed to
8681         unzip (Bug#5475).
8683 2010-01-28  Nil Geisweiller  <ngeiswei@googlemail.com>  (tiny change)
8685         * progmodes/flymake.el (flymake-allowed-file-name-masks)
8686         (flymake-master-make-header-init): Add other C++ filename masks.
8687         (flymake-find-possible-master-files)
8688         (flymake-check-patch-master-file-buffer): Doc fixes (Bug#5488).
8690 2010-01-28  Michael Albinus  <michael.albinus@gmx.de>
8692         Fix some busybox annoyances.
8694         * net/tramp.el (tramp-wrong-passwd-regexp): Add "Timeout, server
8695         not responding." string.
8696         (tramp-open-connection-setup-interactive-shell): Dump stty
8697         settings.  Enable "neveropen" arg for all `tramp-send-command'
8698         calls.  Handle "=" in variable values properly.
8699         (tramp-find-inline-encoding): Raise an error, when no encoding is
8700         found.
8701         (tramp-wait-for-output): Check, whether PROC buffer is available.
8702         Remove spurious " ^H" sequences, sent by busybox.
8703         (tramp-get-ls-command): Suppress coloring, if possible.
8705 2010-01-28  Glenn Morris  <rgm@gnu.org>
8707         * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
8709         * log-edit.el (log-edit-strip-single-file-name): Add missing
8710         :safe, :group, and :version tags.
8712 2010-01-27  Stephen Berman  <stephen.berman@gmx.net>
8714         * calendar/diary-lib.el (diary-unhide-everything): Handle narrowed
8715         buffers.  (Bug#5477)
8717 2010-01-27  David De La Harpe Golden  <david@harpegolden.net>
8719         * files.el (delete-directory): Handle moving to trash without
8720         first doing recursion (Bug#5436).
8722 2010-01-26  Dan Nicolaescu  <dann@ics.uci.edu>
8724         * vc-hooks.el (vc-path): Mark as obsolete.
8726 2010-01-25  Dan Nicolaescu  <dann@ics.uci.edu>
8728         * vc-annotate.el (vc-annotate-revision-at-line): Compare file
8729         names too.
8731         * vc-bzr.el (vc-bzr-print-log): Use the more compact --line option
8732         for the short log.
8733         (vc-bzr-log-view-mode): Adjust regexp for the above change.
8735 2010-01-25  Mark A. Hershberger  <mah@everybody.org>
8737         * progmodes/python.el: Replace reference to obsolete c-subword-mode.
8739         * vc-bzr.el (vc-bzr-revision-table): New function.
8741 2010-01-25  Eric Hanchrow  <eric.hanchrow@gmail.com>  (tiny change)
8743         * vc-git.el (vc-git-dir-status-goto-stage): Pass --relative to the
8744         diff-index command.  This requires at least git-1.5.5.  (Bug#1589).
8746 2010-01-24  Dan Nicolaescu  <dann@ics.uci.edu>
8748         Remove support for adding --signoff on commit.
8749         Future support will use an incompatible generic mechanism.
8750         * vc-git.el (vc-git-add-signoff): Remove variable.
8751         (vc-git-toggle-signoff): Remove function.
8752         (vc-git-extra-menu-map): Do not bind vc-git-toggle-signoff.
8754         * term/xterm.el (xterm-maybe-set-dark-background-mode): Rename
8755         from xterm-set-background-mode.  Return t if the background mode
8756         was set.
8757         (terminal-init-xterm): Move tty-set-up-initial-frame-faces
8758         earlier, call it again in case the background mode has changed.
8760 2010-01-23  Dmitri Paduchikh  <dpaduch@k66.ru>  (tiny change)
8762         * emacs-lisp/advice.el (ad-set-orig-definition): Fix typo
8763         (Bug#3541).
8765 2010-01-23  Chong Yidong  <cyd@stupidchicken.com>
8767         * emacs-lisp/assoc.el (aelement): Doc fix.
8768         (aput, adelete, amake): Use lexical-let (Bug#5450).
8770 2010-01-23  Stephen Leake  <stephen_leake@member.fsf.org>
8772         * progmodes/ada-mode.el (ada-in-paramlist-p): Pragma syntax
8773         is the same as subprogram call, not declaration.  (Bug#5435).
8775 2010-01-23  Michael Albinus  <michael.albinus@gmx.de>
8777         * net/tramp-smb.el (tramp-smb-conf): New defcustom.
8778         (tramp-smb-maybe-open-connection): Use it.
8780 2010-01-22  Michael Albinus  <michael.albinus@gmx.de>
8782         * net/tramp-imap.el (top): Autoload needed packages.  (Bug#5448)
8784 2010-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
8786         * mail/rmailmm.el (rmail-mime-handle): Don't set the buffer to unibyte
8787         just because we see "encoding: 8bit".
8788         * mail/rmail.el (rmail-show-message-1): Decode the body's QP into bytes.
8790 2010-01-22  Chong Yidong  <cyd@stupidchicken.com>
8792         * isearch.el (isearch-allow-scroll): Doc fix (Bug#5446).
8794 2010-01-22  Eli Zaretskii  <eliz@gnu.org>
8796         * jka-compr.el (jka-compr-load): If load-file is not in
8797         load-history, try its file-truename version.  (bug#5447)
8799 2010-01-21  Alan Mackenzie  <acm@muc.de>
8801         Fix a situation where deletion of a cpp construct throws an error.
8802         * progmodes/cc-engine.el (c-invalidate-state-cache):
8803         Before invoking c-with-all-but-one-cpps-commented-out, check that the
8804         special cpp construct is still in the buffer.
8805         (c-parse-state): Record the special cpp with markers, not numbers.
8807 2010-01-21  Kenichi Handa  <handa@m17n.org>
8809         * textmodes/sgml-mode.el (sgml-maybe-name-self): No need to
8810         process last-command-event, as it is now decoded first (Bug#5380).
8812 2010-01-20  Chong Yidong  <cyd@stupidchicken.com>
8814         * term.el (term-send-raw-meta): Revert 2009-12-04 change (Bug#5330).
8816 2010-01-20  Glenn Morris  <rgm@gnu.org>
8818         * indent.el (tab-always-indent): Fix custom-type.
8820 2010-01-19  Alan Mackenzie  <acm@muc.de>
8822         * progmodes/cc-defs.el: Fix bug#5395: typing '#' in an empty
8823         buffer throws "args out of range".
8824         (c-set-cpp-delimiters, c-clear-cpp-delimiters): Check for EOB
8825         playing the role of delimiter.
8827 2010-01-18  Stephen Leake  <stephen_leake@member.fsf.org>
8829         * progmodes/ada-mode.el: Fix bug#5400.
8830         (ada-matching-decl-start-re): Move into ada-goto-decl-start.
8831         (ada-goto-decl-start): Rename from ada-goto-matching-decl-start; callers
8832         changed.  Delete RECURSIVE parameter; never used.  Improve doc string.
8833         Improve comments in "is" portion.  Handle null procedure declaration.
8834         (ada-move-to-end): Improve doc string.
8836 2010-01-18  Óscar Fuentes  <ofv@wanadoo.es>
8838         * ido.el (ido-cur-list): Initialize to nil.
8839         Remove obsolete information from commentary.
8840         (ido-choice-list): Initialize to nil.
8841         (ido-get-bufname): Reject minibuffers.
8842         (ido-make-buffer-list): If "default" is a nonexistent
8843         buffer, ignore it, as per the function's comment.
8844         (ido-kill-buffer-internal): New function.
8845         (ido-kill-buffer-at-head): Use it.
8846         (ido-visit-buffer): Likewise.
8848 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
8850         * calendar/time-date.el (date-to-time): Doc fix (Bug#5408).
8852 2010-01-18  Juanma Barranquero  <lekktu@gmail.com>
8854         * emacs-lisp/chart.el (chart-file-count, chart-rmail-from):
8855         Fix typos in chart titles.
8857         * whitespace.el (whitespace-style, global-whitespace-newline-mode):
8858         * emacs-lisp/eieio.el (eieio-error-unsupported-class-tags)
8859         (eieio-generic-form, eieio-help-mode-augmentation-maybee, eieio-browse)
8860         (describe-class, eieio-describe-generic, describe-generic):
8861         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click)
8862         (eieio-speedbar-expand):
8863         * emulation/viper-cmd.el (viper-exec-form-in-vi)
8864         (viper-exec-form-in-emacs, viper-harness-minor-mode, viper-ESC)
8865         (viper-repeat, viper-replace-state-exit-cmd, viper-toggle-search-style)
8866         (viper-del-backward-char-in-replace, viper-backward-indent)
8867         (viper-brac-function, viper-register-to-point, viper-submit-report):
8868         * net/tramp.el (tramp-remote-coding-commands):
8869         * term/x-win.el (emacs-session-save, x-menu-bar-open, icon-map-list):
8870         Fix typos in docstrings.
8872 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
8874         * mail/sendmail.el (mail-yank-original): Set the mark if the
8875         specified function for yanking does not do it.
8877 2010-01-17  Dan Nicolaescu  <dann@ics.uci.edu>
8879         * vc.el (with-vc-properties): Deal with directory arguments.  (Bug#5298)
8881         * vc-dir.el (vc-dir-resynch-file): Update the vc-dir header when
8882         resyncing a directory.
8884 2010-01-17  Stephen Leake  <stephen_leake@member.fsf.org>
8886         * progmodes/ada-mode.el: Fix bug#1920.
8887         (ada-ident-re): Delete ., allow multibyte characters.
8888         (ada-goto-label-re): New; matches goto labels.
8889         (ada-block-label-re): New; matches block labels.
8890         (ada-label-re): New; matches both.
8891         (ada-named-block-re): Deleted; callers changed to use
8892         `ada-block-label-re' instead.
8893         (ada-get-current-indent, ada-get-indent-noindent, ada-get-indent-loop):
8894         Use `ada-block-label-re'.
8895         (ada-indent-on-previous-lines): Improve handling of goto labels.
8896         (ada-get-indent-block-start): Special-case block label.
8897         (ada-get-indent-label): Split into `ada-indent-block-label' and
8898         `ada-indent-goto-label'.
8899         (ada-goto-stmt-start, ada-goto-next-non-ws):
8900         Optionally ignore goto labels.
8901         (ada-goto-next-word): Simplify.
8902         (ada-indent-newline-indent-conditional): Insert newline before
8903         trying to fix indentation; doc fix.
8905 2010-01-17  Jay Belanger  <jay.p.belanger@gmail.com>
8907         * calc/calc.el (calc-command-flags): Give it an initial value.
8909 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
8911         * files.el (minibuffer-with-setup-hook):
8912         * textmodes/artist.el (artist-mt, artist-key-undraw-continously)
8913         (artist-key-draw-continously, artist-key-do-continously-continously)
8914         (artist-key-set-point-continously, artist-mouse-draw-continously):
8915         Fix typos in docstrings.
8917 2010-01-16  Lennart Borgman  <lennart.borgman@gmail.com>
8919         * nxml/nxml-mode.el (nxml-extend-after-change-region): Never
8920         return t (Bug#3898).
8922 2010-01-16  Frédéric Perrin  <frederic.perrin@resel.fr>  (tiny change)
8924         * vc-dispatcher.el (vc-do-command): Set LC_MESSAGES, so that we
8925         can parse the output of the external commands (Bug#5279).
8927 2010-01-16  Jari Aalto  <jari.aalto@cante.net>
8929         * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix.
8931 2010-01-16  Chong Yidong  <cyd@stupidchicken.com>
8933         * emacs-lisp/advice.el (ad-add-advice): Doc fix (Bug#5274)
8935         * emacs-lisp/cl-macs.el (defstruct): Doc fix (Bug#5267).
8937         * startup.el (command-line): Remove unused --icon-type arg.
8938         Handle --display arg, passing it to command-line-1 (Bug#5392).
8940 2010-01-16  Mario Lang  <mlang@delysid.org>
8942         * emacs-lisp/chart.el (chart-translate-namezone):
8943         * textmodes/artist.el (artist-compute-popup-menu-table):
8944         Remove duplicated words in doc-strings.
8946 2010-01-15   David Abrahams  <dave@boostpro.com>  (tiny change)
8948         * net/mairix.el (mairix-widget-send-query): Send -1 instead of nil
8949         to mairix-search to suppress threading (Bug#5342).
8951 2010-01-15  Kenichi Handa  <handa@m17n.org>
8953         * international/mule-cmds.el (canonicalize-coding-system-name):
8954         Convert "msXXX", "ibmXXX", "windows-XXX" to "cpXXX" (Bug#5387).
8956 2010-01-15  Glenn Morris  <rgm@gnu.org>
8958         * log-view.el (top-level): Require 'wid-edit.  (Bug#5311)
8960         * wid-edit.el (widget-keymap): Doc fix.
8962         * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
8963         former seems to be more widely accepted by various svn versions.
8965 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
8967         * find-cmd.el (find-constituents):
8968         * vc-arch.el (vc-arch-root):
8969         * window.el (window-body-height, pop-up-frames):
8970         * emacs-lisp/eieio-base.el (eieio-singleton, slot-missing):
8971         * progmodes/ada-stmt.el (ada-if):
8972         * progmodes/gdb-ui.el (gdb-jsonify-buffer):
8973         * textmodes/ispell.el (ispell-grep-options, ispell-dictionary-alist)
8974         (ispell-encoding8-command, ispell-aspell-supports-utf8)
8975         (ispell-last-program-name, ispell-help): Fix typos in docstrings.
8977         * progmodes/flymake.el (flymake-post-syntax-check):
8978         Fix typo in error message.
8980 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
8982         * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
8983         which is always a string.  (Bug#5313)
8985 2010-01-14  Juanma Barranquero  <lekktu@gmail.com>
8987         * progmodes/ada-xref.el (ada-default-prj-properties):
8988         Simplify previous change.
8990 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
8992         * progmodes/ada-xref.el (ada-default-prj-properties):
8993         Default ada_project_path to $ADA_PROJECT_PATH.
8995 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
8997         * progmodes/ada-mode.el (ada-create-keymap):
8998         Override `narrow-to-defun' with `ada-narrow-to-defun'.
9000 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
9002         * progmodes/ada-mode.el: Deal with Ada 2005 "overriding" keyword.
9003         (ada-subprog-start-re, ada-imenu-subprogram-menu-re): Add keyword.
9004         (ada-get-current-indent, ada-imenu-generic-expression)
9005         (ada-which-function): Check for it.
9007 2010-01-14  Stephen Leake  <stephen_leake@member.fsf.org>
9009         * progmodes/ada-mode.el (ada-clean-buffer-before-saving): Make obsolete.
9010         (ada-mode): Don't obey `ada-clean-buffer-before-saving' anymore.
9012 2010-01-14  Glenn Morris  <rgm@gnu.org>
9014         * frame.el (show-trailing-whitespace): Safe if boolean.  (Bug#5312)
9016 2010-01-14  Kenichi Handa  <handa@m17n.org>
9018         * composite.el (auto-composition-mode): Make it a buffer local
9019         variable (permanent-local).
9020         (auto-composition-function): Set the default value to
9021         auto-compose-chars.
9022         (auto-composition-mode): Make it a simple function, not a minor mode.
9023         (global-auto-composition-mode): Likewise.
9024         (turn-on-auto-composition-if-enabled): Delete it.
9026 2010-01-13  Karl Fogel  <kfogel@red-bean.com>
9028         * bookmark.el (bookmark-bmenu-execute-deletions): Doc fix (Bug#5276).
9030 2010-01-12  Michael Albinus  <michael.albinus@gmx.de>
9032         * files.el (copy-directory): Compute target for recursive
9033         directories with identical names.  (Bug#5343)
9035 2010-01-12  Glenn Morris  <rgm@gnu.org>
9037         * mail/emacsbug.el (report-emacs-bug-pretest-address): Set
9038         it to bug-gnu-emacs rather than emacs-pretest-bug.
9040 2010-01-11  Sam Steingold  <sds@gnu.org>
9042         * imenu.el (imenu-default-create-index-function): Detect infinite
9043         loops caused by imenu-prev-index-position-function.
9045 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
9047         * htmlfontify.el (htmlfontify-load-rgb-file)
9048         (htmlfontify-unload-rgb-file, hfy-fallback-colour-values)
9049         (htmlfontify-manual, htmlfontify, hfy-page-header, hfy-page-footer)
9050         (hfy-src-doc-link-style, hfy-src-doc-link-unstyle, hfy-link-extn)
9051         (hfy-link-style-fun, hfy-index-file, hfy-instance-file)
9052         (hfy-html-quote-regex, hfy-init-kludge-hook, hfy-post-html-hooks)
9053         (hfy-default-face-def, hfy-etag-regex, hfy-html-quote-map)
9054         (hfy-etags-cmd-alist-default, hfy-etags-bin, hfy-ignored-properties)
9055         (hfy-which-etags, hfy-etags-cmd, hfy-istext-command, hfy-display-class)
9056         (hfy-optimisations, hfy-tags-cache, hfy-tags-sortl, hfy-tags-rmap)
9057         (hfy-style-assoc, hfy-sheet-assoc, hfy-facemap-assoc, hfy-interq)
9058         (hfy-colour-vals, hfy-default-header, hfy-link-style-string)
9059         (hfy-triplet, hfy-slant, hfy-weight, hfy-combined-face-spec)
9060         (hfy-face-attr-for-class, hfy-face-to-style-i, hfy-size-to-int)
9061         (hfy-flatten-style, hfy-face-to-style, hfy-face-or-def-to-name)
9062         (hfy-face-to-css, hfy-p-to-face, hfy-p-to-face-lennart, hfy-face-at)
9063         (hfy-fontified-p, hfy-merge-adjacent-spans, hfy-buffer)
9064         (hfy-html-enkludge-buffer, hfy-html-quote, hfy-html-dekludge-buffer)
9065         (hfy-force-fontification, htmlfontify-buffer, hfy-dirname)
9066         (hfy-make-directory, hfy-text-p, hfy-mark-tag-names, hfy-relstub)
9067         (hfy-href-stub, hfy-href, hfy-mark-tag-hrefs, hfy-prepare-index-i)
9068         (hfy-prepare-index, hfy-prepare-tag-map, hfy-subtract-maps)
9069         (htmlfontify-run-etags): Fix typos in docstrings and remove superfluous
9070         backslash-quoting from parentheses, etc.
9072 2010-01-11  Chong Yidong  <cyd@stupidchicken.com>
9074         * progmodes/js.el: Autoload javascript-mode alias.
9076 2010-01-11  Juanma Barranquero  <lekktu@gmail.com>
9078         * ffap.el (ffap-shell-prompt-regexp, ffap-all-subdirs, ffap-url-p)
9079         (ffap-alist, ffap-tex-path, ffap-url-at-point, ffap-gopher-regexp)
9080         (ffap-gopher-at-point, ffap-file-at-point, ffap-read-file-or-url)
9081         (ffap-read-url-internal, ffap-menu, ffap-at-mouse):
9082         Fix typos in docstrings.
9083         (ffap-url-regexp): Doc fix.
9084         (ffap-at-mouse): Fix typo in message.
9086 2010-01-11  Glenn Morris  <rgm@gnu.org>
9088         * version.el (emacs-copyright): Set copyright year to 2010.
9090 2010-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9092         * format.el (format-annotate-function): Only set
9093         write-region-post-annotation-function after running to-fn so as not to
9094         affect nested write-region calls (bug#5273).
9096 2010-01-10  Chong Yidong  <cyd@stupidchicken.com>
9098         * Makefile.in (ELCFILES): Add wisent/python-wy.el and
9099         wisent/python.el.
9101 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
9103         * man.el (Man-goto-section): Signal error if the section is not
9104         found (Bug#5317).
9106 2010-01-09  Juanma Barranquero  <lekktu@gmail.com>
9108         * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
9109         URLs with a leading triple slash in the file: scheme.  (Bug#5345)
9111 2010-01-09  Chong Yidong  <cyd@stupidchicken.com>
9113         * progmodes/compile.el: Don't treat compile-command as safe if
9114         compilation-read-command might be nil (Bug#4218).
9116 2010-01-09  Jan Djärv  <jan.h.d@swipnet.se>
9118         * startup.el (command-line-1): Use orig-argi to check for ignored X and
9119         NS options.
9121 2010-01-08  Kenichi Handa  <handa@m17n.org>
9123         * international/fontset.el (build-default-fontset-data):
9124         Exclude characters in scripts kana, hangul, han, or cjk-misc.
9126 2010-01-07  Juanma Barranquero  <lekktu@gmail.com>
9128         * vc-dir.el (vc-dir-prepare-status-buffer): Pass a (fake) filename
9129         to `create-file-buffer' as it expects, not just a buffer name.
9130         (vc-dir-mode): Include the buffer name in `list-buffers-directory',
9131         to help uniquify.  (Bug#3224)
9133 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
9135         * font-setting.el (font-setting-change-default-font): Use user-spec
9136         instead of name.
9138 2010-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
9140         * vc-bzr.el (vc-bzr-after-dir-status): Ignore pending merges.
9142 2010-01-05  Tom Tromey  <tromey@redhat.com>
9144         * progmodes/python.el (python-font-lock-keywords):
9145         Handle qualified decorators (Bug#881).
9147 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
9149         * vc-bzr.el (vc-bzr-working-revision): Fix looking for a revision
9150         in a lightweight checkout.
9152 2010-01-05  Kenichi Handa  <handa@m17n.org>
9154         * language/indian.el (malayalam-composable-pattern): Fix ZWNJ and ZWJ.
9156 2010-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
9158         * vc-bzr.el (vc-bzr-diff): Obey vc-disable-async-diff.
9160 2010-01-04  Dan Nicolaescu  <dann@ics.uci.edu>
9162         * vc-bzr.el (vc-bzr-state-heuristic): Make it work for lightweight
9163         checkouts.  (Bug#618)
9164         (vc-bzr-log-view-mode): Also highlight the author.
9165         (vc-bzr-shelve-map): Change binding for vc-bzr-shelve-apply-at-point.
9166         (vc-bzr-shelve-menu-map):
9167         (vc-bzr-dir-extra-headers): Improve menu and tooltip text.
9168         (vc-bzr-shelve-apply): Make prompt more explicit.
9170 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
9172         * net/browse-url.el (browse-url-encode-url): Don't escape commas.
9173         They are valid characters in URL paths (rfc3986), and at least
9174         Firefox does not understand the encoded version (Bug#3166).
9176 2010-01-02  Daniel Elliott  <danelliottster@gmail.com>  (tiny change)
9178         * progmodes/octave-mod.el (octave-end-keywords)
9179         (octave-block-begin-or-end-regexp, octave-block-match-alist):
9180         Add "end" keyword (Bug#3061).
9181         (octave-end-as-array-index-p): New function.
9182         (calculate-octave-indent): Use it.
9184 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
9186         * bookmark.el: Consistently put the text property on the bookmark name.
9187         (bookmark-bmenu-marks-width): Bump back to 2, to include
9188         annotation marks.
9189         (bookmark-bmenu-hide-filenames): Adjust for above, and put the text
9190         property on the bookmark name, instead of not putting it at all.
9191         (bookmark-bmenu-list): Fix where we put the text property.
9193 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
9195         * bookmark.el (bookmark-bmenu-save): Just depend on the new logic
9196         for showing buffer modified state (as added in the previous change).
9198 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
9200         * bookmark.el: Show modified state of bookmark buffer more accurately.
9201         (bookmark-bmenu-list): Initialize buffer-modified-p properly.
9202         (bookmark-send-edited-annotation): Mark bookmark-alist as modified.
9203         (with-buffer-modified-unmodified): New macro.
9204         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
9205         (bookmark-bmenu-mark, bookmark-bmenu-unmark, bookmark-bmenu-delete):
9206         Use new macro to preserve the buffer modified state.
9208 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
9210         * bookmark.el (bookmark-bmenu-select, bookmark-bmenu-1-window)
9211         (bookmark-bmenu-2-window, bookmark-bmenu-this-window)
9212         (bookmark-bmenu-other-window, bookmark-bmenu-switch-other-window)
9213         (bookmark-bmenu-show-annotation, bookmark-bmenu-edit-annotation)
9214         (bookmark-bmenu-rename, bookmark-bmenu-locate)
9215         (bookmark-bmenu-relocate, bookmark-bmenu-goto-bookmark):
9216         Remove unnecessary calls to `bookmark-bmenu-ensure-position'.
9218 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
9220         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9221         Make the lines in the generated doc string shorter.  (Bug#4668)
9223 2010-01-02  Ryan Yeske  <rcyeske@gmail.com>
9225         * net/rcirc.el: Add follow-link binding (Bug#4738).
9227 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
9229         * Makefile.in (bzr-update): Rename from cvs-update.
9230         (cvs-update): New target for backward compatibility.
9232         * makefile.w32-in (bzr-update): Rename from cvs-update.
9233         (cvs-update): New target for backward compatibility.
9235 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
9237         * bookmark.el: Remove gratuitous gratitude.
9239 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
9241         * bookmark.el (bookmark-bmenu-any-marks): New function.
9242         (bookmark-bmenu-save): Clear buffer modification if no marks.
9244 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
9246         * bookmark.el (bookmark-bmenu-marks-width): Define to 1, not 2.
9247         (bookmark-bmenu-list, bookmark-bmenu-bookmark): Calculate property
9248         positions by using `bookmark-bmenu-marks-width', instead of hardcoding.
9249         This fixes the `bookmark-bmenu-execute-deletions' bug reported here:
9251         http://lists.gnu.org/archive/html/emacs-devel/2009-12/msg00819.html
9252         From: Sun Yijiang <sunyijiang {_AT_} gmail.com>
9253         To: emacs-devel {_AT_} gnu.org
9254         Subject: bookmark.el bug report
9255         Date: Mon, 28 Dec 2009 14:19:16 +0800
9256         Message-ID: 5065e2900912272219y3734fc9fsdaee41167ef99ad7@mail.gmail.com
9258 2010-01-02  Karl Fogel  <kfogel@red-bean.com>
9260         * bookmark.el: Improvements suggested by Drew Adams:
9261         (bookmark-bmenu-ensure-position): New name for
9262         `bookmark-bmenu-check-position'.  Just ensure the position,
9263         don't return any meaningful value.
9264         (bookmark-bmenu-header-height, bookmark-bmenu-marks-width):
9265         New constants.
9267 2010-01-02  Juanma Barranquero  <lekktu@gmail.com>
9269         * bookmark.el (bookmarks-already-loaded): Doc fix (don't use `iff').
9270         (bookmark-yank-point, bookmark-bmenu-check-position):
9271         Fix typos in docstrings.
9272         (bookmark-save-flag, bookmark-bmenu-toggle-filenames)
9273         (bookmark-name-from-full-record, bookmark-get-position)
9274         (bookmark-set-position, bookmark-set, bookmark-handle-bookmark)
9275         (bookmark-delete, bookmark-save, bookmark-save, bookmark-bmenu-mode):
9276         Remove useless quoting of parenthesis, etc. in docstrings.
9278         * ediff-mult.el (ediff-prepare-meta-buffer): Fix typo in help message.
9279         (ediff-append-custom-diff): Fix typo in error message.
9280         (ediff-meta-mark-equal-files): Fix typos in messages.
9282         * mpc.el (mpc-playlist-delete): Fix typo in error messages.
9284         * net/imap-hash.el (imap-hash-make): Doc fix.
9285         (imap-hash-test): Fix typo in error message; reflow docstring.
9286         (imap-hash-p, imap-hash-get, imap-hash-put, imap-hash-make-message)
9287         (imap-hash-count, imap-hash-server, imap-hash-port, imap-hash-ssl)
9288         (imap-hash-mailbox, imap-hash-user, imap-hash-password):
9289         Fix typos in docstrings.
9290         (imap-hash-open-connection): Fix typo in error message.
9292         * play/gomoku.el (gomoku): Fix typos in docstring.
9294         * progmodes/gdb-ui.el (gdb-location-alist): Reflow docstring.
9295         (gdb-jsonify-buffer): Fix typos in docstring.
9296         (gdb-goto-breakpoint): Fix typo in error message.
9297         ("Display Other Windows"): Fix typo in help message.
9298         (gdb-speedbar-expand-node): Fix typo in question.
9300         * progmodes/idlw-help.el (idlwave-help-browse-url-available)
9301         (idlwave-html-system-help-location, idlwave-html-help-location)
9302         (idlwave-help-browser-function, idlwave-help-browser-generic-program)
9303         (idlwave-help-browser-generic-args, idlwave-help-directory)
9304         (idlwave-html-help-is-available, idlwave-help-mode-line-indicator)
9305         (idlwave-help-mode-map, idlwave-help-mode, idlwave-do-context-help)
9306         (idlwave-online-help, idlwave-help-html-link)
9307         (idlwave-help-show-help-frame, idlwave-help-assistant-command):
9308         Fix typos in docstrings.
9309         (idlwave-help-with-source, idlwave-help-find-routine-definition):
9310         Reflow docstrings.
9311         (idlwave-help-assistant-start): Fix typo in error message.
9313         * progmodes/octave-mod.el (octave-mode, octave-electric-semi)
9314         (octave-electric-space): Fix typos in docstrings.
9316 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
9318         * files.el (minibuffer-with-setup-hook): Doc fix (Bug#5149).
9320 2010-01-01  Juri Linkov  <juri@jurta.org>
9322         * comint.el (comint-input-ring-size): Make it a defcustom and
9323         increase the default to 500 (Bug#5148).
9325 2009-12-31  Nick Roberts  <nickrob@snap.net.nz>
9327         Further changes from EMACS_23_1_RC branch (2009-12-29 contd).
9328         * term/x-win.el (x-gtk-stock-map): Map some GUD buttons.
9329         * progmodes/gud.el (gud-menu-map): Add reverse-execution commands.
9331 2009-12-30  Nick Roberts  <nickrob@snap.net.nz>
9333         Show working revision correctly for mercurial.
9334         * vc-hg.el (vc-hg-working-revision): Use hg parent instead of
9335         hg log as suggested by Alex Harsanyi <alexharsanyi@gmail.com>.
9337 2009-12-29  Juanma Barranquero  <lekktu@gmail.com>
9339         Declare some functions for the byte-compiler.
9340         * progmodes/gdb-ui.el (speedbar-change-initial-expansion-list)
9341         (speedbar-timer-fn, speedbar-change-expand-button-char)
9342         (speedbar-delete-subblock, speedbar-center-buffer-smartly): Declare.
9344 2009-12-29  Nick Roberts  <nickrob@snap.net.nz>
9346         This changeset reverts GDB Graphical Interface to use annotations.
9347         * progmodes/gdb-ui.el, progmodes/gud.el: Import from EMACS_23_1_RC.
9349 2009-12-29  Dan Nicolaescu  <dann@ics.uci.edu>
9351         Make vc-dir work on subdirectories of the bzr root.
9352         * vc-bzr.el (vc-bzr-after-dir-status): Add new argument.  Return
9353         file names relative to it.
9354         (vc-bzr-dir-status, vc-bzr-dir-status-files): Pass the bzr root
9355         relative directory to vc-bzr-after-dir-status.
9357 2009-12-28  Tassilo Horn  <tassilo@member.fsf.org>
9359         * font-lock.el (font-lock-refresh-defaults): New function, which
9360         can be used to let font-lock react to external changes in
9361         variables like font-lock-defaults and keywords.
9362         See http://thread.gmane.org/gmane.emacs.devel/118777/focus=118802
9364 2009-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
9366         * vc-rcs.el (vc-rcs-register): Fix registering a specific version.
9368         * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp.
9370 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
9372         Supersede color.diff settings in git log (bug#5211).
9374         * vc-git.el (vc-git-print-log): Pass "--no-color" to log to avoid
9375         escape chars in its output when the user has color.diff set to `always'.
9376         This fix works on git 1.4.2 and newer (released on 2006-08-13).
9378 2009-12-26  Kevin Ryde  <user42@zip.com.au>
9380         * info-look.el (sh-mode): Look for coreutils new "Concept Index"
9381         node.  Keep previous "Index" name to work with past coreutils too.
9383         * man.el (man): Revise docstring a bit to show -a and -l as
9384         examples.  Add -k description since support for it has otherwise
9385         been a secret.  (Further to bug#3717.)
9386         (Man-bgproc-sentinel): When "-k foo" produces no output show error
9387         "no matches" rather than "Can't find manpage", as the latter reads
9388         like -k was interpreted as a page name, which is not so.  (Bug#5431)
9390 2009-12-26  Michael Albinus  <michael.albinus@gmx.de>
9392         * net/tramp.el (tramp-handle-insert-directory): Quote "'" in the
9393         switches.  Check also for //SUBDIRED// line.
9395 2009-12-25  Kenichi Handa  <handa@m17n.org>
9397         * language/indian.el (devanagari-composable-pattern): Fixed to
9398         handle ZWNJ and ZWJ.  Use it in composition-function-table for
9399         Devanagari.
9400         (malayalam-composable-pattern): Fix previous change.
9402 2009-12-23  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
9404         * ps-print.el (ps-face-attributes): It was not returning the
9405         attribute face for faces specified as string.  Reported by harven
9406         <harven@free.fr>.  (Bug#5254)
9407         (ps-print-version): New version 7.3.5.
9409 2009-12-18  Ulf Jasper  <ulf.jasper@web.de>
9411         * calendar/icalendar.el (icalendar--convert-tz-offset):
9412         Fix timezone names.
9413         (icalendar--convert-tz-offset): Fix the "last-day-problem".
9414         (icalendar--add-diary-entry): Remove the trailing blank that
9415         diary-make-entry inserts.
9417 2009-12-17  Michael Albinus  <michael.albinus@gmx.de>
9419         Make `file-expand-wildcards' work for remote files.
9421         * files.el (file-expand-wildcards): In case of remote files, check
9422         only local file name part for wildcards.  Provide feature 'files
9423         and subfeature 'remote-wildcards.  (Bug#5198)
9425         * net/tramp.el (tramp-handle-file-remote-p): Expand file name only
9426         if there is already an established connection.
9427         (tramp-advice-file-expand-wildcards): Remove it.
9429         * net/tramp-compat.el (top): Autoload `tramp-handle-file-remote-p'.
9430         (tramp-advice-file-expand-wildcards): Move from tramp.el.
9431         Activate advice for older GNU Emacs versions.  (Bug#5237)
9433 2009-12-17  Juanma Barranquero  <lekktu@gmail.com>
9435         Some doc fixes (more needed).
9437         * find-cmd.el (find-constituents): Reflow docstring.
9438         (find-cmd, find-prune, find-command): Fix typos in docstrings.
9439         (find-generic): Doc fix.
9441 2009-12-17  Juri Linkov  <juri@jurta.org>
9443         Fix regression from 23.1 to allow multiple modes in Local Variables.
9445         * files.el (hack-local-variables-filter): While ignoring duplicates,
9446         don't take `mode' into account.
9447         (hack-local-variables-filter, hack-dir-local-variables):
9448         Don't remove duplicate `mode' from local-variables-alist (like `eval').
9450 2009-12-17  Juri Linkov  <juri@jurta.org>
9452         Make `dired-diff' safer.  (Bug#5225)
9454         * dired-aux.el (dired-diff): Signal an error when `file' equals to
9455         `current' or when `file' is a directory of the `current' file.
9457 2009-12-17  Andreas Schwab  <schwab@linux-m68k.org>
9459         * emacs-lisp/autoload.el (batch-update-autoloads): Only exclude
9460         unconditionally preloaded files.
9462 2009-12-16  Juri Linkov  <juri@jurta.org>
9464         Revert to old 23.1 logic of using the file at the mark as default.
9465         * dired-aux.el (dired-diff): Use the file at the mark as default
9466         if it's not the same as the current file, and the target dir is
9467         the current dir or the mark is active.  Add the current file
9468         as the arg of `dired-dwim-target-defaults'.  Use the default file
9469         in the prompt.  (Bug#5225)
9471 2009-12-15  Michael Albinus  <michael.albinus@gmx.de>
9473         * net/tramp.el (tramp-echo-mark-marker-length): New defconst.
9474         (tramp-echo-mark, tramp-echoed-echo-mark-regexp): Use it.
9475         (tramp-check-for-regexp): Check also, when an echoing shell stops
9476         to echo sent commands.
9478 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
9480         * Makefile.in: Revert last change (Bug#5191).
9482 2009-12-14  Dan Nicolaescu  <dann@ics.uci.edu>
9484         * vc-hg.el (vc-hg-print-log): Fix argument order.
9485         (vc-hg-working-revision): Make sure the command is executed in a
9486         known environment so that we can parse the output.  (Bug#4417)
9488 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
9490         * progmodes/python.el (python-symbol-completions): Remove text
9491         properties from symbol string before calling python-send-receive.
9493 2009-12-14  Nick Roberts  <nickrob@snap.net.nz>
9495         * progmodes/gdb-mi.el (gdb-frame-handler): Only set gud-lat-frame
9496         when there are values for both file and line.  (Bug#5060)
9498 2009-12-14  Juri Linkov  <juri@jurta.org>
9500         * ediff-ptch.el (ediff-context-diff-label-regexp): Don't match
9501         whitespace after the file name of the first line of unified format,
9502         because git-diff doesn't output whitespace and file modification time
9503         after the file name.
9505 2009-12-14  David Kastrup  <dak@gnu.org>
9507         * info.el (Info-hide-cookies-node): Before hiding a cookie,
9508         check if it already has the `display' property added by
9509         `Info-display-images-node', and not put the `invisible' property
9510         in this case.
9512 2009-12-13  Glenn Morris  <rgm@gnu.org>
9514         * mail/emacsbug.el (message-sort-headers): Define for compiler.
9515         (report-emacs-bug): In message-mode, sort manually before storing
9516         original report text.  (Bug#5178)
9517         Remove superfluous save-excursion.
9519 2009-12-12  Michael Albinus  <michael.albinus@gmx.de>
9521         * net/dbus.el (dbus-property-handler): Filter lambda forms out
9522         when responding to "GetAll" properties.
9524 2009-12-12  Chong Yidong  <cyd@stupidchicken.com>
9526         * simple.el (compose-mail): Remove mail-setup-with-from from
9527         customization checks.
9529 2009-12-12  Eli Zaretskii  <eliz@gnu.org>
9531         * arc-mode.el (archive-rar-summarize): Support Attribute fields in
9532         RAR archives created on Unix systems.
9534 2009-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9536         * minibuffer.el (minibuffer-local-must-match-filename-map): Re-instate
9537         the varalias that was accidentally removed by the 2009-11-19 change
9538         (bug#5186).
9540 2009-12-12  Kenichi Handa  <handa@m17n.org>
9542         * language/indian.el (indian-compose-regexp): New function.
9543         (malayalam-composable-pattern): Fix the pattern.
9544         (composition-function-table): Set malayalam-composable-pattern for
9545         Malayalam characters.
9547 2009-12-11  Chong Yidong  <cyd@stupidchicken.com>
9549         * progmodes/bug-reference.el (bug-reference-map): Bind mouse-2
9550         rather than down-mouse-1, based on follow-link conventions.
9552         * makefile.w32-in: Ensure that Lisp files in CEDET subdirectories
9553         are compiled.
9555 2009-12-11  Michael McNamara  <mac@mail.brushroad.com>
9557         * progmodes/verilog-mode.el (verilog-vmm-begin-re, verilog-vmm-end-re)
9558         (verilog-vmm-statement-re, verilog-ovm-statement-re)
9559         (verilog-defun-level-not-generate-re, verilog-calculate-indent)
9560         (verilog-leap-to-head, verilog-backward-token):
9561         Fix indenting VMM macros.  Reported by Jonathan Ashbrook.
9563 2009-12-11  Wilson Snyder  <wsnyder@wsnyder.org>
9565         * progmodes/verilog-mode.el (verilog-auto-lineup)
9566         (verilog-nameable-item-re): Cleanup user-visible spelling and
9567         documentation errors.  One reported by Gary Delp.
9568         (verilog-submit-bug-report): Mention bug tracking and CC co-author.
9569         (verilog-read-decls): Fix AUTOWIRE with types declared in a
9570         package, bug195.  Reported by Pierre-David Pfister.
9572 2009-12-11  Glenn Morris  <rgm@gnu.org>
9574         * progmodes/cc-engine.el (safe-pos-list): Define for compiler.
9576         * mail/emacsbug.el: No longer require sendmail.
9577         Replace sendmail's `mail-text' by `rfc822-goto-eoh'.  (Bug#5174)
9578         (report-emacs-bug-orig-text): Doc fix.
9579         (report-emacs-bug-send-command, report-emacs-bug-send-hook):
9580         New local variables, to adapt to different mail-user-agents.
9581         (report-emacs-bug): Fix test for a gnu.org address.
9582         Use overlays for emphasis, since font-lock defeats 'face property.
9583         Pretest bugs also end up at the newsgroup these days.
9584         Stop message-mode stripping text properties.
9585         Set and use the new buffer-local variables.
9586         (report-emacs-bug-hook): Add doc-string.
9587         Remove some unnecessary save-excursions and simplify.
9588         Use the appropriate hook and send-command.
9590         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Standardize the
9591         capitalization of some menu entries.
9593 2009-12-10  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
9595         * whitespace.el (whitespace-display-char-on):
9596         Ensure `buffer-display-table' is unique when two or more windows are
9597         visible.  Reported by Martin Pohlack <mp26@os.inf.tu-dresden.de>.
9598         New version 12.1.
9600 2009-12-10  Eli Zaretskii  <eliz@gnu.org>
9602         * arc-mode.el (archive-rar-summarize): Allow between 6 and 7
9603         characters in the Attribute field.
9605 2009-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
9607         * vc-svn.el (vc-svn-after-dir-status): Fix regexp.  (Bug#4741)
9609 2009-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9611         Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).
9612         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
9613         Disregard autoload-excludes.
9614         (update-directory-autoloads): Obey autoload-excludes here instead.
9615         But don't store its contents in no-autoloads and remove entries that
9616         refer to excludes files.
9618 2009-12-10  Glenn Morris  <rgm@gnu.org>
9620         * mail/feedmail.el (top-level): Move require 'mail-utils to start.
9621         (expand-mail-aliases): Define for compiler.
9623         * vc-annotate.el (log-view-vc-backend, log-view-vc-fileset):
9624         Define for compiler.
9626         * mail/emacsbug.el (report-emacs-bug): Use whichever send command is
9627         appropriate for the mail-user-agent in use.
9629 2009-12-09  Michael Albinus  <michael.albinus@gmx.de>
9631         * net/tramp.el (tramp-handle-insert-directory): Suppress error messages.
9633 2009-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
9635         Fix short log parsing and fontification.
9636         * vc-bzr.el (vc-bzr-log-view-mode): Match dot in revision number.
9637         Fix fontification for the [merge] label.
9639 2009-12-09  Vivek Dasmohapatra  <vivek@etla.org>
9641         Drop some properties to avoid surprises (bug#5002).
9642         * htmlfontify.el (hfy-ignored-properties): New defcustom.
9643         (hfy-fontify-buffer): Use it.
9645 2009-12-09  Stefan Monnier  <monnier@iro.umontreal.ca>
9647         Minor cleanup.
9648         * ffap.el (ffap-symbol-value): Replace ffap-soft-value.
9649         Adjust all callers.
9650         (ffap-locate-file): Remove unused arg `dir-ok' and make other
9651         args compulsory.  Adjust callers.
9652         (ffap-gopher-at-point): Remove unused var `name'.
9654         Get rid of the ELCFILES abomination.
9655         * Makefile.in (update-elclist, ELCFILES, compile-last): Remove.
9656         (compile-elcfiles): New phony target.
9657         (compile-main): Compute ELCFILES dynamically.
9658         (compile-clean): New target to remove left-over elc files.
9659         (compile, all): Use it.
9661 2009-12-09  Kenichi Handa  <handa@etlken>
9663         * international/mule-diag.el: Require help-mode instead of help-fns.
9665 2009-12-09  Kenichi Handa  <handa@m17n.org>
9667         * international/mule-cmds.el (ucs-names): Supply sufficiently
9668         fine ranges instead of pre-calculating accurate ranges.
9669         Iterate with bigger gc-cons-threshold.
9671 2009-12-08  Dan Nicolaescu  <dann@ics.uci.edu>
9673         Add support for stashing a snapshot of the current tree.
9674         * vc-git.el (vc-git-stash-snapshot): New function.
9675         (vc-git-stash-map, vc-git-extra-menu-map): Add a mapping for it.
9677 2009-12-08  Jose E. Marchesi  <jemarch@gnu.org>
9679         * play/gomoku.el (gomoku-mode-map): Remap `move-(beginning|end)-of-line'
9680         instead of `(beginning|end)-of-line'.
9682 2009-12-08  Glenn Morris  <rgm@gnu.org>
9684         * vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
9686         * Makefile.in (ELCFILES): Regenerate.
9688 2009-12-07  Juri Linkov  <juri@jurta.org>
9690         Don't lazy-highlight the comint output in history Isearch mode.
9692         * comint.el (comint-history-isearch-search): Instead of
9693         `comint-line-beginning-position', use `comint-after-pmark-p'
9694         to check if point if before the process mark, and go to
9695         `process-mark' in this case.
9697 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9699         * textmodes/tex-mode.el (latex-complete)
9700         (latex-indent-or-complete): Remove.
9701         (latex-mode): Set completion-at-point-functions instead.
9703         Provide a standard completion command and hook it into TAB.
9704         * minibuffer.el (completion-at-point-functions): New var.
9705         (completion-at-point): New command.
9706         * indent.el (indent-for-tab-command): Handle the `complete' behavior.
9707         * progmodes/python.el (python-mode-map): Use completion-at-point.
9708         (python-completion-at-point): Rename from python-partial-symbol and
9709         adjust for use in completion-at-point-functions.
9710         (python-mode): Setup completion-at-point for Python completion.
9711         * emacs-lisp/lisp.el (lisp-completion-at-point): New function
9712         extracted from lisp-complete-symbol.
9713         (lisp-complete-symbol): Use it.
9714         * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use define-derived-mode,
9715         setup completion-at-point for Elisp completion.
9716         (emacs-lisp-mode-map, lisp-interaction-mode-map):
9717         Use completion-at-point.
9718         * ielm.el (ielm-map): Use completion-at-point.
9719         (inferior-emacs-lisp-mode): Setup completion-at-point-functions.
9720         * progmodes/sym-comp.el: Move to...
9721         * obsolete/sym-comp.el: Move from progmodes.
9723 2009-12-07  Eli Zaretskii  <eliz@gnu.org>
9725         Prevent save-buffer in Rmail buffers from using the coding-system
9726         of the current message, and from clobbering the encoding mnemonics
9727         in the mode line (Bug#4623).
9729         * mail/rmail.el (rmail-swap-buffers): Swap encoding and modified
9730         flag, too.
9731         (rmail-message-encoding): New variable.
9732         (rmail-write-region-annotate): Record the encoding of the current
9733         message in rmail-message-encoding.
9734         (rmail-after-save-hook): New function, restores the encoding of
9735         the current message after the message collection is saved.
9737 2009-12-07  Juri Linkov  <juri@jurta.org>
9739         * progmodes/grep.el (grep-read-files): Use `completing-read'
9740         instead of `read-string'.  Set its `collection' arg to
9741         `read-file-name-internal'.  (Bug#4301)
9743 2009-12-07  Juri Linkov  <juri@jurta.org>
9745         Correctly restore original Isearch point.  (Bug#4994)
9747         * isearch.el (isearch-mode): Move `isearch-push-state' after
9748         `(run-hooks 'isearch-mode-hook)'.
9749         (isearch-cancel): When `isearch-push-state-function' is defined,
9750         let-bind `isearch-cmds' to the first state (the last element of
9751         `isearch-cmds') and call `isearch-top-state' (it calls pop-state
9752         function and restores the original point).  Otherwise, move point
9753         to `isearch-opoint'.
9755 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9757         * international/mule-cmds.el (ucs-names): Weed out at compile-time the
9758         chars that don't have names, so the table can be built much faster at
9759         run-time.
9761 2009-12-07  Chong Yidong  <cyd@stupidchicken.com>
9763         * vc-bzr.el (vc-bzr-annotate-command): More elegant form for last
9764         change.  Suggested by David Kastrup.
9766         * simple.el (compose-mail): Check for incompatibilities and warn.
9767         (compose-mail-user-agent-warnings): New option.
9769 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
9771         Support showing a single log entry from vc-annotate.
9772         * vc.el (print-log): Add a new argument: START-REVISION.
9773         (vc-print-log-internal): Add a new optional argument and
9774         pass it to the backend.
9775         (vc-print-log, vc-print-root-log): Adjust callers.
9776         * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a
9777         buffer already displays the requested log entry, use it.
9778         Otherwise display only the log entry in question.
9779         * vc-svn.el (vc-svn-print-log):
9780         * vc-mtn.el (vc-mtn-print-log):
9781         * vc-hg.el (vc-hg-state):
9782         * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION.
9783         (vc-git-show-log-entry): Return t on success.
9784         * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION.
9785         (vc-bzr-show-log-entry): Return t on success.
9786         * vc-rcs.el (vc-rcs-print-log):
9787         * vc-sccs.el (vc-sccs-print-log):
9788         * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
9790 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
9792         * ediff-mult.el (ediff-setup-meta-map, ediff-prepare-meta-buffer):
9793         Add menus to the meta mode.  (Bug#5043)
9795 2009-12-07  Michael Kifer  <kifer@cs.stonybrook.edu>
9797         * ediff-init.el (ediff-event-key): Use event-to-character instead of
9798         event-key.
9800         * ediff.el (ediff-buffers-internal): Add unwind-protect.
9802 2009-12-07  Michael Albinus  <michael.albinus@gmx.de>
9804         Handle prompt rules of ksh in OpenBSD 4.5.  Reported by Raphaël
9805         Berbain <raphael.berbain@gmail.com>.
9807         * net/tramp.el (tramp-end-of-output): Move up.  Use `#' and `$'
9808         characters.
9809         (tramp-initial-end-of-output): New defconst.
9810         (tramp-methods, tramp-find-shell)
9811         (tramp-open-connection-setup-interactive-shell)
9812         (tramp-maybe-open-connection): Use it.
9813         (tramp-shell-prompt-pattern, tramp-wait-for-output): Handle
9814         existence of `#' and `$'.
9816         * net/tramp-fish.el (tramp-fish-maybe-open-connection): Use
9817         `tramp-initial-end-of-output'.
9819 2009-12-07  Dan Nicolaescu  <dann@ics.uci.edu>
9821         Get the background mode from the terminal for xterm, and set
9822         faces accordingly.
9823         * term/xterm.el (xterm-set-background-mode): New function.
9824         (terminal-init-xterm): Use it in case xterm supports background
9825         color queries.  Recompute faces after getting the background
9826         color.
9828 2009-12-07  Ulrich Mueller  <ulm@gentoo.org>
9830         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Put the version
9831         number comment back on its own line, for easier parsing.
9833 2009-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9835         Make it work for non-file buffers (bug#5102).
9836         * doc-view.el (doc-view-current-cache-dir):
9837         Use doc-view-buffer-file-name rather than buffer-file-name.
9838         (doc-view-mode): Use buffer-name when buffer-file-name is nil.
9840 2009-12-06  Óscar Fuentes  <ofv@wanadoo.es>
9842         * vc-bzr.el (vc-bzr-annotate-command): Handle the case where the
9843         author field is too short.
9845 2009-12-06  Dan Nicolaescu  <dann@ics.uci.edu>
9847         * vc-git.el (vc-git-print-log): Handle a limit argument.
9848         Display the short log in graph form and with labels.
9849         (vc-git-log-view-mode): Handle labels.
9851         Make vc-revert change VC state from 'added to 'unregistered.
9852         * vc-git.el (vc-git-revert): Call git reset first.
9854 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
9856         * net/newst-backend.el, net/newst-plainview.el:
9857         * net/newst-reader.el, net/newst-ticker.el:
9858         * net/newst-treeview.el, net/newsticker.el:
9859         Require/provide newst-... (instead of newsticker-...).  (Bug#5096)
9861 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
9863         * log-view.el (log-view-mode-map): Bind "=" to log-view-diff too.
9865         * vc-bzr.el (vc-bzr-annotate-command): Show author in annotation.
9866         Handle empty author field (Bug#4144).  Suggested by Óscar Fuentes.
9867         (vc-bzr-annotate-time, vc-bzr-annotate-extract-revision-at-line):
9868         Update annotation regexp.
9870         * simple.el (beginning-of-visual-line): Constrain to field
9871         boundaries (Bug#5106).
9873 2009-12-06  Ulf Jasper  <ulf.jasper@web.de>
9875         * xml.el (xml-substitute-numeric-entities): Move
9876         newsticker--decode-numeric-entities in newst-backend.el to
9877         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
9878         * net/newst-backend.el (newsticker--parse-generic-feed)
9879         (newsticker--parse-generic-items)
9880         (newsticker--decode-numeric-entities): Move
9881         newsticker--decode-numeric-entities in newst-backend.el to
9882         xml-substitute-numeric-entities in xml.el.  (Bug#5008)
9884 2009-12-06  Daniel Colascione  <dan.colascione@gmail.com>
9886         * progmodes/js.el (js--js-not): Add null to the list of values.
9888 2009-12-06  Chong Yidong  <cyd@stupidchicken.com>
9890         * ansi-color.el (ansi-color-for-comint-mode): Add :version keyword.
9892 2009-12-06  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9894         * textmodes/bibtex.el (bibtex-enclosing-field): Exclude entry
9895         delimiter if it is at the end of the current line.
9896         (bibtex-generate-url-list): Fix docstring.
9898 2009-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9900         * minibuffer.el (minibuffer-complete-and-exit): Don't replace the
9901         minibuffer's content with itself.
9902         Fold the confirm-after-completion case into the `confirm' case.
9903         (completion-pcm-word-delimiters): Add : and / to the delimiters.
9905 2009-12-06  Kevin Ryde  <user42@zip.com.au>
9907         * ffap.el (ffap-rfc-path): Make this a defcustom since
9908         `ffap-rfc-directories' is also a defcustom.  (Bug#4514.)
9910         * info-look.el: Add setup for apropos-mode to use emacs-lisp-mode
9911         manuals, similar to existing setup for help-mode.  (Bug#3913.)
9913 2009-12-05  Juri Linkov  <juri@jurta.org>
9915         Save and restore dired buffer's point positions too.  (Bug#4880)
9917         * dired.el (dired-save-positions): Return in the first element
9918         buffer's position in format (BUFFER DIRED-FILENAME BUFFER-POINT).
9919         Doc fix.
9920         (dired-restore-positions): First restore buffer's position.
9921         While restoring window's positions, check if window still displays
9922         the original buffer.
9924 2009-12-05  Chong Yidong  <cyd@stupidchicken.com>
9926         * bindings.el (complete-symbol): Call semantic-ia-complete-symbol
9927         if possible.
9929         * shell.el (shell): Require ansi-color (Bug#5113).
9931         * ansi-color.el (ansi-color-for-comint-mode): Default to t.
9933         * hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
9935 2009-12-05  Alan Mackenzie  <acm@muc.de>
9937         * progmodes/cc-mode.el (c-before-hack-hook)
9938         (c-postprocess-file-styles): Revert change 2009-07-18T21:03:43Z!acm@muc.de to permit
9939         `c-file-style' to work again.  This reversion restores the current
9940         software to its state in Emacs 23.1.  (Bug#4146)
9942 2009-12-05  Kevin Ryde  <user42@zip.com.au>
9944         * textmodes/sgml-mode.el (sgml-lexical-context): Recognise
9945         comment-start-skip to comment-end-skip as comment (Bug#4781).
9947 2009-12-05  Juri Linkov  <juri@jurta.org>
9949         * info.el (Info-find-node-2): Set `Info-current-subfile' to nil
9950         for virtual nodes.  (Bug#4147)
9951         (Info-find-node-2): Set `Info-current-node-virtual' to nil
9952         when moving from a virtual node.
9953         (Info-mode-menu): Add `Info-virtual-index' to the menu.
9954         (Info-mode): Add `Info-virtual-index' to the docstring.
9956 2009-12-05  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
9958         * textmodes/bibtex.el (bibtex-map-entries): Use marker to keep
9959         track of the buffer position of the end of a BibTeX entry as this
9960         position may change during reformatting.
9961         (bibtex-format-entry): Remove whitespace before processing
9962         numerical fields so that we recognize the latter properly.
9963         (bibtex-reformat): Do not use push which changes the global value
9964         of bibtex-entry-format.
9965         (bibtex-field-braces-alist, bibtex-field-strings-alist)
9966         (bibtex-field-re-init): Replace only space characters by regexp
9967         for whitespace.
9968         (bibtex-generate-url-list, bibtex-cite-matcher-alist): Fix docstring.
9969         (bibtex-initialize): Also update bibtex-strings.
9970         (bibtex-kill-field): Preserve white space at end of entry.
9971         (bibtex-kill-entry, bibtex-yank-pop, bibtex-insert-kill):
9972         Update bibtex-reference-keys.
9974 2009-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9976         * minibuffer.el (completion-pcm--merge-try): Also consider placing
9977         point after a star, if that's the only place where modifications can
9978         make progress.
9980 2009-12-05  Dan Nicolaescu  <dann@ics.uci.edu>
9982         * vc-dir.el (vc-dir): Use the correct markup for showing keymaps
9983         in docstrings.
9985 2009-12-04  Juri Linkov  <juri@jurta.org>
9987         * proced.el (proced): Call `(proced-update t)' to update process
9988         information instead of only running proced-post-display-hook.
9989         (proced-send-signal): Add a leading space to the buffer name
9990         " *Marked Processes*" to make this buffer ephemeral.
9992 2009-12-04  Juri Linkov  <juri@jurta.org>
9994         * dired.el (dired-auto-revert-buffer): New defcustom.
9995         (dired-internal-noselect): Use it.
9997 2009-12-04  Juri Linkov  <juri@jurta.org>
9999         Change roles of modes and functions in image-mode.el (Bug#5062).
10001         * image-mode.el: Replace `image-mode-maybe' with `image-mode'
10002         in `auto-mode-alist'.
10003         (image-mode-previous-major-mode): New variable.
10004         (image-minor-mode-map): Rename from `image-mode-text-map'.
10005         (image-mode): Move graceful error-handling code from
10006         `image-minor-mode' to here.  On errors call `image-mode-as-text'.
10007         (image-minor-mode): Remove all image-handling code.
10008         Replace `image-mode-text-map' with `image-minor-mode-map'.
10009         Check for `image-type' in mode-line format string.
10010         (image-mode-maybe): Make obsolete with an alias to `image-mode'.
10011         (image-mode-as-text): New function with most code from
10012         `image-mode-maybe'.
10013         (image-toggle-display-text): Move code that removes image
10014         properties from `image-toggle-display' to here.
10015         (image-toggle-display-image): New function with code that adds
10016         image properties copied from `image-toggle-display'.
10017         (image-toggle-display): Remove most code with leaving only code
10018         that toggles between `image-mode-as-text' and `image-mode'.
10020 2009-12-04  Ulf Jasper  <ulf.jasper@web.de>
10022         * net/newst-treeview.el
10023         (newsticker--treeview-list-highlight-start): Restored call to
10024         save-excursion: Selected item was stuck.
10025         (newsticker--treeview-list-select): New.
10026         (newsticker--treeview-item-show-text)
10027         (newsticker--treeview-item-show)
10028         (newsticker--treeview-item-update): Use new
10029         newsticker-treeview-item-mode.
10030         (newsticker-treeview-update): Keep current item.
10031         (newsticker-treeview-next-new-or-immortal-item): Doc change.
10032         (newsticker--treeview-first-feed): Doc change.
10033         (newsticker-treeview-list-menu)
10034         (newsticker-treeview-item-menu): Added menu entries.
10035         (newsticker-treeview-item-mode): New.
10037         * net/newst-backend.el (newsticker-customize): Delete other
10038         windows.
10040 2009-12-04  Sam Steingold  <sds@gnu.org>
10042         * log-view.el (log-view-mode-map): "q" calls quit-window,
10043         like in all the other non-self-insert buffers.
10045 2009-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10047         Minor cleanup.
10048         * term.el (term-send-raw, term-send-raw-meta): Use read-key-sequence's
10049         key decoding rather than do it manually via last-input-event +
10050         ascii-character.
10051         (term-exec): Use delete-and-extract-region.
10052         (term-handle-ansi-terminal-messages): Remove unused var `end'.
10053         (term-process-pager): Remove unused var `i'.
10054         (term-dynamic-simple-complete): Make obsolete.
10055         (serial-update-config-menu): Remove unused vars `y' and `str'.
10056         (term-update-mode-line): Remove unused var `temp'.
10058 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
10060         Limit the number of log entries displayed by default.
10061         * vc.el (vc-print-log-internal): Fix check for limit-unsupported.
10062         (vc-print-log, vc-print-root-log): Use vc-log-show-limit when not
10063         using a prefix argument.
10065 2009-12-03  Glenn Morris  <rgm@gnu.org>
10067         * progmodes/idlwave.el (class): Restore still useful declaration.
10069 2009-12-03  Alan Mackenzie  <acm@muc.de>
10071         Enhance `c-parse-state' to run efficiently in "brace deserts".
10073         * progmodes/cc-mode.el (c-basic-common-init):
10074         Call c-state-cache-init.
10075         (c-neutralize-syntax-in-and-mark-CPP): Rename from
10076         c-extend-and-neutralize-syntax-in-CPP.  Mark each CPP construct by
10077         placing `category' properties value 'c-cpp-delimiter at its boundaries.
10079         * progmodes/cc-langs.el (c-before-font-lock-function):
10080         c-extend-and-neutralize-syntax-in-CPP has been renamed
10081         c-neutralize-syntax-in-and-mark-CPP.
10083         * progmodes/cc-fonts.el (c-cpp-matchers): Mark template brackets
10084         with `category' properties now, not `syntax-table' ones.
10086         * progmodes/cc-engine.el (c-syntactic-end-of-macro): A new
10087         enhanced (but slower) version of c-end-of-macro that won't land
10088         inside a literal or on another awkward character.
10089         (c-state-cache-too-far, c-state-cache-start)
10090         (c-state-nonlit-pos-interval, c-state-nonlit-pos-cache)
10091         (c-state-nonlit-pos-cache-limit, c-state-point-min)
10092         (c-state-point-min-lit-type, c-state-point-min-lit-start)
10093         (c-state-min-scan-pos, c-state-brace-pair-desert)
10094         (c-state-old-cpp-beg, c-state-old-cpp-end): New constants and
10095         buffer local variables.
10096         (c-state-literal-at, c-state-lit-beg)
10097         (c-state-cache-non-literal-place, c-state-get-min-scan-pos)
10098         (c-state-mark-point-min-literal, c-state-cache-top-lparen)
10099         (c-state-cache-top-paren, c-state-cache-after-top-paren)
10100         (c-get-cache-scan-pos, c-get-fallback-scan-pos)
10101         (c-state-balance-parens-backwards, c-parse-state-get-strategy)
10102         (c-renarrow-state-cache)
10103         (c-append-lower-brace-pair-to-state-cache)
10104         (c-state-push-any-brace-pair, c-append-to-state-cache)
10105         (c-remove-stale-state-cache)
10106         (c-remove-stale-state-cache-backwards, c-state-cache-init)
10107         (c-invalidate-state-cache-1, c-parse-state-1)
10108         (c-invalidate-state-cache): New defuns/defmacros/defsubsts.
10109         (c-parse-state): Enhance and refactor.
10110         (c-debug-parse-state): Amend to deal with all the new variables.
10112         * progmodes/cc-defs.el (c-<-as-paren-syntax, c-mark-<-as-paren)
10113         (c->-as-paren-syntax, c-mark->-as-paren, c-unmark-<->-as-paren):
10114         modify to use category text properties rather than syntax-table ones.
10115         (c-suppress-<->-as-parens, c-restore-<->-as-parens): New defsubsts
10116         to switch off/on the syntactic paren property of C++ template
10117         delimiters using the category property.
10118         (c-with-<->-as-parens-suppressed): Macro to invoke code with
10119         template delims suppressed.
10120         (c-cpp-delimiter, c-set-cpp-delimiters, c-clear-cpp-delimiters):
10121         New constant/macros which apply category properties to the start
10122         and end of preprocessor constructs.
10123         (c-comment-out-cpps, c-uncomment-out-cpps): Defsubsts which
10124         "comment out" the syntactic value of characters in preprocessor
10125         constructs.
10126         (c-with-cpps-commented-out)
10127         (c-with-all-but-one-cpps-commented-out): Macros to invoke code
10128         with characters in all or all but one preprocessor constructs
10129         "commented out".
10131 2009-12-03  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
10133         * proced.el (proced-filter-alist): Use regexp-quote.
10135 2009-12-03  Michael Albinus  <michael.albinus@gmx.de>
10137         Cleanup.
10138         * eshell/em-unix.el (top): Require 'esh-opt and 'pcomplete.
10139         (eshell/su, eshell/sudo): Require 'tramp.  Fix problems reading
10140         arguments.  Expand `default-directory'.
10142         * net/tramp.el (tramp-handle-file-remote-p): Expand FILENAME for
10143         the benefit of returning an expanded localname.
10144         (tramp-tramp-file-p): Handle the case NAME is not a string.
10146 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
10148         Add support for bzr shelve/unshelve.
10149         * vc-bzr.el (vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
10150         (vc-bzr-extra-menu-map): New variables.
10151         (vc-bzr-extra-menu, vc-bzr-extra-status-menu, vc-bzr-shelve)
10152         (vc-bzr-shelve-apply, vc-bzr-shelve-list)
10153         (vc-bzr-shelve-get-at-point, vc-bzr-shelve-delete-at-point)
10154         (vc-bzr-shelve-apply-at-point, vc-bzr-shelve-menu): New functions.
10155         (vc-bzr-dir-extra-headers): Display shelves.
10157         * vc-bzr.el (vc-bzr-print-log): Deal with nil arguments better.
10159 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10161         * textmodes/bibtex.el (bibtex-complete-internal):
10162         Use completion-in-region.
10163         (bibtex-text-in-field-bounds): Remove unused var `opoint'.
10165 2009-12-03  Dan Nicolaescu  <dann@ics.uci.edu>
10167         Support applying stashes.  Improve UI.
10168         * vc-git.el (vc-git-dir-extra-headers): Add tooltips.
10169         (vc-git-stash-apply, vc-git-stash-pop)
10170         (vc-git-stash-apply-at-point, vc-git-stash-pop-at-point)
10171         (vc-git-stash-menu): New functions.
10172         (vc-git-stash-menu-map): New variable.
10173         (vc-git-stash-map): Add bindings to popup a menu and to apply stashes.
10175 2009-12-03  Glenn Morris  <rgm@gnu.org>
10177         * vc.el (log-view-vc-backend, log-view-vc-fileset): Declare.
10178         (vc-print-log-internal): Fix previous change.
10179         (vc-revert): Correct pluralization.
10181 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10183         * progmodes/make-mode.el (makefile-special-targets-list): No need for
10184         it to be an alist any more.
10185         (makefile-complete): Use completion-in-region.
10187         * progmodes/octave-mod.el (octave-complete-symbol):
10188         Use completion-in-region.
10190         Misc cleanup.
10191         * progmodes/idlwave.el (idlwave-comment-hook): Simplify with `or'.
10192         (idlwave-code-abbrev, idlwave-display-user-catalog-widget)
10193         (idlwave-complete-class): Don't quote lambda.
10194         (idlwave-find-symbol-syntax-table, idlwave-mode-syntax-table)
10195         (idlwave-mode-map): Move initialization into declaration.
10196         (idlwave-action-and-binding): Use backquotes.
10197         (idlwave-in-quote, idlwave-reset-sintern, idlwave-complete-in-buffer):
10198         Simplify.
10199         (idlwave-is-pointer-dereference): Remove unused var `pos'.
10200         (idlwave-xml-create-rinfo-list): Remove unused var `entry'.
10201         (idlwave-convert-xml-clean-sysvar-aliases): Remove unused vars `new',
10202         `parts', and `all-parts'.
10203         (idlwave-xml-create-sysvar-alist): Remove unused var `fields'.
10204         (idlwave-convert-xml-system-routine-info): Remove unused string
10205         `version-string'.
10206         (idlwave-display-user-catalog-widget): Use dolist.
10207         (idlwave-scanning-lib): Declare dynamically-scoped var.
10208         (idlwave-scan-library-catalogs): Remove unused var `flags'.
10209         (completion-highlight-first-word-only): Declare to silence bytecomp.
10210         (idlwave-popup-select): Tighten scope of `resp'.
10211         (idlwave-find-struct-tag): Remove unused var `beg'.
10212         (idlwave-after-load-rinfo-hook): Declare.
10213         (idlwave-sintern-class-info): Remove unused var `taglist'.
10214         (idlwave-find-class-definition): Remove unused var `list'.
10215         (idlwave-complete-sysvar-tag-help): Remove unused var `main-base'.
10216         (idlwave-what-module-find-class): Remove unused var `classes'.
10218 2009-12-03  Juanma Barranquero  <lekktu@gmail.com>
10220         * progmodes/pascal.el: Require CL when compiling (for lexical-let).
10222 2009-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10224         * hippie-exp.el (try-expand-dabbrev-visible): Preserve point in the
10225         buffers visited.  Remove redundant current-buffer-saving.
10227 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
10229         Use completion-in-buffer and remove uses of dynamic scoping.
10230         * progmodes/pascal.el (pascal-str, pascal-all, pascal-pred)
10231         (pascal-buffer-to-use, pascal-flag): Don't declare.
10232         (pascal-func-completion, pascal-type-completion, pascal-var-completion)
10233         (pascal-get-completion-decl, pascal-keyword-completion):
10234         Add `pascal-str' argument, save-excursion,
10235         return the found completions, and don't filter with pascal-pred.
10236         (pascal-completion-cache): New var.
10237         (pascal-completion): Don't switch buffer any more (it was never
10238         necessary).  Don't save-excursion any more (it's done by the called
10239         subroutines).  Use a cache to avoid redundant computations.
10240         Use complete-with-action rather than pascal-completion-response and
10241         let it apply the predicate as well.
10242         (pascal-complete-word): Use completion-in-buffer when
10243         pascal-toggle-completions is nil.
10244         (pascal-show-completions): Don't bind pascal-buffer-to-use since it's
10245         not used any more.
10246         (pascal-comp-defun): Don't change buffer any more.
10247         Use complete-with-action rather than pascal-completion-response and
10248         let it apply the predicate as well.
10249         (pascal-goto-defun): Change buffer before calling pascal-comp-defun
10250         when neded.
10252 2009-12-02  Kenichi Handa  <handa@m17n.org>
10254         * language/indian.el: Include ZWJ and ZWNJ in the patterns to
10255         shape for all Indic scripts.
10257 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
10259         Use completion-in-buffer.
10260         * wid-edit.el (widget-field-text-end): New function.
10261         (widget-field-value-get): Use it.
10262         (widget-string-complete, widget-file-complete)
10263         (widget-color-complete): Use it and completion-in-region.
10264         (widget-complete): Don't narrow the buffer.
10266 2009-12-02  Glenn Morris  <rgm@gnu.org>
10268         * mail/rmail.el (rmail-pop-to-buffer): New function.  (Bug#2282)
10269         (rmail-select-summary): Use rmail-pop-to-buffer.
10270         * mail/rmailsum.el: Replace all pop-to-buffer calls with
10271         rmail-pop-to-buffer, to prevent horizontal splits.
10273         * calendar/diary-lib.el (diary-list-entries): Replace superfluous
10274         save-excursion with save-current-buffer.
10275         Widen before searching.  (Bug#5093)
10276         (diary-list-sexp-entries): Remove superfluous save-excursion.
10278 2009-12-02  Michael Welsh Duggan  <mwd@cert.org>
10280         * woman.el (woman-make-bufname): Handle man-pages with "." in the
10281         name.  (Bug#5038)
10283 2009-12-02  Andreas Politz  <politza@fh-trier.de>  (tiny change)
10285         * ido.el (ido-file-internal): Handle filenames at point that do
10286         not have a directory part.  (Bug#5049)
10288 2009-12-02  Juanma Barranquero  <lekktu@gmail.com>
10290         * mpc.el (mpc-intersection, mpc-host, mpc-songs-playlist)
10291         (mpc-songs-jump-to, mpc-resume): Doc fixes.
10293 2009-12-01  Rob Riepel  <riepel@networking.Stanford.EDU>
10295         * emulation/tpu-extras.el (tpu-cursor-free-mode): Emit message.
10296         (tpu-set-cursor-free, tpu-set-cursor-bound): Don't emit a message
10297         any more.
10299 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10301         * comint.el (comint-insert-input): Ignore clicks to the right of
10302         the field.  Reported by Bob Nnamtrop <bobnnamtrop@gmail.com>.
10304         * vc.el (vc-print-log-internal): Don't wait for the process to
10305         terminate before setting up the major mode.
10307         * pcmpl-unix.el (pcomplete/cd): Complete more than one argument, just
10308         in case.
10310         * pcomplete.el (pcomplete-std-complete): Don't try to complete past
10311         the last element.
10313         * simple.el (normal-erase-is-backspace-mode): Fix thinko in message.
10315 2009-12-01  Glenn Morris  <rgm@gnu.org>
10317         * window.el (window--display-buffer-2): Fix previous changes.
10319 2009-12-01  Chong Yidong  <cyd@stupidchicken.com>
10321         * mail/sendmail.el (mail-setup-hook, mail-send-hook): Doc fixes.
10323 2009-12-01  Glenn Morris  <rgm@gnu.org>
10325         * Makefile.in (ELCFILES): Add mpc.elc.
10327 2009-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10329         * mpc.el: New file.
10331 2009-12-01  Glenn Morris  <rgm@gnu.org>
10333         * window.el (window-to-use): Define for compiler.
10335         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message
10336         consistent with others (no final period).
10338         * mail/rmailmm.el (rmail-mime-handle): Doc fix.
10339         (rmail-mime-show): Downcase the encoding.  (Bug#5070)
10341 2009-12-01  Dan Nicolaescu  <dann@ics.uci.edu>
10343         Make vc-print-log buttons work.
10344         * log-view.el (log-view-mode-map): Inherit from widget-keymap.
10346 2009-11-30  Ryan C. Thompson  <rct@thompsonclan.org>  (tiny change)
10348         * savehist.el (savehist-autosave-interval): Allow setting to nil
10349         through customize.  (Bug#5056)
10351 2009-11-30  Juanma Barranquero  <lekktu@gmail.com>
10353         Fix references to jit-lock properties.
10354         * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords):
10355         Refer to jit-lock-defer-multiline, not jit-lock-multiline.
10356         (perl-font-lock-special-syntactic-constructs):
10357         Quote jit-lock-defer-multiline property.
10359 2009-11-30  Dan Nicolaescu  <dann@ics.uci.edu>
10361         * vc-git.el (vc-git-registered): Call vc-git-root only once.
10363 2009-11-30  Juri Linkov  <juri@jurta.org>
10365         * misearch.el (multi-isearch-search-fun): Always provide a non-nil
10366         value `buffer' of `multi-isearch-next-buffer-current-function'.
10367         Use `(current-buffer)' when `buffer' is nil.
10368         (multi-isearch-next-buffer-from-list): Don't fallback to
10369         `(current-buffer)' when `buffer' is nil.  (Bug#4947)
10371 2009-11-30  Juri Linkov  <juri@jurta.org>
10373         * misearch.el (multi-isearch-read-buffers): Move canonicalization
10374         of buffers with `get-buffer' to `multi-isearch-buffers'.
10375         (multi-isearch-buffers, multi-isearch-buffers-regexp):
10376         Canonicalize BUFFERS with `get-buffer'.  Doc fix.
10377         (multi-isearch-files, multi-isearch-files-regexp): Canonicalize
10378         FILES with `expand-file-name' converting relative file names
10379         to absolute.  Doc fix.  (Bug#4727)
10381 2009-11-30  Juri Linkov  <juri@jurta.org>
10383         * misearch.el (multi-isearch-read-buffers)
10384         (multi-isearch-read-matching-buffers): New functions.
10385         (multi-isearch-buffers, multi-isearch-buffers-regexp):
10386         Use them in the `interactive' spec.  Doc fix.
10387         (multi-isearch-read-files, multi-isearch-read-matching-files):
10388         New functions.
10389         (multi-isearch-files, multi-isearch-files-regexp):
10390         Use them in the `interactive' spec.  Doc fix.  (Bug#4725)
10392 2009-11-30  Juri Linkov  <juri@jurta.org>
10394         * doc-view.el (doc-view-continuous):
10395         Rename from `doc-view-continuous-mode'.
10396         (doc-view-menu): Move "Toggle display" to the top.
10397         Add submenu "Continuous" with radio buttons "Off"/"On"
10398         and "Save as Default".
10399         (doc-view-scroll-up-or-next-page)
10400         (doc-view-scroll-down-or-previous-page)
10401         (doc-view-next-line-or-next-page)
10402         (doc-view-previous-line-or-previous-page): Rename
10403         `doc-view-continuous-mode' to `doc-view-continuous'.  (Bug#4896)
10405 2009-11-30  Juri Linkov  <juri@jurta.org>
10407         * comint.el (comint-mode-map): Rebind `M-r' from
10408         `comint-previous-matching-input' to
10409         `comint-history-isearch-backward-regexp'.
10410         Unbind `M-s' to allow global key binding `M-s'.
10411         Add menu items for `comint-history-isearch-backward' and
10412         `comint-history-isearch-backward-regexp'.  (Bug#3746)
10414 2009-11-30  Juri Linkov  <juri@jurta.org>
10416         * replace.el (perform-replace): Let-bind recenter-last-op to nil.
10417         For def=recenter, replace `recenter' with `recenter-top-bottom'
10418         that is called with `this-command' and `last-command' let-bound
10419         to `recenter-top-bottom'.  When the last `def' was not `recenter',
10420         set `recenter-last-op' to nil.  (Bug#4981)
10422 2009-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10424         Minor cleanup and simplification.
10425         * filecache.el (file-cache-add-directory)
10426         (file-cache-add-directory-recursively)
10427         (file-cache-add-from-file-cache-buffer)
10428         (file-cache-delete-file-regexp, file-cache-delete-directory)
10429         (file-cache-files-matching-internal, file-cache-display): Use dolist.
10430         (file-cache-temp-minibuffer-message): Delete function.
10431         (file-cache-minibuffer-complete): Use minibuffer-message instead.
10433         * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs):
10434         Don't signal an error when bumping into EOB in tr, s, or y.
10436 2009-11-29  Juri Linkov  <juri@jurta.org>
10438         * startup.el (fancy-about-text): Fix wording of Guided Tour.
10439         (Bug#4960)
10441         * descr-text.el (describe-char-unidata-list): Use lowercase name
10442         for "Unicode name" like in other tags.
10444 2009-11-29  Juri Linkov  <juri@jurta.org>
10446         * ediff-util.el (ediff-minibuffer-with-setup-hook):
10447         New compatibility macro.
10448         (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'.
10450 2009-11-29  Juri Linkov  <juri@jurta.org>
10452         Add defcustom to define the cycling order of `recenter-top-bottom'.
10453         (Bug#4981)
10455         * window.el (recenter-last-op): Doc fix.
10456         (recenter-positions): New defcustom.
10457         (recenter-top-bottom): Rewrite to use `recenter-positions'.
10458         (move-to-window-line-top-bottom): Rewrite to use `recenter-positions'.
10460 2009-11-29  Michael Albinus  <michael.albinus@gmx.de>
10462         Improve integration of Tramp and ange-ftp in eshell.
10464         * eshell/em-unix.el (eshell/whoami): Make it a defun but a defalias.
10465         (eshell/su): Flatten args.  Apply better args parsing.  Use "cd".
10466         (eshell/sudo): Flatten args.  Let-bind `default-directory'.
10468         * eshell/esh-util.el (top): Require also Tramp when compiling.
10469         (eshell-directory-files-and-attributes): Check for FTP remote
10470         connection.
10471         (eshell-parse-ange-ls): Let-bind `ange-ftp-name-format',
10472         `ange-ftp-ftp-name-arg', `ange-ftp-ftp-name-res'.
10473         (eshell-file-attributes): Handle ".".  Return `entry'.
10475         * net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
10476         (ange-ftp-directory-files-and-attributes)
10477         (ange-ftp-real-directory-files-and-attributes): New defuns.
10479         * net/tramp.el (tramp-maybe-open-connection): Open the remote
10480         shell with "exec" when possible.  This prevents trailing prompts
10481         in `start-file-process'.
10483 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10485         Try and remove assumptions about point-min==1.
10486         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
10487         (rng-compute-mode-line-string): Show the validation percentage in
10488         terms of the narrowed text, not the widened text.
10489         (rng-do-some-validation): Don't catch internal errors when debugging.
10490         (rng-first-error): Simplify.
10491         (rng-after-change-function): Remove work around.  AFAIK the bug has
10492         been fixed a while ago.
10494         * image-mode.el (image-minor-mode): Exit more gracefully when the image
10495         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
10497         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
10499         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
10500         `cd' doesn't always do it for us (bug#5067).
10502         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
10503         on 2009-10-25 as part of some other change (bug#5067).
10505 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10507         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
10508         `suspicious'.
10509         (byte-compile-warnings): Use byte-compile-warning-types.
10510         (byte-compile-save-excursion): Warn about use of set-buffer right
10511         after save-excursion.
10513         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
10514         the excursion as well.
10516 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
10518         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
10519         providing a Tramp related implementation of "su" and "sudo".
10520         (eshell-unix-initialize): Add "su" and "sudo".
10522 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
10524         * net/socks.el (socks-send-command): Convert binary request to
10525         unibyte before sending.  This fixes mishandling of some port
10526         numbers such as 129.
10528 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10530         * help.el (describe-bindings-internal): Remove `interactive'.
10532         * man.el (Man-completion-table): Trim a terminating "(".
10533         Remove the space between name page a section.
10534         Add the command's description on the `help-echo' property.
10535         Remove `process-connection-type' binding since it's unused by
10536         call-process.
10537         Provide completion for the "<section> <name>" format as well.
10538         (Man-default-man-entry): Remove spurious var shadowing the argument.
10540 2009-11-26  Kevin Ryde  <user42@zip.com.au>
10542         * log-view.el: Add "Keywords: tools", since its other keywords
10543         aren't in finder-known-keywords, and following vc.el.
10545         * sha1.el (sha1-string-external): default-directory "/" in case
10546         otherwise non-existent.  process-connection-type pipe for touch of
10547         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
10549 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10551         Misc coding convention cleanups.
10552         * htmlfontify.el (hfy-init-kludge-hook): Rename from
10553         hfy-init-kludge-hooks.
10554         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
10555         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
10556         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
10557         and push.
10558         (hfy-slant, hfy-weight): Use tables rather than code.
10559         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
10560         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
10561         (hfy-face-attr-for-class): Initialize `face-spec' directly.
10562         (hfy-face-to-css): Remove `nconc' with single arg.
10563         (hfy-p-to-face-lennart): Use `or'.
10564         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
10565         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
10566         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
10567         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
10568         (hfy-force-fontification): Use run-hooks.
10570 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
10572         Various minor fixes.
10573         * htmlfontify.el (hfy-default-header): Add toggle_invis since
10574         Javascript belongs in the header, not the body.
10575         (hfy-javascript): Remove.
10576         (hfy-fontify-buffer): Don't insert it any more.
10577         (hfy-face-at): Handle (face0 face1 face2) style face properties.
10578         Fix bug in invis handling when there were no invis props in a chunk.
10580 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10582         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
10584 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
10586         * finder.el (finder-mode-map): Add a menu.
10588 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
10590         * progmodes/verilog-mode.el (verilog-at-struct-p): Support "signed" and
10591         "unsigned" structs.
10593         (verilog-leap-to-head, verilog-backward-token): Handle "disable
10594         fork" statement better.
10596 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
10598         * progmodes/verilog-mode.el (verilog-auto-insert-lisp)
10599         (verilog-delete-auto, verilog-delete-empty-auto-pair)
10600         (verilog-library-filenames): Fix AUTOINSERTLISP to support insert-file.
10601         Reported by Clay Douglass.
10603         (verilog-auto-inst, verilog-auto-star-safe)
10604         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
10605         Fix removing "// Interfaces" when saving .* expansions.  Reported by
10606         Pierre-David Pfister.
10608 2009-11-26  Glenn Morris  <rgm@gnu.org>
10610         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
10611         the scope.
10613 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
10615         * vc-annotate.el (vc-annotate-revision-previous-to-line):
10616         Really use previous revision.
10618 2009-11-25  Kevin Ryde  <user42@zip.com.au>
10620         * man.el (Man-completion-table): default-directory "/" in case
10621         doesn't otherwise exist.  process-environment COLUMNS=999 so as
10622         not to truncate long names.  process-connection-type pipe to avoid
10623         any chance of hitting the pseudo-tty TIOCGWINSZ.
10624         (man): completion-ignore-case t for friendliness and since man
10625         itself is case-insensitive on the command line.
10626         Further to Bug#3717.
10628         * arc-mode.el: Add "Keywords: files", so the details in its
10629         commentary can be reached from finder-by-keyword.
10630         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
10631         editing mode, but it's comms related and sgml-mode.el has "comm"
10632         on that basis too.
10633         * textmodes/bibtex-style.el: Add "Keywords: tex".
10634         * international/isearch-x.el, international/ja-dic-cnv.el:
10635         * international/ja-dic-utl.el, international/kkc.el:
10636         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
10638 2009-11-25  Juri Linkov  <juri@jurta.org>
10640         * man.el (Man-completion-table): Modify regexp to include
10641         section names to completion strings.  (Bug#3717)
10643 2009-11-25  Juri Linkov  <juri@jurta.org>
10645         Search recursively in gzipped files.  (Bug#4982)
10647         * progmodes/grep.el (grep-highlight-matches): Add new options
10648         `always' and `auto'.  Doc fix.
10649         (grep-process-setup): Check `grep-highlight-matches' for
10650         `auto-detect' to determine the need to compute grep defaults.
10651         Move Windows/DOS specific --colors settings handling
10652         to `grep-compute-defaults'.  Check `grep-highlight-matches'
10653         to get the value of "--color=".
10654         (grep-compute-defaults): Compute `grep-highlight-matches' when it
10655         has the value `auto-detect'.  Move Windows/DOS specific settings
10656         from `grep-process-setup'.
10657         (zrgrep): New command with alias `rzgrep'.
10659 2009-11-25  Juri Linkov  <juri@jurta.org>
10661         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
10662         to nil instead of switching off view-mode.  (Bug#4896)
10664 2009-11-25  Juri Linkov  <juri@jurta.org>
10666         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
10668         * mwheel.el (mwheel-scroll-up-function)
10669         (mwheel-scroll-down-function): New defvars.
10670         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
10671         `scroll-up', and `mwheel-scroll-down-function' instead of
10672         `scroll-down'.
10674         * doc-view.el (doc-view-scroll-up-or-next-page)
10675         (doc-view-scroll-down-or-previous-page): Add optional ARG.
10676         Use this ARG in the call to image-scroll-up/image-scroll-down.
10677         Change `interactive' spec to "P".  Goto next/previous page only
10678         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
10679         SPC/DEL case).  Doc fix.
10680         (doc-view-next-line-or-next-page)
10681         (doc-view-previous-line-or-previous-page): Rename arg to ARG
10682         for consistency.
10683         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
10684         `doc-view-scroll-up-or-next-page', and buffer-local
10685         `mwheel-scroll-down-function' to
10686         `doc-view-scroll-down-or-previous-page'.
10688 2009-11-25  Juri Linkov  <juri@jurta.org>
10690         Provide additional default values (directories at other Dired
10691         windows) via M-n in the minibuffer of some Dired commands.
10693         * dired-aux.el (dired-diff, dired-compare-directories)
10694         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
10695         `minibuffer-default' in `minibuffer-with-setup-hook'.
10696         (dired-dwim-target-directory): Find a window that displays Dired
10697         buffer instead of failing when the next window is not Dired.
10698         Use `get-window-with-predicate' to find for the next Dired window.
10699         (dired-dwim-target-defaults): New function.
10701         * ediff-util.el (ediff-read-file-name):
10702         Use `dired-dwim-target-defaults' to set `minibuffer-default'
10703         in `minibuffer-with-setup-hook'.
10705 2009-11-25  Juri Linkov  <juri@jurta.org>
10707         Provide additional default values (file name at point or at the
10708         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
10710         * minibuffer.el (read-file-name-defaults): New function.
10711         (read-file-name): Reset `minibuffer-default' to nil when
10712         it duplicates initial input `insdef'.
10713         Bind `minibuffer-default-add-function' to lambda that
10714         calls `read-file-name-defaults' in `minibuffer-selected-window'.
10715         (minibuffer-insert-file-name-at-point): New command.
10717         * files.el (file-name-at-point-functions): New defcustom.
10718         (find-file-default): Remove defvar.
10719         (find-file-read-args): Don't use `find-file-default'.
10720         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
10721         to `read-file-name'.
10722         (find-file-literally): Use `read-file-name' with
10723         `confirm-nonexistent-file-or-buffer'.
10725         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
10727         * dired.el (dired-read-dir-and-switches):
10728         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
10729         to `read-file-name'.
10730         (dired-file-name-at-point): New function.
10731         (dired-mode): Add hook `dired-file-name-at-point' to
10732         `file-name-at-point-functions'.
10734 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10736         Really make the *Completions* window soft-dedicated (bug#5030).
10737         * window.el (window--display-buffer-2): Add `dedicated' argument.
10738         (display-buffer): Pass it when needed so the dedicated flag is set
10739         after calling set-window-buffer, which would otherwise reset it.
10741 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10743         * progmodes/meta-mode.el (meta-complete-symbol):
10744         * progmodes/etags.el (complete-tag):
10745         * mail/mailabbrev.el (mail-abbrev-complete-alias):
10746         Use completion-in-region.
10748         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
10749         (dabbrev-completion): Use completion-in-region.
10750         (dabbrev--abbrev-at-point): Simplify regexp.
10752         * abbrev.el (abbrev--before-point): Use word-motion functions
10753         if :regexp is not specified (bug#5031).
10755         * subr.el (string-prefix-p): New function.
10757         * man.el (Man-completion-cache): New var.
10758         (Man-completion-table): Use it.
10760         * vc.el (vc-print-log-internal): Make `limit' optional for better
10761         compatibility (e.g. with vc-annotate.el).
10763 2009-11-24  Kevin Ryde  <user42@zip.com.au>
10765         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
10766         Build value with regexp-opt instead of explicit joining loop.  (Bug#4927)
10768         * emacs-lisp/elint.el (elint-add-required-env): Better error message
10769         when .el source file not found or other error.
10771 2009-11-24  Markus Triska  <markus.triska@gmx.at>
10773         * linum.el (linum-update-window): Ignore intangible (bug#4996).
10775 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10777         Handle the [back] button properly (bug#4979).
10778         * descr-text.el (describe-text-properties): Add a `buffer' argument.
10779         Use help-setup-xref, help-buffer, and with-help-window.
10780         (describe-char): Add `buffer' argument.
10781         Pass proper command to help-setup-xref.  Don't meddle with
10782         help-xref-stack-item directly.
10783         (describe-text-category): Use with-help-window and help-buffer.
10785         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
10786         for the displayed buffer (bug#4887).
10788         * man.el (Man-completion-table): New function.
10789         (man): Use it.
10791 2009-11-24  David Reitter  <david.reitter@gmail.com>
10793         * vc-git.el (vc-git-registered): Use checkout directory (where
10794         .git is) rather than the file's directory and a relative path spec
10795         to work around a bug in git.
10797 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
10799         Improve handling of processes on remote hosts.
10801         * eshell/esh-util.el (eshell-path-env): New defvar.
10802         (eshell-parse-colon-path): New defun.
10803         (eshell-file-attributes): Use `eshell-parse-colon-path'.
10805         * eshell/esh-ext.el (eshell-search-path):
10806         Use `eshell-parse-colon-path'.
10807         (eshell-remote-command): Remove argument HANDLER.
10808         (eshell-external-command): Check for FTP remote connection.
10810         * eshell/esh-proc.el (eshell-gather-process-output):
10811         Use `file-truename', in order to start also symlinked files.
10812         Apply `start-file-process' instead of `start-process'.
10813         Shorten `command' to the local file name part.
10815         * eshell/em-cmpl.el (eshell-complete-commands-list):
10816         Use `eshell-parse-colon-path'.
10818         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
10820         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
10821         to `eshell-directory-change-hook'.
10823 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
10825         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
10826         because it could be enabled automatically if view-read-only is non-nil.
10828 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
10830         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
10831         made on 2009-11-22.
10833 2009-11-24  Glenn Morris  <rgm@gnu.org>
10835         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
10836         deleted variable bookmark-bmenu-bookmark-column.
10838 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10840         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
10842 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
10844         * net/browse-url.el (browse-url-filename-alist): On Windows, add
10845         two slashes to the "file:" prefix.
10846         (browse-url-file-url): De-munge Cygwin filenames before passing
10847         them to Windows browser.
10848         (browse-url-default-windows-browser): Use call-process.
10850 2009-11-23  Juri Linkov  <juri@jurta.org>
10852         Implement DocView Continuous mode.  (Bug#4896)
10853         * doc-view.el (doc-view-continuous-mode): New defcustom.
10854         (doc-view-mode-map): Bind C-n/<down> to
10855         `doc-view-next-line-or-next-page', C-p/<up> to
10856         `doc-view-previous-line-or-previous-page'.
10857         (doc-view-next-line-or-next-page)
10858         (doc-view-previous-line-or-previous-page): New commands.
10860 2009-11-23  Juri Linkov  <juri@jurta.org>
10862         Implement Isearch in comint input history.  (Bug#3746)
10863         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
10864         `isearch-mode-hook'.
10865         (comint-history-isearch): New defcustom.
10866         (comint-history-isearch-backward)
10867         (comint-history-isearch-backward-regexp): New commands.
10868         (comint-history-isearch-message-overlay): New buffer-local variable.
10869         (comint-history-isearch-setup, comint-history-isearch-end)
10870         (comint-goto-input, comint-history-isearch-search)
10871         (comint-history-isearch-message, comint-history-isearch-wrap)
10872         (comint-history-isearch-push-state)
10873         (comint-history-isearch-pop-state): New functions.
10875 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
10877         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
10878         return.
10879         (tramp-handle-make-symbolic-link)
10880         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
10881         Quote file names.
10882         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
10883         (tramp-handle-process-file): Use it.
10885 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10887         * window.el (move-to-window-line-last-op): Remove.
10888         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
10890 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
10892         Make M-r mirror the new cycling behavior of C-l.
10893         * window.el (move-to-window-line-last-op): New var.
10894         (move-to-window-line-top-bottom): New command.
10895         (global-map): Bind M-r move-to-window-line-top-bottom.
10897 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
10899         * dired-x.el (dired-guess-shell-alist-default):
10900         Support xz format.  (Bug#4953)
10902 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
10904         * emulation/viper-cmd.el: Use viper-last-command-char instead of
10905         last-command-char/last-command-event.
10906         (viper-prefix-arg-value): Do correct conversion of event-char for
10907         XEmacs.
10909         * emulation/viper-util.el, emulation/viper.el:
10910         Use viper-last-command-char instead of
10911         last-command-char/last-command-event.
10913         * ediff-init.el, ediff-mult.el, ediff-util.el:
10914         Replace last-command-char and last-command-event
10915         with (ediff-last-command-char) everywhere.
10917         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
10918         created in fundamental mode.
10920         * ediff.el (ediff-version): Revert the change of interactive-p to
10921         called-interactively-p.
10923 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
10925         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
10926         generation from word-movement command names.
10928 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
10930         * cus-start.el (all): Add native condition for font-use-system-font.
10932 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
10934         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
10935         Correct the patch from 2009-11-18.  (Bug#3910)
10937 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
10939         * progmodes/subword.el: Rename from lisp/subword.el.
10941         * subword.el: Rename to progmodes/subword.el.
10943         * Makefile.in (ELCFILES): Adapt to subword.el move.
10945 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10946             Stefan Monnier  <monnier@iro.umontreal.ca>
10948         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
10949         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
10950         (bookmark-bmenu-show-filenames): Use push.
10951         (bookmark-bmenu-hide-filenames): Use local var instead of
10952         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
10953         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
10954         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
10955         filenames now that the bookmark names are always available.
10957 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10959         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
10960         (bookmark-search-pattern): Move and leave unbound.
10961         (bookmark-bmenu-mode-map): Change binding.
10962         (bookmark-read-search-input): Simplify.
10963         Don't use text-char-description.  Don't error on non-char events.
10964         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
10965         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
10966         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
10967         Use a local var for the timer.
10968         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
10969         (i.e. bookmark-bmenu-search).
10971 2009-11-21  Glenn Morris  <rgm@gnu.org>
10973         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
10975 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
10977         * net/browse-url.el (browse-url-default-windows-browser):
10978         Use cygstart for cygwin.
10980 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
10982         * bookmark.el: Formatting and doc fixes only:
10983         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
10984         (bookmark-bmenu-search): Wrap to fit within 80 columns.
10985         Minor grammar and punctuation fixes in doc string.
10986         (bookmark-read-search-input): Adjust to fit within 80 columns.
10988 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
10990         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
10991         (c-backward-into-nomenclature): Adapt to subword renaming.
10993         * subword.el (subword-forward, subword-backward, subword-mark)
10994         (subword-kill, subword-backward-kill, subword-transpose)
10995         (subword-downcase, subword-upcase, subword-capitalize)
10996         (subword-forward-internal, subword-backward-internal):
10997         Rename from forward-subword, backward-subword, mark-subword,
10998         kill-subword, backward-kill-subword, transpose-subwords,
10999         downcase-subword, upcase-subword, capitalize-subword,
11000         forward-subword-internal, backward-subword-internal.
11002 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11004         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
11005         New options.
11006         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
11007         New vars.
11008         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
11009         (bookmark-bmenu-filter-alist-by-regexp)
11010         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
11011         (bookmark-bmenu-search): New command.
11012         (bookmark-bmenu-mode-map): Bind it.
11014 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
11016         * progmodes/cc-cmds.el: declare-functioned forward-subword and
11017         backward-subword to quit the byte-compiler.
11019         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
11021         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
11023         * progmodes/cc-cmds.el (c-update-modeline)
11024         (c-forward-into-nomenclature, c-backward-into-nomenclature):
11025         Refer to subword.el functions instead of cc-subword.el.
11027         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
11028         subword.el functions instead of cc-subword.el.
11030         * progmodes/cc-subword.el: Rename to subword.el.
11031         * subword.el: Rename from progmodes/cc-subword.el.
11032         (subword-mode-map): Rename from c-subword-mode-map.
11033         (subword-mode): Rename from c-subword-mode.
11034         (global-subword-mode): New global minor mode.
11035         (forward-subword): Rename from c-forward-subword.
11036         (backward-subword): Rename from c-backward-subword.
11037         (mark-subword): Rename from c-mark-subword.
11038         (kill-subword): Rename from c-kill-subword.
11039         (backward-kill-subword): Rename from c-backward-kill-subword.
11040         (transpose-subwords): Rename from c-tranpose-subword.
11041         (downcase-subword): Rename from c-downcase-subword.
11042         (capitalize-subword): Rename from c-capitalize-subword.
11043         (forward-subword-internal): Rename from c-forward-subword-internal.
11044         (backward-subword-internal): Rename from c-backward-subword-internal.
11046 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
11048         * vc.el (vc-deduce-fileset): Allow non-state changing operations
11049         from a dired buffer.
11050         (vc-dired-deduce-fileset): New function.
11051         (vc-root-diff, vc-print-root-log): Use it.
11053         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
11054         nil LIMIT argument to vc-print-log-internal.
11056 2009-11-20  Glenn Morris  <rgm@gnu.org>
11058         * Makefile.in (ELCFILES): Regenerate.
11060 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
11062         * calc/calc.el (calc-set-mode-line):
11063         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
11064         (math-format-number): Rename `math-format-complement-signed' to
11065         `math-format-twos-complement'.
11067         * calc/calc-bin.el (math-format-twos-complement): Rename from
11068         math-format-complement-signed.
11069         (calc-radix): Rename `calc-complement-signed-mode' to
11070         `calc-twos-complement-mode'.
11071         (calc-octal-radix, calc-hex-radix): Add an argument for
11072         two's complement.
11074         * calc/calc-embed.el (calc-embedded-mode-vars):
11075         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
11077         * calc/calc-ext.el (calc-init-extensions):
11078         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
11079         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
11081         * calc/calc-units.el (math-build-units-table-buffer):
11082         Let `calc-twos-complement-mode' be nil.
11084         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
11085         entries.
11087         * calc/calc-vec.el (calcFunc-vunpack):
11088         * calc/calc-aent.el (calc-do-calc-eval):
11089         * calc/calc-forms.el (math-format-date):
11090         * calc/calc-graph.el (calc-graph-plot):
11091         * calc/calc-math.el (math-use-emacs-fn):
11092         * calc/calccomp.el (math-compose-expr):
11093         Let `calc-twos-complement-mode' be nil.
11095 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11097         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
11098         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
11099         * minibuffer.el (completion-in-region-functions): New hook.
11100         (completion-in-region): New function.
11101         * emacs-lisp/lisp.el (lisp-complete-symbol):
11102         * pcomplete.el (pcomplete-std-complete): Use it.
11104 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11106         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
11107         (latex-complete-alist): New vars.
11108         (latex-string-prefix-p, latex-complete-bibtex-keys)
11109         (latex-complete-envnames, latex-complete-refkeys)
11110         (latex-complete-data): New functions.
11111         (latex-complete, latex-indent-or-complete): New commands.
11113         * window.el (display-buffer-mark-dedicated): New var.
11114         (display-buffer): Obey it.
11115         * minibuffer.el (minibuffer-completion-help): Use it.
11117         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
11119         * filecache.el (file-cache-add-file): Use push and cons.
11120         (file-cache-delete-file-regexp): Use push.
11121         (file-cache-complete): Use completion-in-region.
11123         * simple.el (with-wrapper-hook): Fix thinko.
11125         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
11126         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
11127         Use with-current-buffer and string-to-number.
11128         (hfy-fallback-colour-values): Use assoc-string.
11129         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
11130         (hfy-face-at): Remove unused var `found-face'.
11131         (hfy-compile-stylesheet): Remove unused var `css'.
11132         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
11133         and `orig-buffer'.
11134         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
11135         Use with-current-buffer.
11136         (hfy-text-p): Use expand-file-name and fewer setq.
11138 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
11140         * htmlfontify.el, hfy-cmap.el: New files.
11142 2009-11-19  Juri Linkov  <juri@jurta.org>
11144         * minibuffer.el (completions-format): New defcustom.
11145         (completion--insert-strings): Implement vertical format.
11147         * simple.el (switch-to-completions): Move point to the first
11148         completion when point was at the beginning of the buffer.
11150 2009-11-19  Juri Linkov  <juri@jurta.org>
11152         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
11154         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
11156 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
11158         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
11159         (mail-signature): Change default to t.
11160         (mail-from-style): Deprecate `system-default' value.
11161         (mail-insert-from-field): For default value of mail-from-style,
11162         default to `angles' unless `angles' needs quoting and `parens'
11163         does not.
11164         (mail-citation-prefix-regexp): Use citation regexp from
11165         message-mode.
11167 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
11169         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
11170         Set variables for computing the prompt for reading password.
11172 2009-11-19  Glenn Morris  <rgm@gnu.org>
11174         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
11176         * textmodes/flyspell.el (sgml-lexical-context): Declare.
11178         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
11179         (newsticker-treeview-listwindow-height): Fix custom type.
11181 2009-11-19  Kenichi Handa  <handa@m17n.org>
11183         * descr-text.el (describe-char-padded-string): Compose with TAB
11184         only if there's a font for CH.
11185         (describe-char): Fix the condition for detecting a trivial composition.
11187 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
11189         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
11190         more accurate version of the regexp.  (Bug#3910)
11192 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
11194         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
11196 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
11198         * font-setting.el (font-use-system-font): Declare for byte-compiler.
11199         (font-setting-change-default-font): Fix typo in docstring.
11201 2009-11-18  Alan Mackenzie  <acm@muc.de>
11203         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
11205 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
11207         * font-setting.el (font-use-system-font): Move ...
11209         * cus-start.el (all): ... to here.
11211 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
11213         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
11214         Don't set `ad-return-value' if `ad-do-it' doesn't.
11216         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
11217         modification time.
11219 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
11221         * menu-bar.el: Put "Use system font" in Option-menu.
11222         (menu-bar-options-save): Add font-use-system-font.
11224         * loadup.el: If feature system-font-setting or font-render-setting is
11225         there, load font-setting.
11227         * Makefile.in (ELCFILES): Add font-settings.el.
11228         * font-setting.el: New file.
11230 2009-11-17  Glenn Morris  <rgm@gnu.org>
11232         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
11234         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
11235         Preserve point in the list buffer.  (Bug#4939)
11236         Use point-at-eol.
11237         (newsticker--treeview-list-update-highlight)
11238         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
11240 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
11242         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
11243         Remove.
11245         * calc/calc-ext.el (calc-init-extensions): Remove references to
11246         symclip.
11248         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
11250         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
11251         * calc/calc-help.el (calc-b-prefix-help): Remove references to
11252         `calc-symclip'.
11254 2009-11-16  Kevin Ryde  <user42@zip.com.au>
11256         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
11257         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
11259         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
11260         (lm-keywords-list): Allow comma-only separator like "foo,bar".
11261         Ignore trailing spaces by omit-nulls to split-string (fixing
11262         regression from Emacs 21 due to the incompatible split-string
11263         change).  (Bug #4928.)
11265 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
11267         * vc.el (vc-log-show-limit): Default to 2000.
11268         (vc-print-log-internal): Insert buttons to request more entries
11269         when limiting the output.
11271         * vc-sccs.el (vc-sccs-print-log):
11272         * vc-rcs.el (vc-rcs-print-log):
11273         * vc-cvs.el (vc-cvs-print-log):
11274         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
11275         LIMIT is non-nil.
11277 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
11279         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
11280         error when `tramp-gvfs-dbus-event-vector' is set.
11281         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
11283 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11285         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
11287 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
11289         * net/dbus.el (dbus-unregister-service): New defun.
11290         (dbus-register-property): Register the handlers of
11291         "org.freedesktop.DBus.Properties" for SERVICE.
11292         (dbus-property-handler): Fix docstring.
11294 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11296         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
11297         Quote doc string reference in defvaralias as it is not in special form.
11298         (byte-compile-output-docform): Doc fix.
11300 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
11302         * calc/calc.el (math-2-word-size, math-half-2-word-size)
11303         (calc-complement-signed-mode): New variables.
11304         (calc-set-mode-line): Add indicator for twos-complements.
11305         (math-format-number): Format twos-complement notation.
11307         * calc/calc-bin.el (calc-word-size): Reset the variables
11308         `math-2-word-size' and `math-half-2-word-size'.
11309         (math-format-complement-signed, math-symclip, calcFunc-symclip)
11310         (calc-symclip): New functions.
11312         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
11314         * calc/calc-embed.el (calc-embedded-mode-vars):
11315         Add `calc-complement-signed-mode' to the list of modes.
11317         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
11318         (calc-b-oper-keys): Add `calc-symclip' to list.
11320         * calc/calc-ext.el (math-read-number-fancy): Read complement
11321         signed numbers.
11322         (calc-init-extensions): Add binding for `calc-symclip'.
11323         Add autoload for `calcFunc-symclip' and `calc-symclip'.
11325         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
11326         `calc-symclip'.
11327         (calc-modes-menu): Add item for twos complement mode.
11329         * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'.
11331 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
11333         * register.el (jump-to-register, insert-register): Handle Semantic
11334         tags.  From commented-out advice in semantic/senator.el.
11336 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
11338         * vc.el (vc-log-show-limit): New variable.
11339         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
11340         when using a prefix argument.
11341         (vc-print-log-internal): Add new argument LIMIT.
11343         * vc-svn.el (vc-svn-print-log):
11344         * vc-mtn.el (vc-mtn-print-log):
11345         * vc-hg.el (vc-hg-print-log):
11346         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
11347         pass it to the log command when set.  Make the BUFFER argument
11348         non-optional.
11350         * vc-sccs.el (vc-sccs-print-log):
11351         * vc-rcs.el (vc-rcs-print-log):
11352         * vc-git.el (vc-git-print-log):
11353         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
11354         ignore it.  Make the BUFFER argument non-optional
11356         * bindings.el (mode-line-buffer-identification): Do not purecopy.
11358 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
11360         * dired.el (dired-mode-map): Move encryption items to "Operate"
11361         menu (Bug#4703).
11363         * strokes.el (strokes-update-window-configuration): Make strokes
11364         buffer current before erasing (Bug#4906).
11366 2009-11-15  Juri Linkov  <juri@jurta.org>
11368         * simple.el (set-mark-default-inactive): Add :type, :group
11369         and :version.  (Bug#4876)
11371 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
11373         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
11374         (archive-unique-fname): ... here.  (Bug#4929)
11376 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11378         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
11379         with a real fix.
11381         * novice.el (disabled-command-function): Add useful args.
11382         Setup the help buffer so that [back] works.
11383         Remove redundant call to help-mode.
11384         (disabled-command-function): Use `case'.
11385         (en/disable-command): New function extracted from enable-command.
11386         (enable-command, disable-command): Use it.
11388 2009-11-14  Glenn Morris  <rgm@gnu.org>
11390         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
11391         constants.  (Bug#4913)
11393         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
11395 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
11397         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
11398         defined in C that have no doc-strings.  (Bug#1063)
11400 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
11402         * cus-edit.el (data, files):
11403         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
11405 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
11407         * simple.el (shell-command): Doc fix (Bug#4891).
11409         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
11411 2009-11-14  Glenn Morris  <rgm@gnu.org>
11413         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
11414         statements for vc-diff, emerge-quit, and rmail-cease-edit.
11415         If they are already loaded, eval-after-load will do the right thing.
11417         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
11418         compiling.
11420         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
11422         * simple.el (x-selection-owner-p): Declare.
11423         (read-mail-command): Use custom radio type rather than choice.
11424         (completion-no-auto-exit): Doc fix.
11426         * custom.el (defgroup):
11427         * epg-config.el (epg): Doc fixes.
11429 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
11431         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
11432         * international/ccl.el (define-ccl-program): Do not purecopy the
11433         docstring, defconst does it anyway.
11435 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
11437         * add-log.el (add-change-log-entry): Avoid displaying the changelog
11438         a second time.
11440         * x-dnd.el (x-dnd-maybe-call-test-function):
11441         * window.el (split-window-vertically):
11442         * whitespace.el (whitespace-help-on):
11443         * vc-rcs.el (vc-rcs-consult-headers):
11444         * userlock.el (ask-user-about-lock-help)
11445         (ask-user-about-supersession-help):
11446         * type-break.el (type-break-force-mode-line-update):
11447         * time-stamp.el (time-stamp-conv-warn):
11448         * terminal.el (te-set-output-log, te-more-break, te-filter)
11449         (te-sentinel, terminal-emulator):
11450         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
11451         (term-write-input-ring, term-check-source, term-start-output-log):
11452         (term-display-buffer-line, term-dynamic-list-completions):
11453         (term-ansi-make-term, serial-term):
11454         * subr.el (selective-display):
11455         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
11456         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
11457         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
11458         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
11459         (speedbar-remove-localized-speedbar-support)
11460         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
11461         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
11462         (speedbar-buffers-line-directory):
11463         * simple.el (shell-command-on-region, append-to-buffer)
11464         (prepend-to-buffer):
11465         * shadowfile.el (shadow-save-todo-file):
11466         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
11467         (scroll-bar-maybe-set-window-start):
11468         * sb-image.el (speedbar-image-dump):
11469         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
11470         (load-save-place-alist-from-file):
11471         * ps-samp.el (ps-print-message-from-summary):
11472         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
11473         (ps-background-image, ps-begin-job, ps-do-despool):
11474         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
11475         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
11476         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
11477         (pr-call-process, pr-file-list, pr-interface-save):
11478         * novice.el (disabled-command-function)
11479         (enable-command, disable-command):
11480         * mouse.el (mouse-buffer-menu-alist):
11481         * mouse-copy.el (mouse-kill-preserving-secondary):
11482         * macros.el (kbd-macro-query):
11483         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
11484         * informat.el (batch-info-validate):
11485         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
11486         * hippie-exp.el (try-expand-dabbrev-visible):
11487         * help-mode.el (help-make-xrefs):
11488         * help-fns.el (describe-variable):
11489         * generic-x.el (bat-generic-mode-run-as-comint):
11490         * finder.el (finder-mouse-select):
11491         * find-dired.el (find-dired-sentinel):
11492         * filesets.el (filesets-file-close):
11493         * files.el (list-directory):
11494         * faces.el (list-faces-display, describe-face):
11495         * facemenu.el (list-colors-display):
11496         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
11497         * epg.el (epg--process-filter, epg-cancel):
11498         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
11499         (epa--read-signature-type):
11500         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
11501         (emerge-file-names):
11502         * ehelp.el (electric-helpify):
11503         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
11504         * ediff-vers.el (rcs-ediff-view-revision):
11505         * ediff-util.el (ediff-setup):
11506         * ediff-mult.el (ediff-append-custom-diff):
11507         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
11508         (ediff-wordify):
11509         * echistory.el (Electric-command-history-redo-expression):
11510         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
11511         * disp-table.el (describe-display-table):
11512         * dired.el (dired-find-buffer-nocreate):
11513         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
11514         * dabbrev.el (dabbrev--same-major-mode-p):
11515         * chistory.el (list-command-history):
11516         * apropos.el (apropos-documentation):
11517         * allout.el (allout-obtain-passphrase):
11518         (allout-copy-exposed-to-buffer):
11519         (allout-verify-passphrase): Use with-current-buffer.
11521 2009-11-13  Glenn Morris  <rgm@gnu.org>
11523         * Makefile.in (ELCFILES): Regenerate.
11525 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
11527         * net/dbus.el (dbus-registered-objects-table): Rename from
11528         `dbus-registered-functions-table', because it contains also properties.
11529         (dbus-unregister-object): Unregister also properties.
11530         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
11531         Use a timeout of 500 msec, in order to not block.
11532         (dbus-register-property, dbus-property-handler): New defuns.
11534 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
11536         * simple.el (minibuffer-default-add-completions): Drop deprecated
11537         4th arg.
11539 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
11541         * textmodes/artist.el (artist-mouse-choose-operation):
11542         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
11543         menus.  Bug noticed by Eli Zaretskii <eliz@gnu.org>.
11544         (artist-compute-up-event-key): New function.
11545         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
11547 2009-11-13  Kenichi Handa  <handa@m17n.org>
11549         * language/japan-util.el: Make sure that the value of jisx0208
11550         property is jisx0208 character.
11552 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
11554         * international/mule.el (auto-coding-regexp-alist): Only purecopy
11555         car or each item, not the whole list.
11557 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11559         * minibuffer.el (minibuffer-completion-help):
11560         Use minibuffer-hide-completions.
11562 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
11564         * dired.el (dired-save-positions, dired-restore-positions): New funs.
11565         (dired-revert): Use them (bug#4880).
11567 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
11569         * tooltip.el (tooltip-frame-parameters): Undo previous change.
11571 2009-11-12  Juri Linkov  <juri@jurta.org>
11573         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
11574         New functions.
11575         (find-file-literally-at-point): Alias of `ffap-literally'.
11577 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
11579         * textmodes/ispell.el (ispell-skip-region-alist):
11580         * textmodes/css-mode.el (auto-mode-alist):
11581         * progmodes/compile.el (auto-mode-alist):
11582         * international/mule.el (ctext-non-standard-encodings-alist)
11583         (ctext-non-standard-encodings-regexp):
11584         * simple.el (shell-command-switch, text-read-only):
11585         * replace.el (occur-mode-map):
11586         * paths.el (rmail-file-name):
11587         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
11588         * find-file.el (ff-special-constructs):
11589         * files.el (file-name-handler-alist):
11590         * composite.el: Purecopy strings.
11592         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
11594 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
11596         * widget.el (define-widget): Purecopy the docstring.
11597         * international/mule-cmds.el (charset): Do not purecopy the
11598         docstring here, define-widget does it.
11600         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
11601         * textmodes/bibtex-style.el (auto-mode-alist):
11602         * progmodes/inf-lisp.el (inferior-lisp-prompt):
11603         * progmodes/compile.el (compile-command):
11604         * language/korea-util.el (default-korean-keyboard):
11605         * international/mule-conf.el (file-coding-system-alist):
11606         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
11607         * tooltip.el (tooltip-frame-parameters):
11608         * newcomment.el (comment-end, comment-padding):
11609         * dired.el (dired-trivial-filenames):
11610         * comint.el (comint-file-name-prefix): Purecopy initial values.
11612 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
11614         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
11615         (tramp-advice-minibuffer-electric-tilde): Unload advices via
11616         `tramp-unload'.
11617         (tramp-advice-make-auto-save-file-name)
11618         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
11619         after removing the advice.
11621 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
11623         * progmodes/grep.el (grep-regexp-alist):
11624         * international/mule-cmds.el (iso-2022-control-alist):
11625         * emacs-lisp/timer.el (timer-duration-words):
11626         * subr.el (version-separator, version-regexp-alist):
11627         * minibuffer.el (completion-styles-alist):
11628         * faces.el (face-attribute-name-alist, list-faces-sample-text):
11629         Change defvars to defconsts.
11631         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
11632         * loadup.el ("international/mule-conf"): Load the byte compiled version.
11633         * international/mule-conf.el: Allow to be byte compiled.
11635         * international/mule.el (define-charset): Purecopy props.
11636         (load-with-code-conversion): Purecopy doc string and file name.
11637         (put-charset-property): Purecopy strings.
11638         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
11640         * international/mule-cmds.el (register-input-method): Purecopy arguments.
11641         (define-char-code-property): Correctly purecopy the table.
11643         * international/ccl.el (define-ccl-program): Purecopy the docstring.
11645         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
11647         * subr.el (add-hook): Purecopy strings.
11648         (eval-after-load): Purecopy load-history-regexp and the form.
11650         * custom.el (custom-declare-group): Purecopy load-file-name.
11652         * subr.el (menu-bar-separator): New defconst.
11653         * net/eudc.el (eudc-tools-menu):
11654         * international/mule-cmds.el (set-coding-system-map)
11655         (mule-menu-keymap):
11656         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
11657         * vc-hooks.el (vc-menu-map):
11658         * replace.el (occur-mode-map):
11659         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
11660         (menu-bar-edit-menu, menu-bar-goto-menu)
11661         (menu-bar-custom-menu, menu-bar-showhide-menu)
11662         (menu-bar-options-menu, menu-bar-tools-menu)
11663         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
11664         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
11665         (menu-bar-help-menu):
11666         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
11667         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
11669         * term/x-win.el (x-gtk-stock-map):
11670         * progmodes/vera-mode.el (auto-mode-alist):
11671         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
11672         (inferior-lisp-program, inferior-lisp-load-command):
11673         * progmodes/hideshow.el (hs-special-modes-alist):
11674         * progmodes/gud.el (same-window-regexps):
11675         * progmodes/grep.el (grep-program, find-program, xargs-program):
11676         * net/telnet.el (same-window-regexps):
11677         * net/rlogin.el (same-window-regexps):
11678         * language/ethiopic.el (font-ccl-encoder-alist):
11679         * vc-sccs.el (vc-sccs-master-templates):
11680         * vc-rcs.el (vc-rcs-master-templates):
11681         * subr.el (cl-assertion-failed):
11682         * simple.el (next-error-overlay-arrow-position):
11683         * lpr.el (lpr-command):
11684         * locate.el (locate-ls-subdir-switches):
11685         * info.el (same-window-regexps, info)
11686         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
11687         * image-mode.el (image-mode, auto-mode-alist):
11688         * hippie-exp.el (hippie-expand-ignore-buffers):
11689         * format.el (format-alist):
11690         * find-dired.el (find-ls-subdir-switches, find-grep-options)
11691         (find-name-arg):
11692         * facemenu.el (facemenu-keybindings):
11693         * dired.el (dired-listing-switches, dired-chown-program):
11694         * diff.el (diff-switches, diff-command):
11695         * cus-edit.el (same-window-regexps):
11696         * bindings.el (mode-line-mule-info)
11697         (mode-line-buffer-identification): Purecopy strings.
11699 2009-11-11  Juri Linkov  <juri@jurta.org>
11701         * simple.el (dired-get-filename) <declare-function>:
11702         Tell the byte-compiler about dired-get-filename.
11703         (shell-command): In Dired mode, get filename from the current line
11704         as the default value.
11706 2009-11-10  Glenn Morris  <rgm@gnu.org>
11708         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
11709         * calendar/holidays.el, progmodes/cperl-mode.el:
11710         Update x-popup-menu declarations.
11712         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
11713         (list-load-path-shadows): Use dolist.
11714         (list-load-path-shadows): Use with-current-buffer.
11716 2009-11-10  Juri Linkov  <juri@jurta.org>
11718         * minibuffer.el (read-file-name): Support a list of default values
11719         in `default-filename'.  Use the first file name where only one
11720         element is required.  Doc fix.
11722 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
11724         * net/dbus.el (dbus-unregister-object): Release service, if no
11725         other method is registered for it.
11727 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
11729         * bookmark.el (bookmark-completing-read): Sort bookmark names if
11730         bookmark-sort-flag is non-nil (Bug#4653).
11732 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
11734         * emulation/cua-base.el: Add CUA property to some CC mode commands
11735         (Bug#4100).
11737 2009-11-08  Kevin Ryde  <user42@zip.com.au>
11739         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
11740         at end of sentence (Bug#4818).
11742 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
11744         * progmodes/compile.el (compilation-error-regexp-alist-alist):
11745         Handle "see declaration of" MSFT statements (Bug#4100).
11747 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
11749         * net/tramp.el (tramp-advice-make-auto-save-file-name)
11750         (tramp-advice-file-expand-wildcards): Unload via
11751         `ad-remove-advice'.
11753         * net/trampver.el: Update release number.
11755 2009-11-08  Kevin Ryde  <user42@zip.com.au>
11757         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
11758         `ad-do-it'.
11760 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
11762         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
11763         in order to keep context in SELinux.
11765 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
11767         * dired-aux.el (dired-query): Place cursor in echo area and allow
11768         C-g.
11770         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
11771         menu item if not on a directory (Bug#4701).
11773 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
11775         Sync with Tramp 2.1.17.
11777         * net/tramp.el (tramp-handle-copy-directory): Don't use
11778         `file-remote-p' (due to compatibility).
11780         * net/tramp-compat.el (tramp-compat-copy-directory)
11781         (tramp-compat-delete-directory): New defuns.
11783         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
11784         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
11785         `tramp-compat-delete-directory'.
11787         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
11788         (tramp-smb-handle-delete-directory): Use
11789         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
11791         * net/trampver.el: Update release number.
11793 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
11795         * tar-mode.el (tar-copy): Call write-region on the right buffer
11796         (Bug#4857).
11798         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
11799         by hand, if necessary (Bug#4878).
11801 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
11803         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
11804         align size column (Bug#4839).
11806         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
11807         statement.
11809 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
11811         * progmodes/ld-script.el (auto-mode-alist):
11812         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
11814         * cus-face.el (custom-declare-face): Purecopy face spec.
11816 2009-11-06  Kenichi Handa  <handa@m17n.org>
11818         * international/uni-bidi.el: Re-generated.
11819         * international/uni-category.el: Re-generated.
11820         * international/uni-combining.el: Re-generated.
11821         * international/uni-mirrored.el: Re-generated.
11823 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
11825         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
11826         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
11827         (tex-start-options, slitex-run-command, latex-run-command)
11828         (tex-run-command, tex-directory):
11829         * textmodes/ispell.el (ispell-html-skip-alists)
11830         (ispell-tex-skip-alists, ispell-tex-skip-alists):
11831         * textmodes/fill.el (adaptive-fill-first-line-regexp):
11832         (adaptive-fill-regexp):
11833         * textmodes/dns-mode.el (auto-mode-alist):
11834         * progmodes/python.el (interpreter-mode-alist):
11835         * progmodes/etags.el (tags-compression-info-list):
11836         * progmodes/etags.el (tags-file-name):
11837         * net/browse-url.el (browse-url-galeon-program)
11838         (browse-url-firefox-program):
11839         * mail/sendmail.el (mail-signature-file)
11840         (mail-citation-prefix-regexp):
11841         * international/mule-conf.el (eight-bit):
11842         * international/latexenc.el (latex-inputenc-coding-alist):
11843         * international/fontset.el (x-pixel-size-width-font-regexp):
11844         * emacs-lisp/warnings.el (warning-type-format):
11845         * emacs-lisp/trace.el (trace-buffer):
11846         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
11847         (emacs-lisp-mode-map):
11848         * calendar/holidays.el (holiday-solar-holidays)
11849         (holiday-bahai-holidays, holiday-islamic-holidays)
11850         (holiday-christian-holidays, holiday-hebrew-holidays)
11851         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
11852         (hebrew-holidays-1, holiday-oriental-holidays)
11853         (holiday-general-holidays):
11854         * x-dnd.el (x-dnd-known-types):
11855         * tool-bar.el (tool-bar):
11856         * startup.el (site-run-file):
11857         * shell.el (shell-dumb-shell-regexp):
11858         * rfn-eshadow.el (file-name-shadow-tty-properties)
11859         (file-name-shadow-properties):
11860         * paths.el (remote-shell-program, news-directory):
11861         * mouse.el ([C-down-mouse-3]):
11862         * menu-bar.el (menu-bar-tools-menu):
11863         * jka-cmpr-hook.el (jka-compr-load-suffixes)
11864         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
11865         (jka-compr-compression-info-list):
11866         * isearch.el (search-whitespace-regexp):
11867         * image-file.el (image-file-name-extensions):
11868         * find-dired.el (find-ls-option):
11869         * files.el (directory-listing-before-filename-regexp)
11870         (directory-free-space-args, insert-directory-program)
11871         (list-directory-brief-switches, magic-fallback-mode-alist)
11872         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
11873         (automount-dir-prefix):
11874         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
11875         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
11876         (face-font-registry-alternatives, face-font-registry-alternatives)
11877         (face-font-family-alternatives):
11878         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
11879         (facemenu-foreground-menu, facemenu-face-menu):
11880         * epa-hook.el (epa-file-name-regexp):
11881         * dnd.el (dnd-protocol-alist):
11882         * textmodes/rst.el (auto-mode-alist):
11883         * button.el (default-button): Purecopy strings.
11885 2009-11-06  Glenn Morris  <rgm@gnu.org>
11887         * Makefile.in (ELCFILES): Update.
11889 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11891         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
11892         * emacs-lisp/levents.el: Move to obsolete/levents.el.
11894         * nxml/xsd-regexp.el (xsdre-gen-categories):
11895         * nxml/xmltok.el (xmltok-parse-entity):
11896         * nxml/rng-parse.el (rng-parse-validate-file):
11897         * nxml/rng-maint.el (rng-format-manual)
11898         (rng-manual-output-force-new-line):
11899         * nxml/rng-loc.el (rng-save-schema-location-1):
11900         * nxml/rng-cmpct.el (rng-c-parse-file):
11901         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
11902         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
11904 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
11906         * progmodes/verilog-mode.el (verilog-getopt-file, verilog-set-define):
11907         Remove extra save-excursions and make-variable-buffer-local's.
11908         Suggested by Stefan Monnier.
11910         (verilog-getopt-file, verilog-module-inside-filename-p)
11911         (verilog-set-define): Merge GNU 1.35 and repair changes from
11912         switching to using with-current-buffer.
11914         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
11915         being treated as a number and confusing AUTORESET.
11916         Reported by Dan Dever.
11918         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
11919         Add verilog-auto-ignore-concat to fix backward compatibility with
11920         older verilog-modes.  Reported by Dan Katz.
11922         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
11923         containing closing anchors "...$".
11925         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
11926         Reported by Wade Smith.
11928         (verilog-batch-execute-func): Comment on function usage.
11930 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
11932         * progmodes/verilog-mode.el (verilog-label-re): Fix regular expression
11933         for labels.
11935         (verilog-label-re, verilog-calc-1): Support proper indent of named
11936         asserts.
11938         (verilog-backward-token, verilog-basic-complete-re)
11939         (verilog-beg-of-statement, verilog-indent-re): Support proper
11940         indent of the assert statement at the beginning of a block of text.
11942         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
11943         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
11944         tokens as begins.
11946 2009-11-05  Glenn Morris  <rgm@gnu.org>
11948         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
11949         Emacs 19.  (Bug#1531)
11950         (byte-compile-fix-header): Update for the above change.
11951         Drop test for epoch::version.
11953         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
11954         * cus-dep.el (custom-make-dependencies):
11955         * finder.el (finder-compile-keywords):
11956         Use autoload-rubric's feature argument.
11958         * calendar/diary-lib.el (top-level): Make load behave more like require.
11960         * vc-git.el (vc-git-stash-map): Move definition before use.
11962 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
11964         * custom.el (custom-declare-group): Purecopy standard-value.
11965         (custom-declare-group): Purecopy custom-prefix.
11967         * international/mule.el (load-with-code-conversion):
11968         Call do-after-load-evaluation unconditionally.
11970         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
11972 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11974         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
11976 2009-11-04  Glenn Morris  <rgm@gnu.org>
11978         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
11979         (byte-compile-compatibility): Remove option.
11980         (byte-compile-close-variables, byte-compile-fix-header)
11981         (byte-compile-insert-header, byte-compile-output-docform)
11982         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
11983         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
11984         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
11985         (byte-compile-insert, byte-compile-defun):
11986         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
11987         (byte-defop-compiler19): Remove.
11988         Without byte-compile-compatibility, the 'emacs19-opcode property is not
11989         used by anything.  Replace all calls with byte-defop-compiler.
11991 2009-11-04  Juri Linkov  <juri@jurta.org>
11993         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
11994         (menu-bar-options-menu): Don't quote the `prop' arg of
11995         `menu-bar-make-mm-toggle'.
11997 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
11999         * calendar/calendar.el (cal-loaddefs):
12000         * calendar/diary-lib.el (diary-loaddefs):
12001         * calendar/holidays.el (hol-loaddefs):
12002         * eshell/esh-module.el (esh-groups): Load rather than require.
12004 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12006         * calendar/todo-mode.el (todo-add-category): Don't hardcode
12007         point-min==1.
12008         (todo-top-priorities): Only display-buffer when called interactively.
12009         (todo-item-start): Don't save excursion point.
12010         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
12011         (todo-insert-item-here, todo-file-item, todo-remove-item):
12012         Adjust uses of todo-item-start and todo-item-end.
12014         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
12015         (autoload-rubric): Don't use any more.
12017         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
12018         and only put a prop if it is non-nil.
12020 2009-11-03  Juri Linkov  <juri@jurta.org>
12022         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
12023         (menu-bar-options-menu): Fix list quoting (Bug#4429).
12025         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
12026         and "Menu" to make top-level menu item visually one unit (like
12027         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
12028         multi-word menu items).  Fix :help string for quit-window.
12030 2009-11-03  Glenn Morris  <rgm@gnu.org>
12032         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
12033         (byte-compile-file-form-define-abbrev-table)
12034         (byte-compile-file-form-custom-declare-variable)
12035         (byte-compile-variable-ref, byte-compile-defvar):
12036         Whether or not a warning is enabled should only affect whether we issue
12037         the warning, not whether or not we collect the relevant data.
12038         Eg warnings can be turned on and off throughout the course of a file.
12040         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
12041         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
12043 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12045         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
12046         * play/mpuz.el (mpuz-create-buffer):
12047         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
12048         (lm-print-y,s,noise, lm-print-w0, lm-init):
12049         * play/gomoku.el (gomoku-prompt-for-move):
12050         * play/fortune.el (fortune-in-buffer):
12051         * play/dissociate.el (dissociated-press):
12052         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
12053         (decipher-analyze-buffer, decipher-stats-buffer, decipher-stats-buffer):
12054         * mail/supercite.el (sc-eref-show):
12055         * mail/smtpmail.el (smtpmail-send-it):
12056         * mail/rmailsum.el (rmail-summary-next-labeled-message)
12057         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
12058         (rmail-summary-undelete-many, rmail-summary-rmail-update)
12059         (rmail-summary-goto-msg, rmail-summary-expunge)
12060         (rmail-summary-get-new-mail, rmail-summary-search-backward)
12061         (rmail-summary-add-label, rmail-summary-output-menu)
12062         (rmail-summary-output-body):
12063         * mail/rfc822.el (rfc822-addresses):
12064         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
12065         * mail/mailpost.el (post-mail-send-it):
12066         * mail/hashcash.el (hashcash-generate-payment):
12067         * mail/feedmail.el (feedmail-run-the-queue)
12068         (feedmail-queue-send-edit-prompt-help-first)
12069         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
12070         (feedmail-deduce-address-list):
12071         * eshell/esh-ext.el (eshell-remote-command):
12072         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
12073         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
12074         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
12075         (viper-save-string-in-file, viper-valid-marker):
12076         * emulation/viper-keym.el (viper-toggle-key):
12077         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
12078         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
12079         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
12080         * emulation/viper-cmd.el (viper-exec-form-in-vi)
12081         (viper-exec-form-in-emacs, viper-brac-function):
12082         * emulation/viper.el (viper-delocalize-var):
12083         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
12084         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
12085         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
12086         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
12087         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
12088         * emulation/edt.el (edt-electric-helpify):
12089         * emulation/cua-rect.el (cua--rectangle-aux-replace):
12090         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
12091         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
12092         (cua-indent-to-global-mark-column):
12093         * calendar/diary-lib.el (calendar-mark-1):
12094         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
12095         Use with-current-buffer.
12096         * emulation/viper.el (viper-delocalize-var): Use dolist.
12098 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
12100         * comint.el (comint-replace-by-expanded-history-before-point):
12101         Replace !! with the previous input string literally (Bug#1795).
12103 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
12105         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
12106         to be made up of whitespace.
12108 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
12110         * minibuffer.el (read-file-name): Don't use file dialogs for
12111         remote directories (Bug#99).
12113 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
12115         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
12117 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
12119         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
12120         instead of deleting the window or frame.
12122 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
12124         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
12125         Support face colors.
12127         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
12128         New function.  Support face colors (Bug#1168).
12129         (tex-common-initialization): Use it.
12131         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
12132         mode allows it (Bug#1168).
12134 2009-10-31  Juri Linkov  <juri@jurta.org>
12136         * facemenu.el (list-colors-display): Don't mark buffer as
12137         modified (Bug#3948).
12139 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
12141         * international/mule-diag.el (list-character-sets-1): Minor
12142         message fix (Bug#3526).
12144         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
12145         face property (Bug#4834).
12146         (etags-list-tags, etags-tags-apropos-additional)
12147         (etags-tags-apropos, tags-select-tags-table): Add follow-link
12148         property.
12150         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
12151         items.
12153 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12155         * textmodes/two-column.el (2C-split):
12156         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
12157         * textmodes/tex-mode.el (tex-set-buffer-directory):
12158         * textmodes/spell.el (spell-region, spell-string):
12159         * textmodes/reftex.el (reftex-erase-buffer):
12160         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
12161         * textmodes/reftex-toc.el (reftex-toc-promote-action):
12162         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
12163         (reftex-select-item):
12164         * textmodes/reftex-ref.el (reftex-label-info-update)
12165         (reftex-offer-label-menu):
12166         * textmodes/reftex-index.el (reftex-index-change-entry)
12167         (reftex-index-phrases-info):
12168         * textmodes/reftex-global.el (reftex-create-tags-file)
12169         (reftex-save-all-document-buffers, reftex-ensure-write-access):
12170         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
12171         (reftex-view-crossref-from-bibtex):
12172         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
12173         (reftex-extract-bib-entries-from-thebibliography)
12174         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
12175         * textmodes/refbib.el (r2b-capitalize-title):
12176         (r2b-convert-buffer, r2b-help):
12177         * textmodes/page-ext.el (pages-directory)
12178         (pages-directory-goto-with-mouse):
12179         * textmodes/bibtex.el (bibtex-validate-globally):
12180         * textmodes/bib-mode.el (bib-capitalize-title):
12181         * textmodes/artist.el (artist-clear-buffer, artist-system):
12182         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
12183         (local-set-scheme-interaction-buffer, xscheme-process-filter)
12184         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
12185         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
12186         (xscheme-send-control-g-interrupt, xscheme-start-process)
12187         (xscheme-process-sentinel, xscheme-cd):
12188         * progmodes/verilog-mode.el (verilog-read-always-signals)
12189         (verilog-set-define, verilog-getopt-file)
12190         (verilog-module-inside-filename-p):
12191         * progmodes/sh-script.el:
12192         * progmodes/python.el (python-pdbtrack-get-source-buffer)
12193         (python-pdbtrack-grub-for-buffer, python-execute-file):
12194         * progmodes/octave-inf.el (inferior-octave):
12195         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
12196         (idlwave-shell-compile-helper-routines, idlwave-set-local)
12197         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
12198         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
12199         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
12200         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
12201         (idlwave-shell-filter, idlwave-shell-examine-highlight)
12202         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
12203         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
12204         (idlwave-shell-examine-display, idlwave-shell-run-region)
12205         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
12206         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
12207         * progmodes/idlw-help.el (idlwave-help-get-special-help)
12208         (idlwave-help-get-help-buffer):
12209         * progmodes/gud.el (gud-basic-call, gud-find-class)
12210         (gud-tooltip-activate-mouse-motions-if-enabled):
12211         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
12212         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
12213         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
12214         (ebrowse-tags-next-file):
12215         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
12216         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
12217         (ebnf-eps-finish-and-write):
12218         * progmodes/cpp.el (cpp-edit-save):
12219         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
12220         * progmodes/cc-defs.el (c-emacs-features):
12221         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
12222         (antlr-directory-dependencies):
12223         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
12224         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
12225         (ada-find-any-references, ada-make-filename-from-adaname)
12226         (ada-make-body-gnatstub):
12227         * obsolete/rnews.el (news-list-news-groups):
12228         * obsolete/resume.el (resume-suspend-hook, resume-write-buffer-to-file):
12229         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
12230         * net/rcirc.el (rcirc-debug):
12231         * net/newst-treeview.el (newsticker--treeview-list-add-item)
12232         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
12233         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
12234         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
12235         (newsticker--treeview-tree-update-tag, newsticker--treeview-buffer-init)
12236         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
12237         (newsticker--treeview-list-clear-highlight)
12238         (newsticker--treeview-list-update-highlight)
12239         (newsticker--treeview-list-highlight-start)
12240         (newsticker--treeview-tree-update-highlight)
12241         (newsticker--treeview-get-selected-item)
12242         (newsticker-treeview-mark-list-items-old)
12243         (newsticker--treeview-set-current-node):
12244         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
12245         * net/newst-backend.el (newsticker--get-news-by-funcall)
12246         (newsticker--get-news-by-wget, newsticker--image-get)
12247         (newsticker--image-sentinel):
12248         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
12249         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
12250         (eudc-ph-close-session):
12251         * net/eudc.el (eudc-save-options):
12252         * language/thai-word.el (thai-update-word-table):
12253         * language/japan-util.el (japanese-string-conversion):
12254         * international/titdic-cnv.el (tsang-quick-converter)
12255         (ziranma-converter, ctlau-converter):
12256         * international/mule-cmds.el (describe-language-environment):
12257         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
12258         (skkdic-convert-postfix, skkdic-convert-prefix):
12259         (skkdic-convert-okuri-nasi, skkdic-convert):
12260         * emacs-lisp/re-builder.el (reb-update-overlays):
12261         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
12262         * emacs-lisp/gulp.el (gulp-send-requests):
12263         * emacs-lisp/find-gc.el (trace-call-tree):
12264         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
12265         (eieio-describe-generic):
12266         * emacs-lisp/eieio-base.el (eieio-persistent-read):
12267         * emacs-lisp/edebug.el (edebug-outside-excursion):
12268         * emacs-lisp/debug.el (debugger-make-xrefs):
12269         * emacs-lisp/cust-print.el (custom-prin1-to-string):
12270         * emacs-lisp/chart.el (chart-new-buffer):
12271         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
12272         Use with-current-buffer.
12273         * textmodes/artist.el (artist-system): Don't call
12274         copy-sequence on a fresh string.
12275         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
12277 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
12279         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
12280         is no item to edit.  (Bug#4820)
12281         (todo-top-priorities): Restore point and restore narrowing in Todo
12282         buffer.  (Bug#4820)
12284 2009-10-31  Glenn Morris  <rgm@gnu.org>
12286         * net/ange-ftp.el (top-level): Don't require dired when compiling.
12287         (comint-last-output-start, comint-last-input-start)
12288         (comint-last-input-end): Don't defvar when compiling.
12289         (ange-ftp-process-file): Use bound-and-true-p.
12291         * pcmpl-rpm.el (top-level): Move provide statement to end.
12292         (pcmpl-rpm): Remove unused custom group.
12294         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
12296         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
12298         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
12299         (byte-compile-warnings): Add `constants' as an option.
12300         (byte-compile-callargs-warn, byte-compile-arglist-warn)
12301         (display-call-tree): Update for byte-compile-fdefinition possibly
12302         returning `(macro lambda ...)'.  (Bug#4778)
12303         (byte-compile-variable-ref, byte-compile-setq-default):
12304         Respect `constants' member of byte-compile-warnings.
12306 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12308         * vc-bzr.el (vc-bzr-revision-keywords): New var.
12309         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
12310         to "submit:".
12312 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
12314         * textmodes/ispell.el (ispell-skip-region-alist):
12315         * international/mule-conf.el (eight-bit):
12316         * international/fontset.el (font-encoding-alist):
12317         * startup.el (pure-space-overflow-message):
12318         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
12319         * paths.el (gnus-nntp-service, rmail-spool-directory)
12320         (term-file-prefix):
12321         * files.el (save-some-buffers-action-alist):
12322         * cmuscheme.el (same-window-buffer-names):
12323         * ielm.el (same-window-buffer-names):
12324         * shell.el (same-window-buffer-names):
12325         * mail/sendmail.el (same-window-buffer-names):
12326         * progmodes/inf-lisp.el (same-window-buffer-names):
12327         * bindings.el (mode-line-client)
12328         (mode-line-column-line-number-mode-map):
12329         * language/tibetan.el (tibetan-precomposition-rule-regexp)
12330         (tibetan-precomposed-regexp): Purecopy string arguments.
12332 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12334         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
12335         (calcDigit-nondigit):
12336         * calc/calc-yank.el (calc-copy-to-buffer):
12337         * calc/calc-units.el (calc-invalidate-units-table):
12338         * calc/calc-trail.el (calc-trail-yank):
12339         * calc/calc-store.el (calc-insert-variables):
12340         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
12341         * calc/calc-prog.el (calc-read-parse-table):
12342         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
12343         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
12344         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
12345         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
12346         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
12347         (calc-graph-name, calc-graph-find-command, calc-graph-view)
12348         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
12349         * calc/calc-ext.el (calc-realign):
12350         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
12351         (calc-embedded-finish-edit, calc-embedded-make-info)
12352         (calc-embedded-finish-command, calc-embedded-stack-change):
12353         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
12355         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
12356         shell-dynamic-complete-filename in preference to
12357         comint-dynamic-complete-filename.
12359         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
12360         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
12361         Don't consider whether the display supports colors.
12362         (bookmark-import-new-list): Use dolist.
12363         (bookmark-bmenu-mode-map): Move initialization into declaration.
12364         (bookmark-bmenu-list): Use dolist, simplify.
12365         (bookmark-show-all-annotations): Use save-selected-window and dolist.
12366         (menu-bar-final-items): Use push.
12368 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
12370         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
12371         it works on remote files.
12372         (vc-hg-diff): Don't pass any `--cwd' argument.
12374 2009-10-27  Kevin Ryde  <user42@zip.com.au>
12376         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
12377         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
12378         (Further to Bug#3921).
12380 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
12382         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
12383         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
12384         calling `tramp-imap-put-file'.  Add file size to the call.
12385         (tramp-imap-get-file-entries): Compute also user name, file size,
12386         and date.
12387         (tramp-imap-handle-insert-directory): Insert uid and gid.
12388         (tramp-imap-handle-file-attributes): Transform uid and gid
12389         according to `id-format'.
12390         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
12391         size in header X-Size.
12393 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
12395         * simple.el (transpose-subr): Give clearer error when the mark
12396         is not set.  (Bug#4807)
12398 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
12400         * net/tramp.el (tramp-perl-file-truename): New defconst.
12401         Perl code contributed by yary <not.com@gmail.com> (tiny change).
12402         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
12403         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
12404         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
12406         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
12407         Ignore `dired-call-process'.
12408         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
12410 2009-10-26  Julian Scheid  <julians37@gmail.com>
12412         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
12413         (tramp-get-remote-readlink): New defun.
12414         (tramp-handle-file-truename): Use it.
12415         (tramp-handle-file-exists-p): Check file-attributes cache, assume
12416         file exists if cache value present.
12417         (tramp-check-cached-permissions): New defun.
12418         (tramp-handle-file-readable-p): Use it.
12419         (tramp-handle-file-writable-p): Likewise.
12420         (tramp-handle-file-executable-p): Likewise.
12421         (tramp-handle-file-name-all-completions): Try using Perl to get
12422         partial completions.  When perl not available, combine `cd' and
12423         `ls' into single remote operation and use shell expansion to get
12424         partial remote directory contents.  Set `file-exists-p' cache for
12425         directory and any files returned by ls.  Change cache handling to
12426         support partial directory contents.  Use error message emitted by
12427         remote `cd' or Perl code for local tramp-error.
12428         (tramp-do-copy-or-rename-file-directly): Avoid separate
12429         tramp-send-command-and-check call.
12430         (tramp-handle-process-file): Merge three remote ops into one.
12431         Do not flush all caches when `process-file-side-effects' is set.
12432         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
12433         file-attributes shows uid/gid to be set already.
12435 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
12437         * textmodes/tex-mode.el (tex-dvi-view-command)
12438         (tex-show-queue-command, tex-open-quote):
12439         * progmodes/ruby-mode.el (auto-mode-alist)
12440         (interpreter-mode-alist): Purecopy strings.
12442         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
12444         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
12445         string for the hook, keymap and abbrev table.
12447         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
12449         * x-dnd.el (x-dnd-xdnd-to-action):
12450         * startup.el (fancy-startup-text, fancy-about-text): Change to
12451         defconst from defvar.
12453         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
12455         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
12456         Purecopy initialization strings.
12458         * mail/sendmail.el (mail-header-separator)
12459         (mail-personal-alias-file):
12460         * mail/rmail.el (rmail-default-dont-reply-to-names)
12461         (rmail-ignored-headers, rmail-retry-ignored-headers)
12462         (rmail-highlighted-headers, rmail-secondary-file-directory)
12463         (rmail-secondary-file-regexp):
12464         * files.el (null-device, file-name-invalid-regexp)
12465         (locate-dominating-stop-dir-regexp)
12466         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
12467         (interpreter-mode-alist): Use mapcar instead of mapc.
12469         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
12471         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
12472         (completion-ignored-extensions):
12473         (debug-ignored-errors): Purecopy strings.
12475 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12477         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
12478         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
12479         (pcomplete--here): Use push.
12481         * subr.el (all-completions): Declare the 4th arg obsolete.
12483 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12485         * pcomplete.el (pcomplete-unquote-argument-function): New var.
12486         (pcomplete-unquote-argument): New function.
12487         (pcomplete--common-suffix): Always pay attention to case.
12488         (pcomplete--table-subvert): Quote and unquote the text.
12489         (pcomplete--common-quoted-suffix): New function.
12490         (pcomplete-std-complete): Use it and pcomplete-begin.
12492         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
12493         we're inside a dedicated or minibuffer window.
12495 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
12497         * bookmark.el: Update documentation, especially documentation
12498         of `bookmark-alist' and of the bookmark file format.
12499         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
12501 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
12503         * mail/emacsbug.el (report-emacs-bug): Clarify that the
12504         keybindings apply to the mail buffer (Bug#4003).  Shrink help
12505         window to buffer.
12507         * whitespace.el (whitespace-mode, whitespace-newline-mode)
12508         (global-whitespace-mode, global-whitespace-newline-mode)
12509         (whitespace-toggle-options, global-whitespace-toggle-options):
12510         Doc fix (Bug#3660).
12512         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
12513         of xmltok-start before the end tag was inserted (Bug#2840).
12515         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
12516         patterns that are preceded by an open-paren (Bug#1320).
12518 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
12520         * files.el (delete-directory): Delete symlinks to directories with
12521         delete-file (Bug#4739).
12523 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
12525         * vc.el (vc-backend-for-registration): Rename from
12526         vc-get-backend-for-registration.  Update callers.
12528         * international/mule-cmds.el (set-language-info-alist):
12529         Purecopy lang-env.
12530         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
12531         (charset): Purecopy the name.
12532         (define-char-code-property): Purecopy string arguments.
12534         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
12535         Purecopy string arguments.
12537         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
12538         * ediff-hook.el (menu-bar-ediff-menu):
12539         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
12540         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
12542 2009-10-24  Glenn Morris  <rgm@gnu.org>
12544         * comint.el (comint-dynamic-list-completions):
12545         * term.el (term-dynamic-list-completions): Use choose-completion rather
12546         than obsolete alias mouse-choose-completion.
12548         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
12549         file-cache-choose-completion.
12550         (file-cache-choose-completion): Handle an optional event argument.
12551         (file-cache-mouse-choose-completion): Make it an obsolete alias.
12553         * progmodes/octave-mod.el (octave-complete-symbol):
12554         Use choose-completion if mouse-choose-completion is ever removed.
12556         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
12557         use.
12559         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
12560         compiler.
12562         * vc-hooks.el (vc-responsible-backend): Fix declaration.
12564 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12566         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
12567         Ignore `pred' now that we receive one.
12568         Handle test-completion specially.
12570 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
12572         * vc.el (vc-responsible-backend): Throw an error if not backend is
12573         found.  Remove the REGISTER argument.  Move the code dealing with
12574         REGISTER ...
12575         (vc-get-backend-for-registration): ... here.  New function.
12576         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
12577         of vc-responsible-backend, pass the file name instead of the
12578         directory name.
12580 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12582         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
12583         New funs.
12584         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
12585         (pcomplete-comint-setup): Don't modify a global var via
12586         accidental side-effects.
12587         (pcomplete-shell-setup): Adjust call accordingly.
12588         (pcomplete-parse-comint-arguments): Use push.
12590 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
12592         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
12593         Allow uncapitalized info node names (Bug#3921).
12595         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
12596         to the DEBUG file (Bug#3781).
12598 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
12600         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
12601         dictionary entry (Bug#4579).
12603 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
12605         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
12606         from `rfn-eshadow-update-overlay-hook' when unloading.
12607         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
12608         "rsyncc".  Adjust doc string.
12609         (tramp-temp-buffer-file-name): New buffer-local defvar.
12610         (tramp-handle-insert-file-contents, tramp-handle-write-region):
12611         Keep temporary file when indicated by method ("rsync" and
12612         "rsyncc").
12613         (tramp-handle-write-region): Handle APPEND.
12614         (tramp-delete-temp-file-function): New defun.  Added to
12615         `kill-buffer-hook'.
12617 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
12619         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
12621 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
12623         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
12624         (color-name-rgb-alist, tty-standard-colors)
12625         (tty-color-mode-alist): Change to defconst.
12627         * simple.el (mark-inactive): Purecopy message.
12629         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
12630         (global-map, yank-menu):
12631         * textmodes/ispell.el (ispell-menu-map):
12632         * net/eudc.el (eudc-tools-menu):
12633         * international/mule-cmds.el (describe-language-environment-map)
12634         (setup-language-environment-map, set-coding-system-map)
12635         (mule-menu-keymap):
12636         * vc-hooks.el (vc-menu-entry, vc-menu-map):
12637         * replace.el (occur-mode-map):
12638         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
12640 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
12642         * calc/calc.el (math-read-number, math-read-number-simple): Use
12643         `save-match-data'.
12645 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12647         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
12648         rather than fiddling with global-map bindings, since it should only
12649         affect per-terminal settings.
12650         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
12652         * minibuffer.el (completion-table-with-terminator): Allow to specify
12653         the terminator-regexp.
12655         * simple.el (switch-to-completions): Look for *Completions* in other
12656         frames as well.
12658         * pcomplete.el: Allow the use of completion-tables.
12659         (pcomplete-std-complete): New command.
12660         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
12661         (pcomplete--here): Use a function for `form' rather than an expression,
12662         so it can be byte-compiled.
12663         (pcomplete-here, pcomplete-here*): Adjust accordingly.
12664         Add edebug declaration.
12665         (pcomplete-show-completions): Remove unused var `curbuf'.
12666         (pcomplete-do-complete, pcomplete-stub):
12667         Don't assume `completions' is a list of strings any more.
12669 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
12671         * find-dired.el (find-name-arg): Fix typo in docstring.
12673 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12675         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
12676         (pcmpl-linux-fs-types): Same, and update to new modules layout.
12678         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
12679         pcomplete-entries.
12681         * comint.el (comint-read-input-ring, comint-write-input-ring)
12682         (comint-substitute-in-file-name)
12683         (comint-dynamic-complete-as-filename)
12684         (comint-dynamic-simple-complete)
12685         (comint-dynamic-list-filename-completions)
12686         (comint-dynamic-list-completions)
12687         (comint-redirect-results-list-from-process): Minor simplifications.
12689 2009-10-21  Kevin Ryde  <user42@zip.com.au>
12691         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
12692         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
12693         the first form.  And insert a blank line after ";;; Code" since
12694         that's usual style.  (Bug#4612)
12696         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
12698 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12700         * minibuffer.el (completion-table-with-terminator): Properly implement
12701         boundaries, in case `terminator' appears in the suffix.
12702         (completion--embedded-envvar-table): Don't return boundaries if
12703         there's no valid completion.  Simplify.
12704         (completion-file-name-table): New completion table extracted from
12705         completion--file-name-table.
12706         (completion--file-name-table): Use it.
12707         (read-file-name-predicate): Declare obsolete.
12708         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
12709         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
12710         completion-file-name-table, and use the `pred' argument.
12711         * files.el (locate-file-completion-table): Use the `pred' arg rather
12712         than read-file-name-predicate.
12713         (abbreviate-file-name): Use \` rather than ^ for BOS.
12715 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
12717         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
12718         vc-responsible-backend to register, it causes problems.
12720 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12722         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
12724 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
12726         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
12727         (tramp-smb-handle-file-attributes): Use it.
12728         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
12729         (tramp-smb-handle-insert-directory): Use `mapc' rather than
12730         `mapcar'.  Use `tramp-smb-get-stat-capability'.
12731         Add `dired-filename' text properties.
12732         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
12733         (tramp-smb-maybe-open-connection): Simplify check for smbclient
12734         version.
12736 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12738         * subr.el (read-key-delay): Reduce to 0.01.
12739         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
12740         (bug#4751).
12742 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
12744         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
12746         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
12747         (Info-menu): Remove unused vars `last' and `completions'.
12748         (Info-index-nodes): Remove unused var `node'.
12750         * info.el (Info-complete-menu-item): Use complete-with-action.
12752 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
12754         Make vc-annotate work through copies and renames.
12755         * vc-annotate.el (vc-annotate-extract-revision-at-line):
12756         Return the file name too.
12757         (vc-annotate-revision-at-line)
12758         (vc-annotate-find-revision-at-line)
12759         (vc-annotate-revision-previous-to-line)
12760         (vc-annotate-show-log-revision-at-line): Update to get the file
12761         name from vc-annotate-extract-revision-at-line.
12762         (vc-annotate-show-diff-revision-at-line-internal): Change the
12763         argument to mean whether to show a file diff or not.  Get the file
12764         name from vc-annotate-extract-revision-at-line.
12765         (vc-annotate-show-diff-revision-at-line):
12766         Update vc-annotate-show-diff-revision-at-line call.
12767         (vc-annotate-warp-revision): Add an optional file argument.
12769         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
12770         (vc-git-annotate-extract-revision-at-line): Also return the file
12771         name if found.
12773         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
12774         command.  Remove unused code.
12775         (vc-hg-annotate-re): Update to match --follow output.
12776         (vc-hg-annotate-extract-revision-at-line): Also return the file
12777         name if found.
12779         * vc.el: Update annotate-extract-revision-at-line documentation.
12781 2009-10-18  Kevin Ryde  <user42@zip.com.au>
12783         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
12784         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
12786         * net/browse-url.el (browse-url): Identify alist with "consp and
12787         not functionp" and let all other things go down the `apply' leg,
12788         as suggested by Stefan.  (Further to bug#4531.)
12790 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
12792         * minibuffer.el (read-file-name): Check for repeat before putting
12793         a default argument in file-name-history (Bug#4657).
12795         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
12796         read syntax (Bug#4737).
12798         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
12800 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
12802         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
12803         (html-tag-alist, html-tag-help): Add descriptions for undocumented
12804         entries and make note of obsolete tags.
12806 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
12808         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
12810 2009-10-18  Glenn Morris  <rgm@gnu.org>
12812         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
12813         grep, so that binary files (eg international/uni-bidi.el) can match.
12814         Remove test for "UnicodeData" files, since it is hopefully unnecessary
12815         now, and in any case the file header format has changed.
12817 2009-10-17  Glenn Morris  <rgm@gnu.org>
12819         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
12820         (flyspell-get-word, flyspell-large-region)
12821         (flyspell-auto-correct-previous-word): Doc/error message fixes.
12823 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
12825         * Makefile.in (ELCFILES): Add ede/shell.
12827 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
12829         * term/common-win.el (x-colors): Purecopy it.
12831 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12833         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
12834         permissive for when the buffer is empty.
12835         (tar-header-block-tokenize): Decode the username and groupname.
12836         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
12838 2009-10-17  Eric Ludlam  <zappo@gnu.org>
12840         * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
12841         contains multibyte characters, choose first applicable coding
12842         system automatically.
12844 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12846         * international/mule-cmds.el (select-safe-coding-system): If the file
12847         has a coding cookie, use it regardless of any other setting (bug#4712).
12849 2009-10-17  Glenn Morris  <rgm@gnu.org>
12851         * foldout.el (foldout-mouse-swallow-events):
12852         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
12854         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
12855         (dired-keep-marker-copy, dired-keep-marker-hardlink)
12856         (dired-keep-marker-symlink, dired-dwim-target)
12857         (dired-copy-preserve-time): Do not autoload these defcustoms.
12859         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
12860         messages from messing up the file coding.  (Bug#4623)
12862 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
12864         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
12865         if no match is found for the current dictionary.  (Bug#4578)
12867         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
12868         optional, since that is how it is documented, and this is often called
12869         with a nil argument.  (Bug#4577)
12870         (flyspell-external-point-words, flyspell-auto-correct-word)
12871         (flyspell-correct-word-before-point, flyspell-word-search-forward)
12872         (flyspell-word-search-backward): Remove nil argument in calls to
12873         flyspell-get-word, since it is not needed now.
12875 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
12877         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
12879 2009-10-16  Glenn Morris  <rgm@gnu.org>
12881         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
12883 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
12885         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
12886         (ange-ftp-file-size): New function.
12887         (ange-ftp-file-attributes): Use it.
12889 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
12891         * net/tramp-smb.el (tramp-smb-version): New defvar.
12892         (tramp-smb-maybe-open-connection): Use it, in order to avoid
12893         repeated checks.
12895 2009-10-16  Glenn Morris  <rgm@gnu.org>
12897         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
12898         Maybe copy some custom properties from old to new name.  (Bug#4706)
12900 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
12902         * subr.el (error, sit-for, start-process-shell-command)
12903         (start-file-process-shell-command): Set the calling convention
12904         after the function definition.
12906 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12908         * subr.el (error, sit-for, start-process-shell-command)
12909         (start-file-process-shell-command): Use the new
12910         set-advertised-calling-convention feature.
12912 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
12914         * international/ucs-normalize.el (ucs-normalize-version):
12915         Change to 1.2.
12916         (check-range): Adjust for Unicode 5.2.
12918 2009-10-15  Juri Linkov  <juri@jurta.org>
12920         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
12921         to the `menu-item' format.
12923 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
12925         * net/tramp.el (tramp-replace-environment-variables): Do not fail
12926         if the environment variable does not exist.
12928         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
12929         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
12930         parameter.
12931         (tramp-smb-handle-add-name-to-file)
12932         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
12933         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
12934         (tramp-smb-handle-file-attributes)
12935         (tramp-smb-do-file-attributes-with-stat)
12936         (tramp-smb-handle-file-local-copy)
12937         (tramp-smb-handle-insert-directory)
12938         (tramp-smb-handle-make-directory)
12939         (tramp-smb-handle-make-directory-internal)
12940         (tramp-smb-handle-make-symbolic-link)
12941         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
12942         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
12943         (tramp-smb-maybe-open-connection): Apply the changed parameters.
12944         (tramp-smb-read-file-entry): Read Disk names in compressed format.
12945         Handle long file names.
12946         (tramp-smb-get-cifs-capabilities): Check, whether the connection
12947         process is running.
12948         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
12949         Read share names with "-g" option.
12951 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
12953         * net/rcirc.el (rcirc-view-log-file): New command.
12954         (rcirc-track-minor-mode-map): Remove C-c ` binding.
12955         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
12956         specified.
12958 2009-10-15  Glenn Morris  <rgm@gnu.org>
12960         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
12961         from the second command-line argument.
12962         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
12963         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
12964         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
12965         w32-batch-update-autoloads.
12966         * emacs-lisp/autoload.el (autoload-make-program): New variable.
12967         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
12969         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
12970         the headers cannot be located.  Simplify, subtracting superflous
12971         save-excursions.
12973 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12975         Replace completion-base-size by completion-base-position to fix bugs
12976         such as (bug#4699).
12977         * simple.el (completion-base-position): New var.
12978         (completion-base-size): Mark as obsolete.
12979         (choose-completion): Make it work for mouse events as well.
12980         Pass the new base-position to choose-completion-string.
12981         (choose-completion-guess-base-position): New function, extracted from
12982         choose-completion-delete-max-match.
12983         (choose-completion-delete-max-match): Use it.  Make obsolete.
12984         (choose-completion-string): Use the new base-position info.
12985         (completion-root-regexp): Delete.
12986         (completion-setup-function): Preserve completion-base-position.
12987         Eliminate obsolete base-size manipulation.
12988         * minibuffer.el (display-completion-list): Don't mess with base-size.
12989         (minibuffer-completion-help): Set completion-base-position instead.
12990         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
12991         choose-completion.
12992         * textmodes/bibtex.el (bibtex-complete):
12993         * emacs-lisp/crm.el (crm--choose-completion-string):
12994         Adjust to new calling convention.
12995         * complete.el (partial-completion-mode): Use minibufferp to avoid
12996         bumping into incompatible change to choose-completion-string-functions.
12997         * ido.el (ido-choose-completion-string): Make its calling convention
12998         more permissive.
12999         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
13000         base-size manipulation.
13001         (comint-dynamic-list-input-ring): Use dotimes and push.
13002         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
13003         fundamental-mode.  Use `or'.
13005 2009-10-14  Juri Linkov  <juri@jurta.org>
13007         * misearch.el (multi-isearch-next-buffer-from-list)
13008         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
13010 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13012         * Makefile.in (compile-onefile): Load `bytecomp' rather than
13013         `bytecomp.el'.
13015         * minibuffer.el (completion-pcm--merge-completions): Make sure the
13016         string we return is all made up of text from the completions rather
13017         than part from the completions and part from the input (bug#4219).
13019         * ido.el (ido-everywhere): Use define-minor-mode.
13021         * buff-menu.el (list-buffers, ctl-x-map):
13022         Mark the entry points with ;;;###autoload cookies.
13024 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
13026         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
13027         correctly in the detached head case.
13028         (vc-git-print-log): Remove unused binding.
13030         * vc.el (vc-responsible-backend): When a directory is passed for
13031         for registration create a VC repository if no backend is
13032         responsible for the directory argument.
13033         (vc-deduce-fileset): Tell vc-responsible-backend to register.
13035         * vc.el: Move comments about RCS and SCCS ...
13036         * vc-rcs.el:
13037         * vc-sccs.el: ... here, respectively.
13039 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13041         * minibuffer.el (completion--file-name-table): Return nil if there's
13042         no file completion, even if substitute-in-file-name changed
13043         the string (bug#4708).
13045 2009-10-13  Juri Linkov  <juri@jurta.org>
13047         * files-x.el (read-file-local-variable-value): Don't filter out
13048         minor modes from mode name completion (bug#4664).
13050 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
13052         * international/mule-cmds.el (ucs-names): Remove exclusion of
13053         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
13055 2009-10-13  Kenichi Handa  <handa@m17n.org>
13057         * international/uni-name.el: Regenerated.
13059 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
13061         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
13062         should be automatically buffer-local, but isn't.)
13064 2009-10-12  Sam Steingold  <sds@gnu.org>
13066         * progmodes/compile.el (compilation-next-error-function): Fix the
13067         timestamps if the buffer has been visited before.
13068         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
13069         non-anchored patterns, like the perl one (bug#3928).
13071 2009-10-12  Glenn Morris  <rgm@gnu.org>
13073         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
13074         Let-bind `size'.
13076 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
13078         * proced.el (proced-unload-function): New function.
13080         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
13081         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
13082         Doc fix.
13084         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
13086 2009-10-11  Juri Linkov  <juri@jurta.org>
13088         * files-x.el (read-file-local-variable-value):
13089         Provide default value only for bound variables (bug#4664).
13091 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
13093         * net/tramp.el (tramp-local-host-p): Function shall return nil for
13094         connection methods like smb.
13096         * net/tramp-cache.el (tramp-flush-connection-property): The hash
13097         can be empty.
13099         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
13100         (tramp-smb-file-name-handler-alist): Add handlers for
13101         `add-name-to-file', `make-symbolic-link'.
13102         (tramp-smb-handle-add-name-to-file)
13103         (tramp-smb-do-file-attributes-with-stat)
13104         (tramp-smb-handle-make-symbolic-link)
13105         (tramp-smb-get-cifs-capabilities): New defuns.
13106         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
13107         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
13108         (tramp-smb-handle-file-local-copy)
13109         (tramp-smb-handle-make-directory-internal)
13110         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
13111         The file name syntax depends on cifs capabilities.
13112         (tramp-smb-handle-file-attributes):
13113         Call `tramp-smb-do-file-attributes-with-stat' if possible.
13114         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
13115         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
13117 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
13119         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
13120         (eieio-defclass): Apply deftype handler and setf-method properties
13121         directly.
13122         (eieio-add-new-slot): Avoid union function from cl library.
13123         (eieio--typep): New function.
13124         (eieio-perform-slot-validation): Use it.
13126 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
13128         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
13129         Update documentation to refer to the variables documented in r1.135.
13130         (Bug#4188)
13132 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
13134         * bookmark.el (Info-suffix-list): Remove this unused variable.
13135         (bookmark-current-point): Remove this obsolete variable.
13136         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
13137         Adjust for removal of bookmark-current-point.
13139         (bookmarks-already-loaded, bookmark-current-buffer)
13140         (bookmark-yank-point): Document.  (Bug#4188)
13142 2009-10-10  Glenn Morris  <rgm@gnu.org>
13144         * frame.el (frame-height): Doc fix.
13146         * calendar/calendar.el (calendar-split-width-threshold): New option.
13147         (calendar-basic-setup): Use calendar-split-width-threshold.
13149 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
13151         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
13152         Ideographic Supplement" range (U+1F200..U+1F2FF).
13154 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
13156         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
13157         since the list will have been rebuilt anyway.  (Bug#4349)
13159 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
13161         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
13162         (bookmark-bmenu-execute-deletions): Don't save here, as
13163         bookmark-delete will now do so if necessary.
13164         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
13165         (Bug#4348)
13167 2009-10-09  Glenn Morris  <rgm@gnu.org>
13169         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
13171 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
13173         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
13174         (bookmark-jump-other-window): Just invoke bookmark-jump with new
13175         argument now, so the two function's behaviors will match.  (Bug#3645)
13177 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
13179         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
13180         (tramp-file-name-real-host, tramp-file-name-port):
13181         Apply `save-match-data'.
13183         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
13184         case both directories are remote.
13185         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
13186         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
13188 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
13190         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
13192 2009-10-07  Glenn Morris  <rgm@gnu.org>
13194         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
13195         of concat.
13197 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13199         * files-x.el (read-file-local-variable): Include some
13200         non-user-variables in the completion table (bug#4664).
13202 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
13204         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
13205         message.
13207         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
13208         (tramp-smb-file-name-handler-alist): Add handler for
13209         `copy-directory', `expand-file-name', `set-file-modes'.
13210         (tramp-smb-handle-copy-directory)
13211         (tramp-smb-handle-expand-file-name)
13212         (tramp-smb-handle-set-file-modes): New defuns.
13213         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
13214         (tramp-smb-handle-file-attributes): Simplify check for retrieving
13215         entry.
13216         (tramp-smb-handle-insert-directory): Don't flush the cache.
13217         (tramp-smb-maybe-open-connection): Check for samba client and
13218         server versions.
13220 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
13222         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
13223         to not error out of search for "^lisp=" fails.
13225 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
13227         * makefile.w32-in (WINS_UPDATES): New macro.
13228         (custom-deps, finder-data, autoloads): Use it.
13230 2009-10-07  Glenn Morris  <rgm@gnu.org>
13232         * Makefile.in (autoloads): Revert previous change.
13233         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
13234         the list of preloaded files passed on the command-line, get
13235         it from src/Makefile.
13237         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
13238         show the original buffer rather than a random one.
13240 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
13242         * help.el (describe-no-warranty): Place point in a slightly better
13243         position in the GPLv3 text.
13245 2009-10-06  Sam Steingold  <sds@gnu.org>
13247         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
13248         the comm attribute is present before calling regexp-quote.
13250 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
13252         * play/animate.el (animate-string): For good effect, make sure
13253         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
13255         * play/animate.el (animate-sequence, animate-birthday-present):
13256         * misc.el (butterfly): Don't set `indent-tabs-mode'.
13258 2009-10-06  Glenn Morris  <rgm@gnu.org>
13260         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
13262         * emacs-lisp/autoload.el (autoload-excludes): New variable.
13263         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
13264         (batch-update-autoloads): Process a string value of autoload-excludes,
13265         set during the build process.
13266         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
13268         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
13269         inside with-parsed...  macro so that `v' is defined.
13271         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
13272         * progmodes/fortran.el (fortran-end-of-block)
13273         (fortran-beginning-of-block):
13274         Also push mark in the macro case.
13276         * emerge.el (emerge-show-file-name):
13277         * calc/calc.el (calc-quit):
13278         * calc/calc-misc.el (calc-big-or-small):
13279         * calc/calc-graph.el (calc-graph-view):
13280         * calc/calc-ext.el (calc-reset):
13281         * calendar/calendar.el (calendar-basic-setup):
13282         Use window-full-height-p.
13284         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
13285         header we don't understand, don't insert another.  (Bug#4624)
13286         If changing mime charset, insert the new one in the right place.
13288 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
13290         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
13291         (cal-tex-cursor-month): Correctly increment the end date for diary and
13292         holiday listing.  (Bug#4626)
13294 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13296         * help-fns.el (describe-function-1): Don't burp if the function is not
13297         a symbol.
13299 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
13301         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
13302         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
13303         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
13304         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
13306         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
13307         (eieio-default-superclass): Reflow docstrings.
13308         (this, class-option-assoc, defclass, eieio-class-un-autoload)
13309         (eieio-unbind-method-implementations, defmethod)
13310         (eieio-validate-slot-value, eieio-validate-class-slot-value)
13311         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
13312         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
13313         (eieio-slot-originating-class-p, eieio-slot-name-index)
13314         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
13315         (constructor, initialize-instance, no-next-method, object-print)
13316         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
13317         Fix typos in docstrings.
13318         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
13319         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
13320         (next-method-p): Doc fixes.
13321         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
13322         Fix typos in error messages.
13323         (eieio-defmethod): Fix typo in description of generic method.
13325         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
13326         (eieio-persistent-save-interactive, slot-missing):
13327         Fix typos in docstrings.
13328         (eieio-instance-inheritor-slot-boundp): Doc fix.
13330         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
13331         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
13333         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
13334         (eieio-custom-object-apply-reset):
13335         Fix typos in docstrings and error messages.
13337         * emacs-lisp/eieio-datadebug.el (data-debug-show):
13338         Fix typo in docstring.
13340         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
13341         (eieio-browse-tree): Doc fix.
13342         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
13343         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
13344         Fix typos in docstrings.
13346         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
13347         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
13348         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
13349         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
13350         Reflow docstrings.
13352 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
13354         * vc-hg.el (log-view-vc-backend): Declare for compiler.
13355         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
13356         Set log-view-vc-backend so that diff can work.
13358         * log-view.el (log-view-diff): Use vc-diff-internal instead of
13359         vc-version-diff.
13360         (vc-diff-internal): Autoload this instead of vc-version-diff.
13362 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
13364         * simple.el (eval-expression): Doc fix.
13366         * progmodes/cwarn.el (cwarn-mode): Doc fix.
13368 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
13370         * files.el (directory-files-no-dot-files-regexp): New defconst.
13371         (delete-directory): Use it.
13372         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
13374         * net/tramp.el (tramp-verbose): Fix docstring.
13375         (tramp-methods): Add recursive option to `tramp-copy-args'.
13376         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
13377         "scp1_old", "scp2_old", "rsync", "rsyncc".
13378         (tramp-default-method): Check also for `auth-source-user-or-password'.
13379         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
13380         Add handler for `copy-directory'.
13381         (tramp-handle-copy-directory): New defun.
13382         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
13383         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
13384         Optimize sent command.
13386 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13388         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
13389         window if necessary.
13391         * calendar/calendar.el (calendar-basic-setup): Don't call
13392         switch-to-buffer in a dedicated window.
13394 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
13396         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
13397         don't do anything related to relocating, just return nil.
13398         (bookmark-error-no-filename): New error.
13399         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
13400         bookmark has no file.  Don't even attempt to handle things that
13401         are not files; the whole point of custom handlers is to keep that
13402         knowledge elsewhere anyway.  Tighten some comments.
13403         (bookmark-file-or-variation-thereof): Remove now-unused function.
13404         (bookmark-location): Doc string fix.
13405         (Bug#4250)
13407 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
13409         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
13410         don't use a file dialog, because they usually don't know how to read
13411         a directory target from the user.  (Bug#4230)
13412         Also, make sure the prompt can display directories as well as files.
13414 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
13416         * bookmark.el (bookmark-set, bookmark-buffer-name):
13417         Improve doc strings.  (Bug#1193)
13419 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
13421         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
13422         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
13423         (bookmark-get-annotation, bookmark-set-annotation)
13424         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
13425         (bookmark-set-position, bookmark-get-front-context-string)
13426         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
13427         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
13428         (bookmark-jump-other-window, bookmark-handle-bookmark)
13429         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
13430         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
13431         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
13432         Improve doc strings to say whether bookmark can be a string or
13433         a record or both, and make other consistency and clarity fixes.
13434         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
13435         (bookmark-default-annotation-text, bookmark-yank-word)
13436         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
13437         (bookmark-import-new-list, bookmark-maybe-rename)
13438         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
13439         (bookmark-bmenu-bookmark): Give these doc strings.
13440         (bookmark-bmenu-check-position): Give this a doc string, but also
13441         add a FIXME comment about how the function may be pointless.
13442         (bookmark-default-handler): Rework doc string and change a
13443         parameter name, to clarify that this takes a bookmark record
13444         not a bookmark name.
13445         (bookmark-set): Change a parameter name to indicate its meaning,
13446         and improve the doc string a bit.
13447         (Bug#4188)
13449 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
13451         * bookmark.el (bookmark-alist): Document the new `handler' element
13452         in the param alist.
13453         (bookmark-make-record-function): Adjust documentation for above.
13454         (Bug#4193)
13456 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
13458         * info.el (Info-bookmark-make-record): Document this function.
13459         (Info-bookmark-jump): Document with a doc string, not just a comment.
13460         (Bug#4203)
13462 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
13464         * files.el (copy-directory): New defun.
13466         * dired-aux.el (dired-copy-file-recursive): Use it.
13468 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
13470         * files-x.el (modify-dir-local-variable)
13471         (copy-dir-locals-to-file-locals-prop-line): Fix typos in
13472         docstrings.
13474         * recentf.el (recentf-unload-function): New function.
13476 2009-10-04  Glenn Morris  <rgm@gnu.org>
13478         * window.el (window-full-height-p): Add doc string.
13480 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
13482         * window.el (window-full-height-p): New function.  (Bug#4543)
13484 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
13486         * vc.el: Remove commented out code.
13487         (vc-derived-from-dir-mode): Remove, unused.
13488         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
13490 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
13492         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
13493         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
13494         there could be recursive loading when `default-directory' is a
13495         remote file name.  (Bug#4614)
13497 2009-10-03  Glenn Morris  <rgm@gnu.org>
13499         * calendar/calendar.el (calendar-basic-setup): Handle the case where
13500         the frame is wide.
13501         (calendar-generate-window): Test for shrinkability rather than width.
13503         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
13504         reusing existing buffers, in case we happen to visit two files with the
13505         same basename.  (Bug#4593)
13507 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
13509         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
13510         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
13511         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
13512         subdirs of cedet as well.
13513         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
13515 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13517         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
13518         Obey advertised-signature-table.
13520         * help-fns.el (help-function-arglist): Don't check
13521         advertised-signature-table.
13522         (describe-function-1): Do it here instead so it also applies to subrs.
13524 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
13526         * simple.el (start-file-process): Say in the doc-string, that file
13527         handlers might not support pty association, if PROGRAM is nil.
13529         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
13530         HOST and USER are strings.  They are nil, when there are
13531         incomplete entries in ~/.netrc, for example.
13532         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
13533         root directory ("device busy" error otherwise).
13535         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
13536         Flush file properties of created directory.
13538 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
13540         * makefile.w32-in (WINS_BASIC): Remove cedet.
13541         (WINS_CEDET): Add cedet.
13542         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
13544 2009-10-02  Kevin Ryde  <user42@zip.com.au>
13546         * net/browse-url.el (browse-url): Pass any symbol in
13547         browse-url-browser-function to `apply', since if you've mistakenly put
13548         an unbound symbol then the error is clearer.  (Bug#4531)
13550 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
13552         * allout.el (allout-init, allout-back-to-current-heading)
13553         (allout-beginning-of-current-entry, allout-ascend-to-depth)
13554         (allout-ascend, allout-up-current-level, allout-end-of-level)
13555         (allout-previous-visible-heading, allout-forward-current-level)
13556         (allout-backward-current-level, allout-show-children):
13557         * apropos.el (apropos-describe-plist):
13558         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
13559         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
13560         * completion.el (add-completion, add-permanent-completion):
13561         * descr-text.el (describe-text-category, describe-char):
13562         * desktop.el (desktop-lazy-abort):
13563         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
13564         * dired.el (dired-build-subdir-alist):
13565         * ediff.el (ediff-version):
13566         * elide-head.el (elide-head, elide-head-show):
13567         * emerge.el (emerge-version):
13568         * env.el (getenv):
13569         * face-remap.el (variable-pitch-mode):
13570         * faces.el (describe-face):
13571         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
13572         (dired-at-point):
13573         * files.el (find-file-existing, auto-save-mode):
13574         * font-lock.el (font-lock-fontify-buffer):
13575         * help-fns.el (describe-function, describe-variable)
13576         (describe-syntax, describe-categories):
13577         * help.el (view-lossage, describe-bindings, describe-key)
13578         (describe-mode):
13579         * hexl.el (hexl-current-address):
13580         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
13581         * info.el (Info-goto-emacs-key-command-node):
13582         * log-edit.el (log-edit-insert-cvs-template)
13583         (log-edit-insert-cvs-rcstemplate):
13584         * menu-bar.el (menu-bar-mode):
13585         * mouse.el (mouse-appearance-menu):
13586         * newcomment.el (comment-indent-new-line):
13587         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
13588         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
13589         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt)
13590         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
13591         * recentf.el (recentf-mode):
13592         * savehist.el (savehist-mode, savehist-save):
13593         * shadowfile.el (shadow-copy-files):
13594         * simple.el (kill-ring-save, next-line, previous-line)
13595         (normal-erase-is-backspace-mode):
13596         * strokes.el (strokes-update-window-configuration)
13597         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
13598         (strokes-xpm-for-stroke):
13599         * time.el (emacs-uptime, emacs-init-time):
13600         * tutorial.el (tutorial--describe-nonstandard-key)
13601         (tutorial--detailed-help):
13602         * type-break.el (type-break-mode)
13603         (type-break-mode-line-message-mode, type-break-query-mode)
13604         (type-break-guesstimate-keystroke-threshold):
13605         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
13606         * version.el (emacs-version):
13607         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
13608         * winner.el (winner-mode):
13609         * calendar/timeclock.el (timeclock-in, timeclock-out)
13610         (timeclock-status-string, timeclock-change)
13611         (timeclock-workday-remaining-string)
13612         (timeclock-workday-elapsed-string)
13613         (timeclock-when-to-leave-string):
13614         * calendar/todo-mode.el (todo-add-category):
13615         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
13616         * emacs-lisp/autoload.el (update-file-autoloads):
13617         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
13618         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
13619         (checkdoc-message-text, checkdoc-defun):
13620         * emacs-lisp/debug.el (debugger-list-functions):
13621         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
13622         * emacs-lisp/eieio-opt.el (eieio-describe-class)
13623         (eieio-describe-generic):
13624         * emacs-lisp/lisp-mnt.el (lm-synopsis):
13625         * emacs-lisp/shadow.el (list-load-path-shadows):
13626         * emulation/cua-base.el (cua-mode):
13627         * emulation/edt.el (edt-set-scroll-margins):
13628         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
13629         (tpu-toggle-regexp, tpu-toggle-search-direction)
13630         (tpu-toggle-rectangle, tpu-toggle-control-keys):
13631         * emulation/tpu-extras.el (tpu-set-scroll-margins):
13632         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
13633         (viper-set-parsing-style-toggling-macro)
13634         (viper-set-emacs-state-searchstyle-macros):
13635         * emulation/viper.el (viper-set-hooks):
13636         * eshell/esh-mode.el (eshell-truncate-buffer):
13637         * international/mule-cmds.el (prefer-coding-system)
13638         (describe-input-method, describe-language-environment):
13639         * international/mule-diag.el (list-character-sets)
13640         (describe-character-set, describe-coding-system)
13641         (describe-fontset, list-fontsets, list-input-methods):
13642         * mail/sendmail.el (mail-signature):
13643         * net/ange-ftp.el (ange-ftp-copy-file):
13644         * net/browse-url.el (browse-url):
13645         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
13646         * net/quickurl.el (quickurl-add-url):
13647         * net/rcirc.el (names, topic):
13648         * net/xesam.el (xesam-mode):
13649         * play/5x5.el (5x5-new-game):
13650         * play/yow.el (apropos-zippy):
13651         * progmodes/ada-mode.el (ada-mode-version):
13652         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
13653         (f90-end-of-block)
13654         (f90-beginning-of-block):
13655         * progmodes/fortran.el (fortran-end-of-block)
13656         (fortran-beginning-of-block):
13657         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
13658         * progmodes/python.el (python-describe-symbol, python-shell):
13659         * term/ns-win.el (ns-print-buffer):
13660         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
13661         * textmodes/flyspell.el (flyspell-mode-on):
13662         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
13663         (pages-directory-for-addresses):
13664         * textmodes/table.el (table-recognize-cell)
13665         (table-query-dimension, table-generate-source)
13666         (table-insert-sequence, table--warn-incompatibility):
13667         * textmodes/tex-mode.el (tex-validate-buffer):
13668         * textmodes/texinfmt.el (texinfmt-version)
13669         (texinfo-format-buffer):
13670         Use `called-interactively-p' instead of `interactive-p'.
13672 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
13674         * image-mode.el (image-toggle-display):
13675         * emacs-lisp/elp.el (elp-instrument-function):
13676         * emacs-lisp/advice.el (ad-make-advised-definition):
13677         * emacs-lisp/easy-mmode.el (define-minor-mode):
13678         * net/browse-url.el (browse-url-maybe-new-window):
13679         * progmodes/sh-script.el (sh-learn-buffer-indent):
13680         Pass new argument 'any to `called-interactively-p'.
13682 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
13684         * international/uni-bidi.el:
13685         * international/uni-category.el:
13686         * international/uni-combining.el:
13687         * international/uni-comment.el:
13688         * international/uni-decimal.el:
13689         * international/uni-decomposition.el:
13690         * international/uni-digit.el:
13691         * international/uni-lowercase.el:
13692         * international/uni-mirrored.el:
13693         * international/uni-name.el:
13694         * international/uni-numeric.el:
13695         * international/uni-old-name.el:
13696         * international/uni-titlecase.el:
13697         * international/uni-uppercase.el:
13698         Regenerate from Unicode 5.2.0 data.
13700 2009-10-01  Glenn Morris  <rgm@gnu.org>
13702         * Makefile.in (ELCFILES): Regenerate.
13704 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
13706         * subr.el (interactive-p): Mark obsolete.
13707         (called-interactively-p): Make the optional-ness of `kind' obsolete.
13708         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
13709         advertised-signature-table for subroutines as well.
13711         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
13712         (set-advertised-calling-convention): New function.
13713         (make-obsolete, define-obsolete-function-alias)
13714         (make-obsolete-variable, define-obsolete-variable-alias):
13715         Make the optional-ness of `when' obsolete.
13716         (define-obsolete-face-alias): Make `when' non-optional.
13717         * help-fns.el (help-function-arglist):
13718         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
13719         Use advertised-signature-table.
13721 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
13723         * files.el (delete-directory): New defun.  The original function
13724         in fileio.c has been renamed to `delete-directory-internal'.
13726         * dired.el (dired-delete-file): Call `delete-directory' with
13727         RECURSIVE parameter.
13729         * net/ange-ftp.el (ange-ftp-delete-directory): Add optional
13730         parameter RECURSIVE.  Implementation is missing.
13732         * net/tramp.el (tramp-handle-make-directory): Flush upper
13733         directory's file properties.
13734         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
13735         (tramp-handle-dired-recursive-delete-directory): Flush directory
13736         properties after the remove command only.
13738         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
13739         Handle optional parameter RECURSIVE.
13741         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
13742         Handle optional parameter RECURSIVE.
13744         * net/tramp-smb.el (tramp-smb-errors): Add error message for
13745         connection timeout.
13746         (tramp-smb-handle-delete-directory): Handle optional parameter
13747         RECURSIVE.
13749 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
13751         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
13752         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
13753         (byte-compile-defmacro): Use backquotes.
13755         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
13757         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
13758         has no associated file.
13759         (vc-resynch-buffer): Use vc-dir-buffers.
13761 2009-10-01  Glenn Morris  <rgm@gnu.org>
13763         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
13764         (chart-file-count):
13765         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
13766         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
13767         * emacs-lisp/eieio-opt.el (eieio-describe-class):
13768         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
13769         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
13770         (eieio-copy-parents-into-subclass, make-instance, class-children)
13771         (eieio-generic-form):
13773         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
13774         match-data.  (Bug#4555).
13776         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
13777         rather than parsing it as a regexp.  This relaxes the layout
13778         requirements and makes errors easier to detect.
13779         (check-declare-verify): Check file is regular.
13780         (check-declare-directory): Doc fix.
13781         * subr.el (declare-function): Doc fix.
13783         * ibuffer.el (ibuffer-format-qualifier):
13784         * isearch.el (hi-lock-regexp-okay):
13785         * calc/calc.el (math-zerop):
13786         * mail/uce.el (rmail-msgbeg, rmail-msgend):
13787         * term/w32-win.el (setup-default-fontset, set-fontset-font):
13788         Remove unused declarations.
13790 2009-09-30  Eric Ludlam  <zappo@gnu.org>
13792         * emacs-lisp/eieio.el (boolean-p): Delete.
13794 2009-09-30  Glenn Morris  <rgm@gnu.org>
13796         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
13798         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
13799         filename is not a string.
13801 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
13803         * files.el (safe-local-eval-forms): Fix typo.
13805 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13807         * vc-hooks.el (vc-dir-buffers): New var.
13808         (vc-state-refresh): New function.
13809         (vc-state): Use it.
13810         (vc-after-save): Always ask the backend to recompute the new state.
13811         Always call vc-dir if necessary, using vc-dir-buffers.
13812         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
13813         Use vc-dir-buffers.
13814         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
13815         (vc-dir-prepare-status-buffer, vc-dir-update)
13816         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
13817         Don't call expand-file-name on default-directory.
13819 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
13821         * speedbar.el (speedbar-item-delete):
13822         * calc/calc-prog.el (calc-kbd-if):
13823         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
13825         * epa.el (epa-key-list-mode-map):
13826         * hi-lock.el (hi-lock-menu): Fix typos in menus.
13828         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
13829         (hs-show-hook): Fix typo in docstring.
13831 2009-09-29  Glenn Morris  <rgm@gnu.org>
13833         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
13834         file-name-nondirectory call preventing location of cedet files.
13835         (check-declare-verify): Use literal search rather than re-search.
13836         Add basic defmethod and defclass, and define-overloadable-function.
13838         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13839         Use tramp-compat-file-attributes rather than nonexistent
13840         tramp-compat-handle-file-attributes.
13842         * Makefile.in (lisptagsfiles4): New.
13843         (AUTOGENEL): Add cedet loaddefs files.
13844         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
13845         (update-elclist, compile-always, backup-compiled-files)
13846         (bootstrap-clean): Add yet another directory level.
13847         (update-elclist): Use LC_COLLATE rather than COLLATE.
13848         (ELCFILES): Update, via `make update-elclist'.
13850 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
13852         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
13853         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
13854         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
13856 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
13858         * Makefile.in (lisptagsfiles3): Define.
13859         (TAGS, TAGS-LISP): Use it.
13860         (update-elclist): Add third directory level to look for elc files.
13861         (compile-always): Likewise.
13862         (backup-compiled-files): Likewise.
13863         (bootstrap-clean): Likewise.
13864         (ELCFILES): Update.
13866 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
13868         * Makefile.in (ELCFILES): Add CEDET files.
13870 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
13872         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
13874         * net/tramp.el (top): Require tramp-imap.
13876         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
13877         Use `tramp-compat-handle-file-attributes'.
13879 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
13881         * net/tramp-imap.el: New package.
13883 2009-09-28  Eric Ludlam  <zappo@gnu.org>
13885         * emacs-lisp/chart.el:
13886         * emacs-lisp/eieio-base.el:
13887         * emacs-lisp/eieio-comp.el:
13888         * emacs-lisp/eieio-custom.el:
13889         * emacs-lisp/eieio-datadebug.el:
13890         * emacs-lisp/eieio-opt.el:
13891         * emacs-lisp/eieio-speedbar.el:
13892         * emacs-lisp/eieio.el: New files.
13894 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
13896         * whitespace.el (whitespace-trailing-regexp)
13897         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
13898         Fix doc string.
13900 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
13902         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
13903         menu.
13905         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
13906         menu-bar-ediff-menu.
13908         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
13909         define-overloadable-function.
13911         * progmodes/autoconf.el: Provide autoconf as well, so that this
13912         file can be `require'd.
13914         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
13916         * emacs-lisp/autoload.el (generated-autoload-feature)
13917         (generated-autoload-load-name): New vars.
13918         (autoload-rubric, autoload-generate-file-autoloads): Use them.
13919         (make-autoload): Recognize define-overloadable-function and
13920         defclass forms (for EIEIO).
13922         * Makefile.in (update-subdirs): Exclude cedet directory.
13924 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
13926         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
13928         * faces.el: Default light-background background for region face to
13929         ns_selection_color under NS.
13931 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
13933         * net/imap-hash.el: New library, see NEWS.
13935         * Makefile.in (ELCFILES): Add imap-hash.el.
13937 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13939         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
13940         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
13941         * help-macro.el (make-help-screen): Avoid using an ambiguous function
13942         definition where the docstring could be taken for the return value.
13944 2009-09-26  Glenn Morris  <rgm@gnu.org>
13946         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
13947         Add option to only show images below a certain size.
13948         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
13949         save-excursion calls.
13951 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
13953         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
13954         subdirectories) and eieio.
13956 2009-09-26  Alan Mackenzie  <acm@muc.de>
13958         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
13959         buggy bracketing.  (Bug#4289)
13961         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
13962         character constants (as case labels).  (Bug#4289)
13964 2009-09-25  Juri Linkov  <juri@jurta.org>
13966         * files.el (safe-local-eval-forms): Allow time-stamp in
13967         before-save-hook (Bug#4554).
13969 2009-09-25  Drew Adams  <drew.adams@oracle.com>
13971         * menu-bar.el (list-buffers-directory): Doc fix.
13973 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13975         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
13976         Try and avoid copying twice the same paragraph.
13977         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
13978         Remove save-excursion.
13979         (log-edit-changelog-entry): Do it here instead.
13981 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
13983         * bs.el (bs--get-file-name): Use `list-buffers-directory'
13984         when available, instead of hardcoding mode names.  Doc fix.
13986         * menu-bar.el (list-buffers-directory): Add docstring.
13987         Make automatically buffer-local.
13989         * dired.el (dired-mode):
13990         * files.el (cd-absolute):
13991         * pcvs.el (cvs-temp-buffer):
13992         * pcvs-util.el (cvs-get-buffer-create):
13993         * shell.el (shell-mode):
13994         * vc-dir.el (vc-dir-mode):
13995         Don't make `list-buffers-directory' buffer local.
13997 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
13999         * comint.el (comint-exec, comint-run, make-comint):
14000         Doc fixes (Bug#4542).
14002 2009-09-25  Glenn Morris  <rgm@gnu.org>
14004         * mail/rmailmm.el (rmail-mime): New custom group.
14005         Move all defcustoms in this file into this group.
14006         (rmail-mime-media-type-handlers-alist): Revert previous change.
14007         (rmail-mime-show-images): New option.
14008         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
14009         references to it, since it wasn't actually used for anything.
14010         (rmail-mime-insert-image): New function.
14011         (rmail-mime-image): Use rmail-mime-insert-image.
14012         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
14013         obey the value of `rmail-mime-show-images' option.  Print the size of
14014         attachments.
14016 2009-09-25  David Engster  <deng@randomsample.de>
14018         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
14020 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
14022         * whitespace.el: Does not highlight trailing spaces While point is
14023         at end of line.  Does not highligt spaces at beginning of buffer
14024         while point is at beginning of buffer.  Does not highlight spaces
14025         at end of buffer while point is at end of buffer.  (Bug#4177)
14026         New version 12.0.
14027         (whitespace-display-mappings): Adjust initialization.
14028         (whitespace-point, whitespace-font-lock-refontify): New vars.
14029         (whitespace-color-on, whitespace-color-off): Adjust code.
14030         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
14031         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
14032         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
14034 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
14036         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
14038         * textmodes/sgml-mode.el: Remove xml-mode alias.
14040         * files.el (auto-mode-alist, conf-mode-maybe)
14041         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
14043 2009-09-24  Alan Mackenzie  <acm@muc.de>
14045         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
14046         c-forward-conditionals, but it doesn't move point and doesn't set
14047         the mark.
14048         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
14049         (c-down-conditional-with-else, c-backward-conditional)
14050         (c-forward-conditional): Refactor to use c-scan-conditionals.
14052 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
14054         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
14055         (help-default-arg-highlight): Remove.
14056         (help-highlight-arg): New function.
14057         (help-do-arg-highlight): Use it.
14058         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
14060 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14062         * term.el (term-set-scroll-region, term-handle-ansi-escape):
14063         Undo last change, which didn't fix the problem and introduced others.
14065 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
14067         * progmodes/gdb-mi.el: Don't require speedbar.
14068         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
14070 2009-09-24  Glenn Morris  <rgm@gnu.org>
14072         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
14074         * term/ns-win.el (ns-reg-to-script): Define for compiler.
14076         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
14077         there is no newline after the final mime boundary.  (Bug#4539)
14078         Move markers on insertion so that any buttons inserted don't end up in
14079         the next part of a multipart message.
14080         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
14081         (rmail-mime-bulk-handler): Optionally handle images.
14082         (rmail-mime-image): New button action.
14083         (rmail-mime-image-handler): New function.
14084         (rmail-mime-mode): New mode.
14085         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
14087 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14089         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
14090         than just dropping elements from it (bug#4504).
14092         * term.el (term-set-scroll-region): Don't move cursor any more.
14093         (term-handle-ansi-escape): Call term-goto here instead.
14094         Suggested by Ivan Kanis <apple@kanis.eu>.
14096         * term.el: Require CL.
14097         (term-ansi-reset): New function.
14098         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
14099         (term-handle-colors-array): Simplify.
14101 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
14103         * allout.el (allout-overlay-interior-modification-handler)
14104         (allout-obtain-passphrase):
14105         * epa-file.el (epa-file-write-region):
14106         * ps-print.el (ps-begin-job):
14107         * vc-hooks.el (vc-toggle-read-only):
14108         * vc-rcs.el (vc-rcs-rollback):
14109         * vc-sccs.el (vc-sccs-rollback):
14110         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
14111         (vc-version-diff, vc-revert, vc-rollback):
14112         * wdired.el (wdired-check-kill-buffer):
14113         * emacs-lisp/authors.el (authors):
14114         * net/socks.el (socks-open-connection):
14115         * net/zeroconf.el (zeroconf-service-add-hook):
14116         * obsolete/vc-mcvs.el (vc-mcvs-register):
14117         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
14118         (gdb-select-frame):
14119         * progmodes/grep.el (lgrep, rgrep):
14120         * progmodes/idlw-help.el (idlwave-help-check-locations)
14121         (idlwave-help-html-link, idlwave-help-assistant-open-link):
14122         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
14123         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
14124         (reftex-toc-rename-label): Fix typos in error messages.
14126         * dired-aux.el (dired-do-shell-command): Reflow docstring.
14127         (dired-copy-how-to-fn): Doc fix.
14128         (dired-files-attributes, dired-read-shell-command):
14129         Fix typos in docstrings.
14131         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
14132         (dired-x-find-file-other-window): Reflow docstrings.
14133         (dired-omit-marker-char, dired-read-shell-command)
14134         (dired-x-submit-report): Fix typos in docstrings.
14136         * shell.el (shell-mode-hook):
14137         * view.el (View-scroll-line-forward):
14138         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
14139         Fix typos in docstrings.
14141         * net/dig.el (dig-invoke): Fix typo in docstring.
14142         (query-dig): Reflow docstring.
14144         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
14145         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
14146         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
14147         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
14148         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
14149         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
14150         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
14151         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
14152         (idlwave-completion-map, idlwave-current-indent)
14153         (idlwave-custom-ampersand-surround, idlwave-customize)
14154         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
14155         (idlwave-define-abbrev, idlwave-determine-class-special)
14156         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
14157         (idlwave-end-block-reg, idlwave-end-of-statement)
14158         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
14159         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
14160         (idlwave-explicit-class-listed, idlwave-file-header)
14161         (idlwave-fill-paragraph, idlwave-find-class-definition)
14162         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
14163         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
14164         (idlwave-in-quote, idlwave-indent-action-table)
14165         (idlwave-indent-expand-table, idlwave-indent-line)
14166         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
14167         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
14168         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
14169         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
14170         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
14171         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
14172         (idlwave-outlawed-buffers, idlwave-popup-select)
14173         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
14174         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
14175         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
14176         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
14177         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
14178         (idlwave-statement-type, idlwave-struct-skip)
14179         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
14180         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
14181         (idlwave-what-module-find-class): Fix typos in docstrings.
14182         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
14183         (idlwave-calculate-cont-indent, idlwave-expand-equal)
14184         (idlwave-find-module, idlwave-find-structure-definition)
14185         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
14186         (idlwave-list-load-path-shadows, idlwave-next-statement)
14187         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
14188         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
14189         (idlwave-template): Reflow docstrings.
14191         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
14192         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
14193         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
14194         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
14195         (idlwave-shell-display-line, idlwave-shell-display-wframe)
14196         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
14197         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
14198         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
14199         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
14200         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
14201         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
14202         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
14203         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
14204         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
14205         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
14206         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
14207         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
14208         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
14209         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
14210         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
14211         Fix typos in docstrings.
14212         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
14213         (idlwave-shell-hide-output, idlwave-shell-mode)
14214         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
14215         Reflow docstrings.
14217         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
14219 2009-09-24  Ivan Kanis  <apple@kanis.eu>
14221         * term.el (term-bold-attribute): New var.
14222         (term-handle-colors-array): Use it.
14224 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
14226         * progmodes/gdb-mi.el (gdb-version): New variable.
14227         (gdb-non-stop-handler): Set gdb-version.
14228         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
14229         Condition "--thread" option on gdb-version.
14230         (gdb-invalidate-threads): Remove unused argument.
14232 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14234         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
14235         to looking-back to avoid ridiculous slow down in large files (bug#4511).
14237 2009-09-23  Glenn Morris  <rgm@gnu.org>
14239         * mail/rmail.el (rmail-reply): Don't try to add a References header when
14240         replying to mail without References or Message-Id.  (Bug#4525)
14242 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
14244         * term/ns-win.el (ns-reg-to-script): New variable.
14246 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
14248         * epg.el (epg-wait-for-status): Preserve existing 'error results.
14250 2009-09-22  Sam Steingold  <sds@gnu.org>
14252         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
14253         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
14254         to 1 because hg returns status 1 when nothing is found.
14255         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
14257 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14259         * textmodes/fill.el: Convert to utf-8 encoding.
14260         (fill-french-nobreak-p): Remove redundant » and « inherited from our
14261         pre-Unicode days.
14263         * add-log.el (change-log-fill-forward-paragraph): New function.
14264         (change-log-mode): Use it so fill-region DTRT.
14265         Set fill-indent-according-to-mode here rather than in
14266         change-log-fill-paragraph.
14267         (change-log-fill-paragraph): Remove.
14269 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
14271         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
14272         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
14274 2009-09-22  Glenn Morris  <rgm@gnu.org>
14276         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
14277         the scroll-bar scroll the calendar window rather than the buffer.
14279         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
14280         commands that move point (as opposed to scrolling).
14282         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
14284         * emacs-lisp/elint.el (elint): New custom group.
14285         (elint-log-buffer): Make it a defcustom.
14286         (elint-scan-preloaded, elint-ignored-warnings)
14287         (elint-directory-skip-re): New options.
14288         (elint-builtin-variables): Doc fix.
14289         (elint-preloaded-env): New variable.
14290         (elint-unknown-builtin-args): Add an entry for encode-time.
14291         (elint-extra-errors): Make it a variable rather than a constant.
14292         (elint-preloaded-skip-re): New constant.
14293         (elint-directory): Skip files matching elint-directory-skip-re.
14294         (elint-features): New variable, local to linted buffers.
14295         (elint-update-env): Initialize elint-features.  Possibly add
14296         elint-preloaded-env to the buffer's environment.
14297         (elint-get-top-forms): Bind elint-current-pos, for log messages.
14298         Skip quoted forms.
14299         (elint-init-form): New function, extracted from elint-init-env.
14300         Make non-list forms a warning rather than an error.
14301         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
14302         easy-menu-define, put that adds an error-condition, and provide.
14303         When requiring cl, also require cl-macs.  Really require cl, to handle
14304         some cl macros.  Store required libraries in the list elint-features,
14305         so as not to re-load them.  Treat cc-require like require.
14306         (elint-init-env): Call elint-init-form to do the work.
14307         Handle eval-and-compile and such like.
14308         (elint-add-required-env): Do not clear messages.
14309         (elint-special-forms): Add handlers for function, defalias, if, when,
14310         unless, and, or.
14311         (elint-form): Add optional argument to ignore elint-special-forms,
14312         useful to prevent recursive calls from handlers.  Doc fix.
14313         Respect elint-ignored-warnings.
14314         (elint-form): Respect elint-ignored-warnings.
14315         (elint-bound-variable, elint-bound-function): New variables.
14316         (elint-unbound-variable): Respect elint-bound-variable.
14317         (elint-get-args): Respect elint-bound-function.
14318         (elint-check-cond-form): Add some simple handling for (f)boundp and
14319         featurep tests.
14320         (elint-check-defalias-form): New handler.
14321         (elint-check-let-form): Make an empty let a warning rather than an
14322         error.
14323         (elint-check-setq-form): Make an empty setq a warning rather than an
14324         error.  Respect elint-ignored-warnings.
14325         (elint-check-defvar-form): Accept null doc-strings.
14326         (elint-check-conditional-form): New handler.  Does some simple-minded
14327         checking of featurep and (f)boundp tests.
14328         (elint-put-function-args): New function.
14329         (elint-initialize): Use elint-scan-doc-file rather than
14330         elint-find-builtin-variables.  Use elint-put-function-args.
14331         Possibly scan preloaded-file-list.
14332         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
14333         extend to handle functions as well.
14335 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
14337         * linum.el (linum-delete-overlays, linum-update-window):
14338         Do not modify the right margin.  (Bug#3971)
14340 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
14342         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
14343         nxml-mode instead of xml-mode.
14345 2009-09-21  Kevin Ryde  <user42@zip.com.au>
14347         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
14349 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14351         * net/dig.el (dig-mode): Use define-derived-mode.
14353 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
14355         * vc-dispatcher.el (vc-do-command): Return the process object in
14356         the asynchronous case.  Use when instead of if.  Do not run
14357         vc-exec-after to display a message if not enabled.  (Bug#4463)
14359         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
14360         properties to the stash strings.
14361         (vc-git-stash-list): Return a list of strings.
14362         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
14363         (vc-git-stash-show-at-point): New functions.
14364         (vc-git-stash-map): New keymap.
14366         * register.el (ctl-x-r-map): Define the keys here instead of
14367         using autoload.
14369 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
14371         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
14372         list, to workaround performance problem (bug#4485).
14374 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
14376         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
14378 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
14380         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
14381         Document that this option is not recommended to use.
14383 2009-09-19  Glenn Morris  <rgm@gnu.org>
14385         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
14386         variable `var'.
14388         * calc/calc-alg.el (var):
14389         * calc/calcalg2.el (var): Define for compiler.
14391 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
14393         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
14394         Doc fix (Bug#3932).
14396         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
14398         * time-stamp.el (time-stamp-month-dd-yyyy)
14399         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
14400         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
14401         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
14402         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
14403         Remove functions that have been obsolete since 1995 (Bug#4436).
14405         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
14406         indent buffer only if called interactively (Bug#4452).
14408 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
14409             Eli Zaretskii  <eliz@gnu.org>
14411         This fixes bug#4197 (merged to bug#865, though not identical).
14412         * server.el (server-auth-dir): Add docstring note about FAT32.
14413         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
14414         but warn against using them.
14416 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
14418         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
14419         older GDB where there is no has_more field.
14421 2009-09-19  Glenn Morris  <rgm@gnu.org>
14423         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
14425 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
14427         * files.el (auto-mode-alist): Change default for XML files to nXML
14428         mode (Bug#4169).
14430 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
14432         * server.el (server-ensure-safe-dir): Pass 'integer
14433         to `file-attributes', as suggested.
14435 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14437         * dired-aux.el (dired-query-alist): Remove spurious backslash.
14438         (dired-query): Use read-key.
14440 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
14442         * cus-start.el (ns-use-qd-smoothing): Remove.
14444 2009-09-18  Glenn Morris  <rgm@gnu.org>
14446         * allout.el (top-level): Remove unnecessary progn.
14448         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
14450         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
14451         definition of abbrev table.
14453         * speedbar.el (speedbar-track-mouse):
14454         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
14455         * net/eudc.el (eudc-expand-inline):
14456         * net/newst-backend.el (newsticker--cache-read-feed):
14457         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
14458         condition-case handlers.
14460 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
14462         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
14463         (gdb-var-list): Add an element for has_more field.
14464         (gdb-non-stop-handler): Enable pretty printing for STL containers.
14465         (gdb-var-create-handler, gdb-var-list-children-handler-1)
14466         (gdb-var-update-handler-1): Parse output of dynamic variable
14467         objects (STL containers).
14468         (gdb-var-delete-1): Pass var1 as an explicit second argument.
14469         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
14471         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
14472         gdb-var-list.
14473         (gud-speedbar-buttons): Make node expandable if expression "has more"
14474         children.
14476 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
14478         * startup.el (emacs-quick-startup): Remove variable and all uses.
14479         (command-line): Set `inhibit-x-resources' instead.
14480         (command-line-1): Use `inhibit-x-resources' instead.
14482 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
14484         * subr.el: Fix last change to avoid using the `unless' macro,
14485         which breaks bootstrapping.
14487 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14489         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
14490         extended definitions, in case we reload subr.el after having
14491         loaded CL.
14492         (eval-next-after-load): Mark as obsolete.
14494 2009-09-17  Juri Linkov  <juri@jurta.org>
14496         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
14497         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
14498         (menu-bar-showhide-menu, menu-bar-tools-menu)
14499         (menu-bar-describe-menu, menu-bar-help-menu)
14500         (minibuffer-local-completion-map, minibuffer-local-map):
14501         Fix list quoting.
14503 2009-09-17  Glenn Morris  <rgm@gnu.org>
14505         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
14506         arguments, whether or not it has a handler.
14508         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
14510         * simple.el (hard-newline): Give it a doc-string.
14512         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
14513         (lisp-mode-syntax-table): Give them doc-strings.
14515 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
14517         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
14518         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
14519         (menu-bar-options-menu, menu-bar-showhide-menu)
14520         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
14521         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
14522         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
14523         (menu-bar-options-menu, menu-bar-tools-menu)
14524         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
14525         (menu-bar-help-menu):
14526         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
14527         string arguments.
14529         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
14530         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
14531         calls for the menu names and :help.
14533 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14535         * mouse.el (minor-mode-menu-from-indicator): Pay attention
14536         to :minor-mode-function (bug#4455).
14538 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
14540         * startup.el (command-line): Initialize the window-system after
14541         processing the command-line.
14543         * textmodes/page.el (what-page): Make sure we don't inf-loop if
14544         page-delimiter matches the empty string.
14546 2009-09-16  Glenn Morris  <rgm@gnu.org>
14548         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
14549         byte-compile-not-obsolete-var.  It's a list now.
14550         (byte-compile-not-obsolete-funcs): New variable.
14551         (byte-compile-warn-obsolete): Don't warn about functions if they are in
14552         byte-compile-not-obsolete-funcs.
14553         (byte-compile-variable-ref, byte-compile-defvar): Update for
14554         byte-compile-not-obsolete-vars name-change and list nature.
14555         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
14556         and variables behind (f)boundp tests.
14557         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
14559 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
14561         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
14563 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14565         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
14566         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
14567         Don't autoload.
14569 2009-09-15  Stephen Eglen  <stephen@gnu.org>
14571         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
14572         the virtual-buffers, use the name of the buffer specified by
14573         find-file-noselect, as the match may be a symlink.  (This was a
14574         problem if the target and the symlink had different names.)
14576 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14578         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
14580         * desktop.el (desktop-path): Check user-emacs-directory.
14582         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
14584         * loadup.el: Use after-load-functions to GC after loading each file.
14585         Remove the explicit GC calls that used to be sprinkled around.
14587         * subr.el (after-load-functions): New hook.
14588         (do-after-load-evaluation): Run it.  Use string-match-p to detect
14589         `obsolete' packages, rather than painfully extracting the relevant
14590         directory name.
14592 2009-09-15  Glenn Morris  <rgm@gnu.org>
14594         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
14595         free variable `doc'.
14597         * dired.el (dired-mode-map): Add menu entry for async shell command.
14599         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
14600         variables, also consider the .elc files, since the .el files are
14601         normally gzipped (subsequent code locates the .el.gz from the .elc).
14603         * calc/calc-prog.el (arglist): Define for compiler.
14605         * calendar/diary-lib.el (diary-display-function): Change the default to
14606         fancy display.
14607         (body): Define for compiler.
14609         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
14610         (byte-compile-file-form, byte-compile-lambda)
14611         (byte-compile-top-level-body, byte-compile-form)
14612         (byte-compile-variable-ref, byte-compile-setq)
14613         (byte-compile-setq-default, byte-compile-body)
14614         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
14615         (batch-byte-compile): Give some more local variables with common names
14616         a "bytecomp-" prefix to avoid masking warnings about free variables.
14618         * startup.el (command-line-1): Give local variables with common names a
14619         distinguishing prefix, so as not to hide free variable warnings during
14620         bootstrap.
14622         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
14623         clever and add a suffix to make a unique name, just let the user decide
14624         whether or not to overwrite it.  If the input is a directory, write the
14625         default filename to that directory.  (Bug#4388)
14626         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
14627         is a filename-as-a-directory.
14629 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14631         * textmodes/page.el (what-page): Don't move to beginning of line.
14632         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
14634 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
14636         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
14638 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
14640         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
14641         * help.el (help-for-help-internal): Add purecopy calls for text.
14643         * vc.el (top): print-log method now takes an optional SHORTLOG
14644         argument.  Add a new method: root.
14645         (vc-root-diff, vc-print-root-log): New functions.
14646         (vc-log-short-style): New variable.
14647         (vc-print-log-internal): Add support for showing short logs.
14649         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
14650         vc-print-root-log and vc-print-root-diff.
14652         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
14653         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
14654         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
14655         short logs.
14657         * vc-cvs.el (vc-cvs-print-log):
14658         * vc-mtn.el (vc-mtn-print-log):
14659         * vc-rcs.el (vc-rcs-print-log):
14660         * vc-sccs.el (vc-sccs-print-log):
14661         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
14662         that is ignored for now.
14664         * vc-mtn.el (vc-mtn-annotate-command):
14665         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
14667 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14669         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
14670         to function-key-map, and give them ascii-character property.
14671         * term/x-win.el (x-alternatives-map):
14672         * term/ns-win.el (ns-alternatives-map):
14673         * term/internal.el (msdos-key-remapping-map):
14674         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
14676 2009-09-14  Glenn Morris  <rgm@gnu.org>
14678         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
14679         temp-buffers (2009-09-12).
14681 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14683         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
14684         the new read-key function.
14686 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
14688         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
14689         is defined (Bug#4405).
14691 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
14693         * recentf.el (recentf-cleanup): Use a hash table to find
14694         duplicates (Bug#4407).
14696 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
14698         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
14699         kp-0 to ascii equivalents (Bug#4325).
14701 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
14703         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
14705         * eshell/em-hist.el:
14706         * eshell/em-dirs.el (eshell-complete-user-reference):
14707         Declare pcomplete functions and variables to avoid compiler warnings.
14709 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
14711         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
14712         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
14713         * eshell/em-alias.el (eshell-aliases-file):
14714         * eshell/em-hist.el (eshell-history-file-name):
14715         Use expand-file-name instead of concat to make file names (Bug#4308).
14717 2009-09-13  Glenn Morris  <rgm@gnu.org>
14719         * ediff-merg.el (ediff-do-merge):
14720         * filesets.el (filesets-run-cmd):
14721         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
14722         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
14723         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
14724         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
14725         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
14726         Replace empty `let's with `progn'.
14728 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14730         * mail/sendmail.el (send-mail-function):
14731         * tooltip.el (tooltip-mode):
14732         * simple.el (transient-mark-mode):
14733         * rfn-eshadow.el (file-name-shadow-mode):
14734         * frame.el (blink-cursor-mode):
14735         * font-core.el (global-font-lock-mode):
14736         * files.el (temporary-file-directory)
14737         (small-temporary-file-directory, auto-save-file-name-transforms):
14738         * epa-hook.el (auto-encryption-mode):
14739         * composite.el (global-auto-composition-mode):
14740         Use custom-initialize-delay.
14741         * startup.el (command-line): Don't explicitly call
14742         custom-reevaluate-setting for all the above vars.
14743         * custom.el (custom-initialize-safe-set)
14744         (custom-initialize-safe-default): Delete.
14746 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14748         * term/x-win.el (x-initialize-window-system):
14749         * term/w32-win.el (w32-initialize-window-system):
14750         * term/ns-win.el (ns-initialize-window-system): Don't call
14751         mouse-wheel-mode since it's enabled globally by default already.
14753         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
14754         actually define the variable, but only silences the byte-compiler.
14755         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
14756         before looking it up.
14757         (mouse-wheel-scroll-amount): Also reset the bindings if this value
14758         is changed.
14760 2009-09-12  Glenn Morris  <rgm@gnu.org>
14762         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
14763         1000.
14764         (elint-add-required-env): Don't beep on error.
14765         (elint-forms): In case of error, return ENV unchanged.
14766         (elint-init-env): Skip non-list forms.
14767         (elint-log): Handle unknown file positions.
14769 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
14771         * epg.el (epg-make-context): Add autoload cookie.
14772         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
14773         (epg-decrypt-string, epg-start-verify, epg-verify-file)
14774         (epg-verify-string, epg-start-sign, epg-sign-file)
14775         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
14776         (epg-encrypt-string, epg-start-export-keys)
14777         (epg-export-keys-to-file, epg-export-keys-to-string)
14778         (epg-start-import-keys, epg-import-keys-from-file)
14779         (epg-import-keys-from-string, epg-start-receive-keys)
14780         (epg-receive-keys, epg-import-keys-from-server)
14781         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
14782         (epg-sign-keys, epg-start-generate-key)
14783         (epg-generate-key-from-file, epg-generate-key-from-string):
14784         Remove autoload cookie.
14786 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
14788         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
14789         reevaluation of trash-directory.
14791         * mwheel.el: Fix last change.
14792         (mouse-wheel-mode): New defvar.
14793         (mouse-wheel-mode): Remove autoload cookie.
14795 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14797         * mwheel.el (mwheel-installed-bindings): New var.
14798         (mouse-wheel-mode): Use it, so as to make sure we really remove all
14799         the bindings we set last time.  Use custom-initialize-delay.
14800         * loadup.el: Load mwheel after term/*-win.el.
14801         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
14802         and mouse-wheel-up-event now that their first evaluation is done
14803         sufficiently late to be correct.
14805         * startup.el (tutorial-directory): Make it a defcustom.
14806         Use custom-initialize-delay rather than eval-at-startup to set it.
14807         * image.el (image-load-path): Make it a defcustom.
14808         Use custom-initialize-delay rather than eval-at-startup to set it.
14809         * subr.el (eval-at-startup): Remove.
14810         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
14812         * subr.el (do-after-load-evaluation): Warn the user after loading an
14813         obsolete package.
14815 2009-09-12  Glenn Morris  <rgm@gnu.org>
14817         * proced.el (proced-mark-alt): Remove alias.
14818         (proced-mode-map): Remove proced-mark-alt.
14820         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
14821         Elint file and directory.  Remove initialization entry.
14823         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
14824         commands.
14825         (elint-current-buffer): Set mode-line-process.
14826         (elint-init-env): Handle define-derived-mode.
14827         Fix declare-function with unspecified arglist.  Guard against odd
14828         defalias statements (eg iso-insert's 8859-1-map).
14829         (elint-add-required-env): Use a temp buffer.
14830         (elint-form): Just print the function/macro name, not the whole form.
14831         Return env unchanged if we fail to parse a macro.
14832         (elint-forms): Guard against parse errors.
14833         (elint-output): New function, to handle batch mode.
14834         (elint-log-message): Add optional argument.  Use elint-output.
14835         (elint-set-mode-line): New function.
14837 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
14839         * emacs-lisp/elp.el (elp-not-profilable): Add more
14840         functions (Bug#4233).
14842 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
14844         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
14845         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
14847 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
14849         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
14850         (gdb-var-list-children): Use json parsing.
14852 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
14854         * progmodes/js.el (js--proper-indentation): Handle the case where
14855         char-before is null.  Reported by Deniz Dogan.
14857 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
14859         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
14861 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
14863         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
14864         (epg-digest-algorithm-alist): Add SHA224.
14865         (epg-context-set-passphrase-callback)
14866         (epg-context-set-progress-callback): Add description about
14867         callback function.
14869 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14871         * custom.el (custom-delayed-init-variables): New var.
14872         (custom-initialize-delay): New function.
14873         * startup.el (command-line): "Re"evaluate all vars in
14874         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
14875         explicitly any more.
14876         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
14877         to avoid creating a ~/.emacs.d at build-time (bug#4347).
14879         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
14881 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
14883         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
14884         (gdb-var-update-handler): Use json parsing.
14886 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
14888         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
14889         decode annotated text, regardless of language environment.  (Bug#2741)
14891 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14893         * Makefile.in (autoloads): Make rmail.el writable as well.
14895 2009-09-11  Glenn Morris  <rgm@gnu.org>
14897         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
14898         loaddefs.el.
14899         * dired.el: Regenerate with extracted autoloads.
14900         * Makefile.in (autoloads): Make dired.el writable.
14902         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
14903         * ibuffer.el: Regenerate with extracted autoloads.
14904         * Makefile.in (autoloads): Make ibuffer.el writable.
14906         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
14907         * version.el (emacs-copyright, emacs-major-version)
14908         (emacs-minor-version): Reformat doc-strings for make-docfile.
14910         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
14911         functions and variables, since they must be stuff specific to some other
14912         platform.
14913         (apropos-print): Make mouse-click message less specific about button.
14915         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
14916         that records where a macro was defined.
14917         * help-fns.el (describe-function-1): Mention if a function has a
14918         compiler-macro.
14919         * help-mode.el (help-function-cmacro): New button.
14921         * locate.el (top-level): Always require dired.
14922         (locate-mode-map): Initialize inside the defvar.
14924         * net/ange-ftp.el (dired-compress-file): Declare.
14925         (ange-ftp-dired-compress-file): Add doc string.
14927         * term/ns-win.el (x-display-name, x-setup-function-keys):
14928         Unify doc-strings with X versions.
14930 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14932         * emulation/crisp.el (crisp-mode-map): Move initialization
14933         into declaration.
14934         (crisp-mode): Use define-minor-mode.
14936         * progmodes/xscheme.el (xscheme-evaluation-commands):
14937         Put a :advertised-binding property rather than using
14938         advertised-xscheme-send-previous-expression.
14939         (advertised-xscheme-send-previous-expression): Declare obsolete.
14940         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
14941         `advertised-undo'.
14942         (crisp-mode): Add corresponding bindings to
14943         undo's :advertised-binding instead.
14944         * dired.el (dired-mode-map): Put a :advertised-binding property rather
14945         than using dired-advertised-find-file.
14946         (dired-advertised-find-file):
14947         * simple.el (advertised-undo):
14948         * wid-edit.el (advertised-widget-backward): Declare obsolete.
14949         (widget-keymap): Put a :advertised-binding property rather
14950         than using advertised-widget-backward.
14951         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
14952         than using advertised-undo.
14953         * tutorial.el (tutorial--default-keys): Adjust accordingly.
14955 2009-09-10  Simon South  <ssouth@slowcomputing.org>
14957         * progmodes/delphi.el (delphi-tab): Indent region when Transient
14958         Mark mode is enabled and region is active; otherwise indent or
14959         insert TAB as usual.
14960         (delphi-mode): Update description of TAB-key binding.
14962 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14964         * subr.el (define-key-rebound-commands): Mark obsolete.
14965         * startup.el (precompute-menubar-bindings): Remove.
14966         (normal-top-level): Remove obsolete code that tried to precompute
14967         menubar bindings.
14968         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
14969         define-key-rebound-commands and precompute-menubar-bindings.
14971 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
14973         * net/imap.el (imap-interactive-login): Better messages.
14974         (imap-open): Fix bug with renamed buffer on reconnect.
14975         (imap-authenticate): Add buffer-local imap-last-authenticator variable
14976         for easier debugging and cleaner code.  On successful (guessed based on
14977         server capabilities) secondary authentication, set imap-state
14978         correctly.
14979         (imap-last-authenticator): Define imap-last-authenticator as a variable
14980         to avoid warnings.
14982 2009-09-10  Glenn Morris  <rgm@gnu.org>
14984         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
14986         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
14987         (byte-compile-file-form-autoload): Don't warn about unknown functions
14988         where the autoload statement comes after the use.
14989         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
14990         that any handlers inside the body (eg require) are in turn respected.
14992         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
14993         effects.
14995         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
14996         and syntax and abbrev tables basic docs, if they don't have any.
14998         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
15000         * international/mule-cmds.el (top-level): Require cl when compiling.
15001         (view-hello-file): Use default-value rather than
15002         default-enable-multibyte-characters.
15004         * progmodes/fortran.el: Move all safe and risky properties into the
15005         defcustoms.
15007         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
15008         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
15009         * mail/undigest.el:
15010         Put autoloads in rmail.el rather than loaddefs.el.
15011         * mail/rmail.el: Regenerate with extracted autoloads.
15013         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
15014         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
15016 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
15018         Reported in thread for Bug#4375.
15019         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
15020         "-data-evaluate-expression" instead of print.
15021         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
15022         (gdb-tooltip-print): Parse output from above MI command.
15023         (gdb): Revert 2009-08-11 change.  User should detach inferior
15024         manually.
15026         Remove the word "separate" from IO functions as inferior
15027         output is now never displayed in the GUD buffer.
15029 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
15031         * startup.el (command-line-normalize-file-name): On Windows and
15032         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
15034 2009-09-10  Juri Linkov  <juri@jurta.org>
15036         * isearch.el (isearch-text-char-description): Propertize escape
15037         character sequences with the `escape-glyph' face.  (Bug#4344)
15039         * simple.el (shell-command): Set asynchronous process filter to
15040         `comint-output-filter'.  (Bug#4343)
15042         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
15043         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
15044         the list.  Move "asm" to the bottom.
15045         (grep-find-ignored-directories): Add `choice' with nil value
15046         to empty the list easily.
15047         (grep-find-ignored-files): New option.
15048         (grep-files-history): Set to nil by default instead of '("ch" "el").
15049         (grep-compute-defaults): Add "<X>" to `grep-template'.
15050         (grep-read-files): Bind new local variables `default-alias' and
15051         `default-extension'.  Use a list of default values for the file prompt.
15052         (lgrep): Add `--exclude=' command line options composed from
15053         `grep-find-ignored-files'.
15054         (rgrep): Add `-name' command line options composed from
15055         `grep-find-ignored-files'.  (Bug#4301)
15057 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
15059         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
15060         (bug#4368).
15062 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15064         * calendar/time-date.el (autoload):
15065         Expand define-obsolete-function-alias into defalias and make-obsolete
15066         for old Emacsen that Gnus supports.
15067         (with-no-warnings): Define it for old Emacsen.
15068         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
15069         is available.
15070         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
15071         float-time is available; suppress compile warning for time-to-seconds.
15073 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
15075         * net/imap.el (imap-message-map): Docstring fix.
15077 2009-09-09  Glenn Morris  <rgm@gnu.org>
15079         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
15080         line numbers too.  (Bug#4374)
15082 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15084         * smerge-mode.el (smerge-remove-props, smerge-refine):
15085         Use with-silent-modifications (bug#4342).
15087         * subr.el (with-silent-modifications): New macro.
15089 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
15091         * files.el (top-level): Require `cl' when compiling.
15093 2009-09-07  Glenn Morris  <rgm@gnu.org>
15095         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
15097         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
15098         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
15100 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
15102         * vc-git.el (vc-git-annotate-command): Use separator to parse
15103         arguments correctly.
15105 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
15107         * proced.el (proced-mode): Doc fix.
15109 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
15111         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
15112         lstat fails.
15113         (tramp-do-file-attributes-with-ls): Check for file existence at
15114         remote end.
15115         (tramp-do-file-attributes-with-stat): Likewise.
15116         (tramp-convert-file-attributes): Return nil when attr is nil.
15118 2009-09-05  Glenn Morris  <rgm@gnu.org>
15120         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
15121         properties to this button.
15122         (diary-fancy-display): Don't extend the button to the final newline.
15123         (diary-fancy-display-mode): Continue to define "q" as a local key.
15125         * calendar/cal-china.el (holiday-chinese): Make it slightly more
15126         efficient.
15128         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
15130         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
15131         (byte-compile-dest-file-function): New option.
15132         (byte-compile-dest-file): Doc fix.
15133         Obey byte-compile-dest-file-function.
15134         (byte-compile-cl-file-p): New function.
15135         (byte-compile-eval): Only suppress noruntime warnings about cl functions
15136         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
15137         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
15138         than for file being previously loaded.
15139         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
15140         (byte-compile-file-form-require): Handle the case where requiring a file
15141         indirectly causes CL to be loaded.
15143 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
15145         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
15146         before killing the old buffer, since by the time `kill-buffer' is
15147         run so many buffer variables have been set to nil that it may not
15148         behave as expected.  (Bug#4061)
15150 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
15152         * files.el (find-alternate-file): If the old buffer is modified
15153         and visiting a file, behave similarly to `kill-buffer' when
15154         killing it, thus reverting to the pre-1.878 behavior; see
15155         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
15156         for discussion.  Also, consult `buffer-file-name' as a variable
15157         not as a function, for consistency with the rest of the code.
15159 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
15161         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
15162         also when adding a new directory.
15164         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
15165         defun.
15167 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15169         * files.el (locate-file-completion-table): Make it provide boundary
15170         information, so partial-completion works better.
15172 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
15174         * mail/footnote.el (Footnote-text-under-cursor):
15175         Check footnote-text-marker-alist before using it (bug#4324).
15177 2009-09-04  Glenn Morris  <rgm@gnu.org>
15179         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
15180         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
15181         * play/solitaire.el, play/tetris.el:
15182         Remove leading * from defcustom and defface docs.
15184         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
15185         necessary.
15186         (diary-fancy-overriding-map): New variable.
15187         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
15188         Use view-mode.
15190         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
15191         goto-line.
15193 2009-09-03  Glenn Morris  <rgm@gnu.org>
15195         * arc-mode.el (archive-mode):
15196         * dos-fns.el (set-default-process-coding-system):
15197         * man.el (Man-getpage-in-background):
15198         * menu-bar.el (menu-bar-describe-menu):
15199         * server.el (server-process-filter):
15200         * startup.el (command-line):
15201         * tar-mode.el (tar-header-block-tokenize, tar-extract):
15202         * w32-fns.el (set-default-process-coding-system):
15203         * x-dnd.el (x-dnd-handle-file-name):
15204         * international/mule-cmds.el (mule-menu-keymap)
15205         (set-default-coding-systems, language-info-alist, set-language-info)
15206         (set-language-environment, standard-display-european-internal)
15207         (set-locale-environment):
15208         * international/mule-diag.el (mule-diag):
15209         * mail/emacsbug.el (report-emacs-bug):
15210         * mail/rmail.el (rmail-mode):
15211         * mail/sendmail.el (mail-setup):
15212         Use default-value rather than default-enable-multibyte-characters.
15214         * progmodes/f90.el: Move all safe properties into the defcustoms.
15215         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
15217         * calendar/appt.el (appt-check):
15218         * calendar/diary-lib.el (diary-set-header, diary-live-p)
15219         (diary-check-diary-file, diary-list-entries)
15220         (diary-include-other-diary-files, diary-simple-display)
15221         (diary-fancy-display, diary-print-entries)
15222         (diary-mark-included-diary-files, diary-make-entry):
15223         Don't call substitute-in-file-name on diary-file.
15225 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
15226             Stefan Monnier  <monnier@iro.umontreal.ca>
15228         * mail/footnote.el (footnote-prefix): Make it a defcustom.
15229         (footnote-mode-map): Move initialization into the declaration.
15230         (footnote-minor-mode-map): Define it rather than changing global-map.
15231         (footnote-mode): Use define-minor-mode.
15233 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
15235         * net/tramp.el (tramp-handle-file-attributes-with-ls)
15236         (tramp-do-file-attributes-with-perl)
15237         (tramp-do-file-attributes-with-stat): Rename from
15238         `tramp-handle-file-attributes-with-*'.
15239         (tramp-handle-file-attributes): Use them.
15240         (tramp-do-directory-files-and-attributes-with-perl)
15241         (tramp-do-directory-files-and-attributes-with-stat): Rename from
15242         `tramp-handle-directory-files-and-attributes-with-*'.
15243         (tramp-handle-directory-files-and-attributes): Use them.
15244         (tramp-method-out-of-band-p): Additional parameter SIZE.
15245         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
15246         (tramp-handle-write-region): Use it.
15247         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
15248         (tramp-handle-vc-registered): Check, whether the first run did
15249         return files to be tested.
15250         (tramp-advice-make-auto-save-file-name): Do not call directly
15251         `tramp-handle-make-auto-save-file-name', because this would bypass
15252         the locking mechanism.
15254         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
15255         (file-remote-p, process-file, start-file-process, set-file-times)
15256         (tramp-compat-file-attributes): Compatibility functions shall not
15257         call directly `tramp-handle-*', because this would bypass the
15258         locking mechanism.
15259         (tramp-compat-number-sequence): New defun.
15261 2009-09-02  Glenn Morris  <rgm@gnu.org>
15263         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
15264         alias for float-time.
15265         (time-to-number-of-days): In Emacs, use float-time.
15266         * net/newst-backend.el (time-add): Suppress warnings from compat
15267         function.
15268         * time.el (emacs-uptime, emacs-init-time):
15269         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
15270         Use float-time rather than time-to-seconds.
15272         * minibuffer.el (completion-initials-expand): Fix typo.
15274         * faces.el (modeline, modeline-inactive, modeline-highlight)
15275         (modeline-buffer-id):
15276         * info.el (info-menu-5): Mark these face aliases as obsolete.
15278 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
15280         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
15281         space ...
15282         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
15283         no "--thread" option.
15284         (gdb-stopped): Don't print "Switched to thread" message when it is
15285         unchanged.
15287 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
15289         * minibuffer.el (completion-try-completion)
15290         (completion-all-completions): Remove ill-defined (and
15291         mistakenly installed and luckily never used nor documented)
15292         `completion-styles' property.
15293         (completion-initials-expand, completion-initials-all-completions)
15294         (completion-initials-try-completion): New functions.
15295         (completion-styles-alist): Add doc to each entry.
15296         Add new `initials' entry.
15298 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
15300         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
15301         MI command -var-evaluate-expression.
15302         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
15303         and tweak for case of string child.
15304         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
15306 2009-09-01  Glenn Morris  <rgm@gnu.org>
15308         * add-log.el (change-log-date-face, change-log-name-face)
15309         (change-log-email-face, change-log-file-face, change-log-list-face)
15310         (change-log-conditionals-face, change-log-function-face)
15311         (change-log-acknowledgement-face):
15312         * cus-edit.el (custom-invalid-face, custom-rogue-face)
15313         (custom-modified-face, custom-set-face, custom-changed-face)
15314         (custom-saved-face, custom-button-face, custom-button-pressed-face)
15315         (custom-documentation-face, custom-state-face, custom-comment-face)
15316         (custom-comment-tag-face, custom-variable-tag-face)
15317         (custom-variable-button-face, custom-face-tag-face)
15318         (custom-group-tag-face-1, custom-group-tag-face):
15319         * diff-mode.el (diff-header-face, diff-file-header-face)
15320         (diff-index-face, diff-hunk-header-face, diff-removed-face)
15321         (diff-added-face, diff-changed-face, diff-function-face)
15322         (diff-context-face, diff-nonexistent-face):
15323         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
15324         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
15325         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
15326         (Info-title-4-face):
15327         * isearch.el (isearch-lazy-highlight-face):
15328         * log-view.el (log-view-file-face, log-view-message-face):
15329         * paren.el (show-paren-match-face, show-paren-mismatch-face):
15330         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
15331         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
15332         (cvs-msg-face):
15333         * smerge-mode.el (smerge-mine-face, smerge-other-face)
15334         (smerge-base-face, smerge-markers-face):
15335         * wid-edit.el (widget-documentation-face, widget-button-face)
15336         (widget-field-face, widget-single-line-field-face)
15337         (widget-inactive-face, widget-button-pressed-face):
15338         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
15339         (woman-addition-face):
15340         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
15341         (eshell-ls-executable-face, eshell-ls-readonly-face)
15342         (eshell-ls-unreadable-face, eshell-ls-special-face)
15343         (eshell-ls-missing-face, eshell-ls-archive-face)
15344         (eshell-ls-backup-face, eshell-ls-product-face)
15345         (eshell-ls-clutter-face):
15346         * eshell/em-prompt.el (eshell-prompt-face):
15347         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
15348         * obsolete/old-whitespace.el (whitespace-highlight-face):
15349         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
15350         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
15351         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
15352         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
15353         (antlr-font-lock-literal-face):
15354         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
15355         (ebrowse-root-class-face, ebrowse-file-name-face)
15356         (ebrowse-default-face, ebrowse-member-attribute-face)
15357         (ebrowse-member-class-face, ebrowse-progress-face):
15358         * progmodes/make-mode.el (makefile-space-face):
15359         * progmodes/sh-script.el (sh-heredoc-face):
15360         * textmodes/flyspell.el (flyspell-incorrect-face)
15361         (flyspell-duplicate-face):
15362         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
15363         * textmodes/texinfo.el (texinfo-heading-face):
15364         Mark face aliases with "-face" suffix as obsolete.
15366         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
15367         compiler.
15369         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
15370         (eudc-bob-sound-menu): Use defvar rather than defconst, since
15371         easy-menu-define wants to modify these.
15373         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
15375         * net/browse-url.el (browse-url-file-url):
15376         * term/internal.el (dos-codepage-setup):
15377         Use default-value rather than default-enable-multibyte-characters.
15379         * progmodes/etags.el (etags-goto-tag-location):
15380         * progmodes/flymake.el (flymake-highlight-line)
15381         (flymake-goto-file-and-line, flymake-goto-line):
15382         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
15383         (gdb-goto-breakpoint):
15384         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
15385         * progmodes/python.el (python-find-function)
15386         (python-pdbtrack-track-stack-file):
15387         * progmodes/verilog-mode.el (verilog-surelint-off):
15388         * term/ns-win.el (ns-open-file-select-line):
15389         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
15390         Use forward-line rather than goto-line.
15392         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
15393         * textmodes/reftex-index.el (reftex-display-index):
15394         * textmodes/reftex-ref.el (reftex-offer-label-menu):
15395         * textmodes/reftex-toc.el (reftex-toc):
15396         Remove unnecessary bindings of default-major-mode (all are followed by
15397         major-mode check and possible mode switch).
15399 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
15401         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
15402         Handle watchpoints (bug#4282).
15403         (def-gdb-thread-buffer-command): Enable thread to be selected by
15404         clicking without selecting threads buffer first.
15405         (gdb-current-context-command): Use selected frame so that "up",
15406         "down" etc work in the GUD buffer.
15407         (gdb-update): Find selected frame before rendering stack buffer.
15408         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
15410 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
15412         * progmodes/sym-comp.el (displayed-completions): Remove.
15413         (symbol-complete): Use minibuffer-complete.
15415 2009-08-31  Glenn Morris  <rgm@gnu.org>
15417         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
15419         * apropos.el (apropos-symbols-internal):
15420         Handle (obsolete) face aliases.
15422         * faces.el (describe-face): Adjust the output format to be more like
15423         describe-variable, and to mention (obsolete) face aliases.
15424         Adjust the whitespace so that help-setup-xref works.
15426         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
15427         * calendar/diary-lib.el (diary-button-face):
15428         Mark these face aliases as obsolete.
15430         * calendar/calendar.el (calendar-today): Doc fix.
15432 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
15434         * progmodes/gdb-mi.el (gdb-control-all-threads)
15435         (gdb-control-current-thread): Force tool bar update.
15436         (gdb-non-stop-handler): New function.
15437         (gdb-init-1): Use it to test if non-stop mode is supported.
15438         Remove unused gdbmi buffer type.
15440 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
15442         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
15443         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
15445 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
15447         * comint.el (comint-exec-1): Check command is non-null first.
15448         Part of gdb-mi.el change (2009-08-28).
15450 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15452         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
15454 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
15456         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
15457         instead of `dolist' to avoid a recursive require when bootstrapping.
15459 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15461         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
15463         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
15465         * net/imap.el (imap-send-command): Simplify.
15466         (imap-wait-for-tag): point-max -> buffer-size.
15468         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
15470         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
15471         with constant argument.
15473         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
15475         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
15477         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
15478         Change default, since most of our files don't have a history.
15479         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
15480         the user.
15482         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15483         Add comint-run.
15485         * calc/calc.el: Improve commenting convention.
15486         (calc-digit-map, toplevel): Simplify.
15488         * comint.el (comint-insert-input): Be careful to only set point if we
15489         don't delegate to some other command.
15491         * proced.el (proced-signal-list): Make it an alist.
15492         (proced-grammar-alist): Capitalize names.
15493         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
15494         Disable undo manually and make it read-only.
15495         Use completion-annotate-function.
15497         * minibuffer.el (minibuffer-message): If the current buffer is not
15498         a minibuffer, insert the message in the echo area rather than at the
15499         end of the buffer.
15500         (completion-annotate-function): New variable.
15501         (minibuffer-completion-help): Use it.
15502         (completion--embedded-envvar-table): Environment vars are
15503         always case-sensitive.
15505 2009-08-30  Glenn Morris  <rgm@gnu.org>
15507         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
15508         from fortran-current-defun.
15509         (fortran-beginning-of-subprogram): Be more precise about finding the
15510         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
15511         (fortran-end-of-subprogram): Simplify.
15512         (fortran-current-defun): Use fortran-start-prog-re.
15514 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
15516         * subr.el (do-after-load-evaluation): Simplify.
15518 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
15520         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
15522         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
15523         (vc-rcs-print-log): Use it.
15525         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
15527 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
15529         * paths.el (abbrev-file-name): Move to abbrev.el.
15530         * abbrev.el (abbrev-file-name): Move from paths.el.
15531         Obey user-emacs-directory.
15532         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
15533         user-emacs-directory.
15534         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
15535         abbrev-file-name and calc-settings-file any more.
15536         * startup.el (command-line): Recompute abbrev-file-name and
15537         abbreviated-home-dir.
15538         (normal-no-mouse-startup-screen): Improve the generic code and get rid
15539         of the special code for when C-h bindings haven't been changed.
15540         (display-startup-echo-area-message): Use with-current-buffer.
15541         (command-line-1): Use a list of strings, rather than a list of lists
15542         of strings for longopts.
15544         * files.el (get-free-disk-space): Use / for default-directory.
15546         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
15547         Use with-current-buffer.
15549         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
15550         Recognize immutable variables like most-positive-fixnum.
15551         (byte-compile-setq-default): Check and warn if trying to assign
15552         to an immutable variable, or a non-variable.
15554         * progmodes/cc-vars.el (c-comment-continuation-stars):
15555         * progmodes/cc-engine.el (c-looking-at-bos):
15556         * progmodes/cc-cmds.el (c-toggle-auto-state)
15557         (c-forward-into-nomenclature, c-backward-into-nomenclature)
15558         (c-comment-line-break-function): Add version of obsolescence.
15560 2009-08-28  Juri Linkov  <juri@jurta.org>
15562         * files.el (magic-fallback-mode-alist): Add ZIP magic number
15563         associated with `archive-mode'.
15565         * image.el (image-type-header-regexps): Use only JPEG magic number
15566         to determine JPEG images, and don't use `image-jpeg-p' because
15567         Emacs can display non-JFIF non-Exif JPEG images.
15569 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
15571         * arc-mode.el (archive-mode):
15572         * emacs-lisp/re-builder.el (re-builder-unload-function):
15573         Protect against the default value of `major-mode' being nil.
15575 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
15577         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
15578         Fix typos in docstrings.
15580         * progmodes/js.el (js--macro-decl-re): Doc fix.
15581         (js--plain-method-re, js--split-name): Refloc docstring.
15582         (js--class-styles, js--make-merged-item, js--splice-into-items):
15583         Fix typos in docstrings; reflow docstrings.
15584         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
15585         (js--variable-decl-matcher, js--inside-pitem-p)
15586         (js--parse-state-at-point, js--get-all-known-symbols)
15587         (js--symbol-history, js-find-symbol, js--js-references)
15588         (js--moz-interactor, js--js-encode-value, js--read-tab):
15589         Fix typos in docstrings.
15591 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15593         * textmodes/reftex.el (reftex-get-file-buffer-force):
15594         * progmodes/verilog-mode.el (verilog-batch-execute-func):
15595         * emulation/viper.el (viper-go-away, viper-set-hooks):
15596         * emacs-lisp/re-builder.el (re-builder-unload-function):
15597         * emacs-lisp/bytecomp.el (byte-compile-file):
15598         * ses.el (ses-unload-function):
15599         * hexl.el (hexl-find-file):
15600         * files.el (normal-mode):
15601         * ehelp.el (with-electric-help):
15602         * autoinsert.el (auto-insert-alist):
15603         * arc-mode.el (archive-mode):
15604         Use (default-value 'major-mode) instead of default-major-mode.
15606         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
15607         * international/mule.el (load-with-code-conversion):
15608         * emacs-lisp/debug.el (debug):
15609         * ediff-vers.el (ediff-rcs-get-output-buffer):
15610         * dired.el (dired-internal-noselect): Don't let-bind
15611         default-major-mode around code that doesn't use it.
15612         E.g. buffer creation via get-buffer-create doesn't use it.
15614 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
15616         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
15617         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
15618         when writing the temp file.  Otherwise, epa-file gets confused.
15619         (tramp-register-file-name-handlers): Make it a defun.  Move also
15620         `epa-file-handler' to the front of `file-name-handler-alist'.
15622 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15624         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
15625         start right after a ^M.
15626         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
15627         (tramp-completion-file-name-regexp-separate)
15628         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
15629         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
15630         Don't modify last-coding-system-used by accident.
15631         (tramp-completion-file-name-handler): Apply the checks here,
15632         instead during registration.
15633         (tramp-register-file-name-handlers): Renamed from
15634         `tramp-register-file-name-handler'.  Register both
15635         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
15636         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
15638 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
15640         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
15641         Remove variable ...
15642         (gdb-init-1, gdb-display-separate-io-buffer)
15643         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
15644         references to it.
15645         (gdb-inferior-io-mode): Use make-comint-in-buffer.
15646         (gdb-inferior-filter): Use comint-output-filter to stop
15647         echoing and remove ^M characters.
15649 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15651         * emulation/viper-init.el (viper-restore-cursor-type):
15652         * emulation/cua-base.el (cua--update-indications):
15653         Replace default-cursor-type with (default-value 'cursor-type).
15655         * mail/sendmail.el (mail-recover-1):
15656         * international/mule-diag.el (describe-current-coding-system-briefly)
15657         (describe-current-coding-system):
15658         * international/mule-cmds.el (select-safe-coding-system)
15659         (select-message-coding-system)
15660         (set-language-environment-coding-systems, set-locale-environment):
15661         * hexl.el (hexl-insert-multibyte-char):
15662         * dos-w32.el (find-buffer-file-type-coding-system):
15663         * simple.el (what-cursor-position):
15664         Replace uses of default-buffer-file-coding-system
15665         with (default-value 'buffer-file-coding-system).
15667         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
15668         Replace uses of default-cursor-in-non-selected-windows
15669         with (default-value 'cursor-in-non-selected-windows).
15670         Use with-current-buffer.
15672         * mail/feedmail.el: Use CL macros.
15673         (feedmail-run-the-queue, feedmail-send-it-immediately):
15674         * dos-w32.el (find-buffer-file-type): Replace uses of
15675         default-buffer-file-type with (default-value 'buffer-file-type).
15677 2009-08-28  Glenn Morris  <rgm@gnu.org>
15679         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
15680         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
15681         Use default-value of major-mode rather than default-major-mode.
15683 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
15685         * Makefile.in (update-elcfiles): Report left over elc files.
15687         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
15688         expand-file-name and with-current-buffer.
15689         (mail-get-names, mail-directory): Use with-current-buffer.
15691         * vc.el (vc-read-revision): New function.
15692         (vc-version-diff, vc-merge): Use it.
15694 2009-08-27  Sam Steingold  <sds@gnu.org>
15696         * simple.el (kill-do-not-save-duplicates): New user option.
15697         (kill-new): When it is non-nil, and the new string is the same as
15698         the latest kill, set replace to t to avoid duplicates in kill-ring.
15700 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
15702         * net/tramp.el (tramp-handle-process-file): Do not flush all
15703         caches when `process-file-side-effects' is set.
15704         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
15705         instead of `tramp-find-file-exists-command'.
15706         Unset `process-file-side-effects'.
15708 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
15710         * net/tramp.el (tramp-methods): New method "rsyncc".
15711         (top): Add completion function for "rsyncc".
15712         (tramp-message-show-message): New defvar.
15713         (tramp-message, tramp-error): Use it.
15714         (tramp-do-copy-or-rename-file-directly): Extend check for direct
15715         remote copying.
15716         (tramp-do-copy-or-rename-file-out-of-band): Handle new
15717         `tramp-methods' entry `copy-env' of "rsyncc".
15718         (tramp-vc-registered-read-file-names): New defconst.
15719         (tramp-vc-registered-file-names): New defvar.
15720         (tramp-handle-vc-registered): Implement optimization strategy.
15721         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
15722         (tramp-vc-file-name-handler): New defun.
15723         (tramp-get-ls-command, tramp-get-test-command)
15724         (tramp-get-file-exists-command, tramp-get-remote-ln)
15725         (tramp-get-remote-perl, tramp-get-remote-stat)
15726         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
15728         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
15729         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
15730         timestamps.
15731         (tramp-get-file-property): Check for timestamps in
15732         `tramp-cache-inhibit-cache'.
15733         (tramp-set-file-property): Write timestamp.
15735 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
15737         * language/japan-util.el (japanese-symbol-table): Add entries for
15738         cp932-2-byte.
15740         * international/characters.el: Add category `j' to cp932-2-byte.
15742 2009-08-27  Kenichi Handa  <handa@m17n.org>
15744         * international/fontset.el (build-default-fontset-data): New macro.
15745         (setup-default-fontset): Use build-default-fontset-data for CJK,
15746         tibetan, ethiopic, and ipa.
15748 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
15750         * cus-start.el (default-major-mode): Customize `major-mode' instead.
15751         (enable-multibyte-characters): Not customizable any more.
15753         * subr.el (default-mode-line-format, default-header-line-format)
15754         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
15755         (default-direction-reversed, default-truncate-lines)
15756         (default-left-margin, default-tab-width, default-case-fold-search)
15757         (default-left-margin-width, default-right-margin-width)
15758         (default-left-fringe-width, default-right-fringe-width)
15759         (default-fringes-outside-margins, default-scroll-bar-width)
15760         (default-vertical-scroll-bar, default-indicate-empty-lines)
15761         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
15762         (default-fringe-cursor-alist, default-scroll-up-aggressively)
15763         (default-scroll-down-aggressively, default-fill-column)
15764         (default-cursor-type, default-buffer-file-type)
15765         (default-cursor-in-non-selected-windows)
15766         (default-buffer-file-coding-system, default-major-mode)
15767         (default-enable-multibyte-characters): Mark as obsolete.
15769 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
15771         * vc-dir.el (vc-dir-update): Remove debug helper.
15773         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
15775 2009-08-26  Sam Steingold  <sds@gnu.org>
15777         * simple.el (save-interprogram-paste-before-kill): New user option.
15778         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
15779         save the interprogram-paste into kill-ring before overriding it
15780         with the Emacs kill.
15782 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
15784         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
15785         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
15786         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
15787         and move to vc-rcs.el.
15788         (vc-default-next-revision): Rename to vc-rcs-next-revision and
15789         move to vc-rcs.el.
15790         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
15791         (vc-rcs-update-changelog): Remove.
15792         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
15793         and move to vc-rcs.el.
15795         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
15796         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
15797         renaming.
15798         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
15799         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
15800         vc.el, renamed to be RCS specific.
15802         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
15803         New functions.
15804         (vc-cvs-update-changelog): Move here from vc.el.
15806         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
15807         New functions.
15809 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
15811         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
15813 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
15815         * vc-git.el (vc-git-register): Use "git add" for directories.
15816         (vc-git-stash, vc-git-stash-show): New functions.
15817         (vc-git-extra-menu-map): Bind them.
15819         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
15820         directory correctly in case the item is a directory itself.
15822         * vc.el: Document the desired behavior for reverted files in the
15823         `added' state.
15824         (vc-default-prettify-state-info): Remove function, unused.
15826         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
15828 2009-08-26  Glenn Morris  <rgm@gnu.org>
15830         * bindings.el (standard-mode-line-format): Reposition dashes in
15831         which-func entry.  (Bug#4217)
15833         * files.el (enable-local-variables, enable-local-eval)
15834         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
15835         the defcustoms.
15836         (auto-mode-alist, ignored-local-variables)
15837         (save-some-buffers-action-alist): Move risky declarations to the
15838         definitions.
15839         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
15840         (font-lock-defaults, format-alist, imenu--index-alist)
15841         (imenu-generic-expression, input-method-alist, minor-mode-alist)
15842         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
15843         (mode-line-modified, mode-line-mule-info, mode-line-position)
15844         (mode-line-process, mode-line-remote, outline-level)
15845         (parse-time-rules, rmail-output-file-alist)
15846         (special-display-buffer-names, vc-mode):
15847         Move risky declarations to the relevant files.
15848         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
15849         (mode-line-modified, mode-line-process, mode-line-position)
15850         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
15851         * font-core.el (font-lock-defaults):
15852         * format.el (format-alist):
15853         * vc-hooks.el (vc-mode):
15854         * window.el (special-display-buffer-names):
15855         * international/mule-cmds.el (input-method-alist):
15856         Define riskiness here (dumped file) rather than in files.el.
15857         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
15858         * imenu.el (imenu-generic-expression, imenu--index-alist):
15859         * outline.el (outline-level):
15860         * time.el (display-time-string):
15861         * calendar/parse-time.el (parse-time-rules):
15862         * mail/rmailout.el (rmail-output-file-alist):
15863         Autoload riskiness here, rather than placing in files.el.
15865 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
15867         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
15869 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
15871         * simple.el (process-file-side-effects): New defvar.
15873         * dired-aux.el (dired-show-file-type):
15874         * vc.el (vc-diff-internal):
15875         * vc-arch.el (vc-arch-diff):
15876         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
15877         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
15878         * vc-git.el (vc-git-registered, vc-git-working-revision)
15879         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
15880         (vc-git--empty-db-p):
15881         * vc-hooks.el (vc-user-login-name):
15882         * vc-svn.el (vc-svn-registered, vc-svn-state)
15883         (vc-svn-dir-extra-headers, vc-svn-find-revision):
15884         * progmodes/grep.el (grep-probe): Let-bind
15885         `process-file-side-effects' with nil.
15887         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
15889         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
15890         daemon.  Replace ping by checking for running service for bluez
15891         and zeroconf.  (Bug#4239)
15893 2009-08-25  Kevin Ryde  <user42@zip.com.au>
15895         * net/dig.el (dig): Add autoload cookie.
15897 2009-08-25  Glenn Morris  <rgm@gnu.org>
15899         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
15900         load-history for absolute file-names.
15901         (byte-compile-file-form-require): Warn about use of the cl package.
15903         * format.el (format-alist): Doc fix.
15905         * play/bubbles.el (top-level): Don't require cl at run-time.
15907         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
15908         run-time cl).
15910 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
15912         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
15913         from cl package.
15914         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
15916 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
15918         * calc/calc-alg.el (math-trig-rewrite)
15919         (math-hyperbolic-trig-rewrite): New functions.
15920         (calc-simplify): Simplify trig functions when asked.
15922 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
15924         * diff-mode.el (diff-find-source-location): Avoid goto-line.
15926 2009-08-24  Kenichi Handa  <handa@m17n.org>
15928         * language/ind-util.el (mapthread): Delete it.
15929         (combinatorial): New function.
15930         (indian--puthash-cv): Use combinatorial instead of mapthread.
15932 2009-08-22  Kevin Ryde  <user42@zip.com.au>
15934         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
15935         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
15936         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
15937         Clarify docstring that the value is strings not symbols.
15938         (checkdoc-list-of-strings-p): New function.
15940 2009-08-22  Glenn Morris  <rgm@gnu.org>
15942         * files.el (auto-mode-alist):
15943         * hippie-exp.el (he-concat-directory-file-name):
15944         * lpr.el (lpr-windows-system, printer-name):
15945         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
15946         * ps-print.el (ps-windows-system):
15947         * startup.el (command-line):
15948         * emulation/viper-ex.el (viper-glob-function):
15949         * international/mule-cmds.el (set-language-environment-coding-systems):
15950         * net/ange-ftp.el (ange-ftp-write-region):
15951         * obsolete/fast-lock.el (fast-lock-cache-name):
15952         Remove code for defunct system-types emx, macos, mswindows, next-mach,
15953         unisoft-unix, vax-vms, win32, w32.
15955         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
15956         given name if the pattern is not more specific.
15958         * calendar/lunar.el (lunar-phase-names): New option.
15959         (lunar-phase): Doc fix.
15960         (lunar-cycles-per-year): New constant.
15961         (lunar-index): New function.
15962         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
15963         (lunar-phase-name): Use lunar-phase-names.
15964         (calendar-lunar-phases): Use format.
15965         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
15967         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
15968         Copy imenu-example--name-and-position function here for own use.
15969         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
15971         * bs.el (bs--redisplay):
15972         * cus-edit.el (custom-redraw):
15973         * ibuffer.el (ibuffer-bury-buffer):
15974         * server.el (server-goto-line-column):
15975         * startup.el (command-line-1):
15976         * strokes.el (strokes-xpm-for-stroke):
15977         * term.el (term-display-buffer-line):
15978         * view.el (View-goto-line):
15979         * calc/calc.el (calc-do, calc-trail-buffer):
15980         * play/gamegrid.el (gamegrid-add-score-insecure):
15981         * progmodes/ada-mode.el (ada-compile-goto-error):
15982         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
15983         (ebrowse-select-1st-to-9nth):
15984         * progmodes/cperl-mode.el (cperl-time-fontification):
15985         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
15986         * progmodes/gud.el (gud-display-line):
15987         (idlwave-shell-display-line):
15988         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
15989         * progmodes/make-mode.el (makefile-browser-toggle):
15990         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
15991         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
15992         * textmodes/picture.el (picture-draw-rectangle):
15993         * textmodes/reftex-index.el (reftex-index-goto-letter):
15994         (reftex-select-jump-to-previous):
15995         * textmodes/reftex-sel.el (reftex-find-start-point)
15996         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
15997         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
15998         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
15999         * textmodes/tex-mode.el (tex-compilation-parse-errors):
16000         * textmodes/two-column.el (2C-associated-buffer):
16001         Use forward-line rather than goto-line.
16003         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
16004         goto-line.
16006         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
16007         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
16008         (quick-check-list-to-regexp): Declare.
16010         * progmodes/make-mode.el (makefile-browser-insert-selection):
16011         Use goto-char rather than goto-line.
16013         * progmodes/prolog.el (compilation-error-regexp-alist)
16014         (compilation-forget-errors): Declare.
16016 2009-08-22  Juri Linkov  <juri@jurta.org>
16018         * progmodes/grep.el (lgrep, rgrep): At the beginning
16019         set `dir' to `default-directory' unless `dir' is a non-nil
16020         readable directory.  (Bug#4052)
16021         (lgrep, rgrep): Change a weird way to report an error
16022         from using `read-string' to using `error'.
16023         Instead of using interactive arguments in the function body,
16024         add new argument `confirm'.
16026 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
16028         * textmodes/remember.el (remember-buffer):
16029         * progmodes/cperl-mode.el (cperl-vc-header-alist):
16030         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
16031         (icalendar-extract-ical-from-buffer):
16032         * net/newst-treeview.el (newsticker-groups-filename):
16033         * net/newst-backend.el (newsticker-cache-filename):
16034         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
16035         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
16036         (speedbar-add-ignored-path-regexp, speedbar-line-path)
16037         (speedbar-buffers-line-path, speedbar-path-line)
16038         (speedbar-buffers-line-path):
16039         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
16040         (epg-sign-keys):
16041         * epa.el (epa-display-verify-result):
16042         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
16044 2009-08-21  Glenn Morris  <rgm@gnu.org>
16046         * progmodes/js.el (inferior-moz-process): Fix declaration.
16048         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
16050         * obsolete/rnewspost.el (news-mail-reply):
16051         Use goto-char rather than goto-line.
16053         * term/ns-win.el (ns-open-file-select-line):
16054         Use line-beginning-position rather than goto-line.
16056         * apropos.el (apropos-command):
16057         * ehelp.el (electric-helpify):
16058         * printing.el (pr-show-setup):
16059         * strokes.el (strokes-help):
16060         * tutorial.el (tutorial--describe-nonstandard-key)
16061         (tutorial--detailed-help):
16062         * woman.el (woman-mini-help, woman-display-extended-fonts):
16063         * calc/calc-help.el (calc-describe-key):
16064         * emulation/edt.el (edt-electric-helpify):
16065         * international/mule-diag.el (mule-diag):
16066         * play/yow.el (apropos-zippy):
16067         * progmodes/python.el (python-describe-symbol):
16068         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
16069         * textmodes/table.el (*table--cell-describe-mode)
16070         (*table--cell-describe-bindings):
16071         Use help-print-return-message rather than the now obsolete alias.
16073         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
16074         (calendar-cursor-to-visible-date):
16075         * play/5x5.el (5x5-position-cursor):
16076         * play/decipher.el (decipher):
16077         * play/gomoku.el (gomoku-goto-xy):
16078         * play/landmark.el (lm-goto-xy):
16079         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
16080         (mpuz-paint-digit):
16081         Use forward-line, not goto-line.
16083         * mail/rmail.el (rmail-obsolete): Delete custom group.
16084         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
16085         (rmail-remote-password, rmail-remote-password-required):
16086         Remove unneeded :set-after and :set properties.
16088 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
16090         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
16092 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
16094         * loadup.el: Remove leftover macos code.
16096         * vc-git.el (vc-git-annotate-command): Run asynchronously.
16097         Explicitly pass the date format to git blame so that user local
16098         so that the output format can be parsed.
16100 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
16102         * net/dbus.el (top): Don't check for (getenv
16103         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
16105 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
16107         * log-edit.el (log-edit-strip-single-file-name): New var.
16108         (log-edit-insert-changelog): Use it.  Bug#3571
16110 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
16112         * subr.el (read-passwd): Use read-key so keypad keys work as well.
16113         Bug#3287
16115         * help.el (help-print-return-message): Rename from
16116         print-help-return-message.
16118         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
16119         cvs-mode-map parent hack.
16120         (log-view-mode): Derive from special-mode.
16122         * linum.el (linum-mode): window-size-change-functions is redundant.
16123         Adapt to new window-configuration-change-hook behavior.
16124         (linum-after-size, linum-after-config): Remove.
16126         * imenu.el (imenu-example--name-and-position)
16127         (imenu-example--lisp-extract-index-name)
16128         (imenu-example--create-lisp-index, imenu-example--create-c-index):
16129         Mark as obsolete.
16131         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
16132         (inferior-prolog-mode): Use it.
16133         (inferior-prolog-load-file): Reset list of errors.
16135 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
16137         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
16139         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
16141 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
16143         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
16144         is running already.
16146 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
16148         * subr.el (listify-key-sequence-1): Use normal syntax since those
16149         integers are nowadays always represented by the same (positive) number
16150         on all platforms.
16151         (read-key-empty-map): New const.
16152         (read-key-delay): New var.
16153         (read-key): New function.
16154         (force-mode-line-update): Use with-current-buffer.
16155         (locate-user-emacs-file): Don't forget to abbreviate the file name.
16156         (start-process-shell-command, start-file-process-shell-command):
16157         Discourage the use of command-args.
16159 2009-08-19  Glenn Morris  <rgm@gnu.org>
16161         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
16163 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
16165         * simple.el (choose-completion-string): Don't rely on
16166         minibuffer-completing-file-name and ad-hoc checks to decide whether
16167         to continue completion or not.
16169         * minibuffer.el (minibuffer-hide-completions): New function.
16170         (completion--do-completion): Use it.
16171         (completions-annotations): New face.
16172         (completion--insert-strings): Use it.
16173         (completion-pcm--delim-wild-regex): Add docstring.
16174         (completion-pcm--string->pattern): Add support for 0-width delimiters
16175         in completion-pcm--delim-wild-regex.
16177 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
16179         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
16180         Remove unused var `buffer-modified-p'.
16182         * minibuffer.el (completion--do-completion): Move point for the #b001
16183         case as well (bug#4176).
16184         (minibuffer-complete, minibuffer-complete-word): Don't move point.
16186 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
16188         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
16189         and :session buses.
16191 2009-08-18  Kenichi Handa  <handa@m17n.org>
16193         * international/ucs-normalize.el (ucs-normalize-version):
16194         Change to 1.1.
16195         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
16196         (utf-8-hfs): Make it perform normalization on encoding too.
16198         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
16199         (sentence-end-without-space): Delete duplicated chars.
16200         (sentence-end-base): Likewise.
16202         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
16203         (html-mode): Delete duplicated chars from sentence-end-base.
16205         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
16206         (texinfo-mode): Delete duplicated chars from sentence-end-base.
16208 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
16210         * files.el (hack-one-local-variable): If the mode function is for
16211         a minor mode, pass it an argument (Bug#4148).
16213 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
16215         * net/tramp.el (tramp-register-completion-file-name-handler):
16216         Check also for (member 'partial-completion completion-styles).
16218 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
16220         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
16221         abbrev (Bug#3943).
16223 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
16225         * progmodes/cperl-mode.el: Merge upstream 6.2.
16226         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
16227         (cperl-forward-re): Check cperl-brace-recursing.
16228         (cperl-highlight-charclass): New function.
16229         (cperl-find-pods-heres): Use it.
16230         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
16231         (cperl-beautify-regexp-piece): Fix column calculation.
16232         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
16233         (cperl-beautify-level): Don't process entire regexp.
16234         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
16235         calling man.
16236         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
16237         (cperl-init-faces): Build a list in the normal way.
16239 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
16241         * calendar/parse-time.el (parse-time-string-chars): Save match
16242         data.
16244 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
16246         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
16247         (sql-product): Use it.
16248         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
16249         (sql-set-product): Add completion.
16250         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
16251         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
16252         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
16253         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
16254         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
16255         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
16256         (sql-highlight-db2-keywords): Remove.
16257         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
16258         (sql-highlight-product): Use derived-mode-p.
16259         (sql-set-sqli-buffer): Use with-current-buffer.
16260         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
16261         Simplify.
16263         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
16265         * term.el: Fix commenting convention, turn comments into docstrings.
16267 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
16269         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
16271 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
16273         * calendar/parse-time.el (parse-time-string-chars): Compute using
16274         character classes, to handle non-ascii characters (Bug#3190).
16276 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
16278         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
16279         another heredoc if the user adds another < (Bug#3226).
16281         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
16282         Don't initialize based on window-system (Bug#4124).
16284         * facemenu.el (facemenu-read-color): Use a completion function
16285         that accepts any defined color, such as RGB triplets (Bug#3677).
16287         * files.el (get-free-disk-space): Change fallback default
16288         directory to /.  Expand DIR argument before switching to fallback.
16289         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
16291 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
16293         * files.el (load-library): Doc fix.
16295 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
16297         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
16298         (viper-if-string): Redefine C-s in the minibuffer to insert the last
16299         incremental search string.
16301         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
16302         XEmacs.
16304         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
16305         (ediff-merge-region-is-non-clash)
16306         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
16307         Also check if the job is really a merge job.
16309         * ediff.el (ediff-current-file): New function.
16311 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
16313         * progmodes/js.el: Edit docstrings throughout to follow Emacs
16314         conventions.
16315         (js-insert-and-indent): Delete function.
16316         (js-mode-map): Don't bind keys to js-insert-and-indent.
16317         (js-beginning-of-defun): Rename from js--beginning-of-defun.
16318         (js-end-of-defun): Rename from js--end-of-defun.
16319         (js-auto-indent-flag): Delete variable.
16321 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
16323         * progmodes/js.el: Remove proclaim statement.
16324         Defvar which-func-imenu-joiner-function to silence compiler.
16326         * files.el (auto-mode-alist): Use js-mode for .js files.
16328         * progmodes/js2-mode.el: Remove file.
16330         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
16332         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
16334         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
16336 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
16337             Karl Landstrom  <karl.landstrom@brgeight.se>
16339         * progmodes/js.el: New file.
16341 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
16343         * timezone.el (timezone-parse-date): Add ability to understand ISO
16344         basic format (minimal separators) dates in addition to the
16345         already-supported extended format dates.
16347 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
16349         * international/ucs-normalize.el: Add a `coding' file variable.
16351         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
16353 2009-08-14  Sam Steingold  <sds@gnu.org>
16355         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
16357 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
16359         * faces.el (help-argument-name): Define it here instead of
16360         help-fns.el, because in daemon mode help-fns.el may be loaded when
16361         faces are still uninitialized (Bug#1078).
16363         * help-fns.el (help-argument-name): Move defface to faces.el.
16365 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
16367         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
16368         create buffer with a pty but no process so that GDB can make the
16369         inferior the controlling process.
16371 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
16373         * international/ucs-normalize.el: New file.
16375 2009-08-13  Richard Stallman  <rms@gnu.org>
16377         * mail/rmail.el (rmail-get-attr-names):
16378         Accept an attribute header that is too short.
16380         * mail/rmail.el (rmail-forget-messages):
16381         Ignore nil elt in rmail-message-vector.  Use dotimes.
16383         * progmodes/compile.el (compilation-goto-locus):
16384         Use next-error-move-function.
16386         * simple.el (next-error-move-function): New variable.
16388 2009-08-12  Juri Linkov  <juri@jurta.org>
16390         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
16391         always non-nil.  (Bug#4052)
16393         * replace.el (read-regexp): Return empty string when
16394         `default-value' is nil.
16395         (keep-lines-read-args): Don't use empty string as the
16396         default value for `read-regexp'.  (Bug#2495)
16398 2009-08-12  Juri Linkov  <juri@jurta.org>
16400         * international/mule-cmds.el (ucs-insert): Change arguments
16401         from `arg' to `character', `count', `inherit' to be the same
16402         as in `insert-char'.  Doc fix.  (Bug#4039)
16404         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
16406 2009-08-12  Juri Linkov  <juri@jurta.org>
16408         * files-x.el: New file.
16410         * files.el: Move code that deals with adding/deleting
16411         file/directory-local variables to files-x.el.
16413         * Makefile.in (ELCFILES): Add files-x.elc.
16415 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
16417         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
16418         to use `goto-line'.
16419         (gdb-place-breakpoints, gdb-get-location): Rewritten without
16420         `goto-line'.
16421         (gdb-invalidate-disassembly): Do not refresh upon receiving
16422         'update signal.  Instead, update all disassembly buffers only after
16423         threads list.
16424         (gdb): Send -target-detach when buffer is killed (Bug#3794).
16425         (gdb-starting): Moved -data-list-register-names...
16426         (gdb-stopped): ...here so it's sent when first thread stops.
16427         (gdb-registers-handler-custom): Do nothing if register names are
16428         unknown yet.
16430         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
16431         from `gdb-mi.el' to avoid extra tangling.
16433         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
16434         change which breaks `gud-def' definitions used in `gdb'.
16435         (gdb-update-gud-running): No extra fuss for updating frame number.
16437 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
16439         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
16440         (describe-language-environment-map, setup-language-environment-map)
16441         (set-coding-system-map): Move initialization into declaration.
16442         (set-language-info-alist): Last arg to define-key-after can be skipped.
16444         * international/quail.el (quail-completion-1): Simplify.
16445         (quail-define-rules): Use slightly more compact code.
16446         (quail-insert-decode-map): Propertize keys, compact columns.
16448         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16449         Add goto-line.
16451 2009-08-10  Miles Bader  <miles@gnu.org>
16453         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
16454         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
16455         (js2-instance-member, js2-private-member, js2-private-function-call)
16456         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
16457         (js2-magic-paren, js2-external-variable):
16458         Remove "-face" suffix from face names.
16459         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
16460         (js2-highlight-undeclared-vars, js2-peek-token)
16461         (js2-parse-function-params, js2-mode-show-errors)
16462         (js2-mode-show-warnings, js2-make-magic-delimiter)
16463         (js2-mode-highlight-magic-parens): Update to use new face names.
16465 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
16467         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
16468         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
16470 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
16472         * subr.el: Provide hashtable-print-readable.
16474         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
16475         hs-c-like-adjust-block-beginning.
16476         (hs-hide-block-at-point): Stop hiding at the beginning of
16477         hs-block-end-regexp (Bug#700).
16479 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
16481         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
16482         a macro.
16483         (gdb-registers-handler-custom): Do not fail when register names
16484         are unavailable.
16486 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
16488         * progmodes/gdb-mi.el (gdb-control-all-threads)
16489         (gdb-control-current-thread): Interactive setters for
16490         `gdb-gud-control-all-threads' to use in menu.
16491         (gdb-show-run-p): Show «Go» when process is not active.
16492         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
16493         gud/thread.xpm and gud/all.xpm.
16495 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
16497         * net/net-utils.el (net-utils-font-lock-keywords): New var.
16498         (nslookup-font-lock-keywords): Make it a variable.
16499         (net-utils-mode): New mode for viewing diagnostic network output.
16500         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
16501         (net-utils-run-simple): New function.
16502         (ifconfig, iwconfig, netstat, arp, route): Use it.
16504 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
16506         * progmodes/gdb-mi.el (gdb-read-memory-custom)
16507         (gdb-memory-set-address, def-gdb-set-positive-number)
16508         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
16509         after changing settings.
16510         (gdb-invalidate-disassembly): Update when first shown.
16511         (gdb-edit-locals-value): Fixed.
16512         (gdb-registers-handler-custom): Print registers in right order and
16513         allow changing register values (only for current thread yet).
16514         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
16515         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
16516         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
16517         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
16518         info in mode name.
16519         (gdb-registers-mode-map): TAB to switch to locals.
16521 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
16523         * mail/rmail.el (rmail-add-mbox-headers)
16524         (rmail-set-message-counters-counter): Search for
16525         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
16527 2009-08-08  Glenn Morris  <rgm@gnu.org>
16529         * Makefile.in (ELCFILES): Update.
16531 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
16533         * mail/sendmail.el (mail-yank-original): Set
16534         buffer-file-coding-system from the one used by the message whose
16535         text is yanked.
16537         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
16538         to "windows" when "pgnuplot" is used.
16539         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
16540         call accept-process-output if "pgnuplot" is used.
16541         (calc-graph-init): Don't send -display and -geometry to
16542         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
16543         running "pgnuplot -V" with shell-command-to-string.
16545         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
16546         the default.
16548 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
16550         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
16551         org/org-latex.elc.
16553 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
16555         * vc-dispatcher.el (vc-resynch-window): Update comment.
16557         * term.el (term-handle-ansi-escape): Add comments with the
16558         terminfo capabilities implemented.
16560 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
16562         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
16563         (gdb-var-create-handler): Rewritten using JSON parser.
16564         (gdb-propertize-header): Moved earlier.
16565         (gdb-set-header): Removed to avoid duplication.
16566         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
16567         Refresh disassembly buffers only after threads list have been
16568         update.
16569         (gdb-threads-header, gdb-registers-header): Per-buffer header line
16570         variables.
16572 2009-08-04  Juri Linkov  <juri@jurta.org>
16574         * files.el: Commands to add/delete file/directory-local variables.
16575         (read-file-local-variable, read-file-local-variable-value)
16576         (read-file-local-variable-mode, modify-file-local-variable)
16577         (modify-file-local-variable-prop-line)
16578         (modify-dir-local-variable): New functions.
16579         (add-file-local-variable, delete-file-local-variable)
16580         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
16581         (add-dir-local-variable, delete-dir-local-variable)
16582         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
16583         (copy-dir-locals-to-file-locals-prop-line): New commands.
16585 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
16587         * abbrev.el (insert-abbrev-table-description): Prettify output.
16588         Suggested by Karl Chen.
16590 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
16592         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
16593         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
16594         (gdb-overlay-arrow-position, gdb-thread-position)
16595         (gdb-disassembly-position): Declare variables.
16596         (gdb-wait-for-pending): Function now.
16597         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
16598         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
16599         compilation goes smoothly.
16600         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
16601         (gdb-non-stop-setting): New customization setting which replaces
16602         `gdb-non-stop' so changing it doesn't break active GDB session.
16603         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
16604         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
16605         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
16606         (gdb-show-threads-by-default): New customization options.
16607         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
16608         routines.
16609         (gdb-get-buffer-create): Send buffers update signal when they are
16610         created.
16611         (gdb-invalidate-locals, gdb-invalidate-registers)
16612         (gdb-invalidate-breakpoints)
16613         (gdb-invalidate-threads, gdb-invalidate-disassembly)
16614         (gdb-invalidate-memory): Accept update signal.
16615         (gdb-current-context-command): Use --frame option.
16616         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
16617         Implement `gdb-frame-number' selection logic.
16618         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
16619         whether to show GUD toolbar buttons.
16620         (gdb-thread-exited): Unselect current thread when it exits.
16621         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
16622         (gdb-mark-line): Routine which sets overlay arrow or inverses
16623         video on fringeless displays.
16624         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
16625         to build aligned columns of data in GDB buffers and set text
16626         properties line-by-line.
16627         (gdb-invalidate-breakpoints)
16628         (gdb-breakpoints-list-handler-custom)
16629         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
16630         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
16631         (gdb-registers-handler-custom): Align data columns.
16632         (gdb-locals-handler-custom): Now prints data like in variable
16633         declarations.
16634         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
16635         Removed confusing buttons.
16636         (gdb-invalidate-threads): Append --frame.
16637         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
16638         between breakpoints/threads buffers.
16639         (gdb-set-window-buffer): Now can ignore dedicated windows.
16640         (gdb-propertize-header): Use `gdb-set-window-buffer'.
16641         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
16642         (def-gdb-thread-buffer-gud-command): Replaces
16643         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
16644         for fine thread control.
16645         (gdb-preempt-existing-or-display-buffer): New function used to
16646         display bound buffers without breaking window layout.
16647         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
16648         (gdb-select-frame): New version of `gdb-frames-select' which now
16649         sets `gdb-frame-number' so commands may use --frame option instead
16650         of inner debugger state.
16651         (gdb-frame-handler): Do not set `gdb-frame-number'.
16652         (gdb-threads-mode-map): Select threads with mouse.
16654         * progmodes/gud.el (gdb-gud-context-call): Declare function to
16655         avoid compilation warning.
16656         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
16657         `gdb-show-stop-p`.
16659         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
16660         Argument `key' renamed to `buffer-type'.
16661         (gdb-current-context-buffer-name): Do not add thread info to
16662         buffer name when no thread is selected.
16663         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
16664         command (bug 3794).
16665         (gdb-thread-selected): Handle `=thread-selected' notification.
16666         (gdb-wait-for-pending): New macro to deal with congestion problems.
16667         (gdb-breakpoints-list-handler-custom): Don't fail on pending
16668         breakpoints.
16669         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
16670         This fixes problem similar to one described in bug 3947.
16671         (gud-menu-map): More menu items.
16672         (gdb-init-1): Reset `gdb-thread-number' to nil.
16674         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
16675         non-stop settings.
16677         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
16678         (gdb-current-context-command): Do not append --thread if
16679         `gdb-thread-number' is nil.
16680         (gdb-running-threads-count, gdb-stopped-threads-count): New
16681         variables.
16682         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
16683         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
16684         customization options.
16685         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
16686         GUD commands.
16687         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
16688         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
16689         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
16690         set `gdb-thread-number' and update `gud-running' properly.
16691         (gdb-running): Update threads list when new threads appear.
16692         (gdb-stopped): Support non-stop operation and new thread switching
16693         logic.
16694         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
16695         (gdb-json-partial-output): New set of JSON routines.
16696         (def-gdb-auto-update-trigger): New `signal-list' optional
16697         argument.
16698         (gdb-thread-list-handler-custom): Update `gud-running',
16699         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
16700         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
16701         (gdb-continue-thread, gdb-step-thread): New commands for fine
16702         thread execution control.
16703         (gud-menu-map): New menu items to switch non-stop options.
16704         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
16705         (gdb-send): Mimic RET properly (bug 3794).
16707         * progmodes/gdb-mi.el (gdb-rules-name-maker)
16708         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
16709         gdb-buffer-rules.
16710         (def-gdb-auto-update-handler): New nopreserve optional argument.
16711         (gdb-stack-list-frames-custom): Print stack from top to bottom.
16713         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
16714         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
16715         (gdb-parent-mode): New mode to derive other GDB modes from.
16716         (gdb-display-disassembly-for-thread)
16717         (gdb-frame-disassembly-for-thread): New commands for threads
16718         buffer.
16720         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
16721         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
16722         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
16723         (gdb-update): We now store all GDB buffers in a list so that they
16724         can be updated by traversing a list instead of calling invalidate
16725         triggers explicitly.
16726         (def-gdb-trigger-and-handler): New macro to define trigger-handler
16727         pair for GDB buffer.
16728         (gdb-stack-buffer-name): Add thread information.
16729         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
16730         handle pending triggers.
16731         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
16732         (def-gdb-thread-buffer-simple-command)
16733         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
16734         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
16735         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
16736         New commands which show buffers bound to thread.
16737         (gdb-stack-list-locals-regexp): Removed unused regexp.
16739         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
16740         (gdb-locals-buffer-name, gdb-registers-buffer-name)
16741         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
16742         to (gud-comint-buffer) in *-buffer-name functions
16743         because (gdb-get-target-string) already does that.
16744         (gdb-locals-handler-custom, gdb-registers-handler-custom)
16745         (gdb-changed-registers-handler): Rewritten without regexps.
16747         * progmodes/gdb-mi.el: Basic thread selection support.
16748         (gdb-thread-number): New variable.
16749         (gdb-current-context-command): New macro which adds --thread
16750         option to command.
16751         (gdb-threads-mode-map): Select thread with SPC.
16752         (gdb-thread-list-handler-custom): Mark current thread with overlay
16753         arrow.  Synchronize GDB thread and Emacs thread.
16754         (gdb-select-thread): New command which selects current thread.
16755         (gdb-invalidate-frames, gdb-invalidate-locals)
16756         (gdb-invalidate-registers): Use --thread option.
16758 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
16760         * net/tramp.el (top): Make check for tramp-gvfs loading more
16761         robust.  (Bug#3977)
16762         (tramp-handle-insert-file-contents): `unwind-protect' must be
16763         inside `with-parsed-tramp-file-name'.
16765         * net/tramp-gvfs.el (top): Remove superfluous message when loading
16766         fails.
16768 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
16770         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
16771         directory if CLASSPATH is not set.
16773 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
16775         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
16776         New defconst.
16777         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
16779 2009-08-02  Kevin Ryde  <user42@zip.com.au>
16781         * net/newst-backend.el (newsticker--raw-url-list-defaults):
16782         Update freshmeat link.  Delete newsforge.com as it seems gone.
16784 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
16786         * select.el (x-set-selection): Doc fix (Bug#4021).
16788         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
16790         * help-fns.el (describe-variable): Treat list return values from
16791         dir-locals-find-file properly (Bug#4005).
16793 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
16795         * net/tramp.el (tramp-debug-message): Print also microseconds.
16797 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
16799         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
16800         or END is non-nil.
16801         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
16802         (tramp-get-debug-buffer): Change `outline-regexp' according to new
16803         format.
16805         * net/tramp-cache.el (tramp-cache-inhibit-cache): New defvar.
16806         (tramp-get-file-property): Use it.
16808         * autorevert.el (auto-revert-handler): Allow
16809         `auto-revert-tail-mode' for remote files.
16811 2009-08-02  Jason Rumney  <jasonr@gnu.org>
16813         * minibuffer.el (read-file-name): Treat confirm options to
16814         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
16816 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
16818         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
16819         (font-lock-variable-name-face, font-lock-constant-face): Darken
16820         the colors for light backgrounds.
16822 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
16824         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
16825         month names.  (Bug#3987)
16827 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
16829         * simple.el (line-move-finish): Pass whole number to
16830         line-move-to-column.
16831         (line-move-visual): Perform hscroll to the recorded position.
16833 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
16835         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
16837 2009-07-29  Alan Mackenzie  <acm@muc.de>
16839         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
16841 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
16843         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
16844         (gdb-place-breakpoints): Use full path when setting breakpoints.
16846 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
16848         * calc/calc.el (calc-mode-map): Add keybinding for
16849         `calc-transpose-lines'.
16851 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
16853         * calc/calc-misc.el (calc-transpose-lines): New function.
16855 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
16857         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
16858         Simplify check for out-of-band methods.
16859         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
16860         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
16862 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
16864         * vc-git.el (vc-git-checkin): Fix typo.
16866 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
16868         * progmodes/js2-mode.el: New file.
16870 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
16872         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
16873         (gud-menu-map): Adjust tooltip accordingly.
16875 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
16877         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
16878         (vc-bzr-log-view-mode): Adjust log-view-file-re.
16880         * add-log.el (change-log-mode-map): Add a menu.
16882 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
16884         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
16885         function returns nil.
16886         (dbus-handle-event): Handle special return value :ignore.
16887         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
16889 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
16891         * view.el (view-mode-enable): Don't define Helper-return-blurb if
16892         it's not needed.
16894 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
16896         Fix Bug#3888:
16898         * w32-vars.el (x-select-enable-clipboard): Doc fix.
16900         * term/pc-win.el (x-display-name, x-colors)
16901         (x-select-enable-clipboard, x-select-text): Doc fix.
16903         * term/common-win.el (x-display-name, x-colors): Doc fix.
16905         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
16906         (xw-defined-colors): Doc fix.
16908         * w32-fns.el (x-select-text, x-setup-function-keys)
16909         (x-get-selection, x-set-selection): Doc fix.
16911         * term/x-win.el (x-select-text, x-setup-function-keys)
16912         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
16914         * select.el (x-set-selection): Doc fix.
16916 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
16918         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
16919         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
16920         "IsNSSSupportAvailable" method is not available.  Reported by
16921         Steve Youngs <steve@sxemacs.org>.
16923 2009-07-24  Kenichi Handa  <handa@m17n.org>
16925         * international/characters.el: Fix setting of category ?C, ?|, ?K,
16926         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
16927         (build-unicode-category-table): Fix range checks.
16929 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
16931         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
16932         the buffer we try to sync is current when calling
16933         vc-resynch-buffer.
16935         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
16936         not show up to date files.
16938 2009-07-24  Glenn Morris  <rgm@gnu.org>
16940         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
16941         Add autoload cookies.  If necessary, initialize.
16942         (elint-log): Handle non-file buffers.
16943         (elint-initialize): Add optional argument to reinitialize.
16944         (elint-find-builtin-variables): Save excursion.
16946 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
16948         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
16949         for Lint.
16951 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
16953         * vc.el (vc-print-log-internal): New function, split out from ...
16954         (vc-print-log): ... here.
16955         (vc-dir-move-to-goal-column): Declare.
16957         * vc-git.el (vc-git-add-signoff): New variable.
16958         (vc-git-checkin): Use it.
16959         (vc-git-toggle-signoff): New function.
16960         (vc-git-extra-menu-map): Bind it to menu.
16961         (vc-git--run-command-string): Accept a nil FILE argument.
16962         (vc-git-stash-list): New function.
16963         (vc-git-dir-extra-headers): Use it.
16965 2009-07-23  Glenn Morris  <rgm@gnu.org>
16967         * help-fns.el (describe-variable): Describe ignored and risky local
16968         variables in a similar way to that in which we describe safe ones.
16970         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
16971         (byte-compile-output-file-form, byte-compile-output-docform)
16972         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
16973         Give some more local variables with common names a "bytecomp-" prefix,
16974         so as not to shadow things during compilation.
16975         * emacs-lisp/cl-macs.el (load-time-value)
16976         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
16977         `outbuffer' to `bytecomp-outbuffer'.
16979         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
16980         since the next two variables cover them automatically now.
16981         (elint-builtin-variables, elint-autoloaded-variables): New.
16982         (elint-unknown-builtin-args): Remove all members, since they can be
16983         parsed automatically now.
16984         (elint-extra-errors): New.
16985         (elint-env-add-env, elint-env-add-macro): Use cadr.
16986         (elint-current-buffer): Use or.  Change final message.
16987         (elint-get-top-forms): Use line-end-position.
16988         (elint-init-env): Use cadr.  Handle autoload, declare-function,
16989         and defalias.
16990         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
16991         (regexp-assoc): Remove unused function.
16992         (elint-top-form): Set elint-current-pos, to record the start of the
16993         top-level form, for compilation-mode.
16994         (elint-form): Trap errors in macro expansion.  Use dolist.
16995         (elint-unbound-variable): Use elint-builtin-variables and
16996         elint-autoloaded-variables.
16997         (elint-get-args): Use cadr, or.
16998         (elint-check-cond-form): Use dolist, cadr.
16999         (elint-check-condition-case-form): Doc fix.  Use cadr.
17000         Use elint-extra-errors.
17001         (elint-log): New function.
17002         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
17003         Distinguish errors and warnings.
17004         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
17005         Use a bytecomp-style format.
17006         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
17007         (elint-get-log-buffer): Use compilation mode.  Disable undo.
17008         Don't truncate lines.
17009         (elint-initialize): Set builtin and autoloaded variable lists.
17010         Only process elint-unknown-builtin-args if non-nil.
17011         (elint-find-builtin-variables, elint-find-autoloaded-variables):
17012         New functions.
17013         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
17015 2009-07-22  Kevin Ryde  <user42@zip.com.au>
17017         * net/newst-backend.el (newsticker--parse-atom-1.0)
17018         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
17019         (newsticker--parse-rss-1.0):
17020         * progmodes/idlwave.el (idlwave-mode):
17021         * progmodes/idlw-shell.el (idlwave-shell-mode):
17022         * progmodes/vera-mode.el (vera-mode):
17023         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
17024         * progmodes/vhdl-mode.el (vhdl-mode):
17025         * textmodes/table.el (table-generate-source)
17026         (table--warn-incompatibility):
17027         Hyperlink urls in docstrings with URL `...'.
17029 2009-07-22  Glenn Morris  <rgm@gnu.org>
17031         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
17032         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
17033         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
17034         Remove leading * from defcustom docs.
17036         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
17038         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
17039         defcustom doc.
17040         (list-load-path-shadows): Optionally, just return shadows as a string.
17042         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
17044 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
17046         * mail/rmailedit.el (rmail-edit-mode): Use
17047         auto-save-include-big-deletions.
17049         * mail/rmail.el (rmail-variables): Use
17050         auto-save-include-big-deletions.
17052         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
17053         changes.
17055 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
17057         * calc/calc.el (calc-undo-length): New variable.
17058         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
17060 2009-07-21  Richard Stallman  <rms@gnu.org>
17062         * files.el (auto-save-mode): Handle buffer-save-size = -2
17063         for toggling mode.
17065 2009-07-21  Glenn Morris  <rgm@gnu.org>
17067         * textmodes/ispell.el (ispell-looking-back): Update declaration.
17069         * calendar/todo-mode.el (calendar-current-date): Update declaration.
17071         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
17072         silence compiler.  Instead...
17073         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
17074         (ps-print-ensure-fontified): Update for above function name changes.
17076         * printing.el (pr-mh-get-msg-num, pr-mh-show)
17077         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
17078         silence compiler.  Instead...
17079         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
17080         (mh-show-buffer): Only define for compiler.
17081         (pr-mh-current-message): Update for above function name changes.
17083         * files.el (abort-if-file-too-large): Explicitly pass `filename'
17084         as an argument.
17085         (find-file-noselect, insert-file-1): Update for above change.
17087         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
17089         * mail/mailclient.el (mailclient-send-it): Fix message.
17091         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
17092         (edebug-eval): Check cl-debug-env is bound.
17093         (print-level, print-circle): Don't redefine built-in variables.
17095         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
17096         (custom-print-vectors): Remove old comments from doc.
17098         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
17099         (emerge-version): Make the variable an obsolete alias for the
17100         emacs-version variable.  Make the function obsolete.
17101         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
17102         Emerge options, rather than merging in into the main Options menu.
17103         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
17104         and auto advance modes.  Disable edit/fast items when not relevant.
17106 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
17108         * term/vt420.el (terminal-init-vt420): Fix typo.
17110 2009-07-20  Sam Steingold  <sds@gnu.org>
17112         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
17113         variable (removed from compile.el on 2004-03-11).
17115 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
17117         * files.el (hack-local-variables-filter): Fix last change.
17119 2009-07-19  Juri Linkov  <juri@jurta.org>
17121         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
17122         (dir-local-variables-alist): New buffer-local variable.
17123         (hack-local-variables-filter): If variable is not dir-local,
17124         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
17125         because file-local overrides dir-local.
17126         (c-postprocess-file-styles) <declare-function>:
17127         Remove obsolete declaration.
17128         (hack-dir-local-variables): Add dir-local variable/value pair to
17129         `dir-local-variables-alist' and remove duplicates.  Doc fix.
17131         * help-fns.el (describe-variable): Add information about
17132         file-local and dir-local variables.
17134 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
17136         * files.el (hack-local-variables-filter): Rewrite.
17138 2009-07-19  Glenn Morris  <rgm@gnu.org>
17140         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
17141         Silence compiler by only defining on XEmacs.
17143         * international/mule.el (auto-coding-regexp-alist): Only match
17144         BABYL... at the start of buffer, not of lines.  (Bug#3790)
17146         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
17147         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
17148         (cal-menu-context-mouse-menu): Doc fix.
17150         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
17152         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
17154 2009-07-18  Juri Linkov  <juri@jurta.org>
17156         * info.el: Virtual Info keyword finder.
17157         (add-to-list) <Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
17158         (Info-finder-file): New variable.
17159         (Info-finder-find-file): New function.
17160         (finder-known-keywords, finder-package-info)
17161         (find-library-name, lm-commentary): Use defvar and
17162         declare-function to silence compiler warnings.
17163         (Info-finder-find-node): New function.
17164         (info-finder): New command.
17166         * subr.el (process-kill-buffer-query-function): New function.
17167         (add-hook)<kill-buffer-query-functions>: Add hook
17168         `process-kill-buffer-query-function'.
17170 2009-07-18  Alan Mackenzie  <acm@muc.de>
17172         * progmodes/cc-mode.el (c-before-hack-hook)
17173         (c-postprocess-file-styles): Give invocation of `c-set-style'
17174         DONT-OVERRIDE parameter of t.  Already set style variables will
17175         thus not be overridden by style settings given by `c-file-syle'.
17177         * files.el (hack-local-variables-filter): Remove entries with
17178         duplicate keys from `file-local-variables-alist'.
17180 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
17182         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
17183         x-set-selection if display-selections-p returns nil for the
17184         current frame.
17186 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
17188         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
17190 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
17192         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
17193         Accept nil in addition to a regexp.
17194         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
17195         Accept nil in addition to a regexp.
17196         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
17197         buffers that have an associated file.  Handle nil values of
17198         desktop-buffers-not-to-save and desktop-files-not-to-save.
17199         (Bug#3833)
17201         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
17202         (x-disown-selection-internal): New functions.
17204 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
17206         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
17207         warning.
17208         (gdb-breakpoints-header): Move forward to avoid compiler warning.
17209         (gdb-make-header-line-mouse-map): Remove duplicate definition.
17211 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
17213         * simple.el (set-mark): Revert last change.
17215 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
17217         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
17218         rendering of pngs is not possible instead of messaging a long
17219         description.
17221 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
17223         * w32-fns.el (x-selection-owner-p): New function.
17225         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
17226         (mouse-yank-at-click, mouse-yank-primary): If
17227         select-active-regions is non-nil, deactivate the mark before
17228         insertion.
17230         * simple.el (deactivate-mark, set-mark): Only save selection if we
17231         own it.
17233 2009-07-17  Kenichi Handa  <handa@m17n.org>
17235         * case-table.el (describe-buffer-case-table): Fix for the case
17236         that KEY is a cons.
17238 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
17240         * vc-rcs.el (vc-rcs-find-file-hook):
17241         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
17243 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
17245         * net/tramp.el (tramp-wait-for-output): Handle the case when
17246         commands do not return a newline but a null byte before the shell
17247         prompt.  (Bug#3858)
17249 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
17251         * term/ns-win.el (ns-set-alpha): Don't declare.
17252         (ns-set-background-alpha): Remove function.
17254 2009-07-16  Kevin Ryde  <user42@zip.com.au>
17256         * emacs-lisp/copyright.el (copyright-update): Save match-data across
17257         y-or-n-p, for safety.
17259 2009-07-16  Richard Stallman  <rms@gnu.org>
17261         * files.el (auto-save-mode): If buffer-saved-size is -2,
17262         don't clobber it.
17264         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
17265         (rmail-retry-ignored-headers): Add more uninteresting fields.
17267 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
17269         * net/rcirc.el (rcirc): Use history variables.
17270         (rcirc-server-name-history, rcirc-nick-name-history)
17271         (rcirc-server-port-history): New variables.
17273 2009-07-15  Kenichi Handa  <handa@m17n.org>
17275         * international/mule-cmds.el (set-language-environment-charset):
17276         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
17277         ignore them.
17279         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
17280         Delete unibyte-display.
17282 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
17284         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
17286 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
17288         * simple.el (deactivate-mark): Optional argument FORCE.
17289         (set-mark): Use deactivate-mark.
17291         * info.el (Info-search): No need to check transient-mark-mode
17292         before calling deactivate-mark.
17294         * select.el (x-set-selection): Doc fix.
17295         (x-valid-simple-selection-p): Allow buffer values.
17296         (xselect--selection-bounds): Handle buffer values.  Suggested by
17297         David De La Harpe Golden.
17299         * mouse.el (mouse-set-region, mouse-drag-track): Call
17300         copy-region-as-kill before setting the mark, to let
17301         select-active-regions work.
17303 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
17305         * simple.el (deactivate-mark): If select-active-regions is
17306         non-nil, copy the selection data into a string.
17307         (activate-mark): If select-active-regions is non-nil, set the
17308         selection to the current buffer.
17309         (set-mark): Update selection if select-active-regions is non-nil.
17311         * select.el (x-valid-simple-selection-p): Allow buffer values.
17313 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
17315         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
17316         and more featureful message-mode.
17318 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
17320         * select.el (x-set-selection): Doc fix.
17321         (x-valid-simple-selection-p): Disallow selection data consisting
17322         of a list or cons of integers, since that is not used.
17323         (xselect--selection-bounds, xselect--int-to-cons): New functions.
17324         (xselect-convert-to-string, xselect-convert-to-length)
17325         (xselect-convert-to-filename, xselect-convert-to-charpos)
17326         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
17328 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
17330         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
17331         output in -break-info command (Emacs bug #3794).
17333 2009-07-14  Glenn Morris  <rgm@gnu.org>
17335         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
17336         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
17337         (edebug-print-length, edebug-print-level, edebug-print-circle)
17338         (edebug-sit-for-seconds, edebug-view-outside)
17339         (edebug-bounce-point, edebug-set-global-break-condition)
17340         (edebug-Go-nonstop-mode, edebug-trace-mode)
17341         (edebug-Trace-fast-mode, edebug-continue-mode)
17342         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
17343         (edebug-visit-eval-list): Doc fixes.
17345         * subr.el (def-edebug-spec): Doc fix.
17347 2009-07-14  Kenichi Handa  <handa@m17n.org>
17349         * international/characters.el: Fix setting of category ?C.
17351 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
17353         * term/ns-win.el (x-select-font): defalias x-select-font to
17354         ns-popup-font-panel instead of generate-fontset-menu.
17356 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
17358         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
17360 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
17362         * arc-mode.el (archive-find-type): Allow for a PK00 string before
17363         the PK\003\004 header (Bug#3770).
17365 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
17367         * pcomplete.el (pcomplete-comint-setup): Check for
17368         shell-dynamic-complete-filename too.
17370 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
17372         * simple.el (temporary-goal-column): Change the value for
17373         line-move-visual to a cons cell.
17374         (line-move-visual): Record or set the window hscroll, if
17375         necessary (Bug#3494).
17376         (line-move-1): Handle cons value of temporary-goal-column.
17378 2009-07-11  Kenichi Handa  <handa@m17n.org>
17380         * international/mule-diag.el (describe-character-set): Don't show
17381         width.
17383 2009-07-10  Sam Steingold  <sds@gnu.org>
17385         * progmodes/compile.el (compilation-mode-font-lock-keywords):
17386         Omake sometimes indents the errors it prints, so allow all
17387         regexps to start with spaces.
17389 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
17391         * cus-edit.el (customize-changed-options-previous-release):
17392         Bump value to 22.1.  (Bug#3804)
17394 2009-07-08  Sam Steingold  <sds@gnu.org>
17396         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
17397         to be a cons cell (test . ignored-directory) to selectively ignore
17398         some directories depending on the location of the search.
17400 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
17402         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
17403         remote user is root, on the local host.
17404         (tramp-local-host-p): Either the local user or the remote user
17405         must be root.  (Bug#3771)
17407 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
17409         * progmodes/gdb-mi.el (gdb): Remove description of
17410         gdb-use-separate-io-buffer.
17411         (menu): Don't allow toggling of or enable
17412         gdb-use-separate-io-buffer from menubar.
17414 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
17416         * mail/unrmail.el (unrmail): Make sure the message ends with two
17417         newlines (Bug#3769).
17419 2009-07-08  Glenn Morris  <rgm@gnu.org>
17421         * calendar/calendar.el (calendar-current-date): Rework previous change.
17423 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
17425         * calendar/calendar.el (calendar-current-date):
17426         Add an optional argument giving an offset from today.
17428 2009-07-08  Glenn Morris  <rgm@gnu.org>
17430         * tutorial.el (tutorial--describe-nonstandard-key):
17431         Adjust the message for when a key has been unbound.
17432         (help-with-tutorial): Hide the arch-tag.
17434 2009-07-08  Kenichi Handa  <handa@m17n.org>
17436         * international/fontset.el (setup-default-fontset): For each
17437         script, append (not set) font-specs.
17439         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
17440         docstring.
17442 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
17444         * progmodes/gdb-mi.el (gdb-init-1): Move sending
17445         -data-list-register-names to ...
17446         (gdb-starting): ... here because GDB 7.0 requires execution to
17447         have started when using this MI command.
17448         (gdb-set-header): New function to distinguish select and
17449         unselected tabs in gdb buffers.
17450         (gdb-propertize-header): New macro that uses gdb-set-header.
17451         (gdb-breakpoints-header, gdb-locals-header): Use it.
17452         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
17454 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
17456         * Makefile.in (ELCFILES): Remove fadr.elc.
17458 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
17460         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
17461         may contain frame information, so `string-match' should be used.
17462         (gdb-update): Disassembly is invalidated through
17463         `gdb-get-selected-frame'.
17464         (gdb-pad-string): New function to pad string with spaces.
17465         (gdb-invalidate-disassembly): Invalidate only if the buffer
17466         exists.
17467         (gdb-disassembly-handler-custom): Column alignment.
17468         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
17469         placing new ones.
17470         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
17471         end of line, too.
17472         (gdb-frame-handler): Match convention to for disassembly buffer
17473         mode name.
17474         (gdb-stack-list-frames-handler): Rewritten without regexps.
17475         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
17476         not highlight breakpoints without line information.
17477         (gdb-input): Add trailing newline to command.
17479         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
17480         buffer properly.
17481         (gdb-breakpoints-list-handler-custom): Replacement for
17482         `gdb-break-list-handler'.  Using real parser instead of regexps
17483         now.
17484         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
17485         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
17486         to place breakpoints.
17487         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
17488         functions.
17489         (gdb-disassembly-handler-custom): Show overlay arrow.
17490         (gdb-disassembly-place-breakpoints): Show breakpoints in
17491         disassembly buffer.
17492         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
17493         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
17494         instead of parsing breakpoints buffer.  Fixed old menu references
17495         in `gud-menu-map'.
17497         * fadr.el: Remove.
17499         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
17500         (gdb-memory-address): New variable which holds top address of
17501         memory page shown in memory buffer.
17502         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
17503         customization variables.
17504         New functions:
17505         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
17506         display the memory buffer.
17507         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
17508         buffer display parameters.
17509         (def-gdb-memory-format, gdb-memory-format-binary)
17510         (gdb-memory-format-octal, gdb-memory-format-unsigned)
17511         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
17512         Functions for setting memory buffer format.
17513         (gdb-memory-unit-word, gdb-memory-unit-halfword)
17514         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
17515         unit size used in memory buffer.
17516         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
17517         to next/previous page of memory buffer.
17518         Now using (bindat-get-field) instead of fadr functions.
17520 2009-07-07  Sam Steingold  <sds@gnu.org>
17522         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
17523         non-top-level files.
17525 2009-07-07  Kenichi Handa  <handa@m17n.org>
17527         * international/mule-cmds.el (reset-language-environment): Put
17528         the highset priority to the charset iso-8859-1.
17530 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
17532         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
17533         to the end of the line when locating the block (Bug#700).
17535 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
17537         * net/tramp.el (tramp-handle-write-region): Flush file properties
17538         in case of short track.
17540 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
17542         * progmodes/verilog-mode.el (verilog-error-regexp-emacs-alist):
17543         Coded custom representation of verilog error regular expressions
17544         to work with Emacs-22's new format.
17545         (verilog-error-regexp-xemacs-alist): Coded custom representation
17546         of verilog error regular expressions to work with XEmacs format.
17547         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
17548         error recognition into XEmacs.
17549         (verilog-error-regexp-add-emacs): Hook routine to install verilog
17550         error recognition into Emacs-22.
17552 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
17554         * woman.el: Remove stand-alone closing parentheses.
17555         (woman-file-name, woman2-format-paragraphs)
17556         (woman-leave-blank-lines): Code cleanup.
17557         (woman-use-own-frame): Change default to nil.
17558         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
17559         defaults to inherit from default faces.
17560         (woman2-process-escapes): Consume the newline after a stand-alone
17561         filler character (Bug#3651).
17563 2009-07-06  Glenn Morris  <rgm@gnu.org>
17565         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
17566         (top-level): Move provide to the end.
17567         (ffap): Remove defunct URL from custom group.
17569         * subr.el (eval-after-load): Doc fix.
17571 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
17573         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
17574         `calc-embedded-word' is called twice.
17576 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17578         * files.el (find-alternate-file-other-window, find-alternate-file):
17579         Obey confirm-nonexistent-file-or-buffer.
17581 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
17583         * dired-aux.el (dired-show-file-type): Handle remote files.
17585 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
17587         * desktop.el (desktop-globals-to-save):
17588         Add file-name-history (Bug#2750).
17590 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
17592         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
17594 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
17596         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
17597         property on entire argument since this is what eshell-lisp-command
17598         expects.
17600 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
17602         * net/tramp-gvfs.el (tramp-gvfs-methods)
17603         (tramp-gvfs-zeroconf-domain)
17604         (tramp-bluez-discover-devices-timeout): Add version flag.
17605         (tramp-gvfs-handler-mounted-unmounted)
17606         (tramp-gvfs-connection-mounted-p): Polish handling of
17607         incompatibilities between GVFS 0.2 and 1.0.
17609 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
17611         * cus-start.el (all): Add make-pointer-invisible.
17613 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
17615         * calc/calc-math.el (math-use-emacs-fn): Make sure that the number is
17616         formatted correctly.
17618 2009-07-02  Juri Linkov  <juri@jurta.org>
17620         * info.el: Virtual Info files and nodes.
17621         (Info-virtual-files, Info-virtual-nodes): New variables.
17622         (Info-current-node-virtual): New variable.
17623         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
17624         New functions.
17625         (Info-file-supports-index-cookies): Use Info-virtual-file-p
17626         to check for a virtual file instead of checking a fixed list
17627         of node names.
17628         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
17629         instead of ad-hoc processing of "dir" and (apropos history toc).
17630         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
17631         instead of ad-hoc processing of "dir" and (apropos history toc).
17632         Reread a file when moving from a virtual node.
17633         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
17634         (Info-directory-toc-nodes, Info-directory-find-file)
17635         (Info-directory-find-node): New functions.
17636         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
17637         (Info-history): Move part of code to
17638         `Info-history-find-node'.
17639         (Info-history-toc-nodes, Info-history-find-file)
17640         (Info-history-find-node): New functions.
17641         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
17642         (Info-toc): Move part of code to `Info-toc-find-node'.
17643         (Info-toc-find-node): New function.
17644         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
17645         the current Info file name to references because now the node
17646         "*TOC*" belongs to the same Info manual.
17647         (Info-toc-build): Rename from `Info-build-toc'.
17648         (Info-toc-nodes): Rename input argument `file' to `filename'.
17649         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
17650         instead of ad-hoc processing of ("dir" apropos history toc).
17651         (Info-index-nodes): Use Info-virtual-file-p
17652         to check for a virtual file instead of checking a fixed list
17653         of node names.
17654         (Info-index-node): Add check for `Info-current-node-virtual'.
17655         Raise `save-match-data' higher up the tree to contain
17656         `search-forward' too (bug fix).
17657         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
17658         (Info-virtual-index-nodes): New variable.
17659         (Info-virtual-index-find-node, Info-virtual-index): New functions.
17660         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
17661         (Info-apropos-file, Info-apropos-nodes): New variables.
17662         (Info-apropos-toc-nodes, Info-apropos-find-file)
17663         (Info-apropos-find-node, Info-apropos-matches): New functions.
17664         (info-apropos): Move part of code to `Info-apropos-find-node' and
17665         `Info-apropos-matches'.
17666         (Info-mode-map): Bind "I" to `Info-virtual-index'.
17667         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
17668         for a virtual file instead of checking a fixed list of node names.
17670         * simple.el (async-shell-command): New command.
17672         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
17674         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
17675         instead of `mount-info'.
17677 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
17679         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
17680         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
17682 2009-07-02  Kenichi Handa  <handa@m17n.org>
17684         * international/mule.el (set-keyboard-coding-system): Force *-unix
17685         coding-system to avoid eol conversion.
17687 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
17689         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
17690         Add handler for `process-file', `shell-command' and
17691         `start-file-process'.
17692         (tramp-gvfs-handle-shell-command)
17693         (tramp-gvfs-handle-start-file-process)
17694         (tramp-gvfs-handle-process-file): New defuns.
17695         (tramp-synce-list-devices): Simplify check for existence of property.
17697 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
17699         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
17701 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
17703         * language/korean.el (set-language-info-alist): Add korean-cp949,
17704         cp949 to spec.
17706 2009-07-01  Kenichi Handa  <handa@m17n.org>
17708         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
17710         * international/encoded-kb.el: Deleted.
17712         * international/mule.el (set-keyboard-coding-system): Perform the
17713         necessary setup here instead of calling encoded-kbd-setup-display.
17715 2009-07-01  Glenn Morris  <rgm@gnu.org>
17717         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
17719 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
17721         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
17723 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
17725         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
17726         Handle also the 'rename case, when setting file modes.  (Bug#3712)
17727         (tramp-default-file-modes): Remove execute permissions.
17729         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
17730         (top): Add a default for "synce" in `tramp-default-user-alist'.
17731         Add completion function for "synce" method.
17732         (tramp-hal-service, tramp-hal-path-manager)
17733         (tramp-hal-interface-manager, tramp-hal-interface-device):
17734         New defconst.
17735         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
17736         (tramp-synce-list-devices, tramp-synce-parse-device-names):
17737         New defuns.
17739         * net/trampver.el: Update release number.
17741 2009-06-30  Kenichi Handa  <handa@m17n.org>
17743         * international/fontset.el (setup-default-fontset): Add CJK fonts
17744         for symbols and the other miscellaneous characters.
17746         * language/korea-util.el (setup-korean-environment-internal):
17747         Make char-width-table suitable for Korean environments.
17748         (exit-korean-environment): Cancel above.
17750         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
17751         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
17752         setup-function to make char-width-table suitable for respective
17753         environments, and an exit-function to cancel that.
17755         * language/japan-util.el (setup-japanese-environment-internal):
17756         Call use-cjk-char-width-table with arg `ja_JP'.
17758         * international/characters.el (cjk-char-width-table): Delete it.
17759         (cjk-char-width-table-list): New variable.
17760         (use-cjk-char-width-table): New arg local-name.
17761         (use-default-char-width-table): Fix for the case that Emacs is
17762         already using the default char-width-table.
17764 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
17766         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
17767         modes mandatory.  (Bug#3712)
17769 2009-06-29  Alan Mackenzie  <acm@muc.de>
17771         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
17772         correction between the visible width of TABs and their number of bytes.
17774 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
17776         * server.el (server-buffer-done): Prevent kill-buffer from
17777         prompting by clearing the buffer modification flag (Bug#3696).
17779 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
17781         * progmodes/verilog-mode.el (verilog-beg-of-statement)
17782         (verilog-endcomment-reason-re): Support unique case and priority case.
17783         (verilog-basic-complete-re): Support localparam lineup.
17784         (verilog-beg-of-statement-1): Fix for robustness, unique case.
17785         (verilog-set-auto-endcomments): Fix for unique case, always_comb
17786         commenting.
17787         (verilog-leap-to-case-head): Now support *nested* unique &
17788         priority case statements.
17789         (verilog-auto-lineup): Make just declarations the default (as it
17790         had been).
17791         (verilog-leap-to-case-head): Support priority/unique case statements.
17792         (verilog-auto-lineup): Rework to give users radio buttons to
17793         select the various styles of automatic lineup.
17794         (verilog-error-regexp-alist): Rework to support the XEmacs style
17795         of error regular expressions from compilers, lint tools &
17796         simulators.  Note that GNU Emacs has made it impossible for a mode
17797         to load such things.
17798         (electric-verilog-terminate-line, verilog-indent-declaration)
17799         (verilog-auto-wiure): Rework for radio button selection of
17800         auto-lineup selection of specification of auto lineup.
17801         (verilog-beg-of-statement-1): Redesign to support proper operation
17802         in additional code, based on testing with auto-lineup.
17803         (verilog-calculate-indent, assignments & declarations)
17804         (verilog-backward-token): Enhance to support auto-lineup of
17805         assignments & declarations.
17806         (verilog-in-directive-p, verilog-at-struct-p): New function for
17807         easy test of whether we are.
17808         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
17809         to support safe execution at almost anyline.
17810         (verilog-calc-1): Properly support indenting deep inside generate
17811         blocks.
17812         (verilog-init-font): Remove definition & use of verilog-init-font,
17813         as it is redundant with font-lock-defaults.
17814         (verilog-mode): Alter the definition of verilog-font-lock-defaults
17815         to avoid circular calls if syntax-ppss is a function (as is the
17816         case now in 22.x GNU Emacs) as that function would sometimes call
17817         itself, leading to (nearly) infinite recursion.
17818         (verilog-ovm-begin-re, verilog-ovm-end-re)
17819         (verilog-ovm-statement-re, verilog-leap-to-head)
17820         (verilog-backward-token): Add support for OVM macros.  Some are
17821         complete statements, and others open and close scopes like begin
17822         and end.
17823         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
17824         (verilog-defun-level-generate-only-re): Really fix the defun-list
17825         compilation issue.
17826         (verilog-calc-1, verilog-beg-of-statement): Enhance support for
17827         coverpoint, constraint and cross statements.
17828         (verilog-defun-level-list, verilog-generate-defun-level-list)
17829         (verilog-all-defun-level-list): Redo these specifications - it is
17830         too hard to support eval-when compile aggregation of lists also
17831         built at when-compile time.
17832         (verilog-defun-level-list): Place defconsts of variables used in
17833         building regular expressions which are built in eval-when-compile
17834         bodies in the same eval-when-compile body to facilitate compile
17835         without load.
17836         (verilog-beg-block-re-ordered): Support indenting
17837         virtual/protected tasks and functions.
17838         (verilog-defun-level-list, verilog-in-generate-region-p)
17839         (verilog-backward-ws&directives, verilog-calc-1): Speed up
17840         indentation of some module items (generate items).
17841         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
17842         across virtual/protected tasks and functions.
17844 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
17846         * progmodes/verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
17847         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
17848         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
17849         in concatenations.  Reported by Yishay Belkind.
17850         (verilog-auto-ascii-enum): Support one-hot state machines in
17851         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
17852         (verilog-auto-inst, verilog-auto-inst-port): Include interface
17853         modport in AUTOINST and add vl-modport for users.  Reported by
17854         David Rogoff.
17855         (verilog-auto-inout-module, verilog-auto-inst)
17856         (verilog-decls-get-interfaces, verilog-insert-definition)
17857         (verilog-insert-one-definition, verilog-read-decls)
17858         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
17859         (verilog-sig-modport, verilog-signals-combine-bus)
17860         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
17861         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
17862         Suggested by David Rogoff.
17863         (verilog-repair-open-comma): Fix non-insertion of comma when
17864         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
17865         (verilog-make-width-expression): Simplify [A-1:0] expression
17866         widths to just {A{1'b0}}.
17867         (verilog-mode): Cleanup checkdoc warnings.
17868         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
17869         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
17870         inputs/outputs or data type.  Suggested by Vasu Kandadi.
17871         (next-error-last-buffer): Fix byte-compiler warning.
17872         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
17873         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
17874         or shell command text during AUTO expansion.  Suggested by Tad Truex.
17875         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
17876         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
17877         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
17878         in AUTOINOUT.  Reported by Matthew Lovell.
17879         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
17880         causing use of <= assignments.  Reported by Alex Reed.
17881         (verilog-read-decls): Fix triand, trior, wand, wor to be
17882         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
17883         (verilog-extended-complete-re): Support import "DPI-C" functions.
17884         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
17885         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
17886         (verilog-insert-date, verilog-insert-year)
17887         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
17888         Windows systems.  Reported by Michael Potts.
17889         (verilog-read-module-name): Fix AUTOINST when the child module
17890         declaration's name is a tick define.  Reported by Elliot Mednick.
17891         (verilog-read-decls): Fix V2K parameter bit subscripts getting
17892         passed to next parameter's definition.  Reported by Bruce T.
17893         (verilog-read-decls): Fix detecting "parameter int" when using
17894         AUTOINSTPARAM.  Reported by Bruce T.
17895         (verilog-goto-defun): Fix goto not finding modules unless first
17896         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
17897         (verilog-mode): Expand -f flag arguments on entry to mode so
17898         verilog-goto-defun will work.  Reported by Lawrence Butcher.
17899         (verilog-getopt): Expand environment variables in -f file
17900         arguments.  Suggested by Lawrence Butcher.
17901         (verilog-set-define): Fix "Symbol's value as variable is void"
17902         when reading enumerations.
17903         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
17904         Suggested by Stephen Peltan.
17905         (verilog-read-defines): Fix reading of enumerations in include
17906         files.  Reported by Steve Peltan.
17908 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
17910         * files.el (trash-directory): Fix defcustom type.
17912 2009-06-28  Juri Linkov  <juri@jurta.org>
17914         * help-fns.el (describe-function-1): Correctly locate adviced
17915         functions in hyperlink (Bug#2438).
17917 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
17919         * files.el (trash-directory): Change default to nil.
17920         (move-file-to-trash): If trash-directory is nil and
17921         system-move-file-to-trash is unbound, perform freedesktop-style
17922         trashing.
17924 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
17926         * files.el (move-file-to-trash): Add freedesktop trash
17927         support (Bug#973).
17929 2009-06-28  Glenn Morris  <rgm@gnu.org>
17931         * autorevert.el (global-auto-revert-non-file-buffers)
17932         (global-auto-revert-mode): Doc fixes.
17934 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
17936         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
17938 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
17940         * faces.el (x-handle-named-frame-geometry): Ensure that we have
17941         opened an X connection before calling x-get-resource (Bug#3194).
17943         * play/doctor.el: Remove reference to obsolete website.
17944         (make-doctor-variables): Correct grammar mistake (Bug#2633).
17946 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
17948         Remove find-file-not-found-hook VC method.  (Bug#2757)
17949         * vc-hooks.el (vc-file-not-found-hook)
17950         (vc-default-find-file-not-found-hook): Remove functions.
17951         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
17952         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
17953         * vc.el:
17954         * vc-hg.el:
17955         * vc-git.el: Do not mention find-file-not-found-hook VC method.
17957 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
17959         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
17960         compatibility function for `looking-back'.
17962         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
17963         Use `ispell-looking-back'.
17965 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
17967         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
17968         rather than `filename'.
17970 2009-06-23  Miles Bader  <miles@gnu.org>
17972         * face-remap.el (text-scale-set): New function.
17974 2009-06-23  Glenn Morris  <rgm@gnu.org>
17976         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
17978         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
17980         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
17982         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
17984         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
17985         Simplify Persian conditionals.
17987         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
17988         variable `filename'.
17990         * comint.el (comint-insert-input): Doc fix.
17992         * Makefile.in (ELCFILES): Fix typo in previous change.
17994 2009-06-23  Miles Bader  <miles@gnu.org>
17996         * cus-start.el: Add entry for `recenter-redisplay'.
17998 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
18000         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
18001         Add an optional argument for the backend, use it instead of
18002         calling vc-backend.
18003         (vc-mode-line): Add an optional argument for the backend.
18004         Pass the backend to vc-state and vc-working-revision.  Move code for
18005         special handling for vc-state being a buffer to ...
18007         * vc-rcs.el (vc-rcs-find-file-hook):
18008         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
18010         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
18011         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
18012         vc-stay-local-p and vc-mode-line calls.
18014         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
18015         (vc-cvs-diff, vc-cvs-annotate-command)
18016         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
18017         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
18018         vc-mode-line calls.
18020         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
18021         direct comparison.
18022         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
18023         backend when calling vc-mode-line.
18024         (vc-register): Do not create a closure for calling the vc register
18025         function, call it directly.
18027 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
18029         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
18030         to make it obvious item can be clicked.
18032         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
18034 2009-06-23  Kenichi Handa  <handa@m17n.org>
18036         * language/korea-util.el (korean-key-bindings): Change the binding
18037         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
18038         same command.
18040 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
18042         Sync with Tramp 2.1.16.
18044         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
18046         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
18047         when a loading of a package fails.  Completion function for rsync
18048         is `tramp-completion-function-alist-ssh'.
18049         (all): Replace all calls of `split-string' and
18050         `tramp-split-string' by `tramp-compat-split-string'.
18051         (tramp-default-method): Use `tramp-compat-process-running-p'.
18052         (tramp-default-proxies-alist): Allow also Lisp forms.
18053         (tramp-remote-path): Add choice "Private Directories".
18054         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
18055         (tramp-domain-regexp): Allow also "-", "_" and ".".
18056         (tramp-end-of-output): Remove newlines, and add "$" at the end.
18057         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
18058         (tramp-debug-message): Insert header line in debug buffer.
18059         (tramp-handle-directory-files-and-attributes-with-stat):
18060         Care about filenames with spaces, or starting with "-".
18061         (tramp-handle-dired-uncache): New defun.
18062         (tramp-handle-insert-directory): Don't flush the directory from
18063         cache, this is handled by `dired-uncache' now.
18064         (tramp-handle-insert-file-contents): Improve error handling.
18065         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
18066         Quote `tramp-end-of-output'.
18067         (tramp-action-password): Improve trace message.
18068         (tramp-check-for-regexp): Both echoes must be present, before removing.
18069         (tramp-open-connection-setup-interactive-shell): Trace coding system.
18070         (tramp-compute-multi-hops): Eval cons cells of
18071         `tramp-default-proxies-alist'.
18072         (tramp-maybe-open-connection): Use the same command pattern for
18073         first hop and further hops.
18074         (tramp-wait-for-output): Remove handling of newlines.
18075         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
18076         (tramp-split-string): Remove function.  It is handled in
18077         tramp-compat now.
18079         * net/tramp-cmds.el (tramp-bug):
18080         Recommend `tramp-cleanup-all-connections' in the bug mail.
18082         * net/tramp-compat.el (tramp-compat-split-string)
18083         (tramp-compat-process-running-p): New defuns.
18085         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
18086         for `dired-uncache'.
18088         * net/tramp-gvfs.el: New package.
18090         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
18091         Add handler for `dired-uncache'.
18092         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
18094         * net/trampver.el: Update release number.  Make version check fit
18095         for SXEmacs 22.
18097 2009-06-22  Jim Meyering  <meyering@redhat.com>
18099         Automatically handle .xz suffix (XZ-compressed files), too.
18100         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
18101         XZ is the successor to LZMA: <http://tukaani.org/xz/>
18103 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
18104             Nick Roberts  <nickrob@snap.net.nz>
18106         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
18107         repository (http://sphinx.net.ru/hg/gdb-mi/).
18109 2009-06-22  Glenn Morris  <rgm@gnu.org>
18111         * files.el (dir-locals-collect-mode-variables): Allow for any number of
18112         `mode' and `eval' entries.  (Bug#3430)
18114         * Makefile.in (ELCFILES): Add fadr.elc.
18116         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
18117         differing behavior of \n and ^ in strings.  (Bug#3385)
18119         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
18121         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
18122         property.
18123         (lisp-indent-function): Make it a defcustom.
18125 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
18127         * progmodes/gdb-ui.el: Replace with ...
18128         * progmodes/gdb-mi.el: ... this file.
18129         * progmodes/gud.el: Modify for gdb-mi.el.
18131 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
18133         * fadr.el: New file.
18135 See ChangeLog.14 for earlier changes.
18137 ;; Local Variables:
18138 ;; coding: utf-8
18139 ;; End:
18141   Copyright (C) 2009, 2010  Free Software Foundation, Inc.
18143   This file is part of GNU Emacs.
18145   GNU Emacs is free software: you can redistribute it and/or modify
18146   it under the terms of the GNU General Public License as published by
18147   the Free Software Foundation, either version 3 of the License, or
18148   (at your option) any later version.
18150   GNU Emacs is distributed in the hope that it will be useful,
18151   but WITHOUT ANY WARRANTY; without even the implied warranty of
18152   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18153   GNU General Public License for more details.
18155   You should have received a copy of the GNU General Public License
18156   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.