Try and remove assumptions about point-min==1.
[emacs.git] / lisp / ChangeLog
blob2a1dd616ddf770380eb127dfc19e1ecc5cf3d424
1 2009-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3         Try and remove assumptions about point-min==1.
4         * nxml/rng-valid.el (rng-validate-mode): Don't hardcode point-min==1.
5         (rng-compute-mode-line-string): Show the validation percentage in
6         terms of the narrowed text, not the widened text.
7         (rng-do-some-validation): Don't catch internal errors when debugging.
8         (rng-first-error): Simplify.
9         (rng-after-change-function): Remove work around.  AFAIK the bug has
10         been fixed a while ago.
12         * image-mode.el (image-minor-mode): Exit more gracefully when the image
13         cannot be displayed (e.g. when doing C-x C-f some-new-file.svg RET).
15         * man.el (Man-completion-table): Make it easier to enter "<sec> <name>".
17         * eshell/em-prompt.el (eshell-prompt-function): Abbreviate pwd, since
18         `cd' doesn't always do it for us (bug#5067).
20         * pcomplete.el (pcomplete-entries): Revert change installed mistakenly
21         on 2009-10-25 as part of some other change (bug#5067).
23 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
25         * emacs-lisp/bytecomp.el (byte-compile-warning-types): New type
26         `suspicious'.
27         (byte-compile-warnings): Use byte-compile-warning-types.
28         (byte-compile-save-excursion): Warn about use of set-buffer right
29         after save-excursion.
31         * progmodes/gud.el (gud-basic-call): Don't only save the buffer but
32         the excursion as well.
34 2009-11-27  Michael Albinus  <michael.albinus@gmx.de>
36         * eshell/em-unix.el (eshell/su, eshell/sudo): New defuns,
37         providing a Tramp related implementation of "su" and "sudo".
38         (eshell-unix-initialize): Add "su" and "sudo".
40 2009-11-27  Daiki Ueno  <ueno@unixuser.org>
42         * net/socks.el (socks-send-command): Convert binary request to
43         unibyte before sending.  This fixes mishandling of some port
44         numbers such as 129.
46 2009-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
48         * help.el (describe-bindings-internal): Remove `interactive'.
50         * man.el (Man-completion-table): Trim a terminating "(".
51         Remove the space between name page a section.
52         Add the command's description on the `help-echo' property.
53         Remove `process-connection-type' binding since it's unused by
54         call-process.
55         Provide completion for the "<section> <name>" format as well.
56         (Man-default-man-entry): Remove spurious var shadowing the argument.
58 2009-11-26  Kevin Ryde  <user42@zip.com.au>
60         * log-view.el: Add "Keywords: tools", since its other keywords
61         aren't in finder-known-keywords, and following vc.el.
63         * sha1.el (sha1-string-external): default-directory "/" in case
64         otherwise non-existent.  process-connection-type pipe for touch of
65         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
67 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
69         Misc coding convention cleanups.
70         * htmlfontify.el (hfy-init-kludge-hook): Rename from
71         hfy-init-kludge-hooks.
72         (hfy-etags-cmd, hfy-flatten-style, hfy-invisible-name, hfy-face-at)
73         (hfy-fontify-buffer, hfy-prepare-index-i, hfy-subtract-maps)
74         (hfy-save-kill-buffers, htmlfontify-copy-and-link-dir): Use dolist
75         and push.
76         (hfy-slant, hfy-weight): Use tables rather than code.
77         (hfy-box-to-border-assoc, hfy-box-to-style, hfy-decor)
78         (hfy-face-to-style-i, hfy-fontify-buffer): Use `case'.
79         (hfy-face-attr-for-class): Initialize `face-spec' directly.
80         (hfy-face-to-css): Remove `nconc' with single arg.
81         (hfy-p-to-face-lennart): Use `or'.
82         (hfy-face-at): Hoist common code.  Remove spurious quotes in `case'.
83         (hfy-overlay-props-at, hfy-mark-tag-hrefs): Eta-reduce.
84         (hfy-compile-stylesheet, hfy-merge-adjacent-spans)
85         (hfy-compile-face-map, hfy-parse-tags-buffer): Use push.
86         (hfy-force-fontification): Use run-hooks.
88 2009-11-26  Vivek Dasmohapatra  <vivek@etla.org>
90         Various minor fixes.
91         * htmlfontify.el (hfy-default-header): Add toggle_invis since
92         Javascript belongs in the header, not the body.
93         (hfy-javascript): Remove.
94         (hfy-fontify-buffer): Don't insert it any more.
95         (hfy-face-at): Handle (face0 face1 face2) style face properties.
96         Fix bug in invis handling when there were no invis props in a chunk.
98 2009-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
100         * vc-bzr.el (vc-bzr-annotate-command): Make operation asynchronous.
102 2009-11-26  Dan Nicolaescu  <dann@ics.uci.edu>
104         * finder.el (finder-mode-map): Add a menu.
106 2009-11-26  Michael McNamara  <mac@mail.brushroad.com>
108         * verilog-mode.el (verilog-at-struct-p): Support "signed" and
109         "unsigned" structs.
111         (verilog-leap-to-head, verilog-backward-token): Handle "disable
112         fork" statement better.
114 2009-11-26  Wilson Snyder  <wsnyder@wsnyder.org>
116         * verilog-mode.el (verilog-auto-insert-lisp, verilog-delete-auto)
117         (verilog-delete-empty-auto-pair, verilog-library-filenames):
118         Fix AUTOINSERTLISP to support insert-file.  Reported by Clay Douglass.
120         (verilog-auto-inst, verilog-auto-star-safe)
121         (verilog-delete-auto-star-implicit, verilog-read-sub-decls):
122         Fix removing "// Interfaces" when saving .* expansions.  Reported by
123         Pierre-David Pfister.
125 2009-11-26  Glenn Morris  <rgm@gnu.org>
127         * eshell/em-dirs.el (eshell/cd): Don't throw to a tag outside
128         the scope.
130 2009-11-25  Johan Bockgård  <bojohan@gnu.org>
132         * vc-annotate.el (vc-annotate-revision-previous-to-line):
133         Really use previous revision.
135 2009-11-25  Kevin Ryde  <user42@zip.com.au>
137         * man.el (Man-completion-table): default-directory "/" in case
138         doesn't otherwise exist.  process-environment COLUMNS=999 so as
139         not to truncate long names.  process-connection-type pipe to avoid
140         any chance of hitting the pseudo-tty TIOCGWINSZ.
141         (man): completion-ignore-case t for friendliness and since man
142         itself is case-insensitive on the command line.
143         Further to Bug#3717.
145         * arc-mode.el: Add "Keywords: files", so the details in its
146         commentary can be reached from finder-by-keyword.
147         * textmodes/dns-mode.el: Add "Keywords: comm".  It's only an
148         editing mode, but it's comms related and sgml-mode.el has "comm"
149         on that basis too.
150         * textmodes/bibtex-style.el: Add "Keywords: tex".
151         * international/isearch-x.el, international/ja-dic-cnv.el:
152         * international/ja-dic-utl.el, international/kkc.el:
153         Add "Keywords: i18n", so they can be reached from finder-by-keyword.
155 2009-11-25  Juri Linkov  <juri@jurta.org>
157         * man.el (Man-completion-table): Modify regexp to include
158         section names to completion strings.  (Bug#3717)
160 2009-11-25  Juri Linkov  <juri@jurta.org>
162         Search recursively in gzipped files.  (Bug#4982)
164         * progmodes/grep.el (grep-highlight-matches): Add new options
165         `always' and `auto'.  Doc fix.
166         (grep-process-setup): Check `grep-highlight-matches' for
167         `auto-detect' to determine the need to compute grep defaults.
168         Move Windows/DOS specific --colors settings handling
169         to `grep-compute-defaults'.  Check `grep-highlight-matches'
170         to get the value of "--color=".
171         (grep-compute-defaults): Compute `grep-highlight-matches' when it
172         has the value `auto-detect'.  Move Windows/DOS specific settings
173         from `grep-process-setup'.
174         (zrgrep): New command with alias `rzgrep'.
176 2009-11-25  Juri Linkov  <juri@jurta.org>
178         * doc-view.el (doc-view-mode): Set buffer-local `view-read-only'
179         to nil instead of switching off view-mode.  (Bug#4896)
181 2009-11-25  Juri Linkov  <juri@jurta.org>
183         Mouse-wheel scrolling for DocView Continuous mode.  (Bug#4896)
185         * mwheel.el (mwheel-scroll-up-function)
186         (mwheel-scroll-down-function): New defvars.
187         (mwheel-scroll): Funcall `mwheel-scroll-up-function' instead of
188         `scroll-up', and `mwheel-scroll-down-function' instead of
189         `scroll-down'.
191         * doc-view.el (doc-view-scroll-up-or-next-page)
192         (doc-view-scroll-down-or-previous-page): Add optional ARG.
193         Use this ARG in the call to image-scroll-up/image-scroll-down.
194         Change `interactive' spec to "P".  Goto next/previous page only
195         when `doc-view-continuous-mode' is non-nil or ARG is nil (for the
196         SPC/DEL case).  Doc fix.
197         (doc-view-next-line-or-next-page)
198         (doc-view-previous-line-or-previous-page): Rename arg to ARG
199         for consistency.
200         (doc-view-mode): Set buffer-local `mwheel-scroll-up-function' to
201         `doc-view-scroll-up-or-next-page', and buffer-local
202         `mwheel-scroll-down-function' to
203         `doc-view-scroll-down-or-previous-page'.
205 2009-11-25  Juri Linkov  <juri@jurta.org>
207         Provide additional default values (directories at other Dired
208         windows) via M-n in the minibuffer of some Dired commands.
210         * dired-aux.el (dired-diff, dired-compare-directories)
211         (dired-do-create-files): Use `dired-dwim-target-defaults' to set
212         `minibuffer-default' in `minibuffer-with-setup-hook'.
213         (dired-dwim-target-directory): Find a window that displays Dired
214         buffer instead of failing when the next window is not Dired.
215         Use `get-window-with-predicate' to find for the next Dired window.
216         (dired-dwim-target-defaults): New function.
218         * ediff-util.el (ediff-read-file-name):
219         Use `dired-dwim-target-defaults' to set `minibuffer-default'
220         in `minibuffer-with-setup-hook'.
222 2009-11-25  Juri Linkov  <juri@jurta.org>
224         Provide additional default values (file name at point or at the
225         current Dired line) via M-n for file reading minibuffers.  (Bug#5010)
227         * minibuffer.el (read-file-name-defaults): New function.
228         (read-file-name): Reset `minibuffer-default' to nil when
229         it duplicates initial input `insdef'.
230         Bind `minibuffer-default-add-function' to lambda that
231         calls `read-file-name-defaults' in `minibuffer-selected-window'.
232         (minibuffer-insert-file-name-at-point): New command.
234         * files.el (file-name-at-point-functions): New defcustom.
235         (find-file-default): Remove defvar.
236         (find-file-read-args): Don't use `find-file-default'.
237         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
238         to `read-file-name'.
239         (find-file-literally): Use `read-file-name' with
240         `confirm-nonexistent-file-or-buffer'.
242         * ffap.el (ffap-guess-file-name-at-point): New autoloaded function.
244         * dired.el (dired-read-dir-and-switches):
245         Move `minibuffer-with-setup-hook' that sets `minibuffer-default'
246         to `read-file-name'.
247         (dired-file-name-at-point): New function.
248         (dired-mode): Add hook `dired-file-name-at-point' to
249         `file-name-at-point-functions'.
251 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
253         Really make the *Completions* window soft-dedicated (bug#5030).
254         * window.el (window--display-buffer-2): Add `dedicated' argument.
255         (display-buffer): Pass it when needed so the dedicated flag is set
256         after calling set-window-buffer, which would otherwise reset it.
258 2009-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
260         * progmodes/meta-mode.el (meta-complete-symbol):
261         * progmodes/etags.el (complete-tag):
262         * mail/mailabbrev.el (mail-abbrev-complete-alias):
263         Use completion-in-region.
265         * dabbrev.el (dabbrev--minibuffer-origin): Use minibuffer-selected-window.
266         (dabbrev-completion): Use completion-in-region.
267         (dabbrev--abbrev-at-point): Simplify regexp.
269         * abbrev.el (abbrev--before-point): Use word-motion functions
270         if :regexp is not specified (bug#5031).
272         * subr.el (string-prefix-p): New function.
274         * man.el (Man-completion-cache): New var.
275         (Man-completion-table): Use it.
277         * vc.el (vc-print-log-internal): Make `limit' optional for better
278         compatibility (e.g. with vc-annotate.el).
280 2009-11-24  Kevin Ryde  <user42@zip.com.au>
282         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp):
283         Build value with regexp-opt instead of explicit joining loop.  (My
284         Bug#4927.)
286         * emacs-lisp/elint.el (elint-add-required-env): Better error message
287         when .el source file not found or other error.
289 2009-11-24  Markus Triska  <markus.triska@gmx.at>
291         * linum.el (linum-update-window): Ignore intangible (bug#4996).
293 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
295         Handle the [back] button properly (bug#4979).
296         * descr-text.el (describe-text-properties): Add a `buffer' argument.
297         Use help-setup-xref, help-buffer, and with-help-window.
298         (describe-char): Add `buffer' argument.
299         Pass proper command to help-setup-xref.  Don't meddle with
300         help-xref-stack-item directly.
301         (describe-text-category): Use with-help-window and help-buffer.
303         * emacs-lisp/shadow.el (list-load-path-shadows): Setup a major mode
304         for the displayed buffer (bug#4887).
306         * man.el (Man-completion-table): New function.
307         (man): Use it.
309 2009-11-24  David Reitter  <david.reitter@gmail.com>
311         * vc-git.el (vc-git-registered): Use checkout directory (where
312         .git is) rather than the file's directory and a relative path spec
313         to work around a bug in git.
315 2009-11-24  Michael Albinus  <michael.albinus@gmx.de>
317         Improve handling of processes on remote hosts.
319         * eshell/esh-util.el (eshell-path-env): New defvar.
320         (eshell-parse-colon-path): New defun.
321         (eshell-file-attributes): Use `eshell-parse-colon-path'.
323         * eshell/esh-ext.el (eshell-search-path):
324         Use `eshell-parse-colon-path'.
325         (eshell-remote-command): Remove argument HANDLER.
326         (eshell-external-command): Check for FTP remote connection.
328         * eshell/esh-proc.el (eshell-gather-process-output):
329         Use `file-truename', in order to start also symlinked files.
330         Apply `start-file-process' instead of `start-process'.
331         Shorten `command' to the local file name part.
333         * eshell/em-cmpl.el (eshell-complete-commands-list):
334         Use `eshell-parse-colon-path'.
336         * eshell/em-unix.el (eshell/du): Check for FTP remote connection.
338         * net/tramp.el (tramp-eshell-directory-change): New defun.  Add it
339         to `eshell-directory-change-hook'.
341 2009-11-24  Tassilo Horn  <tassilo@member.fsf.org>
343         * doc-view.el (doc-view-mode): Switch off view-mode explicitly,
344         because it could be enabled automatically if view-read-only is non-nil.
346 2009-11-24  Michael Kifer  <kifer@cs.stonybrook.edu>
348         * ediff-vers.el (ediff-rcs-get-output-buffer): Revert the change
349         made on 2009-11-22.
351 2009-11-24  Glenn Morris  <rgm@gnu.org>
353         * bookmark.el (bookmark-bmenu-hide-filenames): Remove assignment to
354         deleted variable bookmark-bmenu-bookmark-column.
356         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
357         Move after definition of global-semantic-idle-tag-highlight-mode.
359 2009-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
361         * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting.
363 2009-11-23  Ken Brown  <kbrown@cornell.edu>  (tiny change)
365         * net/browse-url.el (browse-url-filename-alist): On Windows, add
366         two slashes to the "file:" prefix.
367         (browse-url-file-url): De-munge Cygwin filenames before passing
368         them to Windows browser.
369         (browse-url-default-windows-browser): Use call-process.
371 2009-11-23  Juri Linkov  <juri@jurta.org>
373         Implement DocView Continuous mode.  (Bug#4896)
374         * doc-view.el (doc-view-continuous-mode): New defcustom.
375         (doc-view-mode-map): Bind C-n/<down> to
376         `doc-view-next-line-or-next-page', C-p/<up> to
377         `doc-view-previous-line-or-previous-page'.
378         (doc-view-next-line-or-next-page)
379         (doc-view-previous-line-or-previous-page): New commands.
381 2009-11-23  Juri Linkov  <juri@jurta.org>
383         Implement Isearch in comint input history.  (Bug#3746)
384         * comint.el (comint-mode): Add `comint-history-isearch-setup' to
385         `isearch-mode-hook'.
386         (comint-history-isearch): New defcustom.
387         (comint-history-isearch-backward)
388         (comint-history-isearch-backward-regexp): New commands.
389         (comint-history-isearch-message-overlay): New buffer-local variable.
390         (comint-history-isearch-setup, comint-history-isearch-end)
391         (comint-goto-input, comint-history-isearch-search)
392         (comint-history-isearch-message, comint-history-isearch-wrap)
393         (comint-history-isearch-push-state)
394         (comint-history-isearch-pop-state): New functions.
396 2009-11-23  Michael Albinus  <michael.albinus@gmx.de>
398         * net/tramp.el (tramp-shell-prompt-pattern): Use \r for carriage
399         return.
400         (tramp-handle-make-symbolic-link)
401         (tramp-handle-dired-compress-file, tramp-handle-expand-file-name):
402         Quote file names.
403         (tramp-send-command-and-check): New argument DONT-SUPPRESS-ERR.
404         (tramp-handle-process-file): Use it.
406 2009-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
408         * window.el (move-to-window-line-last-op): Remove.
409         (move-to-window-line-top-bottom): Reuse recenter-last-op instead.
411 2009-11-23  Deniz Dogan  <deniz.a.m.dogan@gmail.com>  (tiny change)
413         Make M-r mirror the new cycling behavior of C-l.
414         * window.el (move-to-window-line-last-op): New var.
415         (move-to-window-line-top-bottom): New command.
416         (global-map): Bind M-r move-to-window-line-top-bottom.
418 2009-11-23  Sven Joachim  <svenjoac@gmx.de>
420         * dired-x.el (dired-guess-shell-alist-default):
421         Support xz format.  (Bug#4953)
423 2009-11-22  Chong Yidong  <cyd@stupidchicken.com>
425         * cedet/srecode/map.el (srecode-get-maps):
426         * cedet/semantic/wisent/wisent.el (wisent-parse-toggle-verbose-flag):
427         * cedet/semantic/wisent/comp.el (wisent-toggle-verbose-flag):
428         * cedet/semantic/decorate/mode.el (semantic-decoration-mode)
429         (semantic-toggle-decoration-style):
430         * cedet/semantic/decorate/include.el
431         (semantic-decoration-include-describe)
432         (semantic-decoration-unknown-include-describe)
433         (semantic-decoration-unparsed-include-describe)
434         (semantic-decoration-all-include-summary):
435         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init):
436         * cedet/semantic/analyze/complete.el
437         (semantic-analyze-possible-completions):
438         * cedet/semantic/util-modes.el (semantic-highlight-edits-mode)
439         (semantic-show-unmatched-syntax-mode)
440         (semantic-show-parser-state-mode, semantic-stickyfunc-mode)
441         (semantic-highlight-func-mode):
442         * cedet/semantic/util.el (semantic-describe-buffer):
443         * cedet/semantic/symref.el (semantic-symref-find-references-by-name)
444         (semantic-symref-find-tags-by-name)
445         (semantic-symref-find-tags-by-regexp)
446         (semantic-symref-find-tags-by-completion)
447         (semantic-symref-find-file-references-by-name)
448         (semantic-symref-find-text):
449         * cedet/semantic/senator.el (senator-copy-tag, senator-kill-tag)
450         (senator-yank-tag):
451         * cedet/semantic/scope.el (semantic-calculate-scope):
452         * cedet/semantic/mru-bookmark.el (semantic-mru-bookmark-mode):
453         * cedet/semantic/idle.el (semantic-idle-scheduler-mode)
454         (define-semantic-idle-service):
455         * cedet/semantic/complete.el (semantic-complete-analyze-inline)
456         (semantic-complete-analyze-inline-idle):
457         * cedet/semantic/analyze.el (semantic-analyze-current-context):
458         * cedet/mode-local.el (describe-mode-local-bindings)
459         (describe-mode-local-bindings-in-mode):
460         * cedet/ede/make.el (ede-make-check-version):
461         * cedet/ede/locate.el (ede-enable-locate-on-project):
462         * cedet/cedet-idutils.el (cedet-idutils-expand-filename)
463         (cedet-idutils-version-check):
464         * cedet/cedet-global.el (cedet-gnu-global-expand-filename)
465         (cedet-gnu-global-version-check):
466         * cedet/cedet-cscope.el (cedet-cscope-expand-filename)
467         (cedet-cscope-version-check): Use called-interactively-p instead
468         of interactive-p.
470         * cedet/semantic/ia.el (semantic-ia-completion-format-tag-function):
471         Use semantic-format-tag-prototype.
473 2009-11-22  Michael Kifer  <kifer@cs.stonybrook.edu>
475         * emulation/viper-cmd.el: Use viper-last-command-char instead of
476         last-command-char/last-command-event.
477         (viper-prefix-arg-value): Do correct conversion of event-char for
478         XEmacs.
480         * emulation/viper-util.el, emulation/viper.el:
481         Use viper-last-command-char instead of
482         last-command-char/last-command-event.
484         * ediff-init.el, ediff-mult.el, ediff-util.el:
485         Replace last-command-char and last-command-event
486         with (ediff-last-command-char) everywhere.
488         * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is
489         created in fundamental mode.
491         * ediff.el (ediff-version): Revert the change of interactive-p to
492         called-interactively-p.
494 2009-11-22  Tassilo Horn  <tassilo@member.fsf.org>
496         * progmodes/subword.el (subword-mode-map): Fix subword-mode-map
497         generation from word-movement command names.
499 2009-11-21  Chong Yidong  <cyd@stupidchicken.com>
501         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
502         (semantic-complete-jump-local, semantic-complete-jump):
503         Improve prompt string.
505 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
507         * cus-start.el (all): Add native condition for font-use-system-font.
509 2009-11-21  Nathaniel Flath  <flat0103@gmail.com>
511         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
512         Correct the patch from 2009-11-18.  (Bug#3910)
514 2009-11-21  Alan Mackenzie  <acm@muc.de>
516         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
517         Update to deal with modern Java constructs.
519 2009-11-21  Tassilo Horn  <tassilo@member.fsf.org>
521         * progmodes/subword.el: Rename from lisp/subword.el.
523         * subword.el: Rename to progmodes/subword.el.
525         * Makefile.in (ELCFILES): Adapt to subword.el move.
527 2009-11-21  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
528             Stefan Monnier  <monnier@iro.umontreal.ca>
530         * bookmark.el (bookmark-bmenu-bookmark-column): Remove var.
531         (bookmark-bmenu-list): Save name on `bookmark-name-prop' text-prop.
532         (bookmark-bmenu-show-filenames): Use push.
533         (bookmark-bmenu-hide-filenames): Use local var instead of
534         bookmark-bmenu-bookmark-column.  Use pop.  Don't save window-excursion.
535         (bookmark-bmenu-bookmark): Use the new `bookmark-name-prop' text-prop.
536         (bookmark-bmenu-execute-deletions): Don't bother adding/removing the
537         filenames now that the bookmark names are always available.
539 2009-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
541         * bookmark.el (bookmark-search-prompt, bookmark-search-timer): Remove.
542         (bookmark-search-pattern): Move and leave unbound.
543         (bookmark-bmenu-mode-map): Change binding.
544         (bookmark-read-search-input): Simplify.
545         Don't use text-char-description.  Don't error on non-char events.
546         (bookmark-filtered-alist-by-regexp-only): Remove by folding into the
547         only caller (i.e. bookmark-bmenu-filter-alist-by-regexp).
548         (bookmark-bmenu-search): Don't check we're in a bookmark-list buffer.
549         Use a local var for the timer.
550         (bookmark-bmenu-cancel-search): Remove by folding into the only caller
551         (i.e. bookmark-bmenu-search).
553 2009-11-21  Glenn Morris  <rgm@gnu.org>
555         * mail/rmailmm.el (rmail-mime): Decode in fundamental-mode.  (Bug#4993)
557 2009-11-20  Ken Brown  <kbrown@cornell.edu>  (tiny change)
559         * net/browse-url.el (browse-url-default-windows-browser):
560         Use cygstart for cygwin.
562 2009-11-20  Karl Fogel  <karl.fogel@red-bean.com>
564         * bookmark.el Formatting and doc fixes only:
565         (bookmark-search-delay): Shorten doc string to fit in 80 columns.
566         (bookmark-bmenu-search): Wrap to fit within 80 columns.
567           Minor grammar and punctuation fixes in doc string.
568         (bookmark-read-search-input): Adjust to fit within 80 columns.
570 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
572         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
573         (c-backward-into-nomenclature): Adapt to subword renaming.
575         * subword.el (subword-forward, subword-backward, subword-mark)
576         (subword-kill, subword-backward-kill, subword-transpose)
577         (subword-downcase, subword-upcase, subword-capitalize)
578         (subword-forward-internal, subword-backward-internal):
579         Rename from forward-subword, backward-subword, mark-subword,
580         kill-subword, backward-kill-subword, transpose-subwords,
581         downcase-subword, upcase-subword, capitalize-subword,
582         forward-subword-internal, backward-subword-internal.
584 2009-11-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
586         * bookmark.el (bookmark-search-delay, bookmark-search-prompt):
587         New options.
588         (bookmark-search-pattern, bookmark-search-timer, bookmark-quit-flag):
589         New vars.
590         (bookmark-read-search-input, bookmark-filtered-alist-by-regexp-only)
591         (bookmark-bmenu-filter-alist-by-regexp)
592         (bookmark-bmenu-goto-bookmark, bookmark-bmenu-cancel-search): New funs.
593         (bookmark-bmenu-search): New command.
594         (bookmark-bmenu-mode-map): Bind it.
596 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
598         * cedet/semantic/complete.el (semantic-complete-inline-map): Doc fix.
600         * cedet/semantic/idle.el (define-semantic-idle-service)
601         (semantic-idle-summary-mode, semantic-idle-completions): Doc fix.
603 2009-11-20  Tassilo Horn  <tassilo@member.fsf.org>
605         * progmodes/cc-cmds.el: declare-functioned forward-subword and
606         backward-subword to quit the byte-compiler.
608         * makefile.w32-in: Don't refer cc-subword.elc but subword.elc.
610         * Makefile.in: Don't refer cc-subword.elc but subword.elc.
612         * progmodes/cc-cmds.el (c-update-modeline)
613         (c-forward-into-nomenclature, c-backward-into-nomenclature):
614         Refer to subword.el functions instead of cc-subword.el.
616         * progmodes/cc-mode.el (subword-mode, c-mode-base-map): Refer to
617         subword.el functions instead of cc-subword.el.
619         * progmodes/cc-subword.el: Rename to subword.el.
620         * subword.el: Rename from progmodes/cc-subword.el.
621         (subword-mode-map): Rename from c-subword-mode-map.
622         (subword-mode): Rename from c-subword-mode.
623         (global-subword-mode): New global minor mode.
624         (forward-subword): Rename from c-forward-subword.
625         (backward-subword): Rename from c-backward-subword.
626         (mark-subword): Rename from c-mark-subword.
627         (kill-subword): Rename from c-kill-subword.
628         (backward-kill-subword): Rename from c-backward-kill-subword.
629         (transpose-subwords): Rename from c-tranpose-subword.
630         (downcase-subword): Rename from c-downcase-subword.
631         (capitalize-subword): Rename from c-capitalize-subword.
632         (forward-subword-internal): Rename from c-forward-subword-internal.
633         (backward-subword-internal): Rename from c-backward-subword-internal.
635 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
637         * vc.el (vc-deduce-fileset): Allow non-state changing operations
638         from a dired buffer.
639         (vc-dired-deduce-fileset): New function.
640         (vc-root-diff, vc-print-root-log): Use it.
642         * vc-annotate.el (vc-annotate-show-log-revision-at-line): Pass a
643         nil LIMIT argument to vc-print-log-internal.
645 2009-11-20  Glenn Morris  <rgm@gnu.org>
647         * Makefile.in (ELCFILES): Regenerate.
649 2009-11-20  Chong Yidong  <cyd@stupidchicken.com>
651         * cedet/cedet.el (cedet-menu-map): Re-order menu items.
653         * cedet/semantic.el: Enable idle-mode menu items only if
654         global-semantic-idle-scheduler-mode is enabled.
655         (semantic-default-submodes): Doc fix.
657         * cedet/semantic/idle.el (global-semantic-idle-scheduler-mode):
658         When turning off, disable other idle modes.
660 2009-11-20  Jay Belanger  <jay.p.belanger@gmail.com>
662         * calc/calc.el (calc-set-mode-line):
663         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
664         (math-format-number): Rename `math-format-complement-signed' to
665         `math-format-twos-complement'.
667         * calc/calc-bin.el (math-format-twos-complement): Rename from
668         math-format-complement-signed.
669         (calc-radix): Rename `calc-complement-signed-mode' to
670         `calc-twos-complement-mode'.
671         (calc-octal-radix, calc-hex-radix): Add an argument for
672         two's complement.
674         * calc/calc-embed.el (calc-embedded-mode-vars):
675         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
677         * calc/calc-ext.el (calc-init-extensions):
678         Rename `calc-complement-signed-mode' to `calc-twos-complement-mode'.
679         (math-format-number-fancy): Let `calc-twos-complement-mode' be nil.
681         * calc/calc-units.el (math-build-units-table-buffer):
682         Let `calc-twos-complement-mode' be nil.
684         * calc/calc-menu.el (calc-modes-menu): Clean up two's complement
685         entries.
687         * calc/calc-vec.el (calcFunc-vunpack):
688         * calc/calc-aent.el (calc-do-calc-eval):
689         * calc/calc-forms.el (math-format-date):
690         * calc/calc-graph.el (calc-graph-plot):
691         * calc/calc-math.el (math-use-emacs-fn):
692         * calc/calccomp.el (math-compose-expr):
693         Let `calc-twos-complement-mode' be nil.
695 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
697         * abbrev.el (abbrev-with-wrapper-hook): (re)move...
698         * simple.el (with-wrapper-hook): ...to here.  Add argument `args'.
699         * minibuffer.el (completion-in-region-functions): New hook.
700         (completion-in-region): New function.
701         * emacs-lisp/lisp.el (lisp-complete-symbol):
702         * pcomplete.el (pcomplete-std-complete): Use it.
704 2009-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
706         * textmodes/tex-mode.el (latex-complete-bibtex-cache)
707         (latex-complete-alist): New vars.
708         (latex-string-prefix-p, latex-complete-bibtex-keys)
709         (latex-complete-envnames, latex-complete-refkeys)
710         (latex-complete-data): New functions.
711         (latex-complete, latex-indent-or-complete): New commands.
713         * window.el (display-buffer-mark-dedicated): New var.
714         (display-buffer): Obey it.
715         * minibuffer.el (minibuffer-completion-help): Use it.
717         * progmodes/sym-comp.el (symbol-complete): Use completion-in-region.
719         * filecache.el (file-cache-add-file): Use push and cons.
720         (file-cache-delete-file-regexp): Use push.
721         (file-cache-complete): Use completion-in-region.
723         * simple.el (with-wrapper-hook): Fix thinko.
725         * hfy-cmap.el (hfy-rgb-file): Use locate-file.
726         (htmlfontify-load-rgb-file): Remove unnused var `ff'.
727         Use with-current-buffer and string-to-number.
728         (hfy-fallback-colour-values): Use assoc-string.
729         * htmlfontify.el (hfy-face-to-css): Remove unused var `style'.
730         (hfy-face-at): Remove unused var `found-face'.
731         (hfy-compile-stylesheet): Remove unused var `css'.
732         (hfy-fontify-buffer): Remove unused vars `in-style', `invis-button',
733         and `orig-buffer'.
734         (hfy-buffer, hfy-copy-and-fontify-file, hfy-parse-tags-buffer):
735         Use with-current-buffer.
736         (hfy-text-p): Use expand-file-name and fewer setq.
738 2009-11-19  Vivek Dasmohapatra  <vivek@etla.org>
740         * htmlfontify.el, hfy-cmap.el: New files.
742 2009-11-19  Juri Linkov  <juri@jurta.org>
744         * minibuffer.el (completions-format): New defcustom.
745         (completion--insert-strings): Implement vertical format.
747         * simple.el (switch-to-completions): Move point to the first
748         completion when point was at the beginning of the buffer.
750 2009-11-19  Juri Linkov  <juri@jurta.org>
752         * find-dired.el (find-name-arg): Remove autoload.  (Bug#4387)
754         * progmodes/grep.el (rgrep): Require `find-dired' for `find-name-arg'.
756 2009-11-19  Chong Yidong  <cyd@stupidchicken.com>
758         * mail/sendmail.el (mail-yank-prefix): Change default to "> ".
759         (mail-signature): Change default to t.
760         (mail-from-style): Deprecate `system-default' value.
761         (mail-insert-from-field): For default value of mail-from-style,
762         default to `angles' unless `angles' needs quoting and `parens'
763         does not.
764         (mail-citation-prefix-regexp): Use citation regexp from
765         message-mode.
767 2009-11-19  Michael Albinus  <michael.albinus@gmx.de>
769         * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band):
770         Set variables for computing the prompt for reading password.
772 2009-11-19  Glenn Morris  <rgm@gnu.org>
774         * dired-aux.el (dired-compress-file-suffixes): Add ".xz".  (Bug#4953)
776         * textmodes/flyspell.el (sgml-lexical-context): Declare.
778         * net/newst-treeview.el (newsticker-treeview-treewindow-width)
779         (newsticker-treeview-listwindow-height): Fix custom type.
781 2009-11-19  Kenichi Handa  <handa@m17n.org>
783         * descr-text.el (describe-char-padded-string): Compose with TAB
784         only if there's a font for CH.
785         (describe-char): Fix the condition for detecting a trivial composition.
787 2009-11-18  Nathaniel Flath  <flat0103@gmail.com>
789         * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A new,
790         more accurate version of the regexp.  (Bug#3910)
792 2009-11-18  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
794         * vc-hg.el (vc-hg-diff): Fix last patch: do not change directory.
796 2009-11-18  Juanma Barranquero  <lekktu@gmail.com>
798         * font-setting.el (font-use-system-font): Declare for byte-compiler.
799         (font-setting-change-default-font): Fix typo in docstring.
801 2009-11-18  Alan Mackenzie  <acm@muc.de>
803         * progmodes/cc-defs.el (c-version): Bump to 5.31.8.
805 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
807         * font-setting.el (font-use-system-font): Move ...
809         * cus-start.el (all): ... to here.
811 2009-11-17  Michael Albinus  <michael.albinus@gmx.de>
813         * net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
814         Don't set `ad-return-value' if `ad-do-it' doesn't.
816         * net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
817         modification time.
819 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
821         * menu-bar.el: Put "Use system font" in Option-menu.
822         (menu-bar-options-save): Add font-use-system-font.
824         * loadup.el: If feature system-font-setting or font-render-setting is
825         there, load font-setting.
827         * Makefile.in (ELCFILES): Add font-settings.el.
828         * font-setting.el: New file.
830 2009-11-17  Glenn Morris  <rgm@gnu.org>
832         * vc-svn.el (vc-svn-print-log): Fix typo in previous.
834         * net/newst-treeview.el (newsticker--treeview-list-update-faces):
835         Preserve point in the list buffer.  (Bug#4939)
836         Use point-at-eol.
837         (newsticker--treeview-list-update-highlight)
838         (newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.
840 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
842         * calc/calc-bin.el (math-symclip, calcFunc-symclip, calc-symclip):
843         Remove.
845         * calc/calc-ext.el (calc-init-extensions): Remove references to
846         symclip.
848         * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'.
850         * calc/calc-map.el (calc-get-operator, calc-b-oper-keys):
851         * calc/calc-help.el (calc-b-prefix-help):  Remove references to
852         `calc-symclip'.
854 2009-11-16  Kevin Ryde  <user42@zip.com.au>
856         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
857         Use `sgml-lexical-context' instead of own parse for tag (Bug#4511).
859         * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
860         (lm-keywords-list): Allow comma-only separator like "foo,bar".
861         Ignore trailing spaces by omit-nulls to split-string (fixing
862         regression from Emacs 21 due to the incompatible split-string
863         change).  (Bug #4928.)
865 2009-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
867         * vc.el (vc-log-show-limit): Default to 2000.
868         (vc-print-log-internal): Insert buttons to request more entries
869         when limiting the output.
871         * vc-sccs.el (vc-sccs-print-log):
872         * vc-rcs.el (vc-rcs-print-log):
873         * vc-cvs.el (vc-cvs-print-log):
874         * vc-git.el (vc-git-print-log): Return 'limit-unsupported when
875         LIMIT is non-nil.
877 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
879         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
880         error when `tramp-gvfs-dbus-event-vector' is set.
881         (tramp-gvfs-maybe-open-connection): Loop over `read-event'.
883 2009-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
885         * vc-rcs.el (vc-rcs-consult-headers): Add missing save-excursion.
887 2009-11-16  Michael Albinus  <michael.albinus@gmx.de>
889         * net/dbus.el (dbus-unregister-service): New defun.
890         (dbus-register-property): Register the handlers of
891         "org.freedesktop.DBus.Properties" for SERVICE.
892         (dbus-property-handler): Fix docstring.
894 2009-11-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
896         * emacs-lisp/bytecomp.el (byte-compile-output-file-form):
897         Quote doc string reference in defvaralias as it is not in special form.
898         (byte-compile-output-docform): Doc fix.
900 2009-11-16  Jay Belanger  <jay.p.belanger@gmail.com>
902         * calc/calc.el (math-2-word-size, math-half-2-word-size)
903         (calc-complement-signed-mode): New variables.
904         (calc-set-mode-line): Add indicator for twos-complements.
905         (math-format-number): Format twos-complement notation.
907         * calc/calc-bin.el (calc-word-size): Reset the variables
908         `math-2-word-size' and `math-half-2-word-size'.
909         (math-format-complement-signed, math-symclip, calcFunc-symclip)
910         (calc-symclip): New functions.
912         * calc/calc-aent.el (math-read-token): Read complement signed numbers.
914         * calc/calc-embed.el (calc-embedded-mode-vars):
915         Add `calc-complement-signed-mode' to the list of modes.
917         * calc/calc-map.el (calc-get-operator): Add `calc-symclip'.
918         (calc-b-oper-keys): Add `calc-symclip' to list.
920         * calc/calc-ext.el (math-read-number-fancy): Read complement
921         signed numbers.
922         (calc-init-extensions): Add binding for `calc-symclip'.
923         Add autoload for `calcFunc-symclip' and `calc-symclip'.
925         * calc/calc-menu.el (calc-arithmetic-menu): Add item for
926         `calc-symclip'.
927         (calc-modes-menu): Add item for twos complement mode.
929         * calc/calc-help.el (calc-b-prefix-help):  Add help for `calc-symclip'.
931 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
933         * register.el (jump-to-register, insert-register): Handle Semantic
934         tags.  From commented-out advice in semantic/senator.el.
936 2009-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
938         * vc.el (vc-log-show-limit): New variable.
939         (vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
940         when using a prefix argument.
941         (vc-print-log-internal): Add new argument LIMIT.
943         * vc-svn.el (vc-svn-print-log):
944         * vc-mtn.el (vc-mtn-print-log):
945         * vc-hg.el (vc-hg-print-log):
946         * vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
947         pass it to the log command when set.  Make the BUFFER argument
948         non-optional.
950         * vc-sccs.el (vc-sccs-print-log):
951         * vc-rcs.el (vc-rcs-print-log):
952         * vc-git.el (vc-git-print-log):
953         * vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
954         ignore it.  Make the BUFFER argument non-optional
956         * bindings.el (mode-line-buffer-identification): Do not purecopy.
958 2009-11-15  Chong Yidong  <cyd@stupidchicken.com>
960         * dired.el (dired-mode-map): Move encryption items to "Operate"
961         menu (Bug#4703).
963         * strokes.el (strokes-update-window-configuration): Make strokes
964         buffer current before erasing (Bug#4906).
966         * cedet/semantic/idle.el (semantic-idle-summary-mode)
967         (semantic-idle-summary-mode): Define using define-minor-mode
968         instead of define-semantic-idle-service.
969         (semantic-idle-summary-mode): New function.
970         (semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
971         that mouse motion does not reset the echo area.
973 2009-11-15  Juri Linkov  <juri@jurta.org>
975         * simple.el (set-mark-default-inactive): Add :type, :group
976         and :version.  (Bug#4876)
978 2009-11-15  Michael Albinus  <michael.albinus@gmx.de>
980         * arc-mode.el (archive-maybe-copy): Move creation of directory ...
981         (archive-unique-fname): ... here.  (Bug#4929)
983 2009-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
985         * help-mode.el (help-make-xrefs): Undo the last revert, and replace it
986         with a real fix.
988         * novice.el (disabled-command-function): Add useful args.
989         Setup the help buffer so that [back] works.
990         Remove redundant call to help-mode.
991         (disabled-command-function): Use `case'.
992         (en/disable-command): New function extracted from enable-command.
993         (enable-command, disable-command): Use it.
995 2009-11-14  Glenn Morris  <rgm@gnu.org>
997         * menu-bar.el (menu-bar-tools-menu): Read and send mail entries are not
998         constants.  (Bug#4913)
1000         * emacs-lisp/elint.el (elint-standard-variables): Doc fix.
1002 2009-11-14  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
1004         * emacs-lisp/elint.el (elint-standard-variables): Add some variables
1005         defined in C that have no doc-strings.  (Bug#1063)
1007 2009-11-14  Francis Wright  <F.J.Wright@qmul.ac.uk>
1009         * cus-edit.el (data, files):
1010         * ps-print.el (postscript): Doc fixes for custom groups.  (Bug#3327)
1012 2009-11-14  Chong Yidong  <cyd@stupidchicken.com>
1014         * simple.el (shell-command): Doc fix (Bug#4891).
1016         * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
1018 2009-11-14  Glenn Morris  <rgm@gnu.org>
1020         * emulation/viper.el (viper-set-hooks): Remove duplicate advice
1021         statements for vc-diff, emerge-quit, and rmail-cease-edit.
1022         If they are already loaded, eval-after-load will do the right thing.
1024         * speedbar.el (top-level): Remove unnecessary load of ange-ftp when
1025         compiling.
1027         * emacs-lisp/bytecomp.el (byte-compile-single-version): Remove, unused.
1029         * simple.el (x-selection-owner-p): Declare.
1030         (read-mail-command): Use custom radio type rather than choice.
1031         (completion-no-auto-exit): Doc fix.
1033         * custom.el (defgroup):
1034         * epg-config.el (epg): Doc fixes.
1036 2009-11-14  Dan Nicolaescu  <dann@ics.uci.edu>
1038         * bindings.el (mode-line-buffer-identification): Purecopy only the string.
1039         * international/ccl.el (define-ccl-program): Do not purecopy the
1040         docstring, defconst does it anyway.
1042 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1044         * add-log.el (add-change-log-entry): Avoid displaying the changelog
1045         a second time.
1047         * x-dnd.el (x-dnd-maybe-call-test-function):
1048         * window.el (split-window-vertically):
1049         * whitespace.el (whitespace-help-on):
1050         * vc-rcs.el (vc-rcs-consult-headers):
1051         * userlock.el (ask-user-about-lock-help)
1052         (ask-user-about-supersession-help):
1053         * type-break.el (type-break-force-mode-line-update):
1054         * time-stamp.el (time-stamp-conv-warn):
1055         * terminal.el (te-set-output-log, te-more-break, te-filter)
1056         (te-sentinel,terminal-emulator):
1057         * term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
1058         (term-write-input-ring, term-check-source, term-start-output-log):
1059         (term-display-buffer-line, term-dynamic-list-completions):
1060         (term-ansi-make-term, serial-term):
1061         * subr.el (selective-display):
1062         * strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
1063         (strokes-encode-buffer, strokes-xpm-for-compressed-string):
1064         * speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
1065         (speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
1066         (speedbar-remove-localized-speedbar-support)
1067         (speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
1068         (speedbar-update-special-contents, speedbar-buffer-buttons-engine)
1069         (speedbar-buffers-line-directory):
1070         * simple.el (shell-command-on-region, append-to-buffer)
1071         (prepend-to-buffer):
1072         * shadowfile.el (shadow-save-todo-file):
1073         * scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
1074         (scroll-bar-maybe-set-window-start):
1075         * sb-image.el (speedbar-image-dump):
1076         * saveplace.el (save-place-alist-to-file, save-places-to-alist)
1077         (load-save-place-alist-from-file):
1078         * ps-samp.el (ps-print-message-from-summary):
1079         * ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
1080         (ps-background-image, ps-begin-job, ps-do-despool):
1081         * ps-bdf.el (bdf-find-file, bdf-read-font-info):
1082         * printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
1083         (pr-ps-message-from-summary, pr-lpr-message-from-summary):
1084         (pr-call-process, pr-file-list, pr-interface-save):
1085         * novice.el (disabled-command-function)
1086         (enable-command, disable-command):
1087         * mouse.el (mouse-buffer-menu-alist):
1088         * mouse-copy.el (mouse-kill-preserving-secondary):
1089         * macros.el (kbd-macro-query):
1090         * ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
1091         * informat.el (batch-info-validate):
1092         * ido.el (ido-copy-current-word, ido-initiate-auto-merge):
1093         * hippie-exp.el (try-expand-dabbrev-visible):
1094         * help-mode.el (help-make-xrefs):
1095         * help-fns.el (describe-variable):
1096         * generic-x.el (bat-generic-mode-run-as-comint):
1097         * finder.el (finder-mouse-select):
1098         * find-dired.el (find-dired-sentinel):
1099         * filesets.el (filesets-file-close):
1100         * files.el (list-directory):
1101         * faces.el (list-faces-display, describe-face):
1102         * facemenu.el (list-colors-display):
1103         * ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
1104         * epg.el (epg--process-filter, epg-cancel):
1105         * epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
1106         (epa--read-signature-type):
1107         * emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
1108         (emerge-file-names):
1109         * ehelp.el (electric-helpify):
1110         * ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
1111         * ediff-vers.el (rcs-ediff-view-revision):
1112         * ediff-util.el (ediff-setup):
1113         * ediff-mult.el (ediff-append-custom-diff):
1114         * ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
1115         (ediff-wordify):
1116         * echistory.el (Electric-command-history-redo-expression):
1117         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
1118         * disp-table.el (describe-display-table):
1119         * dired.el (dired-find-buffer-nocreate):
1120         * dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
1121         * dabbrev.el (dabbrev--same-major-mode-p):
1122         * chistory.el (list-command-history):
1123         * apropos.el (apropos-documentation):
1124         * allout.el (allout-obtain-passphrase):
1125         (allout-copy-exposed-to-buffer):
1126         (allout-verify-passphrase): Use with-current-buffer.
1128 2009-11-13  Glenn Morris  <rgm@gnu.org>
1130         * Makefile.in (ELCFILES): Regenerate.
1132 2009-11-13  Michael Albinus  <michael.albinus@gmx.de>
1134         * net/dbus.el (dbus-registered-objects-table): Rename from
1135         `dbus-registered-functions-table', because it contains also properties.
1136         (dbus-unregister-object): Unregister also properties.
1137         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
1138         Use a timeout of 500 msec, in order to not block.
1139         (dbus-register-property, dbus-property-handler): New defuns.
1141 2009-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1143         * simple.el (minibuffer-default-add-completions): Drop deprecated
1144         4th arg.
1146 2009-11-13  Tomas Abrahamsson  <tab@lysator.liu.se>
1148         * textmodes/artist.el (artist-mouse-choose-operation):
1149         Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup
1150         menus. Bug noticed by Eli Zaretskii <eliz@gnu.org>.
1151         (artist-compute-up-event-key): New function.
1152         (artist-mouse-choose-operation, artist-down-mouse-1): Call it.
1154 2009-11-13  Kenichi Handa  <handa@m17n.org>
1156         * language/japan-util.el: Make sure that the value of jisx0208
1157         property is jisx0208 character.
1159 2009-11-13  Dan Nicolaescu  <dann@ics.uci.edu>
1161         * international/mule.el (auto-coding-regexp-alist): Only purecopy
1162         car or each item, not the whole list.
1164 2009-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1166         * minibuffer.el (minibuffer-completion-help):
1167         Use minibuffer-hide-completions.
1169 2009-11-12  Per Starbäck  <per@starback.se>  (tiny change)
1171         * dired.el (dired-save-positions, dired-restore-positions): New funs.
1172         (dired-revert): Use them (bug#4880).
1174 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
1176         * tooltip.el (tooltip-frame-parameters): Undo previous change.
1178 2009-11-12  Juri Linkov  <juri@jurta.org>
1180         * ffap.el (ffap-alternate-file-other-window, ffap-literally):
1181         New functions.
1182         (find-file-literally-at-point): Alias of `ffap-literally'.
1184 2009-11-12  Dan Nicolaescu  <dann@ics.uci.edu>
1186         * textmodes/ispell.el (ispell-skip-region-alist):
1187         * textmodes/css-mode.el (auto-mode-alist):
1188         * progmodes/compile.el (auto-mode-alist):
1189         * international/mule.el (ctext-non-standard-encodings-alist)
1190         (ctext-non-standard-encodings-regexp):
1191         * simple.el (shell-command-switch, text-read-only):
1192         * replace.el (occur-mode-map):
1193         * paths.el (rmail-file-name):
1194         * jka-cmpr-hook.el (jka-compr-build-file-regexp):
1195         * find-file.el (ff-special-constructs):
1196         * files.el (file-name-handler-alist):
1197         * composite.el: Purecopy strings.
1199         * emacs-lisp/cl-macs.el (define-compiler-macro): Purecopy the file name.
1201 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
1203         * widget.el (define-widget): Purecopy the docstring.
1204         * international/mule-cmds.el (charset): Do not purecopy the
1205         docstring here, define-widget does it.
1207         * textmodes/texinfo.el (texinfo-open-quote, texinfo-close-quote):
1208         * textmodes/bibtex-style.el (auto-mode-alist):
1209         * progmodes/inf-lisp.el (inferior-lisp-prompt):
1210         * progmodes/compile.el (compile-command):
1211         * language/korea-util.el (default-korean-keyboard):
1212         * international/mule-conf.el (file-coding-system-alist):
1213         * emacs-lisp/eldoc.el (eldoc-minor-mode-string):
1214         * tooltip.el (tooltip-frame-parameters):
1215         * newcomment.el (comment-end, comment-padding):
1216         * dired.el (dired-trivial-filenames):
1217         * comint.el (comint-file-name-prefix): Purecopy initial values.
1219 2009-11-11  Michael Albinus  <michael.albinus@gmx.de>
1221         * net/tramp.el (tramp-advice-minibuffer-electric-separator)
1222         (tramp-advice-minibuffer-electric-tilde): Unload advices via
1223         `tramp-unload'.
1224         (tramp-advice-make-auto-save-file-name)
1225         (tramp-advice-file-expand-wildcards): Apply also `ad-activate'
1226         after removing the advice.
1228 2009-11-11  Dan Nicolaescu  <dann@ics.uci.edu>
1230         * progmodes/grep.el (grep-regexp-alist):
1231         * international/mule-cmds.el (iso-2022-control-alist):
1232         * emacs-lisp/timer.el (timer-duration-words):
1233         * subr.el (version-separator, version-regexp-alist):
1234         * minibuffer.el (completion-styles-alist):
1235         * faces.el (face-attribute-name-alist, list-faces-sample-text):
1236         Change defvars to defconsts.
1238         * Makefile.in (ELCFILES): Add international/mule-conf.elc.
1239         * loadup.el ("international/mule-conf"): Load the byte compiled version.
1240         * international/mule-conf.el: Allow to be byte compiled.
1242         * international/mule.el (define-charset): Purecopy props.
1243         (load-with-code-conversion): Purecopy doc string and file name.
1244         (put-charset-property): Purecopy strings.
1245         (auto-coding-alist, auto-coding-regexp-alist): Purecopy initial value.
1247         * international/mule-cmds.el (register-input-method): Purecopy arguments.
1248         (define-char-code-property): Correctly purecopy the table.
1250         * international/ccl.el (define-ccl-program): Purecopy the docstring.
1252         * emacs-lisp/easy-mmode.el (define-minor-mode): Purecopy :lighter.
1254         * subr.el (add-hook): Purecopy strings.
1255         (eval-after-load): Purecopy load-history-regexp and the form.
1257         * custom.el (custom-declare-group): Purecopy load-file-name.
1259         * subr.el (menu-bar-separator): New defconst.
1260         * net/eudc.el (eudc-tools-menu):
1261         * international/mule-cmds.el (set-coding-system-map)
1262         (mule-menu-keymap):
1263         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
1264         * vc-hooks.el (vc-menu-map):
1265         * replace.el (occur-mode-map):
1266         * menu-bar.el (menu-bar-file-menu, menu-bar-search-menu)
1267         (menu-bar-edit-menu, menu-bar-goto-menu)
1268         (menu-bar-custom-menu, menu-bar-showhide-menu)
1269         (menu-bar-options-menu, menu-bar-tools-menu)
1270         (menu-bar-encryption-decryption-menu, menu-bar-describe-menu)
1271         (menu-bar-search-documentation-menu, menu-bar-manuals-menu)
1272         (menu-bar-help-menu):
1273         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu):
1274         * buff-menu.el (Buffer-menu-mode-map): Use menu-bar-separator.
1276         * term/x-win.el (x-gtk-stock-map):
1277         * progmodes/vera-mode.el (auto-mode-alist):
1278         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
1279         (inferior-lisp-program, inferior-lisp-load-command):
1280         * progmodes/hideshow.el (hs-special-modes-alist):
1281         * progmodes/gud.el (same-window-regexps):
1282         * progmodes/grep.el (grep-program, find-program, xargs-program):
1283         * net/telnet.el (same-window-regexps):
1284         * net/rlogin.el (same-window-regexps):
1285         * language/ethiopic.el (font-ccl-encoder-alist):
1286         * vc-sccs.el (vc-sccs-master-templates):
1287         * vc-rcs.el (vc-rcs-master-templates):
1288         * subr.el (cl-assertion-failed):
1289         * simple.el (next-error-overlay-arrow-position):
1290         * lpr.el (lpr-command):
1291         * locate.el (locate-ls-subdir-switches):
1292         * info.el (same-window-regexps, info)
1293         (Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
1294         * image-mode.el (image-mode, auto-mode-alist):
1295         * hippie-exp.el (hippie-expand-ignore-buffers):
1296         * format.el (format-alist):
1297         * find-dired.el (find-ls-subdir-switches, find-grep-options)
1298         (find-name-arg):
1299         * facemenu.el (facemenu-keybindings):
1300         * dired.el (dired-listing-switches, dired-chown-program):
1301         * diff.el (diff-switches, diff-command):
1302         * cus-edit.el (same-window-regexps):
1303         * bindings.el (mode-line-mule-info)
1304         (mode-line-buffer-identification): Purecopy strings.
1306 2009-11-11  Juri Linkov  <juri@jurta.org>
1308         * simple.el (dired-get-filename)<declare-function>:
1309         Tell the byte-compiler about dired-get-filename.
1310         (shell-command): In Dired mode, get filename from the current line
1311         as the default value.
1313 2009-11-10  Glenn Morris  <rgm@gnu.org>
1315         * dired.el, hi-lock.el, calendar/cal-menu.el, calendar/calendar.el:
1316         * calendar/holidays.el, progmodes/cperl-mode.el:
1317         Update x-popup-menu declarations.
1319         * emacs-lisp/shadow.el (find-emacs-lisp-shadows)
1320         (list-load-path-shadows): Use dolist.
1321         (list-load-path-shadows): Use with-current-buffer.
1323 2009-11-10  Juri Linkov  <juri@jurta.org>
1325         * minibuffer.el (read-file-name): Support a list of default values
1326         in `default-filename'.  Use the first file name where only one
1327         element is required.  Doc fix.
1329 2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
1331         * net/dbus.el (dbus-unregister-object): Release service, if no
1332         other method is registered for it.
1334 2009-11-08  Markus Rost  <rost@math.uni-bielefeld.de>
1336         * bookmark.el (bookmark-completing-read): Sort bookmark names if
1337         bookmark-sort-flag is non-nil (Bug#4653).
1339 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
1341         * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
1342         the progress reporter entirely.
1344         * emulation/cua-base.el: Add CUA property to some CC mode commands
1345         (Bug#4100).
1347 2009-11-08  Kevin Ryde  <user42@zip.com.au>
1349         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
1350         at end of sentence (Bug#4818).
1352 2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
1354         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1355         Handle "see declaration of" MSFT statements (Bug#4100).
1357 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
1359         * net/tramp.el (tramp-advice-make-auto-save-file-name)
1360         (tramp-advice-file-expand-wildcards): Unload via
1361         `ad-remove-advice'.
1363         * net/trampver.el: Update release number.
1365 2009-11-08  Kevin Ryde  <user42@zip.com.au>
1367         * net/tramp.el (tramp-advice-file-expand-wildcards): Don't rely on
1368         `ad-do-it'.
1370 2009-11-08  Andr  <m00naticus@gmail.com>  (tiny change)
1372         * net/tramp.el (tramp-handle-write-region): Copy but rename temp file,
1373         in order to keep context in SELinux.
1375 2009-11-08  Chong Yidong  <cyd@stupidchicken.com>
1377         * dired-aux.el (dired-query): Place cursor in echo area and allow
1378         C-g.
1380         * dired.el (dired-mode-map): Disable dired-maybe-insert-subdir
1381         menu item if not on a directory (Bug#4701).
1383 2009-11-07  Michael Albinus  <michael.albinus@gmx.de>
1385         Sync with Tramp 2.1.17.
1387         * net/tramp.el (tramp-handle-copy-directory): Don't use
1388         `file-remote-p' (due to compatibility).
1390         * net/tramp-compat.el (tramp-compat-copy-directory)
1391         (tramp-compat-delete-directory): New defuns.
1393         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
1394         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory): Use
1395         `tramp-compat-delete-directory'.
1397         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
1398         (tramp-smb-handle-delete-directory ): Use
1399         `tramp-compat-copy-directory' and `tramp-compat-delete-directory'.
1401         * net/trampver.el: Update release number.
1403 2009-11-07  Chong Yidong  <cyd@stupidchicken.com>
1405         * tar-mode.el (tar-copy): Call write-region on the right buffer
1406         (Bug#4857).
1408         * mail/rmailsum.el (rmail-summary-rmail-update): Call linum-update
1409         by hand, if necessary (Bug#4878).
1411 2009-11-06  Chong Yidong  <cyd@stupidchicken.com>
1413         * buff-menu.el (Buffer-menu-buffer+size): Use display property to
1414         align size column (Bug#4839).
1416         * emacs-lisp/autoload.el (autoload-rubric): Always issue a provide
1417         statement.
1419 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1421         * progmodes/ld-script.el (auto-mode-alist):
1422         * vc-hooks.el (vc-directory-exclusion-list): Purecopy strings.
1424         * cus-face.el (custom-declare-face): Purecopy face spec.
1426 2009-11-06  Kenichi Handa  <handa@m17n.org>
1428         * international/uni-bidi.el: Re-generated.
1429         * international/uni-category.el: Re-generated.
1430         * international/uni-combining.el: Re-generated.
1431         * international/uni-mirrored.el: Re-generated.
1433 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1435         * textmodes/tex-mode.el (tex-alt-dvi-print-command)
1436         (tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
1437         (tex-start-options, slitex-run-command, latex-run-command)
1438         (tex-run-command, tex-directory):
1439         * textmodes/ispell.el (ispell-html-skip-alists)
1440         (ispell-tex-skip-alists, ispell-tex-skip-alists):
1441         * textmodes/fill.el (adaptive-fill-first-line-regexp):
1442         (adaptive-fill-regexp):
1443         * textmodes/dns-mode.el (auto-mode-alist):
1444         * progmodes/python.el (interpreter-mode-alist):
1445         * progmodes/etags.el (tags-compression-info-list):
1446         * progmodes/etags.el (tags-file-name):
1447         * net/browse-url.el (browse-url-galeon-program)
1448         (browse-url-firefox-program):
1449         * mail/sendmail.el (mail-signature-file)
1450         (mail-citation-prefix-regexp):
1451         * international/mule-conf.el (eight-bit):
1452         * international/latexenc.el (latex-inputenc-coding-alist):
1453         * international/fontset.el (x-pixel-size-width-font-regexp):
1454         * emacs-lisp/warnings.el (warning-type-format):
1455         * emacs-lisp/trace.el (trace-buffer):
1456         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
1457         (emacs-lisp-mode-map):
1458         * calendar/holidays.el (holiday-solar-holidays)
1459         (holiday-bahai-holidays, holiday-islamic-holidays)
1460         (holiday-christian-holidays, holiday-hebrew-holidays)
1461         (hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
1462         (hebrew-holidays-1, holiday-oriental-holidays)
1463         (holiday-general-holidays):
1464         * x-dnd.el (x-dnd-known-types):
1465         * tool-bar.el (tool-bar):
1466         * startup.el (site-run-file):
1467         * shell.el (shell-dumb-shell-regexp):
1468         * rfn-eshadow.el (file-name-shadow-tty-properties)
1469         (file-name-shadow-properties):
1470         * paths.el (remote-shell-program, news-directory):
1471         * mouse.el ([C-down-mouse-3]):
1472         * menu-bar.el (menu-bar-tools-menu):
1473         * jka-cmpr-hook.el (jka-compr-load-suffixes)
1474         (jka-compr-mode-alist-additions, jka-compr-compression-info-list)
1475         (jka-compr-compression-info-list):
1476         * isearch.el (search-whitespace-regexp):
1477         * image-file.el (image-file-name-extensions):
1478         * find-dired.el (find-ls-option):
1479         * files.el (directory-listing-before-filename-regexp)
1480         (directory-free-space-args, insert-directory-program)
1481         (list-directory-brief-switches, magic-fallback-mode-alist)
1482         (magic-fallback-mode-alist, auto-mode-interpreter-regexp)
1483         (automount-dir-prefix):
1484         * faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
1485         (x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
1486         (face-font-registry-alternatives, face-font-registry-alternatives)
1487         (face-font-family-alternatives):
1488         * facemenu.el (facemenu-add-new-face, facemenu-background-menu)
1489         (facemenu-foreground-menu, facemenu-face-menu):
1490         * epa-hook.el (epa-file-name-regexp):
1491         * dnd.el (dnd-protocol-alist):
1492         * textmodes/rst.el (auto-mode-alist):
1493         * button.el (default-button): Purecopy strings.
1495 2009-11-06  Glenn Morris  <rgm@gnu.org>
1497         * Makefile.in (ELCFILES): Update.
1499 2009-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1501         * emacs-lisp/lucid.el: Move to obsolete/lucid.el.
1502         * emacs-lisp/levents.el: Move to obsolete/levents.el.
1504         * nxml/xsd-regexp.el (xsdre-gen-categories):
1505         * nxml/xmltok.el (xmltok-parse-entity):
1506         * nxml/rng-parse.el (rng-parse-validate-file):
1507         * nxml/rng-maint.el (rng-format-manual)
1508         (rng-manual-output-force-new-line):
1509         * nxml/rng-loc.el (rng-save-schema-location-1):
1510         * nxml/rng-cmpct.el (rng-c-parse-file):
1511         * nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
1512         * nxml/nxml-parse.el (nxml-parse-file): Use with-current-buffer.
1514 2009-11-05  Wilson Snyder  <wsnyder@wsnyder.org>
1516         * verilog-mode.el (verilog-getopt-file, verilog-set-define):
1517         Remove extra save-excursions and make-variable-buffer-local's.
1518         Suggested by Stefan Monnier.
1520         (verilog-getopt-file, verilog-module-inside-filename-p)
1521         (verilog-set-define): Merge GNU 1.35 and repair changes from
1522         switching to using with-current-buffer.
1524         (verilog-read-always-signals-recurse): Fix "a == 2'b00 ? b : c"
1525         being treated as a number and confusing AUTORESET.
1526         Reported by Dan Dever.
1528         (verilog-auto-ignore-concat, verilog-read-sub-decls-expr):
1529         Add verilog-auto-ignore-concat to fix backward compatibility with
1530         older verilog-modes.  Reported by Dan Katz.
1532         (verilog-read-auto-template): Fix AUTO_TEMPLATEs with regexps
1533         containing closing anchors "...$".
1535         (verilog-read-decls): Fix AUTOREG not detecting "assign {a,b}".
1536         Reported by Wade Smith.
1538         (verilog-batch-execute-func) Comment on function usage.
1540 2009-11-05  Michael McNamara  <mac@mail.brushroad.com>
1542         * verilog-mode.el (verilog-label-re): Fix regular expression for
1543         labels.
1545         (verilog-label-re, verilog-calc-1): Support proper indent of named
1546         asserts.
1548         (verilog-backward-token, verilog-basic-complete-re)
1549         (verilog-beg-of-statement, verilog-indent-re): Support proper
1550         indent of the assert statement at the beginning of a block of text.
1552         (verilog-beg-block-re, verilog-ovm-begin-re): Support the
1553         `ovm_object_param_utils_begin and `ovm_component_param_utils_begin
1554         tokens as begins.
1556 2009-11-05  Glenn Morris  <rgm@gnu.org>
1558         * emacs-lisp/bytecomp.el (byte-compile-insert-header): Drop test for
1559         Emacs 19.  (Bug#1531)
1560         (byte-compile-fix-header): Update for the above change.
1561         Drop test for epoch::version.
1563         * emacs-lisp/autoload.el (autoload-rubric): Add optional feature arg.
1564         * cus-dep.el (custom-make-dependencies):
1565         * finder.el (finder-compile-keywords):
1566         Use autoload-rubric's feature argument.
1568         * calendar/diary-lib.el (top-level): Make load behave more like require.
1570         * vc-git.el (vc-git-stash-map): Move definition before use.
1572 2009-11-04  Dan Nicolaescu  <dann@ics.uci.edu>
1574         * custom.el (custom-declare-group): Purecopy standard-value.
1575         (custom-declare-group): Purecopy custom-prefix.
1577         * international/mule.el (load-with-code-conversion):
1578         Call do-after-load-evaluation unconditionally.
1580         * emacs-lisp/bytecomp.el (byte-compile-output-file-form): Handle defvaralias.
1582 2009-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
1584         * descr-text.el: Require help-mode rather than help-fns (bug#4861).
1586 2009-11-04  Glenn Morris  <rgm@gnu.org>
1588         * emacs-lisp/bytecomp.el (byte-compile-version-cond): Remove macro.
1589         (byte-compile-compatibility): Remove option.
1590         (byte-compile-close-variables, byte-compile-fix-header)
1591         (byte-compile-insert-header, byte-compile-output-docform)
1592         (byte-compile-file-form-defmumble, byte-compile-byte-code-maker)
1593         (byte-compile-lambda, byte-compile-form, byte-defop-compiler19)
1594         (byte-compile-list, byte-compile-concat, byte-compile-function-form)
1595         (byte-compile-insert, byte-compile-defun):
1596         Remove support for byte-compile-compatibility and Emacs 18.  (Bug#4571)
1597         (byte-defop-compiler19): Remove.
1598         Without byte-compile-compatibility, the 'emacs19-opcode property is not
1599         used by anything.  Replace all calls with byte-defop-compiler.
1601 2009-11-04  Juri Linkov  <juri@jurta.org>
1603         * menu-bar.el (menu-bar-make-mm-toggle): Quote each element of `props'.
1604         (menu-bar-options-menu): Don't quote the `prop' arg of
1605         `menu-bar-make-mm-toggle'.
1607 2009-11-04  Juanma Barranquero  <lekktu@gmail.com>
1609         * calendar/calendar.el (cal-loaddefs):
1610         * calendar/diary-lib.el (diary-loaddefs):
1611         * calendar/holidays.el (hol-loaddefs):
1612         * eshell/esh-module.el (esh-groups): Load rather than require.
1614 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1616         * calendar/todo-mode.el (todo-add-category): Don't hardcode
1617         point-min==1.
1618         (todo-top-priorities): Only display-buffer when called interactively.
1619         (todo-item-start): Don't save excursion point.
1620         (todo-item-end): Be slightly more careful.  Add `include-sep' arg.
1621         (todo-insert-item-here, todo-file-item, todo-remove-item):
1622         Adjust uses of todo-item-start and todo-item-end.
1624         * emacs-lisp/autoload.el (generated-autoload-feature): Remove.
1625         (autoload-rubric): Don't use any more.
1626         * cedet/semantic/fw.el (semantic/loaddefs):
1627         * cedet/srecode.el (srecode/loaddefs):
1628         * cedet/ede.el (ede/loaddefs): Load rather than require.
1629         * cedet/ede/cpp-root.el:
1630         * cedet/ede/emacs.el:
1631         * cedet/ede/files.el:
1632         * cedet/ede/linux.el:
1633         * cedet/ede/locate.el:
1634         * cedet/ede/make.el:
1635         * cedet/ede/shell.el:
1636         * cedet/ede/speedbar.el:
1637         * cedet/ede/system.el:
1638         * cedet/ede/util.el:
1639         * cedet/semantic/analyze.el:
1640         * cedet/semantic/bovine.el:
1641         * cedet/semantic/complete.el:
1642         * cedet/semantic/ctxt.el:
1643         * cedet/semantic/db-file.el:
1644         * cedet/semantic/db-find.el:
1645         * cedet/semantic/db-global.el:
1646         * cedet/semantic/db-mode.el:
1647         * cedet/semantic/db-typecache.el:
1648         * cedet/semantic/db.el:
1649         * cedet/semantic/debug.el:
1650         * cedet/semantic/dep.el:
1651         * cedet/semantic/doc.el:
1652         * cedet/semantic/edit.el:
1653         * cedet/semantic/find.el:
1654         * cedet/semantic/format.el:
1655         * cedet/semantic/html.el:
1656         * cedet/semantic/ia-sb.el:
1657         * cedet/semantic/ia.el:
1658         * cedet/semantic/idle.el:
1659         * cedet/semantic/lex-spp.el:
1660         * cedet/semantic/lex.el:
1661         * cedet/semantic/mru-bookmark.el:
1662         * cedet/semantic/scope.el:
1663         * cedet/semantic/senator.el:
1664         * cedet/semantic/sort.el:
1665         * cedet/semantic/symref.el:
1666         * cedet/semantic/tag-file.el:
1667         * cedet/semantic/tag-ls.el:
1668         * cedet/semantic/tag-write.el:
1669         * cedet/semantic/tag.el:
1670         * cedet/semantic/util-modes.el:
1671         * cedet/semantic/analyze/complete.el:
1672         * cedet/semantic/analyze/refs.el:
1673         * cedet/semantic/bovine/c.el:
1674         * cedet/semantic/bovine/gcc.el:
1675         * cedet/semantic/bovine/make.el:
1676         * cedet/semantic/bovine/scm.el:
1677         * cedet/semantic/decorate/include.el:
1678         * cedet/semantic/decorate/mode.el:
1679         * cedet/semantic/symref/cscope.el:
1680         * cedet/semantic/symref/global.el:
1681         * cedet/semantic/symref/grep.el:
1682         * cedet/semantic/symref/idutils.el:
1683         * cedet/semantic/symref/list.el:
1684         * cedet/semantic/wisent/java-tags.el:
1685         * cedet/semantic/wisent/javascript.el:
1686         * cedet/srecode/compile.el:
1687         * cedet/srecode/cpp.el:
1688         * cedet/srecode/document.el:
1689         * cedet/srecode/el.el:
1690         * cedet/srecode/expandproto.el:
1691         * cedet/srecode/getset.el:
1692         * cedet/srecode/insert.el:
1693         * cedet/srecode/java.el:
1694         * cedet/srecode/map.el:
1695         * cedet/srecode/mode.el:
1696         * cedet/srecode/template.el:
1697         * cedet/srecode/texi.el: Remove the file-local setting of
1698         generated-autoload-feature.
1700         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Use dolist,
1701         and only put a prop if it is non-nil.
1703 2009-11-03  Juri Linkov  <juri@jurta.org>
1705         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle)
1706         (menu-bar-options-menu): Fix list quoting (Bug#4429).
1708         * buff-menu.el (Buffer-menu-mode-map): Add hyphen between "Buffer"
1709         and "Menu" to make top-level menu item visually one unit (like
1710         it's done for "Lisp-Interaction", "Emacs-Lisp" and other
1711         multi-word menu items).  Fix :help string for quit-window.
1713 2009-11-03  Glenn Morris  <rgm@gnu.org>
1715         * cedet/mode-local.el (with-mode-local): Doc fix.
1717         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar)
1718         (byte-compile-file-form-define-abbrev-table)
1719         (byte-compile-file-form-custom-declare-variable)
1720         (byte-compile-variable-ref, byte-compile-defvar):
1721         Whether or not a warning is enabled should only affect whether we issue
1722         the warning, not whether or not we collect the relevant data.
1723         Eg warnings can be turned on and off throughout the course of a file.
1725         * eshell/esh-mode.el (ansi-color-apply-on-region): Autoload it...
1726         (eshell-handle-ansi-color): ... Rather than requiring ansi-color.
1728 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1730         * term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
1731         * play/mpuz.el (mpuz-create-buffer):
1732         * play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
1733         (lm-print-y,s,noise, lm-print-w0, lm-init):
1734         * play/gomoku.el (gomoku-prompt-for-move):
1735         * play/fortune.el (fortune-in-buffer):
1736         * play/dissociate.el (dissociated-press):
1737         * play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
1738         (decipher-analyze-buffer, decipher-stats-buffer,decipher-stats-buffer):
1739         * mail/supercite.el (sc-eref-show):
1740         * mail/smtpmail.el (smtpmail-send-it):
1741         * mail/rmailsum.el (rmail-summary-next-labeled-message)
1742         (rmail-summary-previous-labeled-message, rmail-summary-wipe)
1743         (rmail-summary-undelete-many, rmail-summary-rmail-update)
1744         (rmail-summary-goto-msg, rmail-summary-expunge)
1745         (rmail-summary-get-new-mail, rmail-summary-search-backward)
1746         (rmail-summary-add-label, rmail-summary-output-menu)
1747         (rmail-summary-output-body):
1748         * mail/rfc822.el (rfc822-addresses):
1749         * mail/reporter.el (reporter-dump-variable, reporter-dump-state):
1750         * mail/mailpost.el (post-mail-send-it):
1751         * mail/hashcash.el (hashcash-generate-payment):
1752         * mail/feedmail.el (feedmail-run-the-queue)
1753         (feedmail-queue-send-edit-prompt-help-first)
1754         (feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
1755         (feedmail-deduce-address-list):
1756         * eshell/esh-ext.el (eshell-remote-command):
1757         * eshell/em-unix.el (eshell-occur-mode-mouse-goto):
1758         * emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
1759         (viper-wildcard-to-regexp, viper-glob-mswindows-files)
1760         (viper-save-string-in-file, viper-valid-marker):
1761         * emulation/viper-keym.el (viper-toggle-key):
1762         * emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
1763         (ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
1764         (ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
1765         * emulation/viper-cmd.el (viper-exec-form-in-vi)
1766         (viper-exec-form-in-emacs, viper-brac-function):
1767         * emulation/viper.el (viper-delocalize-var):
1768         * emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
1769         (vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
1770         (vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
1771         (ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
1772         * emulation/vi.el (vi-switch-mode, vi-ex-cmd):
1773         * emulation/edt.el (edt-electric-helpify):
1774         * emulation/cua-rect.el (cua--rectangle-aux-replace):
1775         * emulation/cua-gmrk.el (cua--insert-at-global-mark)
1776         (cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
1777         (cua-indent-to-global-mark-column):
1778         * calendar/diary-lib.el (calendar-mark-1):
1779         * calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
1780         Use with-current-buffer.
1781         * emulation/viper.el (viper-delocalize-var): Use dolist.
1783 2009-11-03  Chong Yidong  <cyd@stupidchicken.com>
1785         * comint.el (comint-replace-by-expanded-history-before-point):
1786         Replace !! with the previous input string literally (Bug#1795).
1788 2009-11-02  Jay Belanger  <jay.p.belanger@gmail.com>
1790         * calc/calc-forms.el (calc-date-notation): Allow a "blank string"
1791         to be made up of whitespace.
1793 2009-11-02  Chong Yidong  <cyd@stupidchicken.com>
1795         * minibuffer.el (read-file-name): Don't use file dialogs for
1796         remote directories (Bug#99).
1798 2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
1800         * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
1802 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
1804         * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
1805         instead of deleting the window or frame.
1807 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
1809         * textmodes/sgml-mode.el (sgml-mode-facemenu-add-face-function):
1810         Support face colors.
1812         * textmodes/tex-mode.el (tex-facemenu-add-face-function):
1813         New function.  Support face colors (Bug#1168).
1814         (tex-common-initialization): Use it.
1816         * facemenu.el (facemenu-enable-faces-p): Enable facemenu if the
1817         mode allows it (Bug#1168).
1819 2009-10-31  Juri Linkov  <juri@jurta.org>
1821         * facemenu.el (list-colors-display): Don't mark buffer as
1822         modified (Bug#3948).
1824 2009-10-31  Chong Yidong  <cyd@stupidchicken.com>
1826         * international/mule-diag.el (list-character-sets-1): Minor
1827         message fix (Bug#3526).
1829         * progmodes/etags.el (etags-list-tags, etags-tags-apropos): Fix
1830         face property (Bug#4834).
1831         (etags-list-tags, etags-tags-apropos-additional)
1832         (etags-tags-apropos, tags-select-tags-table): Add follow-link
1833         property.
1835         * menu-bar.el (menu-bar-tools-menu): Add Semantic and EDE menu
1836         items.
1838         * cedet/cedet.el (cedet-menu-map): Remove Semantic and EDE menu
1839         items.
1841         * cedet/ede.el (ede-minor-mode):
1842         * cedet/semantic.el (semantic-mode): Toggle menu separators.
1844 2009-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1846         * textmodes/two-column.el (2C-split):
1847         * textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
1848         * textmodes/tex-mode.el (tex-set-buffer-directory):
1849         * textmodes/spell.el (spell-region, spell-string):
1850         * textmodes/reftex.el (reftex-erase-buffer):
1851         (reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
1852         * textmodes/reftex-toc.el (reftex-toc-promote-action):
1853         * textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
1854         (reftex-select-item):
1855         * textmodes/reftex-ref.el (reftex-label-info-update)
1856         (reftex-offer-label-menu):
1857         * textmodes/reftex-index.el (reftex-index-change-entry)
1858         (reftex-index-phrases-info):
1859         * textmodes/reftex-global.el (reftex-create-tags-file)
1860         (reftex-save-all-document-buffers, reftex-ensure-write-access):
1861         * textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
1862         (reftex-view-crossref-from-bibtex):
1863         * textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
1864         (reftex-extract-bib-entries-from-thebibliography)
1865         (reftex-all-used-citation-keys, reftex-create-bibtex-file):
1866         * textmodes/refbib.el (r2b-capitalize-title):
1867         (r2b-convert-buffer, r2b-help):
1868         * textmodes/page-ext.el (pages-directory)
1869         (pages-directory-goto-with-mouse):
1870         * textmodes/bibtex.el (bibtex-validate-globally):
1871         * textmodes/bib-mode.el (bib-capitalize-title):
1872         * textmodes/artist.el (artist-clear-buffer, artist-system):
1873         * progmodes/xscheme.el (global-set-scheme-interaction-buffer):
1874         (local-set-scheme-interaction-buffer, xscheme-process-filter)
1875         (verify-xscheme-buffer, xscheme-enter-interaction-mode)
1876         (xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
1877         (xscheme-send-control-g-interrupt, xscheme-start-process)
1878         (xscheme-process-sentinel, xscheme-cd):
1879         * progmodes/verilog-mode.el (verilog-read-always-signals)
1880         (verilog-set-define, verilog-getopt-file)
1881         (verilog-module-inside-filename-p):
1882         * progmodes/sh-script.el:
1883         * progmodes/python.el (python-pdbtrack-get-source-buffer)
1884         (python-pdbtrack-grub-for-buffer, python-execute-file):
1885         * progmodes/octave-inf.el (inferior-octave):
1886         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
1887         (idlwave-shell-compile-helper-routines, idlwave-set-local)
1888         (idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
1889         (idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
1890         (idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
1891         * progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
1892         (idlwave-shell-filter, idlwave-shell-examine-highlight)
1893         (idlwave-shell-sentinel, idlwave-shell-filter-directory)
1894         (idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
1895         (idlwave-shell-examine-display, idlwave-shell-run-region)
1896         (idlwave-shell-filter-bp, idlwave-shell-save-and-action)
1897         (idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
1898         * progmodes/idlw-help.el (idlwave-help-get-special-help)
1899         (idlwave-help-get-help-buffer):
1900         * progmodes/gud.el (gud-basic-call, gud-find-class)
1901         (gud-tooltip-activate-mouse-motions-if-enabled):
1902         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
1903         * progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
1904         (ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
1905         (ebrowse-tags-next-file):
1906         * progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
1907         (ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
1908         (ebnf-eps-finish-and-write):
1909         * progmodes/cpp.el (cpp-edit-save):
1910         * progmodes/cperl-mode.el (cperl-pod-to-manpage):
1911         * progmodes/cc-defs.el (c-emacs-features):
1912         * progmodes/antlr-mode.el (antlr-invalidate-context-cache)
1913         (antlr-directory-dependencies):
1914         * progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
1915         (ada-run-application, ada-find-in-src-path, ada-goto-parent)
1916         (ada-find-any-references, ada-make-filename-from-adaname)
1917         (ada-make-body-gnatstub):
1918         * obsolete/rnews.el (news-list-news-groups):
1919         * obsolete/resume.el (resume-suspend-hook,resume-write-buffer-to-file):
1920         * obsolete/iso-acc.el (iso-acc-minibuf-setup):
1921         * net/rcirc.el (rcirc-debug):
1922         * net/newst-treeview.el (newsticker--treeview-list-add-item)
1923         (newsticker--treeview-list-clear, newsticker-treeview-browse-url)
1924         (newsticker--treeview-list-update-faces, newsticker-treeview-save)
1925         (newsticker--treeview-item-show-text, newsticker--treeview-item-show)
1926         (newsticker--treeview-tree-update-tag,newsticker--treeview-buffer-init)
1927         (newsticker-treeview-show-item, newsticker--treeview-unfold-node)
1928         (newsticker--treeview-list-clear-highlight)
1929         (newsticker--treeview-list-update-highlight)
1930         (newsticker--treeview-list-highlight-start)
1931         (newsticker--treeview-tree-update-highlight)
1932         (newsticker--treeview-get-selected-item)
1933         (newsticker-treeview-mark-list-items-old)
1934         (newsticker--treeview-set-current-node):
1935         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
1936         * net/newst-backend.el (newsticker--get-news-by-funcall)
1937         (newsticker--get-news-by-wget, newsticker--image-get)
1938         (newsticker--image-sentinel):
1939         * net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
1940         * net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
1941         (eudc-ph-close-session):
1942         * net/eudc.el (eudc-save-options):
1943         * language/thai-word.el (thai-update-word-table):
1944         * language/japan-util.el (japanese-string-conversion):
1945         * international/titdic-cnv.el (tsang-quick-converter)
1946         (ziranma-converter, ctlau-converter):
1947         * international/mule-cmds.el (describe-language-environment):
1948         * international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
1949         (skkdic-convert-postfix, skkdic-convert-prefix):
1950         (skkdic-convert-okuri-nasi, skkdic-convert):
1951         * emacs-lisp/re-builder.el (reb-update-overlays):
1952         * emacs-lisp/pp.el (pp-to-string, pp-display-expression):
1953         * emacs-lisp/gulp.el (gulp-send-requests):
1954         * emacs-lisp/find-gc.el (trace-call-tree):
1955         * emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
1956         (eieio-describe-generic):
1957         * emacs-lisp/eieio-base.el (eieio-persistent-read):
1958         * emacs-lisp/edebug.el (edebug-outside-excursion):
1959         * emacs-lisp/debug.el (debugger-make-xrefs):
1960         * emacs-lisp/cust-print.el (custom-prin1-to-string):
1961         * emacs-lisp/chart.el (chart-new-buffer):
1962         * emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
1963         Use with-current-buffer.
1964         * textmodes/artist.el (artist-system): Don't call
1965         copy-sequence on a fresh string.
1966         * progmodes/idlw-shell.el (easymenu setup): Use dolist.
1968 2009-10-31  Stephen Berman  <stephen.berman@gmx.net>
1970         * calendar/todo-mode.el (todo-edit-item): Signal an error if there
1971         is no item to edit.  (Bug#4820)
1972         (todo-top-priorities): Restore point and restore narrowing in Todo
1973         buffer.  (Bug#4820)
1975 2009-10-31  Glenn Morris  <rgm@gnu.org>
1977         * net/ange-ftp.el (top-level): Don't require dired when compiling.
1978         (comint-last-output-start, comint-last-input-start)
1979         (comint-last-input-end): Don't defvar when compiling.
1980         (ange-ftp-process-file): Use bound-and-true-p.
1982         * pcmpl-rpm.el (top-level): Move provide statement to end.
1983         (pcmpl-rpm): Remove unused custom group.
1985         * pcmpl-gnu.el (tar-parse-info, tar-header-name): Declare for compiler.
1987         * mail/emacsbug.el (report-emacs-bug): Request `emacs -Q' recipes.
1989         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
1990         (byte-compile-warnings): Add `constants' as an option.
1991         (byte-compile-callargs-warn, byte-compile-arglist-warn)
1992         (display-call-tree): Update for byte-compile-fdefinition possibly
1993         returning `(macro lambda ...)'.  (Bug#4778)
1994         (byte-compile-variable-ref, byte-compile-setq-default):
1995         Respect `constants' member of byte-compile-warnings.
1997         * cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
1998         Use mapc rather than mapcar because the return value is never used.
2000         * cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
2001         * cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
2002         * cedet/semantic/html.el:
2003         Suppress harmless warnings about setting up semantic-imenu (not
2004         part of Emacs) variables.
2006 2009-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2008         * vc-bzr.el (vc-bzr-revision-keywords): New var.
2009         (vc-bzr-revision-completion-table): Use it to fix completion of "s:"
2010         to "submit:".
2012         * cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
2013         * cedet/semantic/symref/list.el (semantic-symref-rb-toggle-expand-tag):
2014         * cedet/semantic/symref/grep.el (semantic-symref-perform-search):
2015         * cedet/semantic/bovine/gcc.el (semantic-gcc-query):
2016         * cedet/semantic/bovine/c.el (semantic-c-parse-lexical-token):
2017         * cedet/semantic/analyze/debug.el (semantic-analyzer-debug-add-buttons)
2018         (semantic-analyzer-debug-global-symbol)
2019         (semantic-analyzer-debug-missing-innertype)
2020         (semantic-analyzer-debug-insert-include-summary):
2021         * cedet/semantic/util.el (semantic-file-tag-table):
2022         (semantic-describe-buffer-var-helper, semantic-something-to-tag-table)
2023         (semantic-recursive-find-nonterminal-by-name):
2024         * cedet/semantic/tag-ls.el (semantic-tag-calculate-parent-default):
2025         * cedet/semantic/tag-file.el (semantic-prototype-file):
2026         * cedet/semantic/symref.el (semantic-symref-parse-tool-output):
2027         * cedet/semantic/sb.el (semantic-sb-fetch-tag-table):
2028         * cedet/semantic/lex-spp.el (semantic-lex-spp-lex-text-string):
2029         * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer):
2030         (semantic-idle-summary-maybe-highlight):
2031         * cedet/semantic/ia-sb.el (semantic-ia-speedbar)
2032         (semantic-ia-sb-tag-info):
2033         * cedet/semantic/grammar.el (semantic-analyze-possible-completions):
2034         * cedet/semantic/find.el (semantic-brute-find-tag-by-position):
2035         * cedet/semantic/ede-grammar.el (project-compile-target):
2036         (ede-proj-makefile-insert-variables):
2037         * cedet/semantic/debug.el (semantic-debug-set-parser-location):
2038         (semantic-debug-set-source-location, semantic-debug-interface-layout)
2039         (semantic-debug-mode, semantic-debug):
2040         * cedet/semantic/db.el (semanticdb-needs-refresh-p):
2041         * cedet/semantic/db-typecache.el (semanticdb-typecache-refresh-for-buffer):
2042         * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode):
2043         * cedet/semantic/db-find.el (semanticdb-find-log-new-search)
2044         (semanticdb-find-translate-path-includes--internal)
2045         (semanticdb-reset-log, semanticdb-find-log-activity):
2046         * cedet/semantic/db-file.el (object-write):
2047         * cedet/semantic/db-el.el (semanticdb-equivalent-mode):
2048         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-C-file-p)
2049         (semanticdb-create-ebrowse-database):
2050         * cedet/semantic/db-debug.el (semanticdb-table-sanity-check):
2051         * cedet/semantic/complete.el (semantic-displayor-focus-request)
2052         (semantic-collector-calculate-completions-raw)
2053         (semantic-complete-read-tag-analyzer):
2054         * cedet/semantic/analyze.el (semantic-analyze-pulse):
2055         * cedet/ede/util.el (ede-update-version-in-source):
2056         * cedet/ede/proj.el (project-delete-target):
2057         * cedet/ede/proj-elisp.el (ede-update-version-in-source)
2058         (ede-proj-flush-autoconf):
2059         * cedet/ede/pconf.el (ede-proj-configure-synchronize)
2060         (ede-proj-configure-synchronize):
2061         * cedet/ede/locate.el (ede-locate-file-in-project-impl):
2062         * cedet/ede/linux.el (ede-linux-version):
2063         * cedet/ede/emacs.el (ede-emacs-version):
2064         * cedet/ede/dired.el (ede-dired-add-to-target):
2065         * cedet/ede.el (ede-buffer-header-file, ede-find-target)
2066         (ede-buffer-documentation-files, ede-project-buffers, ede-set)
2067         (ede-target-buffers, ede-buffers, ede-make-project-local-variable):
2068         * cedet/cedet-idutils.el (cedet-idutils-fnid-call):
2069         (cedet-idutils-lid-call, cedet-idutils-expand-filename)
2070         (cedet-idutils-version-check):
2071         * cedet/cedet-global.el (cedet-gnu-global-call):
2072         (cedet-gnu-global-expand-filename, cedet-gnu-global-root)
2073         (cedet-gnu-global-version-check, cedet-gnu-global-scan-hits):
2074         * cedet/cedet-cscope.el (cedet-cscope-call)
2075         (cedet-cscope-expand-filename, cedet-cscope-version-check):
2076         Use with-current-buffer.
2077         * cedet/ede.el (ede-make-project-local-variable)
2078         (ede-set-project-variables, ede-set): Use dolist.
2080 2009-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
2082         * textmodes/ispell.el (ispell-skip-region-alist):
2083         * international/mule-conf.el (eight-bit):
2084         * international/fontset.el (font-encoding-alist):
2085         * startup.el (pure-space-overflow-message):
2086         * simple.el (overwrite-mode-textual, overwrite-mode-binary):
2087         * paths.el (gnus-nntp-service, rmail-spool-directory)
2088         (term-file-prefix):
2089         * files.el (save-some-buffers-action-alist):
2090         * cmuscheme.el (same-window-buffer-names):
2091         * ielm.el (same-window-buffer-names):
2092         * shell.el (same-window-buffer-names):
2093         * mail/sendmail.el (same-window-buffer-names):
2094         * progmodes/inf-lisp.el (same-window-buffer-names):
2095         * bindings.el (mode-line-client)
2096         (mode-line-column-line-number-mode-map):
2097         * language/tibetan.el (tibetan-precomposition-rule-regexp)
2098         (tibetan-precomposed-regexp): Purecopy string arguments.
2100 2009-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2102         * calc/calc.el (calc, calc-refresh, calc-trail-buffer, calc-record)
2103         (calcDigit-nondigit):
2104         * calc/calc-yank.el (calc-copy-to-buffer):
2105         * calc/calc-units.el (calc-invalidate-units-table):
2106         * calc/calc-trail.el (calc-trail-yank):
2107         * calc/calc-store.el (calc-insert-variables):
2108         * calc/calc-rewr.el (math-rewrite, math-rewrite-phase):
2109         * calc/calc-prog.el (calc-read-parse-table):
2110         * calc/calc-keypd.el (calc-do-keypad, calc-keypad-right-click):
2111         * calc/calc-help.el (calc-describe-bindings, calc-describe-key):
2112         * calc/calc-graph.el (calc-graph-delete, calc-graph-add-curve)
2113         (calc-graph-juggle, calc-graph-count-curves, calc-graph-plot)
2114         (calc-graph-plot, calc-graph-format-data, calc-graph-set-styles)
2115         (calc-graph-name, calc-graph-find-command, calc-graph-view)
2116         (calc-graph-view, calc-gnuplot-command, calc-graph-init):
2117         * calc/calc-ext.el (calc-realign):
2118         * calc/calc-embed.el (calc-do-embedded, calc-do-embedded)
2119         (calc-embedded-finish-edit, calc-embedded-make-info)
2120         (calc-embedded-finish-command, calc-embedded-stack-change):
2121         * calc/calc-aent.el (calcAlg-enter): Use with-current-buffer.
2123         * cedet/mode-local.el (make-obsolete-overload): Add `when' argument.
2124         (overload-docstring-extension): Use that info.
2125         * cedet/semantic/fw.el (semantic-alias-obsolete): Pass the `when' info.
2126         * cedet/semantic/idle.el (semantic-eldoc-current-symbol-info):
2127         * cedet/semantic/tag-ls.el (semantic-nonterminal-protection)
2128         (semantic-nonterminal-abstract, semantic-nonterminal-leaf)
2129         (semantic-nonterminal-full-name): Add the new `when' info.
2130         * cedet/semantic/decorate/mode.el (semantic/decorate): Require CL for
2131         `assert'.
2133         * pcomplete.el (pcomplete-comint-setup): If there's a choice, replace
2134         shell-dynamic-complete-filename in preference to
2135         comint-dynamic-complete-filename.
2137         * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
2138         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
2139         Don't consider whether the display supports colors.
2140         (bookmark-import-new-list): Use dolist.
2141         (bookmark-bmenu-mode-map): Move initialization into declaration.
2142         (bookmark-bmenu-list): Use dolist, simplify.
2143         (bookmark-show-all-annotations): Use save-selected-window and dolist.
2144         (menu-bar-final-items): Use push.
2146 2009-10-28  Bernhard Herzog  <bernhard.herzog@intevation.de>  (tiny change)
2148         * vc-hg.el (vc-hg-state, vc-hg-working-revision): Use process-file so
2149         it works on remote files.
2150         (vc-hg-diff): Don't pass any `--cwd' argument.
2152 2009-10-27  Kevin Ryde  <user42@zip.com.au>
2154         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
2155         Use help-xref-info-regexp and help-xref-url-regexp to identify links.
2156         (Further to Bug#3921).
2158 2009-10-27  Michael Albinus  <michael.albinus@gmx.de>
2160         * net/tramp-imap.el (top): Add `X-Size' to `imap-hash-headers'.
2161         (tramp-imap-do-copy-or-rename-file): Don't use the inode, when
2162         calling `tramp-imap-put-file'.  Add file size to the call.
2163         (tramp-imap-get-file-entries): Compute also user name, file size,
2164         and date.
2165         (tramp-imap-handle-insert-directory): Insert uid and gid.
2166         (tramp-imap-handle-file-attributes): Transform uid and gid
2167         according to `id-format'.
2168         (tramp-imap-put-file): New optional parameter SIZE.  Encode file
2169         size in header X-Size.
2171 2009-10-26  Juanma Barranquero  <lekktu@gmail.com>
2173         * simple.el (transpose-subr): Give clearer error when the mark
2174         is not set.  (Bug#4807)
2176 2009-10-26  Michael Albinus  <michael.albinus@gmx.de>
2178         * net/tramp.el (tramp-perl-file-truename): New defconst.
2179         Perl code contributed by yary <not.com@gmail.com> (tiny change).
2180         (tramp-handle-file-truename, tramp-get-remote-perl): Use it.
2181         Check also for "perl-file-spec" and "perl-cwd-realpath" properties.
2182         (tramp-handle-write-region): In case of APPEND, reuse the tmpfile name.
2184         * net/tramp-imap.el (tramp-imap-file-name-handler-alist):
2185         Ignore `dired-call-process'.
2186         (tramp-imap-make-iht): Use `user' and `ssl' with `imap-hash-make'.
2188 2009-10-26  Julian Scheid  <julians37@gmail.com>
2190         * net/tramp.el (tramp-perl-file-name-all-completions): New defconst.
2191         (tramp-get-remote-readlink): New defun.
2192         (tramp-handle-file-truename): Use it.
2193         (tramp-handle-file-exists-p): Check file-attributes cache, assume
2194         file exists if cache value present.
2195         (tramp-check-cached-permissions) New defun.
2196         (tramp-handle-file-readable-p): Use it.
2197         (tramp-handle-file-writable-p): Likewise.
2198         (tramp-handle-file-executable-p): Likewise.
2199         (tramp-handle-file-name-all-completions): Try using Perl to get
2200         partial completions.  When perl not available, combine `cd' and
2201         `ls' into single remote operation and use shell expansion to get
2202         partial remote directory contents.  Set `file-exists-p' cache for
2203         directory and any files returned by ls.  Change cache handling to
2204         support partial directory contents.  Use error message emitted by
2205         remote `cd' or Perl code for local tramp-error.
2206         (tramp-do-copy-or-rename-file-directly): Avoid separate
2207         tramp-send-command-and-check call.
2208         (tramp-handle-process-file): Merge three remote ops into one.
2209         Do not flush all caches when `process-file-side-effects' is set.
2210         (tramp-handle-write-region): Avoid tramp-set-file-uid-gid if
2211         file-attributes shows uid/gid to be set already.
2213 2009-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
2215         * textmodes/tex-mode.el (tex-dvi-view-command)
2216         (tex-show-queue-command, tex-open-quote):
2217         * progmodes/ruby-mode.el (auto-mode-alist)
2218         (interpreter-mode-alist): Purecopy strings.
2220         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names.
2222         * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc
2223         string for the hook, keymap and abbrev table.
2225         * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name.
2227         * x-dnd.el (x-dnd-xdnd-to-action):
2228         * startup.el (fancy-startup-text, fancy-about-text): Change to
2229         defconst from defvar.
2231         * ps-print.el (ps-page-dimensions-database): Purecopy initial value.
2233         * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist):
2234         Purecopy initialization strings.
2236         * mail/sendmail.el (mail-header-separator)
2237         (mail-personal-alias-file):
2238         * mail/rmail.el (rmail-default-dont-reply-to-names)
2239         (rmail-ignored-headers, rmail-retry-ignored-headers)
2240         (rmail-highlighted-headers, rmail-secondary-file-directory)
2241         (rmail-secondary-file-regexp):
2242         * files.el (null-device, file-name-invalid-regexp)
2243         (locate-dominating-stop-dir-regexp)
2244         (inhibit-first-line-modes-regexps): Purecopy initialization strings.
2245         (interpreter-mode-alist): Use mapcar instead of mapc.
2247         * buff-menu.el (Buffer-menu-mode-map): Purecopy name.
2249         * bindings.el (mode-line-major-mode-keymap): Purecopy name.
2250         (completion-ignored-extensions):
2251         (debug-ignored-errors): Purecopy strings.
2253 2009-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2255         * pcomplete.el (pcomplete-std-complete): Obey pcomplete-use-paring.
2256         (pcomplete, pcomplete-parse-buffer-arguments, pcomplete-opt)
2257         (pcomplete--here): Use push.
2259         * subr.el (all-completions): Declare the 4th arg obsolete.
2261 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2263         * pcomplete.el (pcomplete-unquote-argument-function): New var.
2264         (pcomplete-unquote-argument): New function.
2265         (pcomplete--common-suffix): Always pay attention to case.
2266         (pcomplete--table-subvert): Quote and unquote the text.
2267         (pcomplete--common-quoted-suffix): New function.
2268         (pcomplete-std-complete): Use it and pcomplete-begin.
2270         * bookmark.el (bookmark-bmenu-list): Don't use switch-to-buffer if
2271         we're inside a dedicated or minibuffer window.
2273 2009-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2275         * cedet/semantic/fw.el (semantic-alias-obsolete)
2276         (semantic-varalias-obsolete): Make the `when' arg mandatory.
2277         (define-mode-overload-implementation):
2278         * cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
2279         * cedet/semantic/wisent.el (wisent-lex-make-token-table):
2280         * cedet/semantic/util.el (semantic-file-token-stream)
2281         (semantic-something-to-stream):
2282         * cedet/semantic/tag.el (semantic-tag-make-assoc-list)
2283         (semantic-expand-nonterminal):
2284         * cedet/semantic/tag-file.el (semantic-find-nonterminal)
2285         (semantic-find-dependency, semantic-find-nonterminal)
2286         (semantic-find-dependency):
2287         * cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
2288         (semantic-flex-text, semantic-flex-make-keyword-table)
2289         (semantic-flex-keyword-p, semantic-flex-keyword-put)
2290         (semantic-flex-keyword-get, semantic-flex-map-keywords)
2291         (semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
2292         * cedet/semantic/java.el (semantic-java-prototype-nonterminal):
2293         * cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
2294         (semantic-after-idle-scheduler-reparse-hooks):
2295         * cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
2296         * cedet/semantic/db-mode.el (semanticdb-mode-hooks):
2297         * cedet/semantic.el (semantic-toplevel-bovine-table)
2298         (semantic-toplevel-bovine-cache)
2299         (semantic-before-toplevel-bovination-hook, semantic-init-hooks)
2300         (semantic-init-mode-hooks, semantic-init-db-hooks)
2301         (semantic-bovination-working-type): Provide the `when' arg.
2303 2009-10-24  Karl Fogel  <kfogel@red-bean.com>
2305         * bookmark.el: Update documentation, especially documentation
2306         of `bookmark-alist' and of the bookmark file format.
2307         Patch by Drew Adams, with minor tweaks from me.  (Bug#4195)
2309 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
2311         * mail/emacsbug.el (report-emacs-bug): Clarify that the
2312         keybindings apply to the mail buffer (Bug#4003).  Shrink help
2313         window to buffer.
2315         * whitespace.el (whitespace-mode, whitespace-newline-mode)
2316         (global-whitespace-mode, global-whitespace-newline-mode)
2317         (whitespace-toggle-options, global-whitespace-toggle-options):
2318         Doc fix (Bug#3660).
2320         * nxml/nxml-mode.el (nxml-balanced-close-start-tag): Use the value
2321         of xmltok-start before the end tag was inserted (Bug#2840).
2323         * progmodes/sh-script.el (sh-font-lock-paren): Handle case
2324         patterns that are preceded by an open-paren (Bug#1320).
2326 2009-10-24  Sven Joachim  <svenjoac@gmx.de>
2328         * files.el (delete-directory): Delete symlinks to directories with
2329         delete-file (Bug#4739).
2331 2009-10-24  Chong Yidong  <cyd@stupidchicken.com>
2333         * cedet/semantic/util.el (semantic-recursive-find-nonterminal-by-name):
2334         * cedet/semantic/tag.el (semantic-token-type-parent): Add WHEN
2335         argument to make-obsolete.
2337         * cedet/semantic/fw.el (semantic-alias-obsolete)
2338         (semantic-varalias-obsolete): Add optional WHEN argument.
2340 2009-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
2342         * vc.el (vc-backend-for-registration): Rename from
2343         vc-get-backend-for-registration.  Update callers.
2345         * international/mule-cmds.el (set-language-info-alist):
2346         Purecopy lang-env.
2347         (leim-list-header, leim-list-entry-regexp): Change defvars to defconst.
2348         (charset): Purecopy the name.
2349         (define-char-code-property): Purecopy string arguments.
2351         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
2352         Purecopy string arguments.
2354         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
2355         * ediff-hook.el (menu-bar-ediff-menu):
2356         * buff-menu.el (Buffer-menu-mode-map): Purecopy names and tooltips.
2357         * bookmark.el (menu-bar-bookmark-map): Add :help and purecopy the name.
2359 2009-10-24  Glenn Morris  <rgm@gnu.org>
2361         * comint.el (comint-dynamic-list-completions):
2362         * term.el (term-dynamic-list-completions): Use choose-completion rather
2363         than obsolete alias mouse-choose-completion.
2365         * filecache.el (file-cache-completions-keymap): Bind mouse-2 to
2366         file-cache-choose-completion.
2367         (file-cache-choose-completion): Handle an optional event argument.
2368         (file-cache-mouse-choose-completion): Make it an obsolete alias.
2370         * progmodes/octave-mod.el (octave-complete-symbol):
2371         Use choose-completion if mouse-choose-completion is ever removed.
2373         * textmodes/sgml-mode.el (sgml-looking-back-at): Move definition before
2374         use.
2376         * emacs-lisp/checkdoc.el (generate-autoload-cookie): Define for
2377         compiler.
2379         * vc-hooks.el (vc-responsible-backend): Fix declaration.
2381 2009-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2383         * minibuffer.el (completion--embedded-envvar-table): Fix last change.
2384         Ignore `pred' now that we receive one.
2385         Handle test-completion specially.
2387 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
2389         * vc.el (vc-responsible-backend): Throw an error if not backend is
2390         found.  Remove the REGISTER argument.  Move the code dealing with
2391         REGISTER ...
2392         (vc-get-backend-for-registration): ... here.  New function.
2393         (vc-deduce-fileset): Call vc-get-backend-for-registration instead
2394         of vc-responsible-backend, pass the file name instead of the
2395         directory name.
2397 2009-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2399         * pcomplete.el (pcomplete-common-suffix, pcomplete-table-subvert):
2400         New funs.
2401         (pcomplete-std-complete): Use them.  Obey pcomplete-termination-string.
2402         (pcomplete-comint-setup): Don't modify a global var via
2403         accidental side-effects.
2404         (pcomplete-shell-setup): Adjust call accordingly.
2405         (pcomplete-parse-comint-arguments): Use push.
2407 2009-10-23  Chong Yidong  <cyd@stupidchicken.com>
2409         * emacs-lisp/checkdoc.el (checkdoc-proper-noun-region-engine):
2410         Allow uncapitalized info node names (Bug#3921).
2412         * mail/emacsbug.el (report-emacs-bug): Tweak the sentence pointing
2413         to the DEBUG file (Bug#3781).
2415 2009-10-23  Jari Aalto  <jari.aalto@cante.net>
2417         * textmodes/ispell.el (ispell-dictionary-base-alist): Add finnish
2418         dictionary entry (Bug#4579).
2420 2009-10-23  Michael Albinus  <michael.albinus@gmx.de>
2422         * net/tramp.el (top): Remove `tramp-rfn-eshadow-update-overlay'
2423         from `rfn-eshadow-update-overlay-hook' when unloading.
2424         (tramp-methods): Add `tramp-copy-keep-tmpfile' for "rsync" and
2425         "rsyncc".  Adjust doc string.
2426         (tramp-temp-buffer-file-name) New buffer-local defvar.
2427         (tramp-handle-insert-file-contents, tramp-handle-write-region):
2428         Keep temporary file when indicated by method ("rsync" and
2429         "rsyncc").
2430         (tramp-handle-write-region): Handle APPEND.
2431         (tramp-delete-temp-file-function): New defun.  Added to
2432         `kill-buffer-hook'.
2434 2009-10-23  Juanma Barranquero  <lekktu@gmail.com>
2436         * menu-bar.el (cua-enable-cua-keys): Declare for the byte-compiler.
2438 2009-10-23  Dan Nicolaescu  <dann@ics.uci.edu>
2440         * term/tty-colors.el (msdos-color-values): Remove declaration, unused.
2441         (color-name-rgb-alist, tty-standard-colors)
2442         (tty-color-mode-alist): Change to defconst.
2444         * simple.el (mark-inactive): Purecopy message.
2446         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle): Fix macro.
2447         (global-map, yank-menu):
2448         * textmodes/ispell.el (ispell-menu-map):
2449         * net/eudc.el (eudc-tools-menu):
2450         * international/mule-cmds.el (describe-language-environment-map)
2451         (setup-language-environment-map, set-coding-system-map)
2452         (mule-menu-keymap):
2453         * vc-hooks.el (vc-menu-entry, vc-menu-map):
2454         * replace.el (occur-mode-map):
2455         * pcvs-defs.el (cvs-global-menu): Purecopy names and tooltips.
2457 2009-10-23  Jay Belanger  <jay.p.belanger@gmail.com>
2459         * calc/calc.el (math-read-number, math-read-number-simple): Use
2460         `save-match-data'.
2462 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2464         * simple.el (normal-erase-is-backspace-mode): Use input-decode-map
2465         rather than fiddling with global-map bindings, since it should only
2466         affect per-terminal settings.
2467         See http://bugs.gentoo.org/show_bug.cgi?id=289709.
2469         * minibuffer.el (completion-table-with-terminator): Allow to specify
2470         the terminator-regexp.
2472         * simple.el (switch-to-completions): Look for *Completions* in other
2473         frames as well.
2475         * pcomplete.el: Allow the use of completion-tables.
2476         (pcomplete-std-complete): New command.
2477         (pcomplete-dirs-or-entries): Use a single call to pcomplete-entries.
2478         (pcomplete--here): Use a function for `form' rather than an expression,
2479         so it can be byte-compiled.
2480         (pcomplete-here, pcomplete-here*): Adjust accordingly.
2481         Add edebug declaration.
2482         (pcomplete-show-completions): Remove unused var `curbuf'.
2483         (pcomplete-do-complete, pcomplete-stub):
2484         Don't assume `completions' is a list of strings any more.
2486 2009-10-22  Juanma Barranquero  <lekktu@gmail.com>
2488         * find-dired.el (find-name-arg): Fix typo in docstring.
2490 2009-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2492         * pcmpl-linux.el (pcomplete/kill): Don't abuse pcomplete-entries.
2493         (pcmpl-linux-fs-types): Same, and update to new modules layout.
2495         * pcmpl-gnu.el (pcmpl-gnu-makefile-names): Use a single call to
2496         pcomplete-entries.
2498         * comint.el (comint-read-input-ring, comint-write-input-ring)
2499         (comint-substitute-in-file-name)
2500         (comint-dynamic-complete-as-filename)
2501         (comint-dynamic-simple-complete)
2502         (comint-dynamic-list-filename-completions)
2503         (comint-dynamic-list-completions)
2504         (comint-redirect-results-list-from-process): Minor simplifications.
2506 2009-10-21  Kevin Ryde  <user42@zip.com.au>
2508         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
2509         When inserting ";;; Code" put it before any ";;;###autoload" cookie on
2510         the first form.  And insert a blank line after ";;; Code" since
2511         that's usual style.  (My Bug#4612.)
2513         * net/dns.el: Add "Keywords: comm", as per net/net-utils.el.
2515 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2517         * minibuffer.el (completion-table-with-terminator): Properly implement
2518         boundaries, in case `terminator' appears in the suffix.
2519         (completion--embedded-envvar-table): Don't return boundaries if
2520         there's no valid completion.  Simplify.
2521         (completion-file-name-table): New completion table extracted from
2522         completion--file-name-table.
2523         (completion--file-name-table): Use it.
2524         (read-file-name-predicate): Declare obsolete.
2525         (read-file-name): Use the pred arg i.s.o read-file-name-predicate.
2526         * vc-bzr.el (vc-bzr-revision-completion-table): Use the new
2527         completion-file-name-table, and use the `pred' argument.
2528         * files.el (locate-file-completion-table): Use the `pred' arg rather
2529         than read-file-name-predicate.
2530         (abbreviate-file-name): Use \` rather than ^ for BOS.
2532 2009-10-21  Dan Nicolaescu  <dann@ics.uci.edu>
2534         * vc.el (vc-deduce-fileset): Undo previous change, do not tell
2535         vc-responsible-backend to register, it causes problems.
2537 2009-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2539         * help-fns.el: Don't require help-mode (to avoid bootstrap issues).
2541 2009-10-21  Eric Ludlam  <zappo@gnu.org>
2543         * cedet/semantic/bovine/c.el (semantic-c-debug-mode-init)
2544         (semantic-c-debug-mode-init-pch): New functions.
2545         (semantic-c-debug-mode-init-last-mode): New var.
2546         (semantic-c-parse-lexical-token): Use them.
2548         * cedet/semantic/lex-spp.el (semantic-lex-spp-anlyzer-do-replace):
2549         When extracting the argument list, limit only by point-max.
2551 2009-10-21  Michael Albinus  <michael.albinus@gmx.de>
2553         * net/tramp-smb.el (tramp-smb-get-stat-capability): New defun.
2554         (tramp-smb-handle-file-attributes): Use it.
2555         (tramp-smb-do-file-attributes-with-stat): Don't raise an error.
2556         (tramp-smb-handle-insert-directory): Use `mapc' rather than
2557         `mapcar'.  Use `tramp-smb-get-stat-capability'.
2558         Add `dired-filename' text properties.
2559         (tramp-smb-get-cifs-capabilities): Apply `save-match-data'.
2560         (tramp-smb-maybe-open-connection): Simplify check for smbclient
2561         version.
2563 2009-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2565         * subr.el (read-key-delay): Reduce to 0.01.
2566         (read-key): Use read-key-sequence-vector to avoid turning M-t into 244
2567         (bug#4751).
2569 2009-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2571         * bindings.el (function-key-map): Map C-@ to C-SPC if C-@ is unbound.
2573         * info.el (Info-complete-menu-item): Handle `boundaries' explicitly.
2574         (Info-menu): Remove unused vars `last' and `completions'.
2575         (Info-index-nodes): Remove unused var `node'.
2577         * info.el (Info-complete-menu-item): Use complete-with-action.
2579 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
2581         Make vc-annotate work through copies and renames.
2582         * vc-annotate.el (vc-annotate-extract-revision-at-line):
2583         Return the file name too.
2584         (vc-annotate-revision-at-line)
2585         (vc-annotate-find-revision-at-line)
2586         (vc-annotate-revision-previous-to-line)
2587         (vc-annotate-show-log-revision-at-line): Update to get the file
2588         name from vc-annotate-extract-revision-at-line.
2589         (vc-annotate-show-diff-revision-at-line-internal): Change the
2590         argument to mean whether to show a file diff or not.  Get the file
2591         name from vc-annotate-extract-revision-at-line.
2592         (vc-annotate-show-diff-revision-at-line):
2593         Update vc-annotate-show-diff-revision-at-line call.
2594         (vc-annotate-warp-revision): Add an optional file argument.
2596         * vc-git.el (vc-git-annotate-command): Pass -C -C to the blame command.
2597         (vc-git-annotate-extract-revision-at-line): Also return the file
2598         name if found.
2600         * vc-hg.el (vc-hg-annotate-command): Pass --follow to the annotate
2601         command.  Remove unused code.
2602         (vc-hg-annotate-re): Update to match --follow output.
2603         (vc-hg-annotate-extract-revision-at-line): Also return the file
2604         name if found.
2606         * vc.el: Update annotate-extract-revision-at-line documentation.
2608 2009-10-18  Kevin Ryde  <user42@zip.com.au>
2610         * ibuffer.el (ibuffer-confirm-operation-on): Correction to error
2611         re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
2613         * net/browse-url.el (browse-url): Identify alist with "consp and
2614         not functionp" and let all other things go down the `apply' leg,
2615         as suggested by Stefan.  (Further to bug#4531.)
2617 2009-10-18  Chong Yidong  <cyd@stupidchicken.com>
2619         * minibuffer.el (read-file-name): Check for repeat before putting
2620         a default argument in file-name-history (Bug#4657).
2622         * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table
2623         read syntax (Bug#4737).
2625         * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
2627 2009-10-18  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
2629         * textmodes/sgml-mode.el (sgml-tag-help): Prompt user for tag.
2630         (html-tag-alist, html-tag-help): Add descriptions for undocumented
2631         entries and make note of obsolete tags.
2633 2009-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2635         * net/ange-ftp.el (ange-ftp-file-size): Use unwind-protect.
2637 2009-10-18  Glenn Morris  <rgm@gnu.org>
2639         * Makefile.in (compile-last): Ensure GREP_OPTIONS is null before calling
2640         grep, so that binary files (eg international/uni-bidi.el) can match.
2641         Remove test for "UnicodeData" files, since it is hopefully unnecessary
2642         now, and in any case the file header format has changed.
2644 2009-10-17  Glenn Morris  <rgm@gnu.org>
2646         * textmodes/flyspell.el (flyspell-large-region, flyspell-word)
2647         (flyspell-get-word, flyspell-large-region)
2648         (flyspell-auto-correct-previous-word): Doc/error message fixes.
2650 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
2652         * Makefile.in (ELCFILES): Add ede/shell.
2654 2009-10-17  Dan Nicolaescu  <dann@ics.uci.edu>
2656         * term/common-win.el (x-colors): Purecopy it.
2658 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2660         * tar-mode.el (tar-data-swapped-p): Make the assertion a bit more
2661         permissive for when the buffer is empty.
2662         (tar-header-block-tokenize): Decode the username and groupname.
2663         (tar-chown-entry, tar-chgrp-entry): Encode the names (bug#4730).
2665 2009-10-17  Chong Yidong  <cyd@stupidchicken.com>
2667         * cedet/srecode/srt.el:
2668         * cedet/srecode/compile.el:
2669         * cedet/semantic/mru-bookmark.el:
2670         * cedet/semantic/debug.el:
2671         * cedet/semantic/complete.el:
2672         * cedet/semantic/analyze.el: Require CL when compiling.
2674 2009-10-17  Eric Ludlam  <zappo@gnu.org>
2676         * cedet/semantic/scope.el
2677         (semantic-analyze-scoped-inherited-tag-map): Wrap calculation of
2678         tmpscope so that the regular scope will continue to work.
2680         * cedet/semantic/idle.el (semantic-idle-tag-highlight):
2681         Use semantic-idle-summary-highlight-face as the highlighting.
2683         * emacs-lisp/eieio-base.el (eieio-persistent-save): If buffer
2684         contains multibyte characters, choose first applicable coding
2685         system automatically.
2687         * cedet/ede/project-am.el (project-run-target): New method.
2688         (project-run-target): New method.
2690         * cedet/ede.el (ede-target): Add run target menu item.
2691         (ede-project, ede-minor-keymap): Add ede-run-target binding.
2692         (ede-run-target): New function.
2693         (ede-target::project-run-target): New method.
2695         * cedet/ede/proj.el (project-run-target): New method.
2697         * cedet/ede/proj-shared.el (ede-gcc-libtool-shared-compiler)
2698         (ede-g++-libtool-shared-compiler): Remove SHELL.  Remove COMMANDS.
2699         Add :rules.
2700         (ede-proj-target-makefile-shared-object): Only libtool compilers
2701         now available.  Add linkers for libtool.
2702         (ede-cc-linker-libtool, ede-g++-linker-libtool): New.
2703         (ede-proj-makefile-target-name): Always use .la extension.
2705         * cedet/ede/proj-prog.el (project-run-target): New method.
2707         * cedet/ede/proj-obj.el (ede-cc-linker): Rename from ede-gcc-linker.
2708         (ede-g++-linker): Change Change link lines.
2710         * cedet/ede/pmake.el (ede-pmake-insert-variable-shared):
2711         When searching for old variables, go to the end of the buffer and
2712         search backward from there.
2713         (ede-proj-makefile-automake-insert-subdirs)
2714         (ede-proj-makefile-automake-insert-extradist): New methods.
2715         (ede-proj-makefile-create): Use them.
2717         * cedet/ede/pconf.el (ede-proj-configure-test-required-file):
2718         Force FILE to expand to the current target.  Use file-exists-p to
2719         check that it exists.
2721         * cedet/ede/linux.el (ede-linux-version): Don't call "head".
2722         (ede-linux-load): Wrap dir in file-name-as-directory.
2723         Set :version slot.
2725         * cedet/ede/files.el (ede-get-locator-object): When enabling
2726         locate, do so on "top".
2728         * cedet/ede/emacs.el (ede-emacs-file-existing): Wrap "dir" in
2729         file-name-as-directory during compare.
2730         (ede-emacs-version): Return Emacs/XEmacs differentiator.
2731         Get version number from different places.  Don't call egrep.
2732         (ede-emacs-load): Set :version slot.  Call file-name-as-directory
2733         to set the directory.
2735         * cedet/ede/shell.el: New file.
2737         * cedet/inversion.el (inversion-decoders): Allow for stray . in
2738         alpha/beta variants.
2740 2009-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2742         * international/mule-cmds.el (select-safe-coding-system): If the file
2743         has a coding cookie, use it regardless of any other setting (bug#4712).
2745 2009-10-17  Glenn Morris  <rgm@gnu.org>
2747         * cedet/semantic/grammar.el (semantic-grammar--lex-delim-spec):
2748         All errors should have messages.
2750         * foldout.el (foldout-mouse-swallow-events):
2751         * gs.el (gs-load-image): Replace obsolete forms of sit-for, sleep-for.
2753         * dired.el (dired-ls-F-marks-symlinks, dired-keep-marker-rename)
2754         (dired-keep-marker-copy, dired-keep-marker-hardlink)
2755         (dired-keep-marker-symlink, dired-dwim-target)
2756         (dired-copy-preserve-time): Do not autoload these defcustoms.
2758         * mail/rmail.el (rmail-write-region-annotate): Prevent viewing different
2759         messages from messing up the file coding.  (Bug#4623)
2761 2009-10-17  Jari Aalto  <jari.aalto@cante.net>
2763         * textmodes/ispell.el (ispell-get-decoded-string): Give an error
2764         if no match is found for the current dictionary.  (Bug#4578)
2766         * textmodes/flyspell.el (flyspell-get-word): Make `following' argument
2767         optional, since that is how it is documented, and this is often called
2768         with a nil argument.  (Bug#4577)
2769         (flyspell-external-point-words, flyspell-auto-correct-word)
2770         (flyspell-correct-word-before-point, flyspell-word-search-forward)
2771         (flyspell-word-search-backward): Remove nil argument in calls to
2772         flyspell-get-word, since it is not needed now.
2774 2009-10-17  Ulrich Mueller  <ulm@gentoo.org>
2776         * play/doctor.el (doctor-adverbp): Exclude some nouns.  (Bug#4565)
2778 2009-10-16  Glenn Morris  <rgm@gnu.org>
2780         * net/rcirc.el (rcirc-authenticate): Simplify previous change.
2782 2009-10-16  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
2784         * net/ange-ftp.el (ange-ftp-send-cmd): Handle `size' like `mdtm'.
2785         (ange-ftp-file-size): New function.
2786         (ange-ftp-file-attributes): Use it.
2788 2009-10-16  Michael Albinus  <michael.albinus@gmx.de>
2790         * net/tramp-smb.el (tramp-smb-version): New defvar.
2791         (tramp-smb-maybe-open-connection): Use it, in order to avoid
2792         repeated checks.
2794 2009-10-16  Glenn Morris  <rgm@gnu.org>
2796         * emacs-lisp/byte-run.el (define-obsolete-variable-alias): Doc fix.
2797         Maybe copy some custom properties from old to new name.  (Bug#4706)
2799 2009-10-16  Juanma Barranquero  <lekktu@gmail.com>
2801         * subr.el (error, sit-for, start-process-shell-command)
2802         (start-file-process-shell-command): Set the calling convention
2803         after the function definition.
2805 2009-10-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2807         * subr.el (error, sit-for, start-process-shell-command)
2808         (start-file-process-shell-command): Use the new
2809         set-advertised-calling-convention feature.
2811 2009-10-16  Taichi Kawabata  <kawabata.taichi@gmail.com>
2813         * international/ucs-normalize.el (ucs-normalize-version):
2814         Change to 1.2.
2815         (check-range): Adjust for Unicode 5.2.
2817 2009-10-15  Juri Linkov  <juri@jurta.org>
2819         * menu-bar.el (menu-bar-file-menu): Convert `separator-exit'
2820         to the `menu-item' format.
2822 2009-10-15  Michael Albinus  <michael.albinus@gmx.de>
2824         * net/tramp.el (tramp-replace-environment-variables): Do not fail
2825         if the environment variable does not exist.
2827         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
2828         (tramp-smb-get-share, tramp-smb-get-localname): Use only VEC as
2829         parameter.
2830         (tramp-smb-handle-add-name-to-file)
2831         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
2832         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
2833         (tramp-smb-handle-file-attributes)
2834         (tramp-smb-do-file-attributes-with-stat)
2835         (tramp-smb-handle-file-local-copy)
2836         (tramp-smb-handle-insert-directory)
2837         (tramp-smb-handle-make-directory)
2838         (tramp-smb-handle-make-directory-internal)
2839         (tramp-smb-handle-make-symbolic-link)
2840         (tramp-smb-handle-rename-file, tramp-smb-handle-set-file-modes)
2841         (tramp-smb-handle-write-region, tramp-smb-get-file-entries)
2842         (tramp-smb-maybe-open-connection): Apply the changed parameters.
2843         (tramp-smb-read-file-entry): Read Disk names in compressed format.
2844         Handle long file names.
2845         (tramp-smb-get-cifs-capabilities): Check, whether the connection
2846         process is running.
2847         (tramp-smb-maybe-open-connection): Trace "smbclient -V" command.
2848         Read share names with "-g" option.
2850 2009-10-15  Ryan Yeske  <rcyeske@gmail.com>
2852         * net/rcirc.el (rcirc-view-log-file): New command.
2853         (rcirc-track-minor-mode-map): Remove C-c ` binding.
2854         (rcirc-authenticate, rcirc-authinfo): Allow nickserv-nick to be
2855         specified.
2857 2009-10-15  Glenn Morris  <rgm@gnu.org>
2859         * w32-fns.el (w32-batch-update-autoloads): Take autoload-make-program
2860         from the second command-line argument.
2861         * makefile.w32-in (autoloads, $(lisp)/calendar/cal-loaddefs.el)
2862         ($(lisp)/calendar/diary-loaddefs.el, $(lisp)/calendar/hol-loaddefs.el)
2863         ($(lisp)/mh-e/mh-loaddefs.el): Pass $(MAKE) as second argument to
2864         w32-batch-update-autoloads.
2865         * emacs-lisp/autoload.el (autoload-make-program): New variable.
2866         (batch-update-autoloads): Handle autoload-excludes on windows-nt.
2868         * mail/rmailedit.el (rmail-cease-edit): Give an error if the end of
2869         the headers cannot be located.  Simplify, subtracting superflous
2870         save-excursions.
2872 2009-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2874         Replace completion-base-size by completion-base-position to fix bugs
2875         such as (bug#4699).
2876         * simple.el (completion-base-position): New var.
2877         (completion-base-size): Mark as obsolete.
2878         (choose-completion): Make it work for mouse events as well.
2879         Pass the new base-position to choose-completion-string.
2880         (choose-completion-guess-base-position): New function, extracted from
2881         choose-completion-delete-max-match.
2882         (choose-completion-delete-max-match): Use it.  Make obsolete.
2883         (choose-completion-string): Use the new base-position info.
2884         (completion-root-regexp): Delete.
2885         (completion-setup-function): Preserve completion-base-position.
2886         Eliminate obsolete base-size manipulation.
2887         * minibuffer.el (display-completion-list): Don't mess with base-size.
2888         (minibuffer-completion-help): Set completion-base-position instead.
2889         * mouse.el (mouse-choose-completion): Redefine as a mere alias to
2890         choose-completion.
2891         * textmodes/bibtex.el (bibtex-complete):
2892         * emacs-lisp/crm.el (crm--choose-completion-string):
2893         Adjust to new calling convention.
2894         * complete.el (partial-completion-mode): Use minibufferp to avoid
2895         bumping into incompatible change to choose-completion-string-functions.
2896         * ido.el (ido-choose-completion-string): Make its calling convention
2897         more permissive.
2898         * comint.el (comint-dynamic-list-input-ring-select): Remove obsolete
2899         base-size manipulation.
2900         (comint-dynamic-list-input-ring): Use dotimes and push.
2901         * iswitchb.el (iswitchb-completion-help): Remove dead-code call to
2902         fundamental-mode.  Use `or'.
2904 2009-10-14  Juri Linkov  <juri@jurta.org>
2906         * misearch.el (multi-isearch-next-buffer-from-list)
2907         (multi-isearch-next-file-buffer-from-list): Doc fix.  (Bug#4723)
2909 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2911         * Makefile.in (compile-onefile): Load `bytecomp' rather than
2912         `bytecomp.el'.
2914         * minibuffer.el (completion-pcm--merge-completions): Make sure the
2915         string we return is all made up of text from the completions rather
2916         than part from the completions and part from the input (bug#4219).
2918         * ido.el (ido-everywhere): Use define-minor-mode.
2920         * buff-menu.el (list-buffers, ctl-x-map):
2921         Mark the entry points with ;;;###autoload cookies.
2923 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
2925         * vc-git.el (vc-git-dir-extra-headers): Set the branch name
2926         correctly in the detached head case.
2927         (vc-git-print-log): Remove unused binding.
2929         * vc.el (vc-responsible-backend): When a directory is passed for
2930         for registration create a VC repository if no backend is
2931         responsible for the directory argument.
2932         (vc-deduce-fileset): Tell vc-responsible-backend to register.
2934         * vc.el: Move comments about RCS and SCCS ...
2935         * vc-rcs.el:
2936         * vc-sccs.el: ... here, respectively.
2938 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2940         * minibuffer.el (completion--file-name-table): Return nil if there's
2941         no file completion, even if substitute-in-file-name changed
2942         the string (bug#4708).
2944 2009-10-13  Juri Linkov  <juri@jurta.org>
2946         * files-x.el (read-file-local-variable-value): Don't filter out
2947         minor modes from mode name completion (bug#4664).
2949 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
2951         * international/mule-cmds.el (ucs-names): Remove exclusion of
2952         "Enclosed Ideographic Supplement" range (U+1F200..U+1F2FF).
2954 2009-10-13  Kenichi Handa  <handa@m17n.org>
2956         * international/uni-name.el: Regenerated.
2958 2009-10-13  Juanma Barranquero  <lekktu@gmail.com>
2960         * bs.el (bs-mode): Fix last change.  (`revert-buffer-function'
2961         should be automatically buffer-local, but isn't.)
2963 2009-10-12  Sam Steingold  <sds@gnu.org>
2965         * progmodes/compile.el (compilation-next-error-function): Fix the
2966         timestamps if the buffer has been visited before.
2967         (compilation-mode-font-lock-keywords): Do not prepend "^ *" to
2968         non-anchored patterns, like the perl one (bug#3928).
2970 2009-10-12  Glenn Morris  <rgm@gnu.org>
2972         * net/tramp-smb.el (tramp-smb-do-file-attributes-with-stat):
2973         Let-bind `size'.
2975 2009-10-12  Juanma Barranquero  <lekktu@gmail.com>
2977         * proced.el (proced-unload-function): New function.
2979         * bs.el (bs-mode): Set `revert-buffer-function' to `bs-refresh'.
2980         (bs-refresh): Add IGNORED arg for `revert-buffer' compatibility.
2981         Doc fix.
2983         * menu-bar.el (menu-bar-file-menu): Fix format of `separator-exit' item.
2985 2009-10-11  Juri Linkov  <juri@jurta.org>
2987         * files-x.el (read-file-local-variable-value):
2988         Provide default value only for bound variables (bug#4664).
2990 2009-10-11  Michael Albinus  <michael.albinus@gmx.de>
2992         * net/tramp.el (tramp-local-host-p): Function shall return nil for
2993         connection methods like smb.
2995         * net/tramp-cache.el (tramp-flush-connection-property): The hash
2996         can be empty.
2998         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
2999         (tramp-smb-file-name-handler-alist): Add handlers for
3000         `add-name-to-file', `make-symbolic-link'.
3001         (tramp-smb-handle-add-name-to-file)
3002         (tramp-smb-do-file-attributes-with-stat)
3003         (tramp-smb-handle-make-symbolic-link)
3004         (tramp-smb-get-cifs-capabilities): New defuns.
3005         (tramp-smb-handle-copy-directory, tramp-smb-handle-copy-file)
3006         (tramp-smb-handle-delete-directory, tramp-smb-handle-delete-file)
3007         (tramp-smb-handle-file-local-copy)
3008         (tramp-smb-handle-make-directory-internal)
3009         (tramp-smb-handle-rename-file, tramp-smb-handle-write-region):
3010         The file name syntax depends on cifs capabilities.
3011         (tramp-smb-handle-file-attributes):
3012         Call `tramp-smb-do-file-attributes-with-stat' if possible.
3013         (tramp-smb-handle-insert-directory): Use posix attributes if possible.
3014         (tramp-smb-handle-set-file-modes): It is applicable for posix only.
3016 2009-10-11  Chong Yidong  <cyd@stupidchicken.com>
3018         * emacs-lisp/eieio.el: Avoid requiring cl at runtime.
3019         (eieio-defclass): Apply deftype handler and setf-method properties
3020         directly.
3021         (eieio-add-new-slot): Avoid union function from cl library.
3022         (eieio--typep): New function.
3023         (eieio-perform-slot-validation): Use it.
3025 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
3027         * bookmark.el (bookmark-yank-word, bookmark-insert-current-bookmark):
3028         Update documentation to refer to the variables documented in r1.135.
3029         (Bug#4188)
3031 2009-10-10  Karl Fogel  <kfogel@red-bean.com>
3033         * bookmark.el (Info-suffix-list): Remove this unused variable.
3034         (bookmark-current-point): Remove this obsolete variable.
3035         (bookmark-set, bookmark-rename, bookmark-send-edited-annotation):
3036         Adjust for removal of bookmark-current-point.
3038         (bookmarks-already-loaded, bookmark-current-buffer)
3039         (bookmark-yank-point): Document.  (Bug#4188)
3041 2009-10-10  Glenn Morris  <rgm@gnu.org>
3043         * frame.el (frame-height): Doc fix.
3045         * calendar/calendar.el (calendar-split-width-threshold): New option.
3046         (calendar-basic-setup): Use calendar-split-width-threshold.
3048 2009-10-10  Sascha Wilde  <wilde@sha-bang.de>
3050         * cedet/ede/proj-shared.el (ede-proj-makefile-target-name):
3051         Use .la for Automake.
3053 2009-10-09  Chong Yidong  <cyd@stupidchicken.com>
3055         * cedet/ede/pconf.el (ede-proj-configure-synchronize):
3056         Use "autoreconf -i".  Suggested by Andreas Schwab.
3058 2009-10-09  Juanma Barranquero  <lekktu@gmail.com>
3060         * international/mule-cmds.el (ucs-names): Exclude new "Enclosed
3061         Ideographic Supplement" range (U+1F200..U+1F2FF).
3063 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
3065         * bookmark.el (bookmark-bmenu-rename): Don't call bookmark-bmenu-list,
3066         since the list will have been rebuilt anyway.  (Bug#4349)
3068 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
3070         * bookmark.el (bookmark-delete): Don't let batch arg prevent saving.
3071         (bookmark-bmenu-execute-deletions): Don't save here, as
3072         bookmark-delete will now do so if necessary.
3073         Suggested by Thierry Volpiatto <thierry.volpiatto {_AT_} gmail.com>.
3074         (Bug#4348)
3076 2009-10-09  Glenn Morris  <rgm@gnu.org>
3078         * mail/emacsbug.el (report-emacs-bug): Also print `features'.
3080 2009-10-09  Karl Fogel  <kfogel@red-bean.com>
3082         * bookmark.el (bookmark-jump): Add new `display-func' parameter.
3083         (bookmark-jump-other-window): Just invoke bookmark-jump with new
3084         argument now, so the two function's behaviors will match.  (Bug#3645)
3086 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
3088         * cedet/ede/proj.el (project-make-dist, project-compile-project):
3089         Fix filename test.
3090         (ede-proj-dist-makefile): Use expand-file-name instead of concat
3091         to expand file names.
3093 2009-10-08  Michael Albinus  <michael.albinus@gmx.de>
3095         * net/tramp.el (tramp-file-name-real-user, tramp-file-name-domain)
3096         (tramp-file-name-real-host, tramp-file-name-port):
3097         Apply `save-match-data'.
3099         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Handle the
3100         case both directories are remote.
3101         (tramp-smb-handle-expand-file-name): Implement "~" expansion.
3102         (tramp-smb-maybe-open-connection): Flush the cache only if necessary.
3104 2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
3106         * cedet/ede/proj-obj.el (ede-gcc-linker): New var.
3107         (ede-proj-target-makefile-objectcode): Use it.
3109         * cedet/ede/source.el (ede-want-any-source-files-p)
3110         (ede-want-any-auxiliary-files-p, ede-want-any-files-p):
3111         Return search result.  This error was introduced while merging.
3113 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
3115         * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
3117 2009-10-07  Glenn Morris  <rgm@gnu.org>
3119         * emacs-lisp/autoload.el (batch-update-autoloads): Remove useless use
3120         of concat.
3122 2009-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3124         * files-x.el (read-file-local-variable): Include some
3125         non-user-variables in the completion table (bug#4664).
3127 2009-10-07  Michael Albinus  <michael.albinus@gmx.de>
3129         * net/tramp-cache.el (tramp-flush-connection-property): Add trace
3130         message.
3132         * net/tramp-smb.el (tramp-smb-errors): Add error messages.
3133         (tramp-smb-file-name-handler-alist): Add handler for
3134         `copy-directory', `expand-file-name', `set-file-modes'.
3135         (tramp-smb-handle-copy-directory)
3136         (tramp-smb-handle-expand-file-name)
3137         (tramp-smb-handle-set-file-modes): New defuns.
3138         (tramp-smb-handle-copy-file): Handle KEEP-DATE.
3139         (tramp-smb-handle-file-attributes): Simplify check for retrieving
3140         entry.
3141         (tramp-smb-handle-insert-directory): Don't flush the cache.
3142         (tramp-smb-maybe-open-connection): Check for samba client and
3143         server versions.
3145 2009-10-07  Eli Zaretskii  <eliz@gnu.org>
3147         * emacs-lisp/autoload.el (batch-update-autoloads): Fix last change
3148         to not error out of search for "^lisp=" fails.
3150 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
3152         * makefile.w32-in (WINS_UPDATES): New macro.
3153         (custom-deps, finder-data, autoloads): Use it.
3155 2009-10-07  Glenn Morris  <rgm@gnu.org>
3157         * Makefile.in (autoloads): Revert previous change.
3158         * emacs-lisp/autoload.el (batch-update-autoloads): Rather than having
3159         the list of preloaded files passed on the command-line, get
3160         it from src/Makefile.
3162         * calendar/calendar.el (calendar-basic-setup): In the wide frame case,
3163         show the original buffer rather than a random one.
3165 2009-10-07  Markus Rost  <rost@math.uni-bielefeld.de>
3167         * help.el (describe-no-warranty): Place point in a slightly better
3168         position in the GPLv3 text.
3170 2009-10-06  Sam Steingold  <sds@gnu.org>
3172         * net/tramp-compat.el (tramp-compat-process-running-p): Check that
3173         the comm attribute is present before calling regexp-quote.
3175 2009-10-06  Juanma Barranquero  <lekktu@gmail.com>
3177         * play/animate.el (animate-string): For good effect, make sure
3178         `indent-tabs-mode' and `show-trailing-whitespace' are nil.
3180         * play/animate.el (animate-sequence, animate-birthday-present):
3181         * misc.el (butterfly): Don't set `indent-tabs-mode'.
3183 2009-10-06  Glenn Morris  <rgm@gnu.org>
3185         * emacs-lisp/byte-run.el (define-obsolete-face-alias): Doc fix.
3187         * emacs-lisp/autoload.el (autoload-excludes): New variable.
3188         (autoload-generate-file-autoloads): Skip files in autoload-excludes.
3189         (batch-update-autoloads): Process a string value of autoload-excludes,
3190         set during the build process.
3191         * Makefile.in (autoloads): Skip preloaded files.  (Bug#4446)
3193         * net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
3194         inside with-parsed...  macro so that `v' is defined.
3196         * progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
3197         * progmodes/fortran.el (fortran-end-of-block)
3198         (fortran-beginning-of-block):
3199         Also push mark in the macro case.
3201         * emerge.el (emerge-show-file-name):
3202         * calc/calc.el (calc-quit):
3203         * calc/calc-misc.el (calc-big-or-small):
3204         * calc/calc-graph.el (calc-graph-view):
3205         * calc/calc-ext.el (calc-reset):
3206         * calendar/calendar.el (calendar-basic-setup):
3207         Use window-full-height-p.
3209         * mail/rmailedit.el (rmail-cease-edit): If there is a Content-Type
3210         header we don't understand, don't insert another.  (Bug#4624)
3211         If changing mime charset, insert the new one in the right place.
3213 2009-10-06  Matthew Junker  <matthew.junker@sbcglobal.net>  (tiny change)
3215         * calendar/cal-tex.el (cal-tex-cursor-month-landscape)
3216         (cal-tex-cursor-month): Correctly increment the end date for diary and
3217         holiday listing.  (Bug#4626)
3219 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3221         * help-fns.el (describe-function-1): Don't burp if the function is not
3222         a symbol.
3224 2009-10-05  Juanma Barranquero  <lekktu@gmail.com>
3226         * emacs-lisp/chart.el (chart-face-pixmap-list, chart-new-buffer, chart)
3227         (chart-axis-range, chart-axis-names, chart-sequece, chart-bar)
3228         (chart-draw, chart-axis-draw, chart-sort, chart-sort-matchlist)
3229         (chart-draw-line, chart-bar-quickie): Fix typos in docstrings.
3231         * emacs-lisp/eieio.el (generic-p, eieiomt-next, eieio-generic-form)
3232         (eieio-default-superclass): Reflow docstrings.
3233         (this, class-option-assoc, defclass, eieio-class-un-autoload)
3234         (eieio-unbind-method-implementations, defmethod)
3235         (eieio-validate-slot-value, eieio-validate-class-slot-value)
3236         (oref-default, eieio-oref-default, eieio-oset, eieio-oset-default)
3237         (with-slots, eieio-add-new-slot, object-assoc, object-remove-from-list)
3238         (eieio-slot-originating-class-p, eieio-slot-name-index)
3239         (eieio-pre-method-execution-hooks, eieio-initarg-to-attribute)
3240         (constructor, initialize-instance, no-next-method, object-print)
3241         (object-write, eieio-override-prin1, eieio-edebug-prin1-to-string):
3242         Fix typos in docstrings.
3243         (eieio-defclass, eieio-perform-slot-validation-for-default, defgeneric)
3244         (child-of-class-p, object-slots, slot-boundp, slot-exists-p)
3245         (next-method-p): Doc fixes.
3246         (eieio-add-new-slot, call-next-method, eieiomt-add, change-class):
3247         Fix typos in error messages.
3248         (eieio-defmethod): Fix typo in description of generic method.
3250         * emacs-lisp/eieio-base.el (eieio-instance-inheritor, slot-unbound)
3251         (eieio-persistent-save-interactive, slot-missing):
3252         Fix typos in docstrings.
3253         (eieio-instance-inheritor-slot-boundp): Doc fix.
3255         * emacs-lisp/eieio-comp.el (byte-compile-file-form-defmethod)
3256         (byte-compile-defmethod-param-convert): Fix typos in docstrings.
3258         * emacs-lisp/eieio-custom.el (eieio-done-customizing)
3259         (eieio-custom-object-apply-reset):
3260         Fix typos in docstrings and error messages.
3262         * emacs-lisp/eieio-datadebug.el (data-debug-show):
3263         Fix typo in docstring.
3265         * emacs-lisp/eieio-opt.el (top): Fix typo in error message.
3266         (eieio-browse-tree): Doc fix.
3267         (eieio-all-generic-functions, eieio-class-speedbar): Reflow docstrings.
3268         (eieio-help-mode-augmentation-maybee, eieio-class-speedbar-make-map):
3269         Fix typos in docstrings.
3271         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-file-button): Doc fix.
3272         (eieio-speedbar-key-map, eieio-speedbar-create-engine)
3273         (eieio-speedbar-buttons, eieio-speedbar, eieio-speedbar-object-children)
3274         (eieio-speedbar-make-tag-line, eieio-speedbar-object-expand):
3275         Reflow docstrings.
3277 2009-10-05  Dan Nicolaescu  <dann@ics.uci.edu>
3279         * vc-hg.el (log-view-vc-backend): Declare for compiler.
3280         (vc-hg-outgoing-mode, vc-hg-incoming-mode):
3281         Set log-view-vc-backend so that diff can work.
3283         * log-view.el (log-view-diff): Use vc-diff-internal instead of
3284         vc-version-diff.
3285         (vc-diff-internal): Autoload this instead of vc-version-diff.
3287 2009-10-05  Eli Zaretskii  <eliz@gnu.org>
3289         * simple.el (eval-expression): Doc fix.
3291         * progmodes/cwarn.el (cwarn-mode): Doc fix.
3293 2009-10-05  Michael Albinus  <michael.albinus@gmx.de>
3295         * files.el (directory-files-no-dot-files-regexp): New defconst.
3296         (delete-directory): Use it.
3297         (copy-directory): Use it.  Remove parameter PRESERVE-UID-GID.
3299         * net/tramp.el (tramp-verbose): Fix docstring.
3300         (tramp-methods): Add recursive option to `tramp-copy-args'.
3301         Add `tramp-copy-recursive'.  Valid for "rcp", "scp", "scp1", "scp2",
3302         "scp1_old", "scp2_old", "rsync", "rsyncc".
3303         (tramp-default-method): Check also for `auth-source-user-or-password'.
3304         (tramp-file-name-handler-alist, tramp-file-name-for-operation):
3305         Add handler for `copy-directory'.
3306         (tramp-handle-copy-directory): New defun.
3307         (tramp-do-copy-or-rename-file-out-of-band): Handle directory case.
3308         (tramp-handle-start-file-process): Raise an error when PROGRAM is nil.
3309         Optimize sent command.
3311 2009-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3313         * calendar/diary-lib.el (diary-show-all-entries): Re-fit the calendar
3314         window if necessary.
3316         * calendar/calendar.el (calendar-basic-setup): Don't call
3317         switch-to-buffer in a dedicated window.
3319 2009-10-05  Karl Fogel  <kfogel@red-bean.com>
3321         * bookmark.el (bookmark-handle-bookmark): If bookmark has no file,
3322           don't do anything related to relocating, just return nil.
3323         (bookmark-error-no-filename): New error.
3324         (bookmark-default-handler): Signal `bookmark-error-no-filename' if
3325           bookmark has no file.  Don't even attempt to handle things that
3326           are not files; the whole point of custom handlers is to keep that
3327           knowledge elsewhere anyway.  Tighten some comments.
3328         (bookmark-file-or-variation-thereof): Remove now-unused function.
3329         (bookmark-location): Doc string fix.
3330         (Bug#4250)
3332 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
3334         * bookmark.el (bookmark-handle-bookmark): When relocating a bookmark,
3335         don't use a file dialog, because they usually don't know how to read
3336         a directory target from the user.  (Bug#4230)
3337         Also, make sure the prompt can display directories as well as files.
3339 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
3341         * bookmark.el (bookmark-set, bookmark-buffer-name):
3342         Improve doc strings.  (Bug#1193)
3344 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
3346         * bookmark.el (bookmark-get-bookmark, bookmark-get-bookmark-record)
3347         (bookmark-set-name, bookmark-prop-get, bookmark-prop-set)
3348         (bookmark-get-annotation, bookmark-set-annotation)
3349         (bookmark-get-filename, bookmark-set-filename, bookmark-get-position)
3350         (bookmark-set-position, bookmark-get-front-context-string)
3351         (bookmark-set-front-context-string, bookmark-get-rear-context-string)
3352         (bookmark-set-rear-context-string, bookmark-location, bookmark-jump)
3353         (bookmark-jump-other-window, bookmark-handle-bookmark)
3354         (bookmark-relocate, bookmark-insert-location, bookmark-rename)
3355         (bookmark-insert, bookmark-delete, bookmark-time-to-save-p)
3356         (bookmark-edit-annotation-mode, bookmark-edit-annotation):
3357            Improve doc strings to say whether bookmark can be a string or
3358            a record or both, and make other consistency and clarity fixes.
3359         (bookmark-get-handler, bookmark--jump-via, bookmark-write-file)
3360         (bookmark-default-annotation-text, bookmark-yank-word)
3361         (bookmark-maybe-load-default-file, bookmark-maybe-sort-alist)
3362         (bookmark-import-new-list, bookmark-maybe-rename)
3363         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
3364         (bookmark-bmenu-bookmark): Give these doc strings.
3365         (bookmark-bmenu-check-position): Give this a doc string, but also
3366            add a FIXME comment about how the function may be pointless.
3367         (bookmark-default-handler): Rework doc string and change a
3368            parameter name, to clarify that this takes a bookmark record
3369            not a bookmark name.
3370         (bookmark-set): Change a parameter name to indicate its meaning,
3371            and improve the doc string a bit.
3372         (Bug#4188)
3374 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
3376         * bookmark.el (bookmark-alist): Document the new `handler' element
3377         in the param alist.
3378         (bookmark-make-record-function): Adjust documentation for above.
3379         (Bug#4193)
3381 2009-10-04  Karl Fogel  <kfogel@red-bean.com>
3383         * info.el (Info-bookmark-make-record): Document this function.
3384         (Info-bookmark-jump): Document with a doc string, not just a comment.
3385         (Bug#4203)
3387 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
3389         * cedet/semantic.el (semantic-new-buffer-setup-functions): New option.
3390         (semantic-new-buffer-fcn): Call parser setup functions here.
3391         (semantic-mode): Don't call parser setup functions here, it's done
3392         in semantic-new-buffer-fcn now.
3393         (semantic-mode): Parse all existing buffers when enabled.
3395         * cedet/srecode/compile.el (srecode-compile-file):
3396         Call semantic-new-buffer-fcn if the buffer has not been parsed.
3398 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
3400         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): Delete.
3402         * cedet/ede/proj-comp.el: Don't require ede/pmake at toplevel.
3403         (proj-comp-insert-variable-once): New macro, renamed from
3404         ede-pmake-insert-variable-once in ede/pmake.edl.
3405         (ede-proj-makefile-insert-variables): Use it.
3407 2009-10-04  Michael Albinus  <michael.albinus@gmx.de>
3409         * files.el (copy-directory): New defun.
3411         * dired-aux.el (dired-copy-file-recursive): Use it.
3413 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
3415         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
3416         (makefile-end-of-command):
3417         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
3418         (semantic-end-of-context): Fix previous change.  Doc fixes.
3420 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
3422         * files-x.el (modify-dir-local-variable)
3423         (copy-dir-locals-to-file-locals-prop-line):
3424         * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
3425         (makefile-end-of-command):
3426         * cedet/semantic/lex.el (semantic-lex-token):
3427         * cedet/semantic/analyze/fcn.el
3428         (semantic-analyze-dereference-metatype-1):
3429         * cedet/semantic/bovine/c.el (semantic-lex-cpp-define)
3430         (semantic-lex-cpp-undef):
3431         * cedet/semantic/wisent/wisent.el (wisent-skip-block):
3432         * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
3433         (semantic-end-of-context): Fix typos in docstrings.
3435         * recentf.el (recentf-unload-function): New function.
3437 2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
3439         * cedet/ede.el (ede-project-placeholder-cache-file):
3440         * cedet/semantic/db-file.el (semanticdb-default-save-directory):
3441         * cedet/srecode/map.el (srecode-map-save-file):
3442         Use locate-user-emacs-file.  Suggested by Juanma Barranquero.
3444 2009-10-04  Glenn Morris  <rgm@gnu.org>
3446         * window.el (window-full-height-p): Add doc string.
3448 2009-10-04  Martin Rudalics  <rudalics@gmx.at>
3450         * window.el (window-full-height-p): New function.  (Bug#4543)
3452 2009-10-03  Chong Yidong  <cyd@stupidchicken.com>
3454         * cedet/srecode/insert.el: Require srecode/args.
3456         * cedet/srecode/args.el: Require srecode/dictionary instead of
3457         srecode/insert.
3459         * cedet/srecode/srt-mode.el (srecode-template-mode): Doc fix.
3461         * files.el (auto-mode-alist): Add .srt and Project.ede.
3463         * cedet/semantic.el (semantic-mode):
3464         Handle srecode-template-mode-hook as well.
3465         (semantic-mode): Use js-mode-hook for Javascript hook.
3467         * cedet/srecode/template.el: Remove hook variable.
3469         * cedet/ede/proj-comp.el: Require ede/pmake when compiling.
3471         * cedet/ede.el (ede-target-forms-menu): Don't enable if no
3472         projects exist.
3473         (ede-project-placeholder-cache-file): Default to a file in
3474         user-emacs-directory.
3476         * cedet/srecode/map.el (srecode-map-base-template-dir): Look for
3477         templates in data-directory.
3478         (srecode-map-save-file): Default to a file in user-emacs-directory.
3480         * cedet/ede/srecode.el (ede-srecode-setup): Use default templates
3481         directory.
3483 2009-09-30  Eric Ludlam  <zappo@gnu.org>
3485         * cedet/semantic/util-modes.el (semantic-highlight-func-mode):
3486         Doc fix.
3488         * cedet/ede/proj-comp.el (ede-proj-makefile-insert-variables):
3489         Only insert each variable once.
3491         * cedet/ede/pmake.el (ede-pmake-insert-variable-once): New macro.
3492         (ede-pmake-insert-variable-shared): Use it.
3494         * cedet/ede/cpp-root.el (ede-preprocessor-map): Do not deref table
3495         for lexical table iff table is nil.
3497 2009-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
3499         * vc.el: Remove commented out code.
3500         (vc-derived-from-dir-mode): Remove, unused.
3501         (vc-version-diff, vc-diff): Consistently pass t to vc-deduce-fileset.
3503 2009-10-03  Michael Albinus  <michael.albinus@gmx.de>
3505         * net/tramp-ftp.el (tramp-ftp-file-name-handler):
3506         Disable `file-name-handler-alist' when loading 'ange-ftp.  Otherwise,
3507         there could be recursive loading when `default-directory' is a
3508         remote file name.  (Bug#4614)
3510 2009-10-03  Glenn Morris  <rgm@gnu.org>
3512         * calendar/calendar.el (calendar-basic-setup): Handle the case where
3513         the frame is wide.
3514         (calendar-generate-window): Test for shrinkability rather than width.
3516         * cedet/semantic/db-find.el (data-debug-insert-tag-list): Comment out
3517         declaration, currently false.
3519         * mail/rmail.el (rmail-generate-viewer-buffer): Be more careful about
3520         reusing existing buffers, in case we happen to visit two files with the
3521         same basename.  (Bug#4593)
3523 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
3525         * makefile.w32-in (update-subdirs-CMD): Add cedet to $(WINS_SUBDIR).
3526         (WINS_CEDET_SUBDIRS): List of subdirectories of cedet.
3527         (bootstrap-clean-CMD, bootstrap-clean-SH): Remove *.elc files in
3528         subdirs of cedet as well.
3529         (AUTOGENEL): Add loaddefs.el files in cedet subdirectories.
3531 2009-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
3533         * emacs-lisp/eldoc.el (eldoc-get-fnsym-args-string):
3534         Obey advertised-signature-table.
3536         * help-fns.el (help-function-arglist): Don't check
3537         advertised-signature-table.
3538         (describe-function-1): Do it here instead so it also applies to subrs.
3540 2009-10-02  Michael Albinus  <michael.albinus@gmx.de>
3542         * simple.el (start-file-process): Say in the doc-string, that file
3543         handlers might not support pty association, if PROGRAM is nil.
3545         * net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
3546         HOST and USER are strings.  They are nil, when there are
3547         incomplete entries in ~/.netrc, for example.
3548         (ange-ftp-delete-directory): Implement RECURSIVE case.  Change to
3549         root directory ("device busy" error otherwise).
3551         * net/tramp-smb.el (tramp-smb-handle-make-directory-internal):
3552         Flush file properties of created directory.
3554 2009-10-02  Eli Zaretskii  <eliz@gnu.org>
3556         * makefile.w32-in (WINS_BASIC): Remove cedet.
3557         (WINS_CEDET): Add cedet.
3558         (update-subdirs-SH): Use $(WINS_SUBDIR), not $(WINS).
3560 2009-10-02  Kevin Ryde  <user42@zip.com.au>
3562         * net/browse-url.el (browse-url): Pass any symbol in
3563         browse-url-browser-function to `apply', since if you've mistakenly put
3564         an unbound symbol then the error is clearer.  (Bug#4531)
3566 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
3568         * allout.el (allout-init, allout-back-to-current-heading)
3569         (allout-beginning-of-current-entry, allout-ascend-to-depth)
3570         (allout-ascend, allout-up-current-level, allout-end-of-level)
3571         (allout-previous-visible-heading, allout-forward-current-level)
3572         (allout-backward-current-level, allout-show-children):
3573         * apropos.el (apropos-describe-plist):
3574         * bookmark.el (bookmark-maybe-historicize-string, bookmark-bmenu-list):
3575         * comint.el (comint-strip-ctrl-m, comint-goto-process-mark):
3576         * completion.el (add-completion, add-permanent-completion):
3577         * descr-text.el (describe-text-category, describe-char):
3578         * desktop.el (desktop-lazy-abort):
3579         * dired-x.el (dired-omit-expunge, dired-x-bind-find-file):
3580         * dired.el (dired-build-subdir-alist):
3581         * ediff.el (ediff-version):
3582         * elide-head.el (elide-head, elide-head-show):
3583         * emerge.el (emerge-version):
3584         * env.el (getenv):
3585         * face-remap.el (variable-pitch-mode):
3586         * faces.el (describe-face):
3587         * ffap.el (ffap-next-url, find-file-at-point, ffap-at-mouse)
3588         (dired-at-point):
3589         * files.el (find-file-existing, auto-save-mode):
3590         * font-lock.el (font-lock-fontify-buffer):
3591         * help-fns.el (describe-function, describe-variable)
3592         (describe-syntax, describe-categories):
3593         * help.el (view-lossage, describe-bindings, describe-key)
3594         (describe-mode):
3595         * hexl.el (hexl-current-address):
3596         * hi-lock.el (hi-lock-mode, hi-lock-find-patterns):
3597         * info.el (Info-goto-emacs-key-command-node):
3598         * log-edit.el (log-edit-insert-cvs-template)
3599         (log-edit-insert-cvs-rcstemplate):
3600         * menu-bar.el (menu-bar-mode):
3601         * mouse.el (mouse-appearance-menu):
3602         * newcomment.el (comment-indent-new-line):
3603         * pgg.el (pgg-save-coding-system, pgg-encrypt-region)
3604         (pgg-encrypt-symmetric-region, pgg-encrypt-symmetric)
3605         (pgg-encrypt, pgg-decrypt-region, pgg-decrypt, )
3606         (pgg-sign-region, pgg-sign, pgg-verify-region, pgg-verify):
3607         * recentf.el (recentf-mode):
3608         * savehist.el (savehist-mode, savehist-save):
3609         * shadowfile.el (shadow-copy-files):
3610         * simple.el (kill-ring-save, next-line, previous-line)
3611         (normal-erase-is-backspace-mode):
3612         * strokes.el (strokes-update-window-configuration)
3613         (strokes-load-user-strokes, strokes-prompt-user-save-strokes)
3614         (strokes-xpm-for-stroke):
3615         * time.el (emacs-uptime, emacs-init-time):
3616         * tutorial.el (tutorial--describe-nonstandard-key)
3617         (tutorial--detailed-help):
3618         * type-break.el (type-break-mode)
3619         (type-break-mode-line-message-mode, type-break-query-mode)
3620         (type-break-guesstimate-keystroke-threshold):
3621         * vc.el (vc-version-diff, vc-diff, vc-root-diff):
3622         * version.el (emacs-version):
3623         * vt-control.el (vt-keypad-on, vt-keypad-off, vt-numlock):
3624         * winner.el (winner-mode):
3625         * calendar/timeclock.el (timeclock-in, timeclock-out)
3626         (timeclock-status-string, timeclock-change)
3627         (timeclock-workday-remaining-string)
3628         (timeclock-workday-elapsed-string)
3629         (timeclock-when-to-leave-string):
3630         * calendar/todo-mode.el (todo-add-category):
3631         * emacs-lisp/advice.el (ad-enable-regexp, ad-disable-regexp):
3632         * emacs-lisp/autoload.el (update-file-autoloads):
3633         * emacs-lisp/checkdoc.el (checkdoc-current-buffer)
3634         (checkdoc-start, checkdoc-continue, checkdoc-rogue-spaces)
3635         (checkdoc-message-text, checkdoc-defun):
3636         * emacs-lisp/debug.el (debugger-list-functions):
3637         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3638         * emacs-lisp/eieio-opt.el (eieio-describe-class)
3639         (eieio-describe-generic):
3640         * emacs-lisp/lisp-mnt.el (lm-synopsis):
3641         * emacs-lisp/shadow.el (list-load-path-shadows):
3642         * emulation/cua-base.el (cua-mode):
3643         * emulation/edt.el (edt-set-scroll-margins):
3644         * emulation/tpu-edt.el (tpu-toggle-newline-and-indent)
3645         (tpu-toggle-regexp, tpu-toggle-search-direction)
3646         (tpu-toggle-rectangle, tpu-toggle-control-keys):
3647         * emulation/tpu-extras.el (tpu-set-scroll-margins):
3648         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
3649         (viper-set-parsing-style-toggling-macro)
3650         (viper-set-emacs-state-searchstyle-macros):
3651         * emulation/viper.el (viper-set-hooks):
3652         * eshell/esh-mode.el (eshell-truncate-buffer):
3653         * international/mule-cmds.el (prefer-coding-system)
3654         (describe-input-method, describe-language-environment):
3655         * international/mule-diag.el (list-character-sets)
3656         (describe-character-set, describe-coding-system)
3657         (describe-fontset, list-fontsets, list-input-methods):
3658         * mail/sendmail.el (mail-signature):
3659         * net/ange-ftp.el (ange-ftp-copy-file):
3660         * net/browse-url.el (browse-url):
3661         * net/eudc.el (eudc-set-server, eudc-get-attribute-list):
3662         * net/quickurl.el (quickurl-add-url):
3663         * net/rcirc.el (names, topic):
3664         * net/xesam.el (xesam-mode):
3665         * play/5x5.el (5x5-new-game):
3666         * play/yow.el (apropos-zippy):
3667         * progmodes/ada-mode.el (ada-mode-version):
3668         * progmodes/f90.el (f90-beginning-of-subprogram, f90-end-of-subprogram)
3669         (f90-end-of-block)
3670         (f90-beginning-of-block):
3671         * progmodes/fortran.el (fortran-end-of-block)
3672         (fortran-beginning-of-block):
3673         * progmodes/js.el (js-syntactic-context, js-gc, js-eval):
3674         * progmodes/python.el (python-describe-symbol, python-shell):
3675         * term/ns-win.el (ns-print-buffer):
3676         * textmodes/bibtex.el (bibtex-end-of-entry, bibtex-url):
3677         * textmodes/flyspell.el (flyspell-mode-on):
3678         * textmodes/page-ext.el (set-page-delimiter, pages-directory)
3679         (pages-directory-for-addresses):
3680         * textmodes/table.el (table-recognize-cell)
3681         (table-query-dimension, table-generate-source)
3682         (table-insert-sequence, table--warn-incompatibility):
3683         * textmodes/tex-mode.el (tex-validate-buffer):
3684         * textmodes/texinfmt.el (texinfmt-version)
3685         (texinfo-format-buffer):
3686         Use `called-interactively-p' instead of `interactive-p'.
3688 2009-10-02  Juanma Barranquero  <lekktu@gmail.com>
3690         * image-mode.el (image-toggle-display):
3691         * emacs-lisp/elp.el (elp-instrument-function):
3692         * emacs-lisp/advice.el (ad-make-advised-definition):
3693         * emacs-lisp/easy-mmode.el (define-minor-mode):
3694         * net/browse-url.el (browse-url-maybe-new-window):
3695         * progmodes/sh-script.el (sh-learn-buffer-indent):
3696         Pass new argument 'any to `called-interactively-p'.
3698 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
3700         * international/uni-bidi.el:
3701         * international/uni-category.el:
3702         * international/uni-combining.el:
3703         * international/uni-comment.el:
3704         * international/uni-decimal.el:
3705         * international/uni-decomposition.el:
3706         * international/uni-digit.el:
3707         * international/uni-lowercase.el:
3708         * international/uni-mirrored.el:
3709         * international/uni-name.el:
3710         * international/uni-numeric.el:
3711         * international/uni-old-name.el:
3712         * international/uni-titlecase.el:
3713         * international/uni-uppercase.el:
3714         Regenerate from Unicode 5.2.0 data.
3716 2009-10-01  Glenn Morris  <rgm@gnu.org>
3718         * Makefile.in (ELCFILES): Regenerate.
3720 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3722         * subr.el (interactive-p): Mark obsolete.
3723         (called-interactively-p): Make the optional-ness of `kind' obsolete.
3724         * emacs-lisp/bytecomp.el (byte-compile-fdefinition): Make it obey
3725         advertised-signature-table for subroutines as well.
3727         * emacs-lisp/byte-run.el (advertised-signature-table): New var.
3728         (set-advertised-calling-convention): New function.
3729         (make-obsolete, define-obsolete-function-alias)
3730         (make-obsolete-variable, define-obsolete-variable-alias):
3731         Make the optional-ness of `when' obsolete.
3732         (define-obsolete-face-alias): Make `when' non-optional.
3733         * help-fns.el (help-function-arglist):
3734         * emacs-lisp/bytecomp.el (byte-compile-fdefinition):
3735         Use advertised-signature-table.
3737 2009-10-01  Michael Albinus  <michael.albinus@gmx.de>
3739         * files.el (delete-directory): New defun.  The original function
3740         in fileio.c has been renamed to `delete-directory-internal'.
3742         * dired.el (dired-delete-file): Call `delete-directory' with
3743         RECURSIVE parameter.
3745         * net/ange-ftp.el (ange-ftp-delete-directory ): Add optional
3746         parameter RECURSIVE.  Implementation is missing.
3748         * net/tramp.el (tramp-handle-make-directory): Flush upper
3749         directory's file properties.
3750         (tramp-handle-delete-directory): Handle optional parameter RECURSIVE.
3751         (tramp-handle-dired-recursive-delete-directory): Flush directory
3752         properties after the remove command only.
3754         * net/tramp-fish.el (tramp-fish-handle-delete-directory):
3755         Handle optional parameter RECURSIVE.
3757         * net/tramp-gvfs.el (tramp-gvfs-handle-delete-directory):
3758         Handle optional parameter RECURSIVE.
3760         * net/tramp-smb.el (tramp-smb-errors): Add error message for
3761         connection timeout.
3762         (tramp-smb-handle-delete-directory): Handle optional parameter
3763         RECURSIVE.
3765 2009-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3767         * emacs-lisp/bytecomp.el (byte-compile-defmacro-declaration): New fun.
3768         (byte-compile-file-form-defmumble, byte-compile-defmacro): Use it.
3769         (byte-compile-defmacro): Use backquotes.
3771         * files.el (cd-absolute): Don't abbreviate-file-name (bug#4599).
3773         * vc-dispatcher.el (vc-resynch-window): Don't revert a buffer which
3774         has no associated file.
3775         (vc-resynch-buffer): Use vc-dir-buffers.
3777 2009-10-01  Glenn Morris  <rgm@gnu.org>
3779         * emacs-lisp/chart.el (chart-zap-chars, chart-bar-quickie)
3780         (chart-file-count):
3781         * emacs-lisp/eieio-comp.el (byte-compile-defmethod-param-convert):
3782         * emacs-lisp/eieio-datadebug.el (data-debug-insert-object-button):
3783         * emacs-lisp/eieio-opt.el (eieio-describe-class):
3784         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-create):
3785         * emacs-lisp/eieio.el (defclass, eieio-defclass-autoload)
3786         (eieio-copy-parents-into-subclass, make-instance, class-children)
3787         (eieio-generic-form):
3788         * cedet/cedet-files.el (cedet-directory-name-to-file-name):
3789         * cedet/cedet-idutils.el (cedet-idutils-search)
3790         (cedet-idutils-expand-filename, cedet-idutils-support-for-directory)
3791         (cedet-idutils-version-check):
3792         * cedet/cedet.el (cedet-version):
3793         * cedet/data-debug.el (data-debug-insert-overlay-button)
3794         (data-debug-insert-overlay-list-button)
3795         (data-debug-insert-buffer-button)
3796         (data-debug-insert-buffer-list-button)
3797         (data-debug-insert-process-button, data-debug-insert-ring-button)
3798         (data-debug-insert-widget, data-debug-insert-stuff-list-button)
3799         (data-debug-insert-stuff-vector-button)
3800         (data-debug-insert-symbol-button, data-debug-insert-string)
3801         (data-debug-insert-number, data-debug-insert-lambda-expression)
3802         (data-debug-insert-nil, data-debug-insert-simple-thing)
3803         (data-debug-insert-custom, data-debug-edebug-expr):
3804         * cedet/ede.el (ede-auto-add-method, ede-project-class-files)
3805         (global-ede-mode-map, ede-new, ede-debug-target)
3806         (ede-customize-current-target, ede-buffers, ede-map-buffers, ede-set):
3807         * cedet/semantic.el (semantic-minimum-working-buffer-size)
3808         (semantic-fetch-tags, semantic-submode-list)
3809         (semantic-default-submodes):
3810         * cedet/ede/source.el (ede-source-match):
3811         * cedet/ede/project-am.el (project-am-type-alist, project-add-file)
3812         (project-am-package-info):
3813         * cedet/ede/proj.el (ede-proj-target, project-new-target):
3814         * cedet/ede/proj-elisp.el (ede-proj-tweak-autoconf):
3815         * cedet/ede/proj-comp.el (ede-current-build-list):
3816         * cedet/ede/makefile-edit.el (makefile-move-to-macro):
3817         * cedet/ede/files.el (ede-toplevel-project-or-nil):
3818         * cedet/ede/cpp-root.el (initialize-instance):
3819         * cedet/ede/autoconf-edit.el (autoconf-find-last-macro)
3820         (autoconf-parameter-strip, autoconf-insert-new-macro):
3821         * cedet/semantic/wisent.el (wisent-lex-eoi):
3822         * cedet/semantic/util-modes.el (global-semantic-show-parser-state-mode)
3823         (semantic-show-parser-state-mode):
3824         * cedet/semantic/texi.el (semantic-texi-environment-regexp):
3825         * cedet/semantic/tag.el (semantic-tag-new-variable)
3826         (semantic-tag-class, semantic-tag-new-variable, semantic-tag-copy)
3827         (semantic--tag-deep-copy-attributes, semantic--tag-deep-copy-value)
3828         (semantic--tag-deep-copy-tag-list)
3829         (semantic-tag-components-with-overlays-default):
3830         * cedet/semantic/symref.el (semantic-symref-find-text):
3831         * cedet/semantic/senator.el (senator-yank-tag)
3832         (senator-transpose-tags-up):
3833         * cedet/semantic/scope.el (semantic-analyze-scoped-tags-default)
3834         (semantic-analyze-scoped-inherited-tags, semantic-scope-find):
3835         * cedet/semantic/sb.el (semantic-sb-autoexpand-length):
3836         * cedet/semantic/lex.el (semantic-lex-comment-regex)
3837         (semantic-lex-maximum-depth, define-lex, semantic-lex-token)
3838         (semantic-lex-unterminated-syntax-protection, define-lex-analyzer):
3839         * cedet/semantic/lex-spp.el
3840         (semantic-lex-spp-dynamic-macro-symbol-obarray-stack)
3841         (semantic-lex-spp-symbol, semantic-lex-spp-one-token-to-txt):
3842         * cedet/semantic/idle.el
3843         (semantic-idle-summary-current-symbol-info-brutish)
3844         (semantic-idle-summary-current-symbol-info-default):
3845         * cedet/semantic/grammar.el (semantic-grammar-recreate-package)
3846         (semantic--grammar-macro-compl-dict):
3847         * cedet/semantic/grammar-wy.el (semantic-grammar-wy--parse-table):
3848         * cedet/semantic/format.el (semantic-format-tag-custom-list)
3849         (semantic-format-tag-canonical-name-default):
3850         * cedet/semantic/find.el (semantic-find-tag-by-overlay-in-region)
3851         (semantic-find-tags-for-completion)
3852         (semantic-find-tags-by-scope-protection-default)
3853         (semantic-deep-find-tags-for-completion):
3854         * cedet/semantic/edit.el
3855         (semantic-edits-incremental-reparse-failed-hook)
3856         (semantic-edits-verbose-flag, semantic-edits-assert-valid-region)
3857         (semantic-edits-splice-remove, semantic-edits-splice-replace):
3858         * cedet/semantic/doc.el (semantic-documentation-comment-preceeding-tag):
3859         * cedet/semantic/dep.el (semantic-dependency-include-path):
3860         * cedet/semantic/db.el (semanticdb-default-find-index-class)
3861         (semanticdb-match-any-mode, semanticdb-with-match-any-mode)
3862         (semanticdb-project-roots):
3863         * cedet/semantic/db-find.el (semanticdb-implied-include-tags)
3864         (semanticdb-find-adebug-insert-scanned-tag-cons)
3865         (semanticdb-find-log-buffer-name, semanticdb-find-result-mapc)
3866         (semanticdb-brute-deep-find-tags-for-completion):
3867         * cedet/semantic/db-ebrowse.el (semanticdb-ebrowse-add-tree-to-table):
3868         * cedet/semantic/ctxt.el (semantic-beginning-of-context-default)
3869         (semantic-end-of-context-default)
3870         (semantic-ctxt-current-function-default)
3871         (semantic-ctxt-scoped-types-default):
3872         * cedet/semantic/complete.el (semantic-complete-read-tag-engine)
3873         (semantic-complete-inline-tag-engine)
3874         (semantic-complete-inline-custom-type)
3875         (semantic-complete-read-tag-analyzer):
3876         * cedet/semantic/chart.el (semantic-chart-tags-by-class)
3877         (semantic-chart-database-size):
3878         * cedet/semantic/analyze.el (semantic-analyze-current-symbol)
3879         (semantic-analyze-current-context):
3880         * cedet/semantic/symref/list.el (semantic-symref)
3881         (semantic-symref-hide-buffer, semantic-symref-symbol):
3882         * cedet/semantic/symref/grep.el (semantic-symref-grep-use-template):
3883         * cedet/semantic/symref/filter.el (semantic-symref-hits-in-region):
3884         * cedet/semantic/bovine/el.el (semantic-elisp-form-to-doc-string):
3885         * cedet/semantic/bovine/c.el (semantic-lex-c-preprocessor-symbol-map)
3886         (semantic-c-parse-token-hack-depth, semantic-c--template-name-1)
3887         (semantic-c-dereference-template):
3888         * cedet/semantic/analyze/refs.el (semantic--analyze-refs-full-lookup)
3889         (semantic--analyze-refs-full-lookup-with-parents)
3890         (semantic--analyze-refs-full-lookup-simple):
3891         * cedet/semantic/analyze/complete.el
3892         (semantic-analyze-possible-completions):
3893         * cedet/srecode/table.el (srecode-mode-table-new):
3894         * cedet/srecode/srt.el (srecode-read-variable-name):
3895         * cedet/srecode/srt-mode.el (srecode-macro-help, srecode-in-macro-p):
3896         * cedet/srecode/semantic.el (srecode-semantic-handle-:tag)
3897         (srecode-semantic-handle-:tagtype, srecode-semantic-insert-tag):
3898         * cedet/srecode/map.el (srecode-current-map):
3899         * cedet/srecode/insert.el (srecode-insert)
3900         (srecode-insert-variable-secondname-handler, srecode-insert-method)
3901         (srecode-template-inserter-point-override)
3902         (srecode-insert-include-lookup):
3903         * cedet/srecode/getset.el (srecode-auto-choose-class):
3904         * cedet/srecode/extract.el (srecode-inserter-extract):
3905         * cedet/srecode/document.el
3906         (srecode-document-autocomment-return-last-alist)
3907         (srecode-document-autocomment-param-type-alist)
3908         (srecode-document-insert-function-comment)
3909         (srecode-document-insert-variable-one-line-comment)
3910         (srecode-document-function-name-comment):
3911         * cedet/srecode/dictionary.el (srecode-create-dictionary)
3912         (srecode-compound-toString):
3913         * cedet/srecode/compile.el (srecode-flush-active-templates):
3914         * cedet/srecode/args.el (srecode-semantic-handle-:blank):
3915         Doc/message fixes.
3917         * vc-cvs.el (vc-cvs-parse-entry): Be more careful with the
3918         match-data.  (Bug#4555).
3920         * cedet/semantic/bovine/gcc.el
3921         (semantic-c-reset-preprocessor-symbol-map): Fix declaration.
3922         (semantic-gcc-get-include-paths, semantic-gcc-setup-data): Doc fixes.
3924         * emacs-lisp/check-declare.el (check-declare-scan): Read the declaration
3925         rather than parsing it as a regexp.  This relaxes the layout
3926         requirements and makes errors easier to detect.
3927         (check-declare-verify): Check file is regular.
3928         (check-declare-directory): Doc fix.
3929         * subr.el (declare-function): Doc fix.
3931         * ibuffer.el (ibuffer-format-qualifier):
3932         * isearch.el (hi-lock-regexp-okay):
3933         * calc/calc.el (math-zerop):
3934         * mail/uce.el (rmail-msgbeg, rmail-msgend):
3935         * term/w32-win.el (setup-default-fontset, set-fontset-font):
3936         Remove unused declarations.
3938 2009-10-01  Juanma Barranquero  <lekktu@gmail.com>
3940         * cedet/semantic/wisent/javat-wy.el
3941         (wisent-java-tags-wy--keyword-table): Use \000 instead of literal ^@.
3943 2009-09-30  Juanma Barranquero  <lekktu@gmail.com>
3945         * cedet/srecode/expandproto.el: Fix provide statement.
3947 2009-09-30  Eric Ludlam  <zappo@gnu.org>
3949         * emacs-lisp/eieio.el (boolean-p): Delete.
3951 2009-09-30  Sascha Wilde  <wilde@sha-bang.de>
3953         * cedet/ede/srecode.el: Fix provide statement.
3955 2009-09-30  Glenn Morris  <rgm@gnu.org>
3957         * cedet/ede/proj.el (ede-proj-target-makefile-miscelaneous):
3958         * cedet/ede/proj-aux.el (ede-aux-source):
3959         * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous)
3960         (ede-misc-source):
3961         * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read)
3962         (semantic-mrub-switch-tags): Fix doc typos.
3964         * cedet/semantic/db-global.el (data-debug-new-buffer)
3965         (data-debug-insert-thing): Remove unneeded declarations (one broken).
3966         (semanticdb-enable-gnu-global-databases): Fix prompt typo.
3968         * cedet/semantic/analyze/fcn.el (semantic-scope-find): Fix declaration.
3970         * cedet/semantic/bovine/gcc.el (semantic-gcc-setup): Replace runtime
3971         use of CL function `remove-if-not'.
3973         * emacs-lisp/authors.el (authors-ignored-files): Add "js2-mode.el".
3975         * emacs-lisp/elint.el (elint-init-form): Report declarations where the
3976         filename is not a string.
3978 2009-09-29  Chong Yidong  <cyd@stupidchicken.com>
3980         * files.el (safe-local-eval-forms): Fix typo.
3982 2009-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3984         * vc-hooks.el (vc-dir-buffers): New var.
3985         (vc-state-refresh): New function.
3986         (vc-state): Use it.
3987         (vc-after-save): Always ask the backend to recompute the new state.
3988         Always call vc-dir if necessary, using vc-dir-buffers.
3989         * vc-dir.el (vc-dir-prepare-status-buffer, vc-dir-resynch-file):
3990         Use vc-dir-buffers.
3991         (vc-dir-mode): Use vc-dir-buffers rather than after-save-hook.
3992         (vc-dir-prepare-status-buffer, vc-dir-update)
3993         (vc-dir-resync-directory-files, vc-dir-resynch-file, vc-dir-mode):
3994         Don't call expand-file-name on default-directory.
3996 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
3998         * speedbar.el (speedbar-item-delete):
3999         * calc/calc-prog.el (calc-kbd-if):
4000         * language/hanja-util.el (hanja-init-load): Fix typos in messages.
4002         * epa.el (epa-key-list-mode-map):
4003         * hi-lock.el (hi-lock-menu): Fix typos in menus.
4005         * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring.
4006         (hs-show-hook): Fix typo in docstring.
4008 2009-09-29  Glenn Morris  <rgm@gnu.org>
4010         * cedet/semantic/symref/idutils.el:
4011         * cedet/semantic/symref/list.el: Relicense under GPLv3+.
4013         * cedet/ede/srecode.el (srecode-resolve-arguments): Fix declaration.
4015         * cedet/semantic/complete.el (semantic-displayor-focus-abstract-child-p):
4016         * cedet/semantic/tag-file.el (semanticdb-table-child-p):
4017         * cedet/srecode/compile.el (srecode-template-inserter-newline-child-p):
4018         Mark declarations not understood by check-declare.
4020         * emacs-lisp/check-declare.el (check-declare-locate): Remove pointless
4021         file-name-nondirectory call preventing location of cedet files.
4022         (check-declare-verify): Use literal search rather than re-search.
4023         Add basic defmethod and defclass, and define-overloadable-function.
4025         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
4026         Use tramp-compat-file-attributes rather than nonexistent
4027         tramp-compat-handle-file-attributes.
4029         * Makefile.in (lisptagsfiles4): New.
4030         (AUTOGENEL): Add cedet loaddefs files.
4031         (TAGS, TAGS-LISP): Use $lisptagsfiles4.
4032         (update-elclist, compile-always, backup-compiled-files)
4033         (bootstrap-clean): Add yet another directory level.
4034         (update-elclist): Use LC_COLLATE rather than COLLATE.
4035         (ELCFILES): Update, via `make update-elclist'.
4037 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
4039         * makefile.w32-in (WINS_CEDET, WINS_BASIC, WINS_SUBDIR): New macros.
4040         (WINS_ALMOST): Set from WINS_BASIC and WINS_CEDET.
4041         (update-subdirs-CMD): Use WINS_SUBDIR, not WINS_ALMOST.
4043 2009-09-28  Andreas Schwab  <schwab@linux-m68k.org>
4045         * Makefile.in (lisptagsfiles3): Define.
4046         (TAGS, TAGS-LISP): Use it.
4047         (update-elclist): Add third directory level to look for elc files.
4048         (compile-always): Likewise.
4049         (backup-compiled-files): Likewise.
4050         (bootstrap-clean): Likewise.
4051         (ELCFILES): Update.
4053 2009-09-28  Chong Yidong  <cyd@stupidchicken.com>
4055         * Makefile.in (ELCFILES): Add CEDET files.
4057 2009-09-28  Eric Ludlam  <zappo@gnu.org>
4059         CEDET (development tools) package merged.
4061         * cedet/*.el:
4062         * cedet/ede/*.el:
4063         * cedet/semantic/*.el:
4064         * cedet/srecode/*.el: New files.
4066 2009-09-28  Michael Albinus  <michael.albinus@gmx.de>
4068         * Makefile.in (ELCFILES): Add net/tramp-imap.elc.
4070         * net/tramp.el (top): Require tramp-imap.
4072         * net/tramp-smb.el (tramp-smb-handle-directory-files-and-attributes):
4073         Use `tramp-compat-handle-file-attributes'.
4075 2009-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
4077         * net/tramp-imap.el: New package.
4079 2009-09-28  Eric Ludlam  <zappo@gnu.org>
4081         * emacs-lisp/chart.el:
4082         * emacs-lisp/eieio-base.el:
4083         * emacs-lisp/eieio-comp.el:
4084         * emacs-lisp/eieio-custom.el:
4085         * emacs-lisp/eieio-datadebug.el:
4086         * emacs-lisp/eieio-opt.el:
4087         * emacs-lisp/eieio-speedbar.el:
4088         * emacs-lisp/eieio.el: New files.
4090         * cedet/cedet-cscope.el:
4091         * cedet/cedet-files.el:
4092         * cedet/cedet-global.el:
4093         * cedet/cedet-idutils.el:
4094         * cedet/data-debug.el:
4095         * cedet/inversion.el:
4096         * cedet/mode-local.el:
4097         * cedet/pulse.el: New files.
4099 2009-09-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4101         * whitespace.el (whitespace-trailing-regexp)
4102         (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
4103         Fix doc string.
4105 2009-09-27  Chong Yidong  <cyd@stupidchicken.com>
4107         * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools
4108         menu.
4110         * ediff-hook.el: Move menu-bar-ediff-misc-menu into
4111         menu-bar-ediff-menu.
4113         * emacs-lisp/lisp-mode.el: Add doc-string-elt property to
4114         define-overloadable-function.
4116         * progmodes/autoconf.el: Provide autoconf as well, so that this
4117         file can be `require'd.
4119         * emacs-lisp/cl-macs.el (deftype): Add to cl-loaddefs.
4121         * emacs-lisp/autoload.el (generated-autoload-feature)
4122         (generated-autoload-load-name): New vars.
4123         (autoload-rubric, autoload-generate-file-autoloads): Use them.
4124         (make-autoload): Recognize define-overloadable-function and
4125         defclass forms (for EIEIO).
4127         * Makefile.in (update-subdirs): Exclude cedet directory.
4129 2009-09-27  Adrian Robert  <Adrian.B.Robert@gmail.com>
4131         * term/ns-win.el: Don't set the region face background.  (Bug#4381)
4133         * faces.el: Default light-background background for region face to
4134         ns_selection_color under NS.
4136 2009-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
4138         * net/imap-hash.el: New library, see NEWS.
4140         * Makefile.in (ELCFILES): Add imap-hash.el.
4142 2009-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4144         * help.el (help-for-help-internal): Don't purecopy the text (bug#4560).
4145         * isearch.el (isearch-help-for-help-internal): Purecopy the second arg.
4146         * help-macro.el (make-help-screen): Avoid using an ambiguous function
4147         definition where the docstring could be taken for the return value.
4149 2009-09-26  Glenn Morris  <rgm@gnu.org>
4151         * mail/rmailmm.el (rmail-mime-show-images, rmail-mime-bulk-handler):
4152         Add option to only show images below a certain size.
4153         (rmail-mime-multipart-handler): Remove unnecessary save-match-data and
4154         save-excursion calls.
4156 2009-09-26  Eli Zaretskii  <eliz@gnu.org>
4158         * makefile.w32-in (WINS_ALMOST): Add cedet (with its
4159         subdirectories) and eieio.
4161 2009-09-26  Alan Mackenzie  <acm@muc.de>
4163         * progmodes/cc-engine.el (c-beginning-of-statement-1): Correct
4164         buggy bracketing.  (Bug#4289)
4166         * progmodes/cc-langs.el (c-nonlabel-token-key): Allow quoted
4167         character constants (as case labels).  (Bug#4289)
4169 2009-09-25  Juri Linkov  <juri@jurta.org>
4171         * files.el (safe-local-eval-forms): Allow time-stamp in
4172         before-save-hook (Bug#4554).
4174 2009-09-25  Drew Adams  <drew.adams@oracle.com>
4176         * menu-bar.el (list-buffers-directory): Doc fix.
4178 2009-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4180         * log-edit.el (log-edit-changelog-entries): Avoid inf-loops.
4181         Try and avoid copying twice the same paragraph.
4182         (log-edit-changelog-paragraph, log-edit-changelog-subparagraph):
4183         Remove save-excursion.
4184         (log-edit-changelog-entry): Do it here instead.
4186 2009-09-25  Juanma Barranquero  <lekktu@gmail.com>
4188         * bs.el (bs--get-file-name): Use `list-buffers-directory'
4189         when available, instead of hardcoding mode names.  Doc fix.
4191         * menu-bar.el (list-buffers-directory): Add docstring.
4192         Make automatically buffer-local.
4194         * dired.el (dired-mode):
4195         * files.el (cd-absolute):
4196         * pcvs.el (cvs-temp-buffer):
4197         * pcvs-util.el (cvs-get-buffer-create):
4198         * shell.el (shell-mode):
4199         * vc-dir.el (vc-dir-mode):
4200         Don't make `list-buffers-directory' buffer local.
4202 2009-09-25  Devon Sean McCullough  <emacs-hacker@Jovi.Net>
4204         * comint.el (comint-exec, comint-run, make-comint):
4205         Doc fixes (Bug#4542).
4207 2009-09-25  Glenn Morris  <rgm@gnu.org>
4209         * mail/rmailmm.el (rmail-mime): New custom group.
4210         Move all defcustoms in this file into this group.
4211         (rmail-mime-media-type-handlers-alist): Revert previous change.
4212         (rmail-mime-show-images): New option.
4213         (rmail-mime-total-number-of-bulk-attachments): Remove variable and all
4214         references to it, since it wasn't actually used for anything.
4215         (rmail-mime-insert-image): New function.
4216         (rmail-mime-image): Use rmail-mime-insert-image.
4217         (rmail-mime-bulk-handler): Remove optional `image' argument, instead
4218         obey the value of `rmail-mime-show-images' option.  Print the size of
4219         attachments.
4221 2009-09-25  David Engster  <deng@randomsample.de>
4223         * progmodes/hideshow.el (hs-show-block): Run `hs-show-hook'.  (Bug#4548)
4225 2009-09-24  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
4227         * whitespace.el: Does not highlight trailing spaces While point is
4228         at end of line.  Does not highligt spaces at beginning of buffer
4229         while point is at beginning of buffer.  Does not highlight spaces
4230         at end of buffer while point is at end of buffer.  (Bug#4177)
4231         New version 12.0.
4232         (whitespace-display-mappings): Adjust initialization.
4233         (whitespace-point, whitespace-font-lock-refontify): New vars.
4234         (whitespace-color-on, whitespace-color-off): Adjust code.
4235         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
4236         (whitespace-empty-at-eob-regexp, whitespace-space-regexp)
4237         (whitespace-tab-regexp, whitespace-post-command-hook): New funs.
4239 2009-09-24  Chong Yidong  <cyd@stupidchicken.com>
4241         * nxml/nxml-mode.el: Alias xml-mode to nxml-mode.
4243         * textmodes/sgml-mode.el: Remove xml-mode alias.
4245         * files.el (auto-mode-alist, conf-mode-maybe)
4246         (magic-fallback-mode-alist): Revert 2009-09-18 and 2009-09-21 changes.
4248 2009-09-24  Alan Mackenzie  <acm@muc.de>
4250         * progmodes/cc-cmds.el (c-scan-conditionals): A new function like
4251         c-forward-conditionals, but it doesn't move point and doesn't set
4252         the mark.
4253         (c-up-conditional, c-up-conditional-with-else, c-down-conditional)
4254         (c-down-conditional-with-else, c-backward-conditional)
4255         (c-forward-conditional): Refactor to use c-scan-conditionals.
4257 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
4259         * help-fns.el (help-downcase-arguments): New option, defaulting to nil.
4260         (help-default-arg-highlight): Remove.
4261         (help-highlight-arg): New function.
4262         (help-do-arg-highlight): Use it.
4263         Suggested by Drew Adams <drew.adams@oracle.com>.  (Bug#4510, bug#4520)
4265 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4267         * term.el (term-set-scroll-region, term-handle-ansi-escape):
4268         Undo last change, which didn't fix the problem and introduced others.
4270 2009-09-24  Nick Roberts  <nickrob@snap.net.nz>
4272         * progmodes/gdb-mi.el: Don't require speedbar.
4273         (gdb-jsonify-buffer): Handle case where "=" is part of value string.
4275 2009-09-24  Glenn Morris  <rgm@gnu.org>
4277         * calendar/diary-lib.el (diary-fancy-display): Always run the hook.
4279         * term/ns-win.el (ns-reg-to-script): Define for compiler.
4281         * mail/rmailmm.el (rmail-mime-multipart-handler): Accept the case where
4282         there is no newline after the final mime boundary.  (Bug#4539)
4283         Move markers on insertion so that any buttons inserted don't end up in
4284         the next part of a multipart message.
4285         (rmail-mime-media-type-handlers-alist): Doc fix.  Add image handler.
4286         (rmail-mime-bulk-handler): Optionally handle images.
4287         (rmail-mime-image): New button action.
4288         (rmail-mime-image-handler): New function.
4289         (rmail-mime-mode): New mode.
4290         (rmail-mime): Doc fix.  Use rmail-mime-mode (for font-lock).
4292 2009-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4294         * minibuffer.el (minibuffer-force-complete): Cycle the list, rather
4295         than just dropping elements from it (bug#4504).
4297         * term.el (term-set-scroll-region): Don't move cursor any more.
4298         (term-handle-ansi-escape): Call term-goto here instead.
4299         Suggested by Ivan Kanis <apple@kanis.eu>.
4301         * term.el: Require CL.
4302         (term-ansi-reset): New function.
4303         (term-mode, term-emulate-terminal, term-handle-colors-array): Use it.
4304         (term-handle-colors-array): Simplify.
4306 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
4308         * allout.el (allout-overlay-interior-modification-handler)
4309         (allout-obtain-passphrase):
4310         * epa-file.el (epa-file-write-region):
4311         * ps-print.el (ps-begin-job):
4312         * vc-hooks.el (vc-toggle-read-only):
4313         * vc-rcs.el (vc-rcs-rollback):
4314         * vc-sccs.el (vc-sccs-rollback):
4315         * vc.el (vc-deduce-fileset, vc-next-action, vc-register-with)
4316         (vc-version-diff, vc-revert, vc-rollback):
4317         * wdired.el (wdired-check-kill-buffer):
4318         * emacs-lisp/authors.el (authors):
4319         * net/socks.el (socks-open-connection):
4320         * net/zeroconf.el (zeroconf-service-add-hook):
4321         * obsolete/vc-mcvs.el (vc-mcvs-register):
4322         * progmodes/gdb-mi.el (def-gdb-thread-buffer-gud-command)
4323         (gdb-select-frame):
4324         * progmodes/grep.el (lgrep, rgrep):
4325         * progmodes/idlw-help.el (idlwave-help-check-locations)
4326         (idlwave-help-html-link, idlwave-help-assistant-open-link):
4327         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
4328         * textmodes/reftex-toc.el (reftex-toc-promote-prepare)
4329         (reftex-toc-rename-label): Fix typos in error messages.
4331         * dired-aux.el (dired-do-shell-command): Reflow docstring.
4332         (dired-copy-how-to-fn): Doc fix.
4333         (dired-files-attributes, dired-read-shell-command):
4334         Fix typos in docstrings.
4336         * dired-x.el (dired-enable-local-variables, dired-filename-at-point)
4337         (dired-x-find-file-other-window): Reflow docstrings.
4338         (dired-omit-marker-char, dired-read-shell-command)
4339         (dired-x-submit-report): Fix typos in docstrings.
4341         * shell.el (shell-mode-hook):
4342         * view.el (View-scroll-line-forward):
4343         * progmodes/inf-lisp.el (inferior-lisp-mode-hook):
4344         Fix typos in docstrings.
4346         * net/dig.el (dig-invoke): Fix typo in docstring.
4347         (query-dig): Reflow docstring.
4349         * progmodes/idlwave.el (idlwave-create-user-catalog-file)
4350         (idlwave-quoted, idlwave-rinfo-max-source-lines): Doc fixes.
4351         (idlwave-abbrev-move, idlwave-auto-routine-info-updates)
4352         (idlwave-begin-block-reg, idlwave-begin-unit-reg)
4353         (idlwave-beginning-of-subprogram, idlwave-block-jump-out)
4354         (idlwave-block-match-regexp, idlwave-calculate-paren-indent)
4355         (idlwave-check-abbrev, idlwave-class-file-or-buffer)
4356         (idlwave-class-found-in, idlwave-complete, idlwave-complete-in-buffer)
4357         (idlwave-completion-map, idlwave-current-indent)
4358         (idlwave-custom-ampersand-surround, idlwave-customize)
4359         (idlwave-default-font-lock-items, idlwave-default-insert-timestamp)
4360         (idlwave-define-abbrev, idlwave-determine-class-special)
4361         (idlwave-do-action, idlwave-doc-header, idlwave-doc-modification)
4362         (idlwave-end-block-reg, idlwave-end-of-statement)
4363         (idlwave-end-of-statement0, idlwave-end-of-subprogram)
4364         (idlwave-end-unit-reg, idlwave-entry-find-keyword)
4365         (idlwave-explicit-class-listed, idlwave-file-header)
4366         (idlwave-fill-paragraph, idlwave-find-class-definition)
4367         (idlwave-fix-keywords, idlwave-hang-indent-regexp, idlwave-hard-tab)
4368         (idlwave-idlwave_routine_info-compiled, idlwave-in-comment)
4369         (idlwave-in-quote, idlwave-indent-action-table)
4370         (idlwave-indent-expand-table, idlwave-indent-line)
4371         (idlwave-indent-subprogram, idlwave-indent-to-open-paren)
4372         (idlwave-is-comment-line, idlwave-is-comment-or-empty-line)
4373         (idlwave-is-continuation-line, idlwave-is-pointer-dereference)
4374         (idlwave-kill-autoloaded-buffers, idlwave-lib-p, idlwave-look-at)
4375         (idlwave-make-tags, idlwave-mode, idlwave-mode-abbrev-table)
4376         (idlwave-mouse-active-rinfo, idlwave-newline, idlwave-no-change-comment)
4377         (idlwave-outlawed-buffers, idlwave-popup-select)
4378         (idlwave-previous-statement, idlwave-rescan-catalog-directories)
4379         (idlwave-routine-entry-compare, idlwave-routine-info.pro)
4380         (idlwave-scan-all-buffers-for-routine-info, idlwave-scan-class-info)
4381         (idlwave-shell-automatic-start, idlwave-shell-explicit-file-name)
4382         (idlwave-show-begin, idlwave-split-line, idlwave-split-link-target)
4383         (idlwave-statement-type, idlwave-struct-skip)
4384         (idlwave-substitute-link-target, idlwave-toggle-comment-region)
4385         (idlwave-update-current-buffer-info, idlwave-use-library-catalogs)
4386         (idlwave-what-module-find-class): Fix typos in docstrings.
4387         (idlwave-all-method-classes, idlwave-calc-hanging-indent)
4388         (idlwave-calculate-cont-indent, idlwave-expand-equal)
4389         (idlwave-find-module, idlwave-find-structure-definition)
4390         (idlwave-init-rinfo-when-idle-after, idlwave-insert-source-location)
4391         (idlwave-list-load-path-shadows, idlwave-next-statement)
4392         (idlwave-routine-entry-compare-twins, idlwave-routine-info)
4393         (idlwave-routines, idlwave-sintern-rinfo-list, idlwave-statement-match)
4394         (idlwave-template): Reflow docstrings.
4396         * progmodes/idlw-shell.el (idlwave-shell-syntax-error): Doc fix.
4397         (idlwave-shell-batch-command, idlwave-shell-bp-alist)
4398         (idlwave-shell-bp-get, idlwave-shell-bp-overlays)
4399         (idlwave-shell-bp-query, idlwave-shell-break-here, idlwave-shell-buffer)
4400         (idlwave-shell-display-line, idlwave-shell-display-wframe)
4401         (idlwave-shell-electric-debug-mode, idlwave-shell-examine-select)
4402         (idlwave-shell-file-name-chars, idlwave-shell-filter-bp)
4403         (idlwave-shell-goto-frame, idlwave-shell-halt-messages-re)
4404         (idlwave-shell-highlighting-and-faces, idlwave-shell-idl-wframe)
4405         (idlwave-shell-mode-hook, idlwave-shell-mode-line-info)
4406         (idlwave-shell-mode-map, idlwave-shell-module-source-filter)
4407         (idlwave-shell-mouse-help, idlwave-shell-mouse-print)
4408         (idlwave-shell-pc-frame, idlwave-shell-pending-commands)
4409         (idlwave-shell-print, idlwave-shell-quit, idlwave-shell-redisplay)
4410         (idlwave-shell-scan-for-state, idlwave-shell-send-command)
4411         (idlwave-shell-sentinel-hook, idlwave-shell-separate-examine-output)
4412         (idlwave-shell-shell-command, idlwave-shell-sources-alist)
4413         (idlwave-shell-sources-bp, idlwave-shell-sources-filter)
4414         (idlwave-shell-step, idlwave-shell-use-breakpoint-glyph)
4415         (idlwave-toolbar-add-everywhere, idlwave-toolbar-toggle):
4416         Fix typos in docstrings.
4417         (idlwave-shell-bp, idlwave-shell-clear-current-bp)
4418         (idlwave-shell-hide-output, idlwave-shell-mode)
4419         (idlwave-shell-run-region, idlwave-shell-set-bp-in-module):
4420         Reflow docstrings.
4422         * textmodes/bibtex.el (bibtex-sort-entry-class): Fix group name.
4424 2009-09-24  Ivan Kanis  <apple@kanis.eu>
4426         * term.el (term-bold-attribute): New var.
4427         (term-handle-colors-array): Use it.
4429 2009-09-23  Nick Roberts  <nickrob@snap.net.nz>
4431         * progmodes/gdb-mi.el (gdb-version): New variable.
4432         (gdb-non-stop-handler): Set gdb-version.
4433         (gdb-gud-context-command, gdb-current-context-command, gdb-stopped):
4434         Condition "--thread" option on gdb-version.
4435         (gdb-invalidate-threads): Remove unused argument.
4437 2009-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4439         * textmodes/flyspell.el (sgml-mode-flyspell-verify): Pass limit args
4440         to looking-back to avoid ridiculous slow down in large files (bug#4511).
4442 2009-09-23  Glenn Morris  <rgm@gnu.org>
4444         * mail/rmail.el (rmail-reply): Don't try to add a References header when
4445         replying to mail without References or Message-Id.  (Bug#4525)
4447 2009-09-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
4449         * term/ns-win.el (ns-reg-to-script): New variable.
4451 2009-09-23  Daiki Ueno  <ueno@unixuser.org>
4453         * epg.el (epg-wait-for-status): Preserve existing 'error results.
4455 2009-09-22  Sam Steingold  <sds@gnu.org>
4457         * vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
4458         (vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
4459         to 1 because hg returns status 1 when nothing is found.
4460         Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
4462 2009-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4464         * textmodes/fill.el: Convert to utf-8 encoding.
4465         (fill-french-nobreak-p): Remove redundant » and « inherited from our
4466         pre-unicode days.
4468         * add-log.el (change-log-fill-forward-paragraph): New function.
4469         (change-log-mode): Use it so fill-region DTRT.
4470         Set fill-indent-according-to-mode here rather than in
4471         change-log-fill-paragraph.
4472         (change-log-fill-paragraph): Remove.
4474 2009-09-22  Juanma Barranquero  <lekktu@gmail.com>
4476         * info.el (Info-try-follow-nearest-node): Use the URL extracted by
4477         `Info-get-token', instead of `browse-url-url-at-point'.  (Bug#4508)
4479 2009-09-22  Glenn Morris  <rgm@gnu.org>
4481         * calendar/calendar.el (calendar-mode-map): Make mouse-1 and 3 clicks on
4482         the scroll-bar scroll the calendar window rather than the buffer.
4484         * calendar/cal-menu.el (cal-menu-scroll-menu): Add a sub-section with
4485         commands that move point (as opposed to scrolling).
4487         * emulation/tpu-edt.el (tpu-copy-keyfile): Fix condition-case handler.
4489         * emacs-lisp/elint.el (elint): New custom group.
4490         (elint-log-buffer): Make it a defcustom.
4491         (elint-scan-preloaded, elint-ignored-warnings)
4492         (elint-directory-skip-re): New options.
4493         (elint-builtin-variables): Doc fix.
4494         (elint-preloaded-env): New variable.
4495         (elint-unknown-builtin-args): Add an entry for encode-time.
4496         (elint-extra-errors): Make it a variable rather than a constant.
4497         (elint-preloaded-skip-re): New constant.
4498         (elint-directory): Skip files matching elint-directory-skip-re.
4499         (elint-features): New variable, local to linted buffers.
4500         (elint-update-env): Initialize elint-features.  Possibly add
4501         elint-preloaded-env to the buffer's environment.
4502         (elint-get-top-forms): Bind elint-current-pos, for log messages.
4503         Skip quoted forms.
4504         (elint-init-form): New function, extracted from elint-init-env.
4505         Make non-list forms a warning rather than an error.
4506         Add the mode-map for define-derived-mode.  Handle define-minor-mode,
4507         easy-menu-define, put that adds an error-condition, and provide.
4508         When requiring cl, also require cl-macs.  Really require cl, to handle
4509         some cl macros.  Store required libraries in the list elint-features,
4510         so as not to re-load them.  Treat cc-require like require.
4511         (elint-init-env): Call elint-init-form to do the work.
4512         Handle eval-and-compile and such like.
4513         (elint-add-required-env): Do not clear messages.
4514         (elint-special-forms): Add handlers for function, defalias, if, when,
4515         unless, and, or.
4516         (elint-form): Add optional argument to ignore elint-special-forms,
4517         useful to prevent recursive calls from handlers.  Doc fix.
4518         Respect elint-ignored-warnings.
4519         (elint-form): Respect elint-ignored-warnings.
4520         (elint-bound-variable, elint-bound-function): New variables.
4521         (elint-unbound-variable): Respect elint-bound-variable.
4522         (elint-get-args): Respect elint-bound-function.
4523         (elint-check-cond-form): Add some simple handling for (f)boundp and
4524         featurep tests.
4525         (elint-check-defalias-form): New handler.
4526         (elint-check-let-form): Make an empty let a warning rather than an
4527         error.
4528         (elint-check-setq-form): Make an empty setq a warning rather than an
4529         error.  Respect elint-ignored-warnings.
4530         (elint-check-defvar-form): Accept null doc-strings.
4531         (elint-check-conditional-form): New handler.  Does some simple-minded
4532         checking of featurep and (f)boundp tests.
4533         (elint-put-function-args): New function.
4534         (elint-initialize): Use elint-scan-doc-file rather than
4535         elint-find-builtin-variables.  Use elint-put-function-args.
4536         Possibly scan preloaded-file-list.
4537         (elint-scan-doc-file): Rename from elint-find-builtin-variables and
4538         extend to handle functions as well.
4540 2009-09-22  Lennart Borgman  <lennart.borgman@gmail.com>
4542         * linum.el (linum-delete-overlays, linum-update-window):
4543         Do not modify the right margin.  (Bug#3971)
4545 2009-09-21  Chong Yidong  <cyd@stupidchicken.com>
4547         * files.el (conf-mode-maybe, magic-fallback-mode-alist): Use
4548         nxml-mode instead of xml-mode.
4550 2009-09-21  Kevin Ryde  <user42@zip.com.au>
4552         * net/dig.el: Add "Keywords: comm", as per net-utils.el.  (Bug#4501)
4554 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4556         * net/dig.el (dig-mode): Use define-derived-mode.
4558 2009-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
4560         * vc-dispatcher.el (vc-do-command): Return the process object in
4561         the asynchronous case.  Use when instead of if.  Do not run
4562         vc-exec-after to display a message if not enabled.  (Bug#4463)
4564         * vc-git.el (vc-git-dir-extra-headers): Add keymap and mouse-face
4565         properties to the stash strings.
4566         (vc-git-stash-list): Return a list of strings.
4567         (vc-git-stash-get-at-point, vc-git-stash-delete-at-point)
4568         (vc-git-stash-show-at-point): New functions.
4569         (vc-git-stash-map): New keymap.
4571         * register.el (ctl-x-r-map): Define the keys here instead of
4572         using autoload.
4574 2009-09-20  Thierry Volpiatto  <thierry.volpiatto@gmail.com>  (tiny change)
4576         * bookmark.el (bookmark-write-file): Avoid calling `pp' with large
4577         list, to workaround performance problem (bug#4485).
4579 2009-09-20  Nick Roberts  <nickrob@snap.net.nz>
4581         * progmodes/gud.el (gud-sentinel): Revert indavertant change.
4583 2009-09-20  Daiki Ueno  <ueno@unixuser.org>
4585         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
4586         Document that this option is not recommended to use.
4588 2009-09-19  Glenn Morris  <rgm@gnu.org>
4590         * calc/calc-graph.el (calc-graph-lookup): Avoid assignment to free
4591         variable `var'.
4593         * calc/calc-alg.el (var):
4594         * calc/calcalg2.el (var): Define for compiler.
4596 2009-09-19  Chong Yidong  <cyd@stupidchicken.com>
4598         * emacs-lisp/advice.el (ad-get-argument, ad-set-argument):
4599         Doc fix (Bug#3932).
4601         * subr.el (baud-rate): Remove long-obsolete function (Bug#4372).
4603         * time-stamp.el (time-stamp-month-dd-yyyy)
4604         (time-stamp-dd/mm/yyyy, time-stamp-mon-dd-yyyy)
4605         (time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
4606         (time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd)
4607         (time-stamp-yymmdd, time-stamp-hh:mm:ss, time-stamp-hhmm):
4608         Remove functions that have been obsolete since 1995 (Bug#4436).
4610         * progmodes/sh-script.el (sh-learn-buffer-indent): Pop to the
4611         indent buffer only if called interactively (Bug#4452).
4613 2009-09-19  Juanma Barranquero  <lekktu@gmail.com>
4614             Eli Zaretskii  <eliz@gnu.org>
4616         This fixes bug#4197 (merged to bug#865, though not identical).
4617         * server.el (server-auth-dir): Add docstring note about FAT32.
4618         (server-ensure-safe-dir): Accept FAT32 directories as "safe",
4619         but warn against using them.
4621 2009-09-19  Nick Roberts  <nickrob@snap.net.nz>
4623         * progmodes/gdb-mi.el (gdb-var-update-handler-1): Include case of
4624         older GDB where there is no has_more field.
4626 2009-09-19  Glenn Morris  <rgm@gnu.org>
4628         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
4630 2009-09-18  Chong Yidong  <cyd@stupidchicken.com>
4632         * files.el (auto-mode-alist): Change default for XML files to nXML
4633         mode (Bug#4169).
4635 2009-09-18  Juanma Barranquero  <lekktu@gmail.com>
4637         * server.el (server-ensure-safe-dir): Pass 'integer
4638         to `file-attributes', as suggested.
4640 2009-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4642         * dired-aux.el (dired-query-alist): Remove spurious backslash.
4643         (dired-query): Use read-key.
4645 2009-09-18  Adrian Robert  <Adrian.B.Robert@gmail.com>
4647         * cus-start.el (ns-use-qd-smoothing): Remove.
4649 2009-09-18  Glenn Morris  <rgm@gnu.org>
4651         * allout.el (top-level): Remove unnecessary progn.
4653         * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
4655         * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
4656         definition of abbrev table.
4658         * speedbar.el (speedbar-track-mouse):
4659         * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
4660         * net/eudc.el (eudc-expand-inline):
4661         * net/newst-backend.el (newsticker--cache-read-feed):
4662         * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
4663         condition-case handlers.
4665 2009-09-18  Nick Roberts  <nickrob@snap.net.nz>
4667         * progmodes/gdb-mi.el (gdb-frame-address): New variable.
4668         (gdb-var-list): Add an element for has_more field.
4669         (gdb-non-stop-handler): Enable pretty printing for STL containers.
4670         (gdb-var-create-handler, gdb-var-list-children-handler-1)
4671         (gdb-var-update-handler-1): Parse output of dynamic variable
4672         objects (STL containers).
4673         (gdb-var-delete-1): Pass var1 as an explicit second argument.
4674         (gdb-get-field): Delete alias.  Use bindat-get-field directly.
4676         * progmodes/gud.el (gud-speedbar-item-info): Adjust for change to
4677         gdb-var-list.
4678         (gud-speedbar-buttons): Make node expandable if expression "has more"
4679         children.
4681 2009-09-17  Juanma Barranquero  <lekktu@gmail.com>
4683         * startup.el (emacs-quick-startup): Remove variable and all uses.
4684         (command-line): Set `inhibit-x-resources' instead.
4685         (command-line-1): Use `inhibit-x-resources' instead.
4687 2009-09-17  Chong Yidong  <cyd@stupidchicken.com>
4689         * subr.el: Fix last change to avoid using the `unless' macro,
4690         which breaks bootstrapping.
4692 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4694         * subr.el (push, pop, dolist, dotimes, declare): Don't overwrite CL's
4695         extended definitions, in case we reload subr.el after having
4696         loaded CL.
4697         (eval-next-after-load): Mark as obsolete.
4699 2009-09-17  Juri Linkov  <juri@jurta.org>
4701         * menu-bar.el (menu-bar-search-menu, menu-bar-edit-menu)
4702         (menu-bar-options-menu, menu-bar-showhide-fringe-menu)
4703         (menu-bar-showhide-menu, menu-bar-tools-menu)
4704         (menu-bar-describe-menu, menu-bar-help-menu)
4705         (minibuffer-local-completion-map, minibuffer-local-map):
4706         Fix list quoting.
4708 2009-09-17  Glenn Morris  <rgm@gnu.org>
4710         * emacs-lisp/bytecomp.el (byte-compile-form): Always check the function
4711         arguments, whether or not it has a handler.
4713         * ansi-color.el (ansi-color-get-face-1): Fix typo in handler.
4715         * simple.el (hard-newline): Give it a doc-string.
4717         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
4718         (lisp-mode-syntax-table): Give them doc-strings.
4720 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
4722         * menu-bar.el (menu-bar-file-menu, menu-bar-file-menu)
4723         (menu-bar-i-search-menu, menu-bar-edit-menu, menu-bar-custom-menu)
4724         (menu-bar-options-menu, menu-bar-showhide-menu)
4725         (menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
4726         (menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
4727         (menu-bar-options-menu, menu-bar-line-wrapping-menu)
4728         (menu-bar-options-menu, menu-bar-tools-menu)
4729         (menu-bar-describe-menu, menu-bar-search-documentation-menu)
4730         (menu-bar-help-menu):
4731         (menu-bar-make-mm-toggle, menu-bar-make-toggle): Purecopy the
4732         string arguments.
4734         * ediff-hook.el (menu-bar-ediff-menu, menu-bar-ediff-merge-menu)
4735         (menu-bar-epatch-menu, menu-bar-ediff-misc-menu): Add purecopy
4736         calls for the menu names and :help.
4738 2009-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4740         * mouse.el (minor-mode-menu-from-indicator): Pay attention
4741         to :minor-mode-function (bug#4455).
4743 2009-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4745         * startup.el (command-line): Initialize the window-system after
4746         processing the command-line.
4748         * textmodes/page.el (what-page): Make sure we don't inf-loop if
4749         page-delimiter matches the empty string.
4751 2009-09-16  Glenn Morris  <rgm@gnu.org>
4753         * emacs-lisp/bytecomp.el (byte-compile-not-obsolete-vars): Rename from
4754         byte-compile-not-obsolete-var.  It's a list now.
4755         (byte-compile-not-obsolete-funcs): New variable.
4756         (byte-compile-warn-obsolete): Don't warn about functions if they are in
4757         byte-compile-not-obsolete-funcs.
4758         (byte-compile-variable-ref, byte-compile-defvar): Update for
4759         byte-compile-not-obsolete-vars name-change and list nature.
4760         (byte-compile-maybe-guarded): Suppress warnings about obsolete functions
4761         and variables behind (f)boundp tests.
4762         * net/tramp-compat.el (byte-compile-not-obsolete-vars): Set if bound.
4764 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
4766         * vc-git.el (vc-git-log-view-mode): Undo inadvertent change.
4768 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4770         * Makefile.in (compile-onefile): Use byte-compile-refresh-preloaded.
4771         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded):
4772         Don't autoload.
4774 2009-09-15  Stephen Eglen  <stephen@gnu.org>
4776         * iswitchb.el (iswitchb-read-buffer): When selecting a match from
4777         the virtual-buffers, use the name of the buffer specified by
4778         find-file-noselect, as the match may be a symlink.  (This was a
4779         problem if the target and the symlink had different names.)
4781 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4783         * custom.el (custom-initialize-default, custom-initialize-set): CSE.
4785         * desktop.el (desktop-path): Check user-emacs-directory.
4787         * emacs-lisp/bytecomp.el (byte-compile-refresh-preloaded): New function.
4789         * loadup.el: Use after-load-functions to GC after loading each file.
4790         Remove the explicit GC calls that used to be sprinkled around.
4792         * subr.el (after-load-functions): New hook.
4793         (do-after-load-evaluation): Run it.  Use string-match-p to detect
4794         `obsolete' packages, rather than painfully extracting the relevant
4795         directory name.
4797 2009-09-15  Glenn Morris  <rgm@gnu.org>
4799         * apropos.el (apropos-documentation-check-doc-file): Avoid assignment to
4800         free variable `doc'.
4802         * dired.el (dired-mode-map): Add menu entry for async shell command.
4804         * help-fns.el (find-lisp-object-file-name): When looking for autoloaded
4805         variables, also consider the .elc files, since the .el files are
4806         normally gzipped (subsequent code locates the .el.gz from the .elc).
4808         * calc/calc-prog.el (arglist): Define for compiler.
4810         * calendar/diary-lib.el (diary-display-function): Change the default to
4811         fancy display.
4812         (body): Define for compiler.
4814         * emacs-lisp/bytecomp.el (byte-compile-keep-pending)
4815         (byte-compile-file-form, byte-compile-lambda)
4816         (byte-compile-top-level-body, byte-compile-form)
4817         (byte-compile-variable-ref, byte-compile-setq)
4818         (byte-compile-setq-default, byte-compile-body)
4819         (byte-compile-body-do-effect, byte-compile-and, byte-compile-or)
4820         (batch-byte-compile): Give some more local variables with common names
4821         a "bytecomp-" prefix to avoid masking warnings about free variables.
4823         * startup.el (command-line-1): Give local variables with common names a
4824         distinguishing prefix, so as not to hide free variable warnings during
4825         bootstrap.
4827         * mail/rmailmm.el (rmail-mime-save): If file exists, don't try to be
4828         clever and add a suffix to make a unique name, just let the user decide
4829         whether or not to overwrite it.  If the input is a directory, write the
4830         default filename to that directory.  (Bug#4388)
4831         (rmail-mime-bulk-handler): Ensure the save button's 'directory property
4832         is a filename-as-a-directory.
4834 2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4836         * textmodes/page.el (what-page): Don't move to beginning of line.
4837         See <87tyz5ajte.fsf@x2.delysid.org> in emacs-devel.
4839 2009-09-15  Dan Nicolaescu  <dann@ics.uci.edu>
4841         * vc-git.el (vc-git-dir-extra-headers): Show the remote location.
4843 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
4845         * bindings.el (mode-line-mode-menu): Add purecopy calls for :help.
4846         * help.el (help-for-help-internal): Add purecopy calls for text.
4848         * vc.el (top): print-log method now takes an optional SHORTLOG
4849         argument.  Add a new method: root.
4850         (vc-root-diff, vc-print-root-log): New functions.
4851         (vc-log-short-style): New variable.
4852         (vc-print-log-internal): Add support for showing short logs.
4854         * vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
4855         vc-print-root-log and vc-print-root-diff.
4857         * vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
4858         * vc-git.el (vc-git-print-log, vc-git-log-view-mode):
4859         * vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
4860         short logs.
4862         * vc-cvs.el (vc-cvs-print-log):
4863         * vc-mtn.el (vc-mtn-print-log):
4864         * vc-rcs.el (vc-rcs-print-log):
4865         * vc-sccs.el (vc-sccs-print-log):
4866         * vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
4867         that is ignored for now.
4869         * vc-mtn.el (vc-mtn-annotate-command):
4870         * vc-svn.el (vc-svn-annotate-command): Run asynchronously.
4872 2009-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4874         * simple.el: Add mapping for backspace/delete/clear/tab/escape/return
4875         to function-key-map, and give them ascii-character property.
4876         * term/x-win.el (x-alternatives-map):
4877         * term/ns-win.el (ns-alternatives-map):
4878         * term/internal.el (msdos-key-remapping-map):
4879         * w32-fns.el (x-alternatives-map): Remove redundant mappings.
4881 2009-09-14  Glenn Morris  <rgm@gnu.org>
4883         * emacs-lisp/elint.el (elint-add-required-env): Revert to not using
4884         temp-buffers (2009-09-12).
4886 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4888         * textmodes/ispell.el (ispell-command-loop): Improve last fix, using
4889         the new read-key function.
4891 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
4893         * term/x-win.el (x-menu-bar-open): Only call accelerate-menu if it
4894         is defined (Bug#4405).
4896 2009-09-13  Vincent Belaïche  <vincent.belaiche@gmail.com>
4898         * recentf.el (recentf-cleanup): Use a hash table to find
4899         duplicates (Bug#4407).
4901 2009-09-13  Per Starbäck  <per@starback.se>  (tiny change)
4903         * textmodes/ispell.el (ispell-command-loop): Convert keys such as
4904         kp-0 to ascii equivalents (Bug#4325).
4906 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
4908         * progmodes/cperl-mode.el (cperl-init-faces): Revert last change.
4910         * eshell/em-hist.el:
4911         * eshell/em-dirs.el (eshell-complete-user-reference):
4912         Declare pcomplete functions and variables to avoid compiler warnings.
4914 2009-09-13  Leo  <sdl.web@gmail.com>  (tiny change)
4916         * eshell/em-script.el (eshell-login-script, eshell-rc-script):
4917         * eshell/em-dirs.el (eshell-last-dir-ring-file-name):
4918         * eshell/em-alias.el (eshell-aliases-file):
4919         * eshell/em-hist.el (eshell-history-file-name):
4920         Use expand-file-name instead of concat to make file names (Bug#4308).
4922 2009-09-13  Glenn Morris  <rgm@gnu.org>
4924         * ediff-merg.el (ediff-do-merge):
4925         * filesets.el (filesets-run-cmd):
4926         * emulation/ws-mode.el (ws-show-markers, ws-move-block, ws-delete-block)
4927         (ws-find-marker-0, ws-find-marker-1, ws-find-marker-2, ws-find-marker-3)
4928         (ws-find-marker-4, ws-find-marker-5, ws-find-marker-6, ws-find-marker-7)
4929         (ws-find-marker-8, ws-find-marker-9, ws-goto-block-begin)
4930         (ws-goto-block-end, ws-goto-last-cursorposition, ws-copy-block):
4931         Replace empty `let's with `progn'.
4933 2009-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4935         * mail/sendmail.el (send-mail-function):
4936         * tooltip.el (tooltip-mode):
4937         * simple.el (transient-mark-mode):
4938         * rfn-eshadow.el (file-name-shadow-mode):
4939         * frame.el (blink-cursor-mode):
4940         * font-core.el (global-font-lock-mode):
4941         * files.el (temporary-file-directory)
4942         (small-temporary-file-directory, auto-save-file-name-transforms):
4943         * epa-hook.el (auto-encryption-mode):
4944         * composite.el (global-auto-composition-mode):
4945         Use custom-initialize-delay.
4946         * startup.el (command-line): Don't explicitly call
4947         custom-reevaluate-setting for all the above vars.
4948         * custom.el (custom-initialize-safe-set)
4949         (custom-initialize-safe-default): Delete.
4951 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4953         * term/x-win.el (x-initialize-window-system):
4954         * term/w32-win.el (w32-initialize-window-system):
4955         * term/ns-win.el (ns-initialize-window-system): Don't call
4956         mouse-wheel-mode since it's enabled globally by default already.
4958         * mwheel.el (mouse-wheel-mode): Make sure the new defvar doesn't
4959         actually define the variable, but only silences the byte-compiler.
4960         (mouse-wheel-change-button): Check whether mouse-wheel-mode is bound
4961         before looking it up.
4962         (mouse-wheel-scroll-amount): Also reset the bindings if this value
4963         is changed.
4965 2009-09-12  Glenn Morris  <rgm@gnu.org>
4967         * emacs-lisp/elint.el (elint-file): Make max-lisp-eval-depth at least
4968         1000.
4969         (elint-add-required-env): Don't beep on error.
4970         (elint-forms): In case of error, return ENV unchanged.
4971         (elint-init-env): Skip non-list forms.
4972         (elint-log): Handle unknown file positions.
4974 2009-09-12  Daiki Ueno  <ueno@unixuser.org>
4976         * epg.el (epg-make-context): Add autoload cookie.
4977         (epg-list-keys, epg-cancel, epg-start-decrypt, epg-decrypt-file)
4978         (epg-decrypt-string, epg-start-verify, epg-verify-file)
4979         (epg-verify-string, epg-start-sign, epg-sign-file)
4980         (epg-sign-string, epg-start-encrypt, epg-encrypt-file)
4981         (epg-encrypt-string, epg-start-export-keys)
4982         (epg-export-keys-to-file, epg-export-keys-to-string)
4983         (epg-start-import-keys, epg-import-keys-from-file)
4984         (epg-import-keys-from-string, epg-start-receive-keys)
4985         (epg-receive-keys, epg-import-keys-from-server)
4986         (epg-start-delete-keys, epg-delete-keys, epg-start-sign-keys)
4987         (epg-sign-keys, epg-start-generate-key)
4988         (epg-generate-key-from-file, epg-generate-key-from-string):
4989         Remove autoload cookie.
4991 2009-09-12  Eli Zaretskii  <eliz@gnu.org>
4993         * dos-fns.el (dos-reevaluate-defcustoms): Comment out the
4994         reevaluation of trash-directory.
4996         * mwheel.el: Fix last change.
4997         (mouse-wheel-mode): New defvar.
4998         (mouse-wheel-mode): Remove autoload cookie.
5000 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5002         * mwheel.el (mwheel-installed-bindings): New var.
5003         (mouse-wheel-mode): Use it, so as to make sure we really remove all
5004         the bindings we set last time.  Use custom-initialize-delay.
5005         * loadup.el: Load mwheel after term/*-win.el.
5006         * startup.el (command-line): Don't reevaluate mouse-wheel-down-event
5007         and mouse-wheel-up-event now that their first evaluation is done
5008         sufficiently late to be correct.
5010         * startup.el (tutorial-directory): Make it a defcustom.
5011         Use custom-initialize-delay rather than eval-at-startup to set it.
5012         * image.el (image-load-path): Make it a defcustom.
5013         Use custom-initialize-delay rather than eval-at-startup to set it.
5014         * subr.el (eval-at-startup): Remove.
5015         * font-lock.el (lisp-font-lock-keywords-2): Remove eval-at-startup.
5017         * subr.el (do-after-load-evaluation): Warn the user after loading an
5018         obsolete package.
5020 2009-09-12  Glenn Morris  <rgm@gnu.org>
5022         * proced.el (proced-mark-alt): Remove alias.
5023         (proced-mode-map): Remove proced-mark-alt.
5025         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
5026         Elint file and directory.  Remove initialization entry.
5028         * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
5029         commands.
5030         (elint-current-buffer): Set mode-line-process.
5031         (elint-init-env): Handle define-derived-mode.
5032         Fix declare-function with unspecified arglist.  Guard against odd
5033         defalias statements (eg iso-insert's 8859-1-map).
5034         (elint-add-required-env): Use a temp buffer.
5035         (elint-form): Just print the function/macro name, not the whole form.
5036         Return env unchanged if we fail to parse a macro.
5037         (elint-forms): Guard against parse errors.
5038         (elint-output): New function, to handle batch mode.
5039         (elint-log-message): Add optional argument.  Use elint-output.
5040         (elint-set-mode-line): New function.
5042 2009-09-12  Andreas Politz  <politza@fh-trier.de>  (tiny change)
5044         * emacs-lisp/elp.el (elp-not-profilable): Add more
5045         functions (Bug#4233).
5047 2009-09-12  Chong Yidong  <cyd@stupidchicken.com>
5049         * emulation/pc-select.el (scroll-down-mark, scroll-down-nomark)
5050         (scroll-up-mark, scroll-up-nomark): Doc fix (Bug#4190).
5052 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
5054         * progmodes/gdb-mi.el (gdb-var-list-children-regexp): Delete.
5055         (gdb-var-list-children): Use json parsing.
5057 2009-09-11  Daniel Colascione  <dan.colascione@gmail.com>
5059         * progmodes/js.el (js--proper-indentation): Handle the case where
5060         char-before is null.  Reported by Deniz Dogan.
5062 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
5064         * emacs-lisp/cl-macs.el (help-add-fundoc-usage): Declare.
5066 2009-09-11  Daiki Ueno  <ueno@unixuser.org>
5068         * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
5069         (epg-digest-algorithm-alist): Add SHA224.
5070         (epg-context-set-passphrase-callback)
5071         (epg-context-set-progress-callback): Add description about
5072         callback function.
5074 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5076         * custom.el (custom-delayed-init-variables): New var.
5077         (custom-initialize-delay): New function.
5078         * startup.el (command-line): "Re"evaluate all vars in
5079         custom-delayed-init-variables.  Don't reevaluate abbrev-file-name
5080         explicitly any more.
5081         * abbrev.el (abbrev-file-name): Use custom-initialize-delay
5082         to avoid creating a ~/.emacs.d at build-time (bug#4347).
5084         * proced.el (proced-mode-map): Prefer "m" for proced-mark (bug#4362).
5086 2009-09-11  Nick Roberts  <nickrob@snap.net.nz>
5088         * progmodes/gdb-mi.el (gdb-var-update-regexp): Delete.
5089         (gdb-var-update-handler): Use json parsing.
5091 2009-09-11  Juanma Barranquero  <lekktu@gmail.com>
5093         * vc-annotate.el (vc-annotate): Use the main file's coding-system to
5094         decode annotated text, regardless of language environment.  (Bug#2741)
5096 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5098         * Makefile.in (autoloads): Make rmail.el writable as well.
5100 2009-09-11  Glenn Morris  <rgm@gnu.org>
5102         * dired-aux.el, dired-x.el: Put autoloads in dired.el rather than
5103         loaddefs.el.
5104         * dired.el: Regenerate with extracted autoloads.
5105         * Makefile.in (autoloads): Make dired.el writable.
5107         * ibuf-ext.el: Put autoloads in ibuffer.el rather than loaddefs.el.
5108         * ibuffer.el: Regenerate with extracted autoloads.
5109         * Makefile.in (autoloads): Make ibuffer.el writable.
5111         * paths.el (prune-directory-list, gnus-nntp-service, rmail-file-name):
5112         * version.el (emacs-copyright, emacs-major-version)
5113         (emacs-minor-version): Reformat doc-strings for make-docfile.
5115         * apropos.el (apropos-documentation-check-doc-file): Exclude unbound
5116         functions and variables, since they must be stuff specific to some other
5117         platform.
5118         (apropos-print): Make mouse-click message less specific about button.
5120         * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property
5121         that records where a macro was defined.
5122         * help-fns.el (describe-function-1): Mention if a function has a
5123         compiler-macro.
5124         * help-mode.el (help-function-cmacro): New button.
5126         * locate.el (top-level): Always require dired.
5127         (locate-mode-map): Initialize inside the defvar.
5129         * net/ange-ftp.el (dired-compress-file): Declare.
5130         (ange-ftp-dired-compress-file): Add doc string.
5132         * term/ns-win.el (x-display-name, x-setup-function-keys):
5133         Unify doc-strings with X versions.
5135 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5137         * emulation/crisp.el (crisp-mode-map): Move initialization
5138         into declaration.
5139         (crisp-mode): Use define-minor-mode.
5141         * progmodes/xscheme.el (xscheme-evaluation-commands):
5142         Put a :advertised-binding property rather than using
5143         advertised-xscheme-send-previous-expression.
5144         (advertised-xscheme-send-previous-expression): Declare obsolete.
5145         * emulation/crisp.el (crisp-mode-map): Use `undo' rather than
5146         `advertised-undo'.
5147         (crisp-mode): Add corresponding bindings to
5148         undo's :advertised-binding instead.
5149         * dired.el (dired-mode-map): Put a :advertised-binding property rather
5150         than using dired-advertised-find-file.
5151         (dired-advertised-find-file):
5152         * simple.el (advertised-undo):
5153         * wid-edit.el (advertised-widget-backward): Declare obsolete.
5154         (widget-keymap): Put a :advertised-binding property rather
5155         than using advertised-widget-backward.
5156         * bindings.el (ctl-x-map): Put a :advertised-binding property rather
5157         than using advertised-undo.
5158         * tutorial.el (tutorial--default-keys): Adjust accordingly.
5160 2009-09-10  Simon South  <ssouth@slowcomputing.org>
5162         * progmodes/delphi.el (delphi-tab): Indent region when Transient
5163         Mark mode is enabled and region is active; otherwise indent or
5164         insert TAB as usual.
5165         (delphi-mode): Update description of TAB-key binding.
5167 2009-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5169         * subr.el (define-key-rebound-commands): Mark obsolete.
5170         * startup.el (precompute-menubar-bindings): Remove.
5171         (normal-top-level): Remove obsolete code that tried to precompute
5172         menubar bindings.
5173         * loadup.el (define-key-rebound-commands): Don't bother fiddling with
5174         define-key-rebound-commands and precompute-menubar-bindings.
5176 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
5178         * net/imap.el (imap-interactive-login): Better messages.
5179         (imap-open): Fix bug with renamed buffer on reconnect.
5180         (imap-authenticate): Add buffer-local imap-last-authenticator variable
5181         for easier debugging and cleaner code.  On successful (guessed based on
5182         server capabilities) secondary authentication, set imap-state
5183         correctly.
5184         (imap-last-authenticator): Define imap-last-authenticator as a variable
5185         to avoid warnings.
5187 2009-09-10  Glenn Morris  <rgm@gnu.org>
5189         * pcvs.el (cvs-mode-find-file): Use forward-line rather than goto-line.
5191         * emacs-lisp/bytecomp.el (byte-compile-function-environment): Doc fix.
5192         (byte-compile-file-form-autoload): Don't warn about unknown functions
5193         where the autoload statement comes after the use.
5194         (with-no-warnings): Give it a byte-hunk-handler like than of progn, so
5195         that any handlers inside the body (eg require) are in turn respected.
5197         * emacs-lisp/byte-opt.el (degrees-to-radians): Mark as free from side
5198         effects.
5200         * emacs-lisp/derived.el (define-derived-mode): Give the mode's map,
5201         and syntax and abbrev tables basic docs, if they don't have any.
5203         * emacs-lisp/easy-mmode.el (easy-mmode-defmap): Add doc-string.
5205         * international/mule-cmds.el (top-level): Require cl when compiling.
5206         (view-hello-file): Use default-value rather than
5207         default-enable-multibyte-characters.
5209         * progmodes/fortran.el: Move all safe and risky properties into the
5210         defcustoms.
5212         * mail/rmailedit.el, mail/rmailkwd.el, mail/rmailmm.el:
5213         * mail/rmailmsc.el, mail/rmailsort.el, mail/rmailsum.el:
5214         * mail/undigest.el:
5215         Put autoloads in rmail.el rather than loaddefs.el.
5216         * mail/rmail.el: Regenerate with extracted autoloads.
5218         * mail/rmailsum.el (rmail-user-mail-address-regexp): Move to rmail.el.
5219         * mail/rmail.el (rmail-user-mail-address-regexp): Move from rmailsum.el.
5221 2009-09-10  Nick Roberts  <nickrob@snap.net.nz>
5223         Reported in thread for Bug#4375.
5224         * progmodes/gud.el (gud-tooltip-print-command): Use MI command
5225         "-data-evaluate-expression" instead of print.
5226         * progmodes/gdb-mi.el (gdb-tooltip-print-1): Ditto.
5227         (gdb-tooltip-print): Parse output from above MI command.
5228         (gdb): Revert 2009-08-11 change.  User should detach inferior
5229         manually.
5231         Remove the word "separate" from IO functions as inferior
5232         output is now never displayed in the GUD buffer.
5234 2009-09-10  Juanma Barranquero  <lekktu@gmail.com>
5236         * startup.el (command-line-normalize-file-name): On Windows and
5237         MS-DOS, also convert C:\/ and C:\\ (two backslashes) into C:/.
5239 2009-09-10  Juri Linkov  <juri@jurta.org>
5241         * isearch.el (isearch-text-char-description): Propertize escape
5242         character sequences with the `escape-glyph' face.  (Bug#4344)
5244         * simple.el (shell-command): Set asynchronous process filter to
5245         `comint-output-filter'.  (Bug#4343)
5247         * progmodes/grep.el (grep-template): Add "<X>" to docstring.
5248         (grep-files-aliases): Add "all".  Move "el" and "ch" to the top of
5249         the list.  Move "asm" to the bottom.
5250         (grep-find-ignored-directories): Add `choice' with nil value
5251         to empty the list easily.
5252         (grep-find-ignored-files): New option.
5253         (grep-files-history): Set to nil by default instead of '("ch" "el").
5254         (grep-compute-defaults): Add "<X>" to `grep-template'.
5255         (grep-read-files): Bind new local variables `default-alias' and
5256         `default-extension'.  Use a list of default values for the file prompt.
5257         (lgrep): Add `--exclude=' command line options composed from
5258         `grep-find-ignored-files'.
5259         (rgrep): Add `-name' command line options composed from
5260         `grep-find-ignored-files'.  (Bug#4301)
5262 2009-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5264         * diff-mode.el (diff-hunk-kill): Fix the search of the next hunk
5265         (bug#4368).
5267 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5269         * calendar/time-date.el (autoload):
5270         Expand define-obsolete-function-alias into defalias and make-obsolete
5271         for old Emacsen that Gnus supports.
5272         (with-no-warnings): Define it for old Emacsen.
5273         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
5274         is available.
5275         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
5276         float-time is available; suppress compile warning for time-to-seconds.
5278 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
5280         * net/imap.el (imap-message-map): Docstring fix.
5282 2009-09-09  Glenn Morris  <rgm@gnu.org>
5284         * ffap.el (ffap-file-at-point): Handle absolute (non-remote) files with
5285         line numbers too.  (Bug#4374)
5287 2009-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5289         * smerge-mode.el (smerge-remove-props, smerge-refine):
5290         Use with-silent-modifications (bug#4342).
5292         * subr.el (with-silent-modifications): New macro.
5294 2009-09-07  Juanma Barranquero  <lekktu@gmail.com>
5296         * files.el (top-level): Require `cl' when compiling.
5298 2009-09-07  Glenn Morris  <rgm@gnu.org>
5300         * files.el (auto-mode-alist): Use delphi-mode for .dpr files.
5302         * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
5303         (proced-mark-alt): New alias, to control the advertised key.  (Bug#4362)
5305 2009-09-06  Nick Roberts  <nickrob@snap.net.nz>
5307         * vc-git.el (vc-git-annotate-command): Use separator to parse
5308         arguments correctly.
5310 2009-09-06  Eli Zaretskii  <eliz@gnu.org>
5312         * proced.el (proced-mode): Doc fix.
5314 2009-09-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
5316         * net/tramp.el (tramp-perl-file-attributes): Print "nil" when
5317         lstat fails.
5318         (tramp-do-file-attributes-with-ls): Check for file existence at
5319         remote end.
5320         (tramp-do-file-attributes-with-stat): Likewise.
5321         (tramp-convert-file-attributes): Return nil when attr is nil.
5323 2009-09-05  Glenn Morris  <rgm@gnu.org>
5325         * calendar/diary-lib.el (diary-entry): Add help-echo and follow-link
5326         properties to this button.
5327         (diary-fancy-display): Don't extend the button to the final newline.
5328         (diary-fancy-display-mode): Continue to define "q" as a local key.
5330         * calendar/cal-china.el (holiday-chinese): Make it slightly more
5331         efficient.
5333         * font-lock.el (lisp-font-lock-keywords-2): Add letf.
5335         * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Doc fix.
5336         (byte-compile-dest-file-function): New option.
5337         (byte-compile-dest-file): Doc fix.
5338         Obey byte-compile-dest-file-function.
5339         (byte-compile-cl-file-p): New function.
5340         (byte-compile-eval): Only suppress noruntime warnings about cl functions
5341         if the cl-functions warning is enabled.  Use byte-compile-cl-file-p.
5342         (byte-compile-eval): Check for non-nil byte-compile-cl-functions rather
5343         than for file being previously loaded.
5344         (byte-compile-find-cl-functions): Use byte-compile-cl-file-p.
5345         (byte-compile-file-form-require): Handle the case where requiring a file
5346         indirectly causes CL to be loaded.
5348 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
5350         * files.el (find-alternate-file): Run `kill-buffer-hook' manually
5351         before killing the old buffer, since by the time `kill-buffer' is
5352         run so many buffer variables have been set to nil that it may not
5353         behave as expected.  (Bug#4061)
5355 2009-09-05  Karl Fogel  <kfogel@red-bean.com>
5357         * files.el (find-alternate-file): If the old buffer is modified
5358         and visiting a file, behave similarly to `kill-buffer' when
5359         killing it, thus reverting to the pre-1.878 behavior; see
5360         http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00101.html
5361         for discussion.  Also, consult `buffer-file-name' as a variable
5362         not as a function, for consistency with the rest of the code.
5364 2009-09-04  Michael Albinus  <michael.albinus@gmx.de>
5366         * net/tramp.el (tramp-handle-insert-directory): Handle "--dired"
5367         also when adding a new directory.
5369         * net/tramp-compat.el (tramp-compat-line-beginning-position): New
5370         defun.
5372 2009-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5374         * files.el (locate-file-completion-table): Make it provide boundary
5375         information, so partial-completion works better.
5377 2009-09-04  Leo  <sdl.web@gmail.com>  (tiny change)
5379         * mail/footnote.el (Footnote-text-under-cursor):
5380         Check footnote-text-marker-alist before using it (bug#4324).
5382 2009-09-04  Glenn Morris  <rgm@gnu.org>
5384         * play/5x5.el, play/decipher.el, play/gametree.el, play/handwrite.el:
5385         * play/hanoi.el, play/landmark.el, play/mpuz.el, play/pong.el:
5386         * play/solitaire.el, play/tetris.el:
5387         Remove leading * from defcustom and defface docs.
5389         * calendar/diary-lib.el (diary-fancy-display): Only switch modes if
5390         necessary.
5391         (diary-fancy-overriding-map): New variable.
5392         (diary-fancy-display-mode): Set minor-mode-overriding-map-alist.
5393         Use view-mode.
5395         * vc-rcs.el (vc-rcs-annotate-command): Use forward-line rather than
5396         goto-line.
5398 2009-09-03  Glenn Morris  <rgm@gnu.org>
5400         * arc-mode.el (archive-mode):
5401         * dos-fns.el (set-default-process-coding-system):
5402         * man.el (Man-getpage-in-background):
5403         * menu-bar.el (menu-bar-describe-menu):
5404         * server.el (server-process-filter):
5405         * startup.el (command-line):
5406         * tar-mode.el (tar-header-block-tokenize, tar-extract):
5407         * w32-fns.el (set-default-process-coding-system):
5408         * x-dnd.el (x-dnd-handle-file-name):
5409         * international/mule-cmds.el (mule-menu-keymap)
5410         (set-default-coding-systems, language-info-alist, set-language-info)
5411         (set-language-environment, standard-display-european-internal)
5412         (set-locale-environment):
5413         * international/mule-diag.el (mule-diag):
5414         * mail/emacsbug.el (report-emacs-bug):
5415         * mail/rmail.el (rmail-mode):
5416         * mail/sendmail.el (mail-setup):
5417         Use default-value rather than default-enable-multibyte-characters.
5419         * progmodes/f90.el: Move all safe properties into the defcustoms.
5420         (f90-get-correct-indent, f90-indent-region, f90-abbrev-start): Use memq.
5422         * calendar/appt.el (appt-check):
5423         * calendar/diary-lib.el (diary-set-header, diary-live-p)
5424         (diary-check-diary-file, diary-list-entries)
5425         (diary-include-other-diary-files, diary-simple-display)
5426         (diary-fancy-display, diary-print-entries)
5427         (diary-mark-included-diary-files, diary-make-entry):
5428         Don't call substitute-in-file-name on diary-file.
5430 2009-09-03  Eduard Wiebe  <usenet@pusto.de>
5431             Stefan Monnier  <monnier@iro.umontreal.ca>
5433         * mail/footnote.el (footnote-prefix): Make it a defcustom.
5434         (footnote-mode-map): Move initialization into the declaration.
5435         (footnote-minor-mode-map): Define it rather than changing global-map.
5436         (footnote-mode): Use define-minor-mode.
5438 2009-09-02  Michael Albinus  <michael.albinus@gmx.de>
5440         * net/tramp.el (tramp-handle-file-attributes-with-ls)
5441         (tramp-do-file-attributes-with-perl)
5442         (tramp-do-file-attributes-with-stat): Rename from
5443         `tramp-handle-file-attributes-with-*'.
5444         (tramp-handle-file-attributes): Use them.
5445         (tramp-do-directory-files-and-attributes-with-perl)
5446         (tramp-do-directory-files-and-attributes-with-stat): Rename from
5447         `tramp-handle-directory-files-and-attributes-with-*'.
5448         (tramp-handle-directory-files-and-attributes): Use them.
5449         (tramp-method-out-of-band-p): Additional parameter SIZE.
5450         (tramp-do-copy-or-rename-file, tramp-handle-file-local-copy)
5451         (tramp-handle-write-region): Use it.
5452         (tramp-handle-insert-directory): Use "?\ " for compatibility reasons.
5453         (tramp-handle-vc-registered): Check, whether the first run did
5454         return files to be tested.
5455         (tramp-advice-make-auto-save-file-name): Do not call directly
5456         `tramp-handle-make-auto-save-file-name', because this would bypass
5457         the locking mechanism.
5459         * net/tramp-compat.el (top): Autoload used functions from tramp.el.
5460         (file-remote-p, process-file, start-file-process, set-file-times)
5461         (tramp-compat-file-attributes): Compatibility functions shall not
5462         call directly `tramp-handle-*', because this would bypass the
5463         locking mechanism.
5464         (tramp-compat-number-sequence): New defun.
5466 2009-09-02  Glenn Morris  <rgm@gnu.org>
5468         * calendar/time-date.el (time-to-seconds): In Emacs, make it an obsolete
5469         alias for float-time.
5470         (time-to-number-of-days): In Emacs, use float-time.
5471         * net/newst-backend.el (time-add): Suppress warnings from compat
5472         function.
5473         * time.el (emacs-uptime, emacs-init-time):
5474         * net/rcirc.el (rcirc-keepalive, rcirc-handler-ctcp-KEEPALIVE):
5475         Use float-time rather than time-to-seconds.
5477         * minibuffer.el (completion-initials-expand): Fix typo.
5479         * faces.el (modeline, modeline-inactive, modeline-highlight)
5480         (modeline-buffer-id):
5481         * info.el (info-menu-5): Mark these face aliases as obsolete.
5483 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
5485         * progmodes/gdb-mi.el (gdb-current-context-command): Move the
5486         space ...
5487         (gdb-gud-context-call): ... to here for pre GDB 7.0 when there is
5488         no "--thread" option.
5489         (gdb-stopped): Don't print "Switched to thread" message when it is
5490         unchanged.
5492 2009-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5494         * minibuffer.el (completion-try-completion)
5495         (completion-all-completions): Remove ill-defined (and
5496         mistakenly installed and luckily never used nor documented)
5497         `completion-styles' property.
5498         (completion-initials-expand, completion-initials-all-completions)
5499         (completion-initials-try-completion): New functions.
5500         (completion-styles-alist): Add doc to each entry.
5501         Add new `initials' entry.
5503 2009-09-01  Nick Roberts  <nickrob@snap.net.nz>
5505         * progmodes/gdb-mi.el (gdb-var-create-handler): Remove redundant
5506         MI command -var-evaluate-expression.
5507         (gdb-var-list-children-regexp): Update from regexp-1 in gdb-ui.el
5508         and tweak for case of string child.
5509         (gdb-var-list-children-handler): Update from handler-1 in gdb-ui.el.
5511 2009-09-01  Glenn Morris  <rgm@gnu.org>
5513         * add-log.el (change-log-date-face, change-log-name-face)
5514         (change-log-email-face, change-log-file-face, change-log-list-face)
5515         (change-log-conditionals-face, change-log-function-face)
5516         (change-log-acknowledgement-face):
5517         * cus-edit.el (custom-invalid-face, custom-rogue-face)
5518         (custom-modified-face, custom-set-face, custom-changed-face)
5519         (custom-saved-face, custom-button-face, custom-button-pressed-face)
5520         (custom-documentation-face, custom-state-face, custom-comment-face)
5521         (custom-comment-tag-face, custom-variable-tag-face)
5522         (custom-variable-button-face, custom-face-tag-face)
5523         (custom-group-tag-face-1, custom-group-tag-face):
5524         * diff-mode.el (diff-header-face, diff-file-header-face)
5525         (diff-index-face, diff-hunk-header-face, diff-removed-face)
5526         (diff-added-face, diff-changed-face, diff-function-face)
5527         (diff-context-face, diff-nonexistent-face):
5528         * generic-x.el (show-tabs-tab-face, show-tabs-space-face):
5529         * hilit-chg.el (highlight-changes-face, highlight-changes-delete-face):
5530         * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face)
5531         (Info-title-4-face):
5532         * isearch.el (isearch-lazy-highlight-face):
5533         * log-view.el (log-view-file-face, log-view-message-face):
5534         * paren.el (show-paren-match-face, show-paren-mismatch-face):
5535         * pcvs-info.el (cvs-header-face, cvs-filename-face, cvs-unknown-face)
5536         (cvs-handled-face, cvs-need-action-face, cvs-marked-face)
5537         (cvs-msg-face):
5538         * smerge-mode.el (smerge-mine-face, smerge-other-face)
5539         (smerge-base-face, smerge-markers-face):
5540         * wid-edit.el (widget-documentation-face, widget-button-face)
5541         (widget-field-face, widget-single-line-field-face)
5542         (widget-inactive-face, widget-button-pressed-face):
5543         * woman.el (woman-italic-face, woman-bold-face, woman-unknown-face)
5544         (woman-addition-face):
5545         * eshell/em-ls.el (eshell-ls-directory-face, eshell-ls-symlink-face)
5546         (eshell-ls-executable-face, eshell-ls-readonly-face)
5547         (eshell-ls-unreadable-face, eshell-ls-special-face)
5548         (eshell-ls-missing-face, eshell-ls-archive-face)
5549         (eshell-ls-backup-face, eshell-ls-product-face)
5550         (eshell-ls-clutter-face):
5551         * eshell/em-prompt.el (eshell-prompt-face):
5552         * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face):
5553         * obsolete/old-whitespace.el (whitespace-highlight-face):
5554         * progmodes/antlr-mode.el (antlr-font-lock-default-face)
5555         (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face)
5556         (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face)
5557         (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face)
5558         (antlr-font-lock-literal-face):
5559         * progmodes/ebrowse.el (ebrowse-tree-mark-face)
5560         (ebrowse-root-class-face, ebrowse-file-name-face)
5561         (ebrowse-default-face, ebrowse-member-attribute-face)
5562         (ebrowse-member-class-face, ebrowse-progress-face):
5563         * progmodes/make-mode.el (makefile-space-face):
5564         * progmodes/sh-script.el (sh-heredoc-face):
5565         * textmodes/flyspell.el (flyspell-incorrect-face)
5566         (flyspell-duplicate-face):
5567         * textmodes/tex-mode.el (tex-math-face, tex-verbatim-face):
5568         * textmodes/texinfo.el (texinfo-heading-face):
5569         Mark face aliases with "-face" suffix as obsolete.
5571         * mail/feedmail.el (file-name-buffer-file-type-alist): Define for
5572         compiler.
5574         * net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-image-menu)
5575         (eudc-bob-sound-menu): Use defvar rather than defconst, since
5576         easy-menu-define wants to modify these.
5578         * net/net-utils.el (nslookup): Use make-comint rather than comint-run.
5580         * net/browse-url.el (browse-url-file-url):
5581         * term/internal.el (dos-codepage-setup):
5582         Use default-value rather than default-enable-multibyte-characters.
5584         * progmodes/etags.el (etags-goto-tag-location):
5585         * progmodes/flymake.el (flymake-highlight-line)
5586         (flymake-goto-file-and-line, flymake-goto-line):
5587         * progmodes/gdb-mi.el (gdb-mouse-until, gdb-mouse-jump)
5588         (gdb-goto-breakpoint):
5589         * progmodes/idlw-shell.el (idlwave-shell-move-to-bp):
5590         * progmodes/python.el (python-find-function)
5591         (python-pdbtrack-track-stack-file):
5592         * progmodes/verilog-mode.el (verilog-surelint-off):
5593         * term/ns-win.el (ns-open-file-select-line):
5594         * textmodes/bibtex.el (bibtex-validate, bibtex-validate-globally):
5595         Use forward-line rather than goto-line.
5597         * textmodes/reftex-cite.el (reftex-offer-bib-menu):
5598         * textmodes/reftex-index.el (reftex-display-index):
5599         * textmodes/reftex-ref.el (reftex-offer-label-menu):
5600         * textmodes/reftex-toc.el (reftex-toc):
5601         Remove unnecessary bindings of default-major-mode (all are followed by
5602         major-mode check and possible mode switch).
5604 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
5606         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
5607         Handle watchpoints (bug#4282).
5608         (def-gdb-thread-buffer-command): Enable thread to be selected by
5609         clicking without selecting threads buffer first.
5610         (gdb-current-context-command): Use selected frame so that "up",
5611         "down" etc work in the GUD buffer.
5612         (gdb-update): Find selected frame before rendering stack buffer.
5613         (gdb-frame-handler): Set gdb-frame-number for stack buffer.
5615 2009-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5617         * progmodes/sym-comp.el (displayed-completions): Remove.
5618         (symbol-complete): Use minibuffer-complete.
5620 2009-08-31  Glenn Morris  <rgm@gnu.org>
5622         * emacs-lisp/byte-run.el (define-obsolete-face-alias): New macro.
5624         * apropos.el (apropos-symbols-internal):
5625         Handle (obsolete) face aliases.
5627         * faces.el (describe-face): Adjust the output format to be more like
5628         describe-variable, and to mention (obsolete) face aliases.
5629         Adjust the whitespace so that help-setup-xref works.
5631         * calendar/calendar.el (calendar-today-face, diary-face, holiday-face):
5632         * calendar/diary-lib.el (diary-button-face):
5633         Mark these face aliases as obsolete.
5635         * calendar/calendar.el (calendar-today): Doc fix.
5637 2009-08-31  Nick Roberts  <nickrob@snap.net.nz>
5639         * progmodes/gdb-mi.el (gdb-control-all-threads)
5640         (gdb-control-current-thread): Force tool bar update.
5641         (gdb-non-stop-handler): New function.
5642         (gdb-init-1): Use it to test if non-stop mode is supported.
5643         Remove unused gdbmi buffer type.
5645 2009-08-30  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
5647         * progmodes/grep.el (grep-read-files): Strip trailing <N> from
5648         buffer names not visiting a file (e.g. cloned buffers).  (Bug#4210)
5650 2009-08-30  Nick Roberts  <nickrob@snap.net.nz>
5652         * comint.el (comint-exec-1): Check command is non-null first.
5653         Part of gdb-mi.el change (2009-08-28).
5655 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5657         * emacs-lisp/lisp.el (lisp-complete-symbol): Use minibuffer-complete.
5659 2009-08-30  Juanma Barranquero  <lekktu@gmail.com>
5661         * subr.el (do-after-load-evaluation): Fix last change: use `mapc'
5662         instead of `dolist' to avoid a recursive require when bootstrapping.
5664 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5666         * emacs-lisp/lisp.el (field-complete): Use minibuffer-complete.
5668         * net/ldap.el (ldap-search-internal): Use with-current-buffer and push.
5670         * net/imap.el (imap-send-command): Simplify.
5671         (imap-wait-for-tag): point-max -> buffer-size.
5673         * net/ange-ftp.el (internal-ange-ftp-mode): Use define-derived-mode.
5675         * emacs-lisp/easy-mmode.el (define-minor-mode): Don't use symbol-value
5676         with constant argument.
5678         * emacs-lisp/debug.el (debugger-setup-buffer): Make it multibyte.
5680         * emacs-lisp/cl.el (cl-macro-environment): Don't define it here.
5682         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag):
5683         Change default, since most of our files don't have a history.
5684         (checkdoc-display-status-buffer): Don't use a hidden buffer to show to
5685         the user.
5687         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5688         Add comint-run.
5690         * calc/calc.el: Improve commenting convention.
5691         (calc-digit-map, toplevel): Simplify.
5693         * comint.el (comint-insert-input): Be careful to only set point if we
5694         don't delegate to some other command.
5696         * proced.el (proced-signal-list): Make it an alist.
5697         (proced-grammar-alist): Capitalize names.
5698         (proced-send-signal): Use a non-hidden buffer (since it's displayed).
5699         Disable undo manually and make it read-only.
5700         Use completion-annotate-function.
5702         * minibuffer.el (minibuffer-message): If the current buffer is not
5703         a minibuffer, insert the message in the echo area rather than at the
5704         end of the buffer.
5705         (completion-annotate-function): New variable.
5706         (minibuffer-completion-help): Use it.
5707         (completion--embedded-envvar-table): Environment vars are
5708         always case-sensitive.
5710 2009-08-30  Glenn Morris  <rgm@gnu.org>
5712         * progmodes/fortran.el (fortran-start-prog-re): New constant, extracted
5713         from fortran-current-defun.
5714         (fortran-beginning-of-subprogram): Be more precise about finding the
5715         start, to avoid an infinite loop in end-of-defun.  (Bug#4259)
5716         (fortran-end-of-subprogram): Simplify.
5717         (fortran-current-defun): Use fortran-start-prog-re.
5719 2009-08-29  Juanma Barranquero  <lekktu@gmail.com>
5721         * subr.el (do-after-load-evaluation): Simplify.
5723 2009-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
5725         * vc.el (vc-print-log-internal): Move RCS/CVS specific code ...
5727         * vc-rcs.el (vc-rcs-print-log-cleanup): ... here.  New function.
5728         (vc-rcs-print-log): Use it.
5730         * vc-cvs.el (vc-cvs-print-log): Use vc-rcs-print-log-cleanup.
5732 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5734         * paths.el (abbrev-file-name): Move to abbrev.el.
5735         * abbrev.el (abbrev-file-name): Move from paths.el.
5736         Obey user-emacs-directory.
5737         * calc/calc.el (calc-settings-file): Don't autoload and instead obey
5738         user-emacs-directory.
5739         * dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
5740         abbrev-file-name and calc-settings-file any more.
5741         * startup.el (command-line): Recompute abbrev-file-name and
5742         abbreviated-home-dir.
5743         (normal-no-mouse-startup-screen): Improve the generic code and get rid
5744         of the special code for when C-h bindings haven't been changed.
5745         (display-startup-echo-area-message): Use with-current-buffer.
5746         (command-line-1): Use a list of strings, rather than a list of lists
5747         of strings for longopts.
5749         * files.el (get-free-disk-space): Use / for default-directory.
5751         * textmodes/ispell.el (ispell-accept-output, ispell-command-loop):
5752         Use with-current-buffer.
5754         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p):
5755         Recognize immutable variables like most-positive-fixnum.
5756         (byte-compile-setq-default): Check and warn if trying to assign
5757         to an immutable variable, or a non-variable.
5759         * progmodes/cc-vars.el (c-comment-continuation-stars):
5760         * progmodes/cc-engine.el (c-looking-at-bos):
5761         * progmodes/cc-cmds.el (c-toggle-auto-state)
5762         (c-forward-into-nomenclature, c-backward-into-nomenclature)
5763         (c-comment-line-break-function): Add version of obsolescence.
5765 2009-08-28  Juri Linkov  <juri@jurta.org>
5767         * files.el (magic-fallback-mode-alist): Add ZIP magic number
5768         associated with `archive-mode'.
5770         * image.el (image-type-header-regexps): Use only JPEG magic number
5771         to determine JPEG images, and don't use `image-jpeg-p' because
5772         Emacs can display non-JFIF non-Exif JPEG images.
5774 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
5776         * arc-mode.el (archive-mode):
5777         * emacs-lisp/re-builder.el (re-builder-unload-function):
5778         Protect against the default value of `major-mode' being nil.
5780 2009-08-28  Juanma Barranquero  <lekktu@gmail.com>
5782         * international/ucs-normalize.el (ucs-normalize-sort, quick-check-list):
5783         Fix typos in docstrings.
5785         * progmodes/js.el (js--macro-decl-re): Doc fix.
5786         (js--plain-method-re, js--split-name): Refloc docstring.
5787         (js--class-styles, js--make-merged-item, js--splice-into-items):
5788         Fix typos in docstrings; reflow docstrings.
5789         (js--maybe-join, js--function-prologue-beginning, js--flush-caches)
5790         (js--variable-decl-matcher, js--inside-pitem-p)
5791         (js--parse-state-at-point, js--get-all-known-symbols)
5792         (js--symbol-history, js-find-symbol, js--js-references)
5793         (js--moz-interactor, js--js-encode-value, js--read-tab):
5794         Fix typos in docstrings.
5796 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5798         * textmodes/reftex.el (reftex-get-file-buffer-force):
5799         * progmodes/verilog-mode.el (verilog-batch-execute-func):
5800         * emulation/viper.el (viper-go-away, viper-set-hooks):
5801         * emacs-lisp/re-builder.el (re-builder-unload-function):
5802         * emacs-lisp/bytecomp.el (byte-compile-file):
5803         * ses.el (ses-unload-function):
5804         * hexl.el (hexl-find-file):
5805         * files.el (normal-mode):
5806         * ehelp.el (with-electric-help):
5807         * autoinsert.el (auto-insert-alist):
5808         * arc-mode.el (archive-mode):
5809         Use (default-value 'major-mode) instead of default-major-mode.
5811         * textmodes/ispell.el (ispell-check-version, ispell-send-string):
5812         * international/mule.el (load-with-code-conversion):
5813         * emacs-lisp/debug.el (debug):
5814         * ediff-vers.el (ediff-rcs-get-output-buffer):
5815         * dired.el (dired-internal-noselect): Don't let-bind
5816         default-major-mode around code that doesn't use it.
5817         E.g. buffer creation via get-buffer-create doesn't use it.
5819 2009-08-28  Michael Albinus  <michael.albinus@gmx.de>
5821         * net/tramp.el (all): Replace "'(lambda" by "(lambda".
5822         (tramp-handle-file-local-copy): Unset `file-name-handler-alist'
5823         when writing the temp file.  Otherwise, epa-file gets confused.
5824         (tramp-register-file-name-handlers): Make it a defun.  Move also
5825         `epa-file-handler' to the front of `file-name-handler-alist'.
5827 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5829         * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to
5830         start right after a ^M.
5831         (tramp-root-regexp, tramp-completion-file-name-regexp-unified)
5832         (tramp-completion-file-name-regexp-separate)
5833         (tramp-completion-file-name-regexp-url): Use \\` and \\'.
5834         (tramp-handle-file-attributes, tramp-set-file-uid-gid):
5835         Don't modify last-coding-system-used by accident.
5836         (tramp-completion-file-name-handler): Apply the checks here,
5837         instead during registration.
5838         (tramp-register-file-name-handlers) Renamed from
5839         `tramp-register-file-name-handler'.  Register both
5840         `tramp-file-name-handler' and `tramp-completion-file-name-handler'.
5841         (tramp-register-completion-file-name-handler): Remove.  (Bug#4260)
5843 2009-08-28  Nick Roberts  <nickrob@snap.net.nz>
5845         * progmodes/gdb-mi.el (gdb-use-separate-io-buffer):
5846         Remove variable ...
5847         (gdb-init-1, gdb-display-separate-io-buffer)
5848         (gdb-frame-separate-io-buffer, gdb-setup-windows): ... and
5849         references to it.
5850         (gdb-inferior-io-mode): Use make-comint-in-buffer.
5851         (gdb-inferior-filter): Use comint-output-filter to stop
5852         echoing and remove ^M characters.
5854 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5856         * emulation/viper-init.el (viper-restore-cursor-type):
5857         * emulation/cua-base.el (cua--update-indications):
5858         Replace default-cursor-type with (default-value 'cursor-type).
5860         * mail/sendmail.el (mail-recover-1):
5861         * international/mule-diag.el (describe-current-coding-system-briefly)
5862         (describe-current-coding-system):
5863         * international/mule-cmds.el (select-safe-coding-system)
5864         (select-message-coding-system)
5865         (set-language-environment-coding-systems, set-locale-environment):
5866         * hexl.el (hexl-insert-multibyte-char):
5867         * dos-w32.el (find-buffer-file-type-coding-system):
5868         * simple.el (what-cursor-position):
5869         Replace uses of default-buffer-file-coding-system
5870         with (default-value 'buffer-file-coding-system).
5872         * emacs-lisp/edebug.el (edebug-display, edebug-outside-excursion):
5873         Replace uses of default-cursor-in-non-selected-windows
5874         with (default-value 'cursor-in-non-selected-windows).
5875         Use with-current-buffer.
5877         * mail/feedmail.el: Use CL macros.
5878         (feedmail-run-the-queue, feedmail-send-it-immediately):
5879         * dos-w32.el (find-buffer-file-type): Replace uses of
5880         default-buffer-file-type with (default-value 'buffer-file-type).
5882 2009-08-28  Glenn Morris  <rgm@gnu.org>
5884         * calendar/diary-lib.el (diary-list-entries, diary-goto-entry)
5885         (diary-show-all-entries, diary-mark-entries, diary-make-entry):
5886         Use default-value of major-mode rather than default-major-mode.
5888 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5890         * Makefile.in (update-elcfiles): Report left over elc files.
5892         * mail/mailalias.el (build-mail-aliases): Use with-temp-buffer,
5893         expand-file-name and with-current-buffer.
5894         (mail-get-names, mail-directory): Use with-current-buffer.
5896         * vc.el (vc-read-revision): New function.
5897         (vc-version-diff, vc-merge): Use it.
5899 2009-08-27  Sam Steingold  <sds@gnu.org>
5901         * simple.el (kill-do-not-save-duplicates): New user option.
5902         (kill-new): When it is non-nil, and the new string is the same as
5903         the latest kill, set replace to t to avoid duplicates in kill-ring.
5905 2009-08-27  Julian Scheid  <julians37@gmail.com>  (tiny change)
5907         * net/tramp.el (tramp-handle-process-file): Do not flush all
5908         caches when `process-file-side-effects' is set.
5909         (tramp-handle-vc-registered): Use `tramp-get-file-exists-command'
5910         instead of `tramp-find-file-exists-command'.
5911         Unset `process-file-side-effects'.
5913 2009-08-27  Michael Albinus  <michael.albinus@gmx.de>
5915         * net/tramp.el (tramp-methods): New method "rsyncc".
5916         (top): Add completion function for "rsyncc".
5917         (tramp-message-show-message): New defvar.
5918         (tramp-message, tramp-error): Use it.
5919         (tramp-do-copy-or-rename-file-directly): Extend check for direct
5920         remote copying.
5921         (tramp-do-copy-or-rename-file-out-of-band): Handle new
5922         `tramp-methods' entry `copy-env' of "rsyncc".
5923         (tramp-vc-registered-read-file-names): New defconst.
5924         (tramp-vc-registered-file-names): New defvar.
5925         (tramp-handle-vc-registered): Implement optimization strategy.
5926         (tramp-run-real-handler): Add `tramp-vc-file-name-handler'.
5927         (tramp-vc-file-name-handler): New defun.
5928         (tramp-get-ls-command, tramp-get-test-command)
5929         (tramp-get-file-exists-command, tramp-get-remote-ln)
5930         (tramp-get-remote-perl, tramp-get-remote-stat)
5931         (tramp-get-remote-id): Remove superfluous `with-current-buffer'.
5933         * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
5934         (tramp-cache-inhibit-cache): Extend doc string.  It allows also
5935         timestamps.
5936         (tramp-get-file-property): Check for timestamps in
5937         `tramp-cache-inhibit-cache'.
5938         (tramp-set-file-property): Write timestamp.
5940 2009-08-27  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
5942         * language/japan-util.el (japanese-symbol-table): Add entries for
5943         cp932-2-byte.
5945         * international/characters.el: Add category `j' to cp932-2-byte.
5947 2009-08-27  Kenichi Handa  <handa@m17n.org>
5949         * international/fontset.el (build-default-fontset-data): New macro.
5950         (setup-default-fontset): Use build-default-fontset-data for CJK,
5951         tibetan, ethiopic, and ipa.
5953 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5955         * cus-start.el (default-major-mode): Customize `major-mode' instead.
5956         (enable-multibyte-characters): Not customizable any more.
5958         * subr.el (default-mode-line-format, default-header-line-format)
5959         (default-line-spacing, default-abbrev-mode, default-ctl-arrow)
5960         (default-direction-reversed, default-truncate-lines)
5961         (default-left-margin, default-tab-width, default-case-fold-search)
5962         (default-left-margin-width, default-right-margin-width)
5963         (default-left-fringe-width, default-right-fringe-width)
5964         (default-fringes-outside-margins, default-scroll-bar-width)
5965         (default-vertical-scroll-bar, default-indicate-empty-lines)
5966         (default-indicate-buffer-boundaries, default-fringe-indicator-alist)
5967         (default-fringe-cursor-alist, default-scroll-up-aggressively)
5968         (default-scroll-down-aggressively, default-fill-column)
5969         (default-cursor-type, default-buffer-file-type)
5970         (default-cursor-in-non-selected-windows)
5971         (default-buffer-file-coding-system, default-major-mode)
5972         (default-enable-multibyte-characters): Mark as obsolete.
5974 2009-08-27  Dan Nicolaescu  <dann@ics.uci.edu>
5976         * vc-dir.el (vc-dir-update): Remove debug helper.
5978         * vc-cvs.el (vc-cvs-update-changelog): Fix typo.
5980 2009-08-26  Sam Steingold  <sds@gnu.org>
5982         * simple.el (save-interprogram-paste-before-kill): New user option.
5983         (kill-new): When `save-interprogram-paste-before-kill' is non-nil,
5984         save the interprogram-paste into kill-ring before overriding it
5985         with the Emacs kill.
5987 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
5989         * vc.el (vc-trunk-p): Rename to vc-rcs-trunk-p and move to vc-rcs.el.
5990         (vc-minor-part): Rename to vc-rcs-minor-part and move to vc-rcs.el.
5991         (vc-default-previous-revision): Rename to vc-rcs-previous-revision
5992         and move to vc-rcs.el.
5993         (vc-default-next-revision): Rename to vc-rcs-next-revision and
5994         move to vc-rcs.el.
5995         (vc-cvs-update-changelog): Move to vc-cvs.el, use vc-call-backend.
5996         (vc-rcs-update-changelog): Remove.
5997         (vc-update-changelog-rcs2log): Rename to vc-rcs-update-changelog
5998         and move to vc-rcs.el.
6000         * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-checkin)
6001         (vc-rcs-checkout, vc-rcs-rollback): Adjust for the vc-rcs-trunk-p
6002         renaming.
6003         (vc-rcs-trunk-p, vc-rcs-minor-part, vc-rcs-previous-revision)
6004         (vc-rcs-next-revision, vc-rcs-update-changelog): Move here from
6005         vc.el, renamed to be RCS specific.
6007         * vc-cvs.el (vc-cvs-previous-revision, vc-cvs-next-revision):
6008         New functions.
6009         (vc-cvs-update-changelog): Move here from vc.el.
6011         * vc-sccs.el (vc-sccs-previous-revision, vc-sccs-next-revision):
6012         New functions.
6014 2009-08-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6016         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change.
6018 2009-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
6020         * vc-git.el (vc-git-register): Use "git add" for directories.
6021         (vc-git-stash, vc-git-stash-show): New functions.
6022         (vc-git-extra-menu-map): Bind them.
6024         * vc-dir.el (vc-dir-node-directory, vc-dir-update): Get the parent
6025         directory correctly in case the item is a directory itself.
6027         * vc.el: Document the desired behavior for reverted files in the
6028         `added' state.
6029         (vc-default-prettify-state-info): Remove function, unused.
6031         * vc-bzr.el (vc-bzr-prettify-state-info): Remove function, unused.
6033 2009-08-26  Glenn Morris  <rgm@gnu.org>
6035         * bindings.el (standard-mode-line-format): Reposition dashes in
6036         which-func entry.  (Bug#4217)
6038         * files.el (enable-local-variables, enable-local-eval)
6039         (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
6040         the defcustoms.
6041         (auto-mode-alist, ignored-local-variables)
6042         (save-some-buffers-action-alist): Move risky declarations to the
6043         definitions.
6044         (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
6045         (font-lock-defaults, format-alist, imenu--index-alist)
6046         (imenu-generic-expression, input-method-alist, minor-mode-alist)
6047         (mode-line-buffer-identification, mode-line-client, mode-line-modes)
6048         (mode-line-modified, mode-line-mule-info, mode-line-position)
6049         (mode-line-process, mode-line-remote, outline-level)
6050         (parse-time-rules, rmail-output-file-alist)
6051         (special-display-buffer-names, vc-mode):
6052         Move risky declarations to the relevant files.
6053         * bindings.el (mode-line-client, mode-line-mule-info, mode-line-remote)
6054         (mode-line-modified, mode-line-process, mode-line-position)
6055         (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
6056         * font-core.el (font-lock-defaults):
6057         * format.el (format-alist):
6058         * vc-hooks.el (vc-mode):
6059         * window.el (special-display-buffer-names):
6060         * international/mule-cmds.el (input-method-alist):
6061         Define riskiness here (dumped file) rather than in files.el.
6062         * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
6063         * imenu.el (imenu-generic-expression, imenu--index-alist):
6064         * outline.el (outline-level):
6065         * time.el (display-time-string):
6066         * calendar/parse-time.el (parse-time-rules):
6067         * mail/rmailout.el (rmail-output-file-alist):
6068         Autoload riskiness here, rather than placing in files.el.
6070 2009-08-26  Andreas Schwab  <schwab@linux-m68k.org>
6072         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
6074 2009-08-25  Michael Albinus  <michael.albinus@gmx.de>
6076         * simple.el (process-file-side-effects): New defvar.
6078         * dired-aux.el (dired-show-file-type):
6079         * vc.el (vc-diff-internal):
6080         * vc-arch.el (vc-arch-diff):
6081         * vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
6082         * vc-cvs.el (vc-cvs-state, vc-cvs-diff, vc-cvs-revision-table):
6083         * vc-git.el (vc-git-registered, vc-git-working-revision)
6084         (vc-git-find-revision, vc-git-diff, vc-git-revision-table)
6085         (vc-git--empty-db-p):
6086         * vc-hooks.el (vc-user-login-name):
6087         * vc-svn.el (vc-svn-registered, vc-svn-state)
6088         (vc-svn-dir-extra-headers, vc-svn-find-revision):
6089         * progmodes/grep.el (grep-probe): Let-bind
6090         `process-file-side-effects' with nil.
6092         * net/dbus.el (dbus-ping): Add optional parameter TIMEOUT.
6094         * net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
6095         daemon.  Replace ping by checking for running service for bluez
6096         and zeroconf.  (Bug#4239)
6098 2009-08-25  Kevin Ryde  <user42@zip.com.au>
6100         * net/dig.el (dig): Add autoload cookie.
6102 2009-08-25  Glenn Morris  <rgm@gnu.org>
6104         * emacs-lisp/bytecomp.el (byte-compile-eval): Fix test for cl in
6105         load-history for absolute file-names.
6106         (byte-compile-file-form-require): Warn about use of the cl package.
6108         * format.el (format-alist): Doc fix.
6110         * play/bubbles.el (top-level): Don't require cl at run-time.
6112         * progmodes/verilog-mode.el (top-level): Don't require lucid (and hence
6113         run-time cl).
6115 2009-08-24  Dmitry Dzhus  <dima@sphinx.net.ru>
6117         * progmodes/gdb-mi.el (gdb-mapcar*): Replacement for `mapcar*'
6118         from cl package.
6119         (gdb-table-add-row, gdb-table-string): Use `gdb-mapcar*'.
6121 2009-08-24  Jay Belanger  <jay.p.belanger@gmail.com>
6123         * calc/calc-alg.el (math-trig-rewrite)
6124         (math-hyperbolic-trig-rewrite): New functions.
6125         (calc-simplify): Simplify trig functions when asked.
6127 2009-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6129         * diff-mode.el (diff-find-source-location): Avoid goto-line.
6131 2009-08-24  Kenichi Handa  <handa@m17n.org>
6133         * language/ind-util.el (mapthread): Delete it.
6134         (combinatorial): New function.
6135         (indian--puthash-cv): Use combinatorial instead of mapthread.
6137 2009-08-22  Kevin Ryde  <user42@zip.com.au>
6139         * emacs-lisp/checkdoc.el (checkdoc-force-history-flag)
6140         (checkdoc-arguments-in-order-flag): Add safe-local-variable booleanp.
6141         (checkdoc-symbol-words): Add safe-local-variable for list of strings.
6142         Clarify docstring that the value is strings not symbols.
6143         (checkdoc-list-of-strings-p): New function.
6145 2009-08-22  Glenn Morris  <rgm@gnu.org>
6147         * files.el (auto-mode-alist):
6148         * hippie-exp.el (he-concat-directory-file-name):
6149         * lpr.el (lpr-windows-system, printer-name):
6150         * ls-lisp.el (ls-lisp-emulation, ls-lisp-use-insert-directory-program):
6151         * ps-print.el (ps-windows-system):
6152         * startup.el (command-line):
6153         * emulation/viper-ex.el (viper-glob-function):
6154         * international/mule-cmds.el (set-language-environment-coding-systems):
6155         * net/ange-ftp.el (ange-ftp-write-region):
6156         * obsolete/fast-lock.el (fast-lock-cache-name):
6157         Remove code for defunct system-types emx, macos, mswindows, next-mach,
6158         unisoft-unix, vax-vms, win32, w32.
6160         * calendar/diary-lib.el (diary-mark-entries-1): Only mark all days of a
6161         given name if the pattern is not more specific.
6163         * calendar/lunar.el (lunar-phase-names): New option.
6164         (lunar-phase): Doc fix.
6165         (lunar-cycles-per-year): New constant.
6166         (lunar-index): New function.
6167         (lunar-phase-list, diary-lunar-phases): Use lunar-index.
6168         (lunar-phase-name): Use lunar-phase-names.
6169         (calendar-lunar-phases): Use format.
6170         (lunar-new-moon-on-or-after): Use lunar-cycles-per-year.
6172         * progmodes/cperl-mode.el (cperl-imenu-name-and-position):
6173         Copy imenu-example--name-and-position function here for own use.
6174         (cperl-xsub-scan): Use cperl-imenu-name-and-position.
6176         * bs.el (bs--redisplay):
6177         * cus-edit.el (custom-redraw):
6178         * ibuffer.el (ibuffer-bury-buffer):
6179         * server.el (server-goto-line-column):
6180         * startup.el (command-line-1):
6181         * strokes.el (strokes-xpm-for-stroke):
6182         * term.el (term-display-buffer-line):
6183         * view.el (View-goto-line):
6184         * calc/calc.el (calc-do, calc-trail-buffer):
6185         * play/gamegrid.el (gamegrid-add-score-insecure):
6186         * progmodes/ada-mode.el (ada-compile-goto-error):
6187         * progmodes/ada-xref.el (ada-xref-find-in-modified-ali):
6188         (ebrowse-select-1st-to-9nth):
6189         * progmodes/cperl-mode.el (cperl-time-fontification):
6190         * progmodes/ebrowse.el (ebrowse-toggle-file-name-display)
6191         * progmodes/gud.el (gud-display-line):
6192         (idlwave-shell-display-line):
6193         * progmodes/idlw-shell.el (idlwave-shell-goto-frame)
6194         * progmodes/make-mode.el (makefile-browser-toggle):
6195         (vhdl-speedbar-port-copy, vhdl-compose-components-package):
6196         * progmodes/vhdl-mode.el (vhdl-speedbar-find-file)
6197         * textmodes/picture.el (picture-draw-rectangle):
6198         * textmodes/reftex-index.el (reftex-index-goto-letter):
6199         (reftex-select-jump-to-previous):
6200         * textmodes/reftex-sel.el (reftex-find-start-point)
6201         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-restore-region):
6202         (rst-straighten-deco-spacing, rst-section-tree, rst-toc):
6203         * textmodes/rst.el (rst-promote-region, rst-straighten-decorations)
6204         * textmodes/tex-mode.el (tex-compilation-parse-errors):
6205         * textmodes/two-column.el (2C-associated-buffer):
6206         Use forward-line rather than goto-line.
6208         * emulation/vi.el (vi-goto-line): Don't warn about non-interactive
6209         goto-line.
6211         * international/ucs-normalize.el (nfd, decomposition-translation-alist)
6212         (decomposition-char-recursively, alist-list-to-vector, quick-check-list)
6213         (quick-check-list-to-regexp): Declare.
6215         * progmodes/make-mode.el (makefile-browser-insert-selection):
6216         Use goto-char rather than goto-line.
6218         * progmodes/prolog.el (compilation-error-regexp-alist)
6219         (compilation-forget-errors): Declare.
6221 2009-08-22  Juri Linkov  <juri@jurta.org>
6223         * progmodes/grep.el (lgrep, rgrep): At the beginning
6224         set `dir' to `default-directory' unless `dir' is a non-nil
6225         readable directory.  (Bug#4052)
6226         (lgrep, rgrep): Change a weird way to report an error
6227         from using `read-string' to using `error'.
6228         Instead of using interactive arguments in the function body,
6229         add new argument `confirm'.
6231 2009-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6233         * textmodes/remember.el (remember-buffer):
6234         * progmodes/cperl-mode.el (cperl-vc-header-alist):
6235         * calendar/icalendar.el (icalendar-convert-diary-to-ical)
6236         (icalendar-extract-ical-from-buffer):
6237         * net/newst-treeview.el (newsticker-groups-filename):
6238         * net/newst-backend.el (newsticker-cache-filename):
6239         * speedbar.el (speedbar-update-speed, speedbar-navigating-speed)
6240         (speedbar-ignored-path-expressions, speedbar-ignored-path-regexp)
6241         (speedbar-add-ignored-path-regexp, speedbar-line-path)
6242         (speedbar-buffers-line-path, speedbar-path-line)
6243         (speedbar-buffers-line-path):
6244         * epg.el (epg-passphrase-callback-function, epg-start-sign-keys)
6245         (epg-sign-keys):
6246         * epa.el (epa-display-verify-result):
6247         * progmodes/pascal.el (pascal-outline): Add version of obsolescence.
6249 2009-08-21  Glenn Morris  <rgm@gnu.org>
6251         * progmodes/js.el (inferior-moz-process): Fix declaration.
6253         * imenu.el (imenu-example--name-and-position): Fix obsolescence message.
6255         * obsolete/rnewspost.el (news-mail-reply):
6256         Use goto-char rather than goto-line.
6258         * term/ns-win.el (ns-open-file-select-line):
6259         Use line-beginning-position rather than goto-line.
6261         * apropos.el (apropos-command):
6262         * ehelp.el (electric-helpify):
6263         * printing.el (pr-show-setup):
6264         * strokes.el (strokes-help):
6265         * tutorial.el (tutorial--describe-nonstandard-key)
6266         (tutorial--detailed-help):
6267         * woman.el (woman-mini-help, woman-display-extended-fonts):
6268         * calc/calc-help.el (calc-describe-key):
6269         * emulation/edt.el (edt-electric-helpify):
6270         * international/mule-diag.el (mule-diag):
6271         * play/yow.el (apropos-zippy):
6272         * progmodes/python.el (python-describe-symbol):
6273         * progmodes/vhdl-mode.el (vhdl-doc-variable, vhdl-doc-mode):
6274         * textmodes/table.el (*table--cell-describe-mode)
6275         (*table--cell-describe-bindings):
6276         Use help-print-return-message rather than the now obsolete alias.
6278         * calendar/cal-move.el (calendar-cursor-to-nearest-date)
6279         (calendar-cursor-to-visible-date):
6280         * play/5x5.el (5x5-position-cursor):
6281         * play/decipher.el (decipher):
6282         * play/gomoku.el (gomoku-goto-xy):
6283         * play/landmark.el (lm-goto-xy):
6284         * play/mpuz.el (mpuz-paint-errors, mpuz-paint-statistics)
6285         (mpuz-paint-digit):
6286         Use forward-line, not goto-line.
6288         * mail/rmail.el (rmail-obsolete): Delete custom group.
6289         (rmail-pop-password, rmail-pop-password-required): Make into aliases.
6290         (rmail-remote-password, rmail-remote-password-required):
6291         Remove unneeded :set-after and :set properties.
6293 2009-08-21  Michael Albinus  <michael.albinus@gmx.de>
6295         * net/dbus.el (top): Initialize only when `dbusbind' is loaded.
6297 2009-08-21  Dan Nicolaescu  <dann@ics.uci.edu>
6299         * loadup.el: Remove leftover macos code.
6301         * vc-git.el (vc-git-annotate-command): Run asynchronously.
6302         Explicitly pass the date format to git blame so that user local
6303         so that the output format can be parsed.
6305 2009-08-20  Michael Albinus  <michael.albinus@gmx.de>
6307         * net/dbus.el (top): Don't check for (getenv
6308         "DBUS_SESSION_BUS_ADDRESS").  It's done in dbusbind.c now.
6310 2009-08-19  Magnus Henoch  <magnus.henoch@gmail.com>
6312         * log-edit.el (log-edit-strip-single-file-name): New var.
6313         (log-edit-insert-changelog): Use it.  Bug#3571
6315 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6317         * subr.el (read-passwd): Use read-key so keypad keys work as well.
6318         Bug#3287
6320         * help.el (help-print-return-message): Rename from
6321         print-help-return-message.
6323         * log-view.el (log-view-mode-map): Remove `q' binding, and unreliable
6324         cvs-mode-map parent hack.
6325         (log-view-mode): Derive from special-mode.
6327         * linum.el (linum-mode): window-size-change-functions is redundant.
6328         Adapt to new window-configuration-change-hook behavior.
6329         (linum-after-size, linum-after-config): Remove.
6331         * imenu.el (imenu-example--name-and-position)
6332         (imenu-example--lisp-extract-index-name)
6333         (imenu-example--create-lisp-index, imenu-example--create-c-index):
6334         Mark as obsolete.
6336         * progmodes/prolog.el (inferior-prolog-error-regexp-alist): New var.
6337         (inferior-prolog-mode): Use it.
6338         (inferior-prolog-load-file): Reset list of errors.
6340 2009-08-19  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
6342         * language/tibetan.el ("Tibetan"): Fix sample-text entry.
6344         * language/tai-viet.el ("TaiViet"): Fix sample-text entry.
6346 2009-08-19  Michael Albinus  <michael.albinus@gmx.de>
6348         * net/dbus.el (top): Apply `dbus-init-bus' only if the session bus
6349         is running already.
6351 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6353         * subr.el (listify-key-sequence-1): Use normal syntax since those
6354         integers are nowadays always represented by the same (positive) number
6355         on all platforms.
6356         (read-key-empty-map): New const.
6357         (read-key-delay): New var.
6358         (read-key): New function.
6359         (force-mode-line-update): Use with-current-buffer.
6360         (locate-user-emacs-file): Don't forget to abbreviate the file name.
6361         (start-process-shell-command, start-file-process-shell-command):
6362         Discourage the use of command-args.
6364 2009-08-19  Glenn Morris  <rgm@gnu.org>
6366         * emacs-lisp/authors.el (authors-fixed-entries): Remove cvtmail.
6368 2009-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6370         * simple.el (choose-completion-string): Don't rely on
6371         minibuffer-completing-file-name and ad-hoc checks to decide whether
6372         to continue completion or not.
6374         * minibuffer.el (minibuffer-hide-completions): New function.
6375         (completion--do-completion): Use it.
6376         (completions-annotations): New face.
6377         (completion--insert-strings): Use it.
6378         (completion-pcm--delim-wild-regex): Add docstring.
6379         (completion-pcm--string->pattern): Add support for 0-width delimiters
6380         in completion-pcm--delim-wild-regex.
6382 2009-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6384         * international/ucs-normalize.el (ucs-normalize-hfs-nfd-post-read-conversion):
6385         Remove unused var `buffer-modified-p'.
6387         * minibuffer.el (completion--do-completion): Move point for the #b001
6388         case as well (bug#4176).
6389         (minibuffer-complete, minibuffer-complete-word): Don't move point.
6391 2009-08-18  Michael Albinus  <michael.albinus@gmx.de>
6393         * net/dbus.el (dbus-init-bus): Declare.  Apply it for the :system
6394         and :session buses.
6396 2009-08-18  Kenichi Handa  <handa@m17n.org>
6398         * international/ucs-normalize.el (ucs-normalize-version):
6399         Change to 1.1.
6400         (ucs-normalize-hfs-nfd-pre-write-conversion): New function.
6401         (utf-8-hfs): Make it perform normalization on encoding too.
6403         * textmodes/paragraphs.el: Change to utf-8.  Adjust coding cookie.
6404         (sentence-end-without-space): Delete duplicated chars.
6405         (sentence-end-base): Likewise.
6407         * textmodes/sgml-mode.el: Change to utf-8.  Adjust coding cookie.
6408         (html-mode): Delete duplicated chars from sentence-end-base.
6410         * textmodes/texinfo.el: Change to utf-8.  Adjust coding cookie.
6411         (texinfo-mode): Delete duplicated chars from sentence-end-base.
6413 2009-08-17  Chong Yidong  <cyd@stupidchicken.com>
6415         * files.el (hack-one-local-variable): If the mode function is for
6416         a minor mode, pass it an argument (Bug#4148).
6418 2009-08-17  Michael Albinus  <michael.albinus@gmx.de>
6420         * net/tramp.el (tramp-register-completion-file-name-handler):
6421         Check also for (member 'partial-completion completion-styles).
6423 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
6425         * progmodes/cperl-mode.el (cperl-electric-paren): Don't expand
6426         abbrev (Bug#3943).
6428 2009-08-16  Ilya Zakharevich  <ilyaz@cpan.org>
6430         * progmodes/cperl-mode.el: Merge upstream 6.2.
6431         (cperl-mode-syntax-table): Modify syntax entry for ["'`].
6432         (cperl-forward-re): Check cperl-brace-recursing.
6433         (cperl-highlight-charclass): New function.
6434         (cperl-find-pods-heres): Use it.
6435         (cperl-fill-paragraph): Synch to save-excursion placement used upstream.
6436         (cperl-beautify-regexp-piece): Fix column calculation.
6437         (cperl-make-regexp-x): Handle case where point is between "q" and "rs".
6438         (cperl-beautify-level): Don't process entire regexp.
6439         (cperl-build-manpage, cperl-perldoc): Bind Man-switches before
6440         calling man.
6441         (cperl-tips-faces, cperl-mode, cperl-electric-backspace): Doc fix.
6442         (cperl-init-faces): Build a list in the normal way.
6444 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
6446         * calendar/parse-time.el (parse-time-string-chars): Save match
6447         data.
6449 2009-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6451         * progmodes/sql.el (sql-product-alist): Add :name tag to entries.
6452         (sql-product): Use it.
6453         (sql-mode-menu): Auto-generate the menu based on sql-product-alist.
6454         (sql-set-product): Add completion.
6455         (sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
6456         (sql-highlight-linter-keywords, sql-highlight-ms-keywords)
6457         (sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
6458         (sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
6459         (sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
6460         (sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
6461         (sql-highlight-db2-keywords): Remove.
6462         (sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
6463         (sql-highlight-product): Use derived-mode-p.
6464         (sql-set-sqli-buffer): Use with-current-buffer.
6465         (sql-connect-informix, sql-connect-ingres, sql-connect-oracle):
6466         Simplify.
6468         * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
6470         * term.el: Fix commenting convention, turn comments into docstrings.
6472 2009-08-16  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
6474         * whitespace.el (whitespace-style): Doc fix (Bug#3661).
6476 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
6478         * calendar/parse-time.el (parse-time-string-chars): Compute using
6479         character classes, to handle non-ascii characters (Bug#3190).
6481 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
6483         * progmodes/sh-script.el (sh-maybe-here-document): Avoid inserting
6484         another heredoc if the user adds another < (Bug#3226).
6486         * mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
6487         Don't initialize based on window-system (Bug#4124).
6489         * facemenu.el (facemenu-read-color): Use a completion function
6490         that accepts any defined color, such as RGB triplets (Bug#3677).
6492         * files.el (get-free-disk-space): Change fallback default
6493         directory to /.  Expand DIR argument before switching to fallback.
6494         Suggested by Kevin Ryde (Bug#2631, Bug#3911).
6496 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
6498         * files.el (load-library): Doc fix.
6500 2009-08-15  Michael Kifer  <kifer@cs.stonybrook.edu>
6502         * emulation/viper-cmd.el (viper-insert-isearch-string): New function.
6503         (viper-if-string): Redefine C-s in the minibuffer to insert the last
6504         incremental search string.
6506         * ediff-init.el (ediff-coding-system): Use escape-quoted in case of
6507         XEmacs.
6509         * ediff-merg.el (ediff-merge-region-is-non-clash-to-skip)
6510         (ediff-merge-region-is-non-clash)
6511         (ediff-skip-merge-region-if-changed-from-default-p): Use defun.
6512         Also check if the job is really a merge job.
6514         * ediff.el (ediff-current-file): New function.
6516 2009-08-15  Chong Yidong  <cyd@stupidchicken.com>
6518         * progmodes/js.el: Edit docstrings throughout to follow Emacs
6519         conventions.
6520         (js-insert-and-indent): Delete function.
6521         (js-mode-map): Don't bind keys to js-insert-and-indent.
6522         (js-beginning-of-defun): Rename from js--beginning-of-defun.
6523         (js-end-of-defun): Rename from js--end-of-defun.
6524         (js-auto-indent-flag): Delete variable.
6526 2009-08-14  Chong Yidong  <cyd@stupidchicken.com>
6528         * progmodes/js.el: Remove proclaim statement.
6529         Defvar which-func-imenu-joiner-function to silence compiler.
6531         * files.el (auto-mode-alist): Use js-mode for .js files.
6533         * progmodes/js2-mode.el: Remove file.
6535         * Makefile.in (ELCFILES): Add js.el, and remove js2-mode.el.
6537         * speedbar.el (speedbar-supported-extension-expressions): Add .js.
6539         * progmodes/hideshow.el (hs-special-modes-alist): Add js-mode entry.
6541 2009-08-14  Daniel Colascione  <dan.colascione@gmail.com>
6542             Karl Landstrom  <karl.landstrom@brgeight.se>
6544         * progmodes/js.el: New file.
6546 2009-08-14  Mark A. Hershberger  <mah@everybody.org>
6548         * timezone.el (timezone-parse-date): Add ability to understand ISO
6549         basic format (minimal separators) dates in addition to the
6550         already-supported extended format dates.
6552 2009-08-14  Eli Zaretskii  <eliz@gnu.org>
6554         * international/ucs-normalize.el: Add a `coding' file variable.
6556         * Makefile.in (ELCFILES): Add international/ucs-normalize.elc.
6558 2009-08-14  Sam Steingold  <sds@gnu.org>
6560         * vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing.
6562 2009-08-13  Chong Yidong  <cyd@stupidchicken.com>
6564         * faces.el (help-argument-name): Define it here instead of
6565         help-fns.el, because in daemon mode help-fns.el may be loaded when
6566         faces are still uninitialized (Bug#1078).
6568         * help-fns.el (help-argument-name): Move defface to faces.el.
6570 2009-08-13  Nick Roberts  <nickrob@snap.net.nz>
6572         * progmodes/gdb-mi.el (gdb-inferior-io-mode): Use start-process to
6573         create buffer with a pty but no process so that GDB can make the
6574         inferior the controlling process.
6576 2009-08-13  Taichi Kawabata  <kawabata.taichi@gmail.com>
6578         * international/ucs-normalize.el: New file.
6580 2009-08-13  Richard Stallman  <rms@gnu.org>
6582         * mail/rmail.el (rmail-get-attr-names):
6583         Accept an attribute header that is too short.
6585         * mail/rmail.el (rmail-forget-messages):
6586         Ignore nil elt in rmail-message-vector.  Use dotimes.
6588         * progmodes/compile.el (compilation-goto-locus):
6589         Use next-error-move-function.
6591         * simple.el (next-error-move-function): New variable.
6593 2009-08-12  Juri Linkov  <juri@jurta.org>
6595         * progmodes/grep.el (lgrep): Ensure that `default-directory' is
6596         always non-nil.  (Bug#4052)
6598         * replace.el (read-regexp): Return empty string when
6599         `default-value' is nil.
6600         (keep-lines-read-args): Don't use empty string as the
6601         default value for `read-regexp'.  (Bug#2495)
6603 2009-08-12  Juri Linkov  <juri@jurta.org>
6605         * international/mule-cmds.el (ucs-insert): Change arguments
6606         from `arg' to `character', `count', `inherit' to be the same
6607         as in `insert-char'.  Doc fix.  (Bug#4039)
6609         * international/mule-conf.el (utf-16be-with-signature): Doc fix.
6611 2009-08-12  Juri Linkov  <juri@jurta.org>
6613         * files-x.el: New file.
6615         * files.el: Move code that deals with adding/deleting
6616         file/directory-local variables to files-x.el.
6618         * Makefile.in (ELCFILES): Add files-x.elc.
6620 2009-08-11  Dmitry Dzhus  <dima@sphinx.net.ru>
6622         * progmodes/gdb-mi.el (gdb-line-posns): New helper which helps not
6623         to use `goto-line'.
6624         (gdb-place-breakpoints, gdb-get-location): Rewritten without
6625         `goto-line'.
6626         (gdb-invalidate-disassembly): Do not refresh upon receiving
6627         'update signal.  Instead, update all disassembly buffers only after
6628         threads list.
6629         (gdb): Send -target-detach when buffer is killed (Bug#3794).
6630         (gdb-starting): Moved -data-list-register-names...
6631         (gdb-stopped): ...here so it's sent when first thread stops.
6632         (gdb-registers-handler-custom): Do nothing if register names are
6633         unknown yet.
6635         * progmodes/gud.el (gud-stop-subjob): Rewritten without macros
6636         from `gdb-mi.el' to avoid extra tangling.
6638         * progmodes/gdb-mi.el (gdb-gud-context-call): Reverting previous
6639         change which breaks `gud-def' definitions used in `gdb'.
6640         (gdb-update-gud-running): No extra fuss for updating frame number.
6642 2009-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6644         * international/mule-cmds.el (mule-keymap, mule-menu-keymap)
6645         (describe-language-environment-map, setup-language-environment-map)
6646         (set-coding-system-map): Move initialization into declaration.
6647         (set-language-info-alist): Last arg to define-key-after can be skipped.
6649         * international/quail.el (quail-completion-1): Simplify.
6650         (quail-define-rules): Use slightly more compact code.
6651         (quail-insert-decode-map): Propertize keys, compact columns.
6653         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
6654         Add goto-line.
6656 2009-08-10  Miles Bader  <miles@gnu.org>
6658         * progmodes/js2-mode.el (js2-warning, js2-error, js2-jsdoc-tag)
6659         (js2-jsdoc-type, js2-jsdoc-value, js2-function-param)
6660         (js2-instance-member, js2-private-member, js2-private-function-call)
6661         (js2-jsdoc-html-tag-name, js2-jsdoc-html-tag-delimiter)
6662         (js2-magic-paren, js2-external-variable):
6663         Remove "-face" suffix from face names.
6664         (js2-jsdoc-highlight-helper, js2-highlight-jsdoc)
6665         (js2-highlight-undeclared-vars, js2-peek-token)
6666         (js2-parse-function-params, js2-mode-show-errors)
6667         (js2-mode-show-warnings, js2-make-magic-delimiter)
6668         (js2-mode-highlight-magic-parens): Update to use new face names.
6670 2009-08-09  Michael Albinus  <michael.albinus@gmx.de>
6672         * net/tramp.el (tramp-get-ls-command-with-dired): New defun.
6673         (tramp-handle-insert-directory): Handle "--dired".  (Bug#4075)
6675 2009-08-09  Chong Yidong  <cyd@stupidchicken.com>
6677         * subr.el: Provide hashtable-print-readable.
6679         * progmodes/hideshow.el (hs-special-modes-alist): Don't use
6680         hs-c-like-adjust-block-beginning.
6681         (hs-hide-block-at-point): Stop hiding at the beginning of
6682         hs-block-end-regexp (Bug#700).
6684 2009-08-09  Dmitry Dzhus  <dima@sphinx.net.ru>
6686         * progmodes/gdb-mi.el (gdb-gud-context-call): Does not need to be
6687         a macro.
6688         (gdb-registers-handler-custom): Do not fail when register names
6689         are unavailable.
6691 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
6693         * progmodes/gdb-mi.el (gdb-control-all-threads)
6694         (gdb-control-current-thread): Interactive setters for
6695         `gdb-gud-control-all-threads' to use in menu.
6696         (gdb-show-run-p): Show «Go» when process is not active.
6697         (gud-tool-bar-map): Add non-stop/A,T indicator.  Uses
6698         gud/thread.xpm and gud/all.xpm.
6700 2009-08-08  Yoni Rabkin  <yoni@rabkins.net>
6702         * net/net-utils.el (net-utils-font-lock-keywords): New var.
6703         (nslookup-font-lock-keywords): Make it a variable.
6704         (net-utils-mode): New mode for viewing diagnostic network output.
6705         (net-utils-remove-ctrl-m-filter): Set inhibit-read-only.
6706         (net-utils-run-simple): New function.
6707         (ifconfig, iwconfig, netstat, arp, route): Use it.
6709 2009-08-08  Dmitry Dzhus  <dima@sphinx.net.ru>
6711         * progmodes/gdb-mi.el (gdb-read-memory-custom)
6712         (gdb-memory-set-address, def-gdb-set-positive-number)
6713         (def-gdb-memory-format, def-gdb-memory-unit): Update memory buffer
6714         after changing settings.
6715         (gdb-invalidate-disassembly): Update when first shown.
6716         (gdb-edit-locals-value): Fixed.
6717         (gdb-registers-handler-custom): Print registers in right order and
6718         allow changing register values (only for current thread yet).
6719         (gdb-breakpoints-mode-map): Don't assume threads buffer is present.
6720         (gdb-threads-mode-map): Don't assume breakpoints buffer is present.
6721         (gdb-disassembly-handler-custom, gdb-stack-list-frames-custom)
6722         (gdb-locals-handler-custom, gdb-registers-handler-custom): Thread
6723         info in mode name.
6724         (gdb-registers-mode-map): TAB to switch to locals.
6726 2009-08-08  Eli Zaretskii  <eliz@gnu.org>
6728         * mail/rmail.el (rmail-add-mbox-headers)
6729         (rmail-set-message-counters-counter): Search for
6730         rmail-unix-mail-delimiter instead of just "From ".  (Bug#4076)
6732 2009-08-08  Glenn Morris  <rgm@gnu.org>
6734         * Makefile.in (ELCFILES): Update.
6736 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
6738         * mail/sendmail.el (mail-yank-original): Set
6739         buffer-file-coding-system from the one used by the message whose
6740         text is yanked.
6742         * calc/calc-graph.el (calc-graph-plot): Set calc-graph-last-device
6743         to "windows" when "pgnuplot" is used.
6744         (calc-graph-command, calc-gnuplot-command, calc-graph-init): Don't
6745         call accept-process-output if "pgnuplot" is used.
6746         (calc-graph-init): Don't send -display and -geometry to
6747         "pgnuplot".  If "pgnuplot" is used, glean gnuplot version by
6748         running "pgnuplot -V" with shell-command-to-string.
6750         * calc/calc.el (calc-gnuplot-name) [windows-nt]: Use "pgnuplot" as
6751         the default.
6753 2009-08-07  Eli Zaretskii  <eliz@gnu.org>
6755         * Makefile.in (ELCFILES): org/org-export-latex.elc renamed to
6756         org/org-latex.elc.
6758 2009-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
6760         * vc-dispatcher.el (vc-resynch-window): Update comment.
6762         * term.el (term-handle-ansi-escape): Add comments with the
6763         terminfo capabilities implemented.
6765 2009-08-06  Dmitry Dzhus  <dima@sphinx.net.ru>
6767         * progmodes/gdb-mi.el (gdb-var-create-regexp): Removed.
6768         (gdb-var-create-handler): Rewritten using JSON parser.
6769         (gdb-propertize-header): Moved earlier.
6770         (gdb-set-header): Removed to avoid duplication.
6771         (gdb-thread-list-handler-custom, gdb-invalidate-disassembly):
6772         Refresh disassembly buffers only after threads list have been
6773         update.
6774         (gdb-threads-header, gdb-registers-header): Per-buffer header line
6775         variables.
6777 2009-08-04  Juri Linkov  <juri@jurta.org>
6779         * files.el: Commands to add/delete file/directory-local variables.
6780         (read-file-local-variable, read-file-local-variable-value)
6781         (read-file-local-variable-mode, modify-file-local-variable)
6782         (modify-file-local-variable-prop-line)
6783         (modify-dir-local-variable): New functions.
6784         (add-file-local-variable, delete-file-local-variable)
6785         (add-file-local-variable-prop-line, delete-file-local-variable-prop-line)
6786         (add-dir-local-variable, delete-dir-local-variable)
6787         (copy-file-locals-to-dir-locals, copy-dir-locals-to-file-locals)
6788         (copy-dir-locals-to-file-locals-prop-line): New commands.
6790 2009-08-04  Chong Yidong  <cyd@stupidchicken.com>
6792         * abbrev.el (insert-abbrev-table-description): Prettify output.
6793         Suggested by Karl Chen.
6795 2009-08-04  Dmitry Dzhus  <dima@sphinx.net.ru>
6797         * progmodes/gdb-mi.el (gdb-frame-number): Initialize with nil.
6798         (gdb-overlay-arrow-position): Rename to `gdb-disassembly-position'.
6799         (gdb-overlay-arrow-position, gdb-thread-position)
6800         (gdb-disassembly-position): Declare variables.
6801         (gdb-wait-for-pending): Function now.
6802         (gdb-add-subscriber, gdb-delete-subscriber, gdb-get-subscribers)
6803         (gdb-emit-signal, gdb-buf-publisher): Declare before first use so
6804         compilation goes smoothly.
6805         (gdb, gdb-non-stop, gdb-buffers): New customization groups.
6806         (gdb-non-stop-setting): New customization setting which replaces
6807         `gdb-non-stop' so changing it doesn't break active GDB session.
6808         (gdb-stack-buffer-locations, gdb-stack-buffer-addresses)
6809         (gdb-thread-buffer-verbose-names, gdb-thread-buffer-arguments)
6810         (gdb-thread-buffer-locations, gdb-thread-buffer-addresses)
6811         (gdb-show-threads-by-default): New customization options.
6812         (gdb-buffer-type, gdb-buffer-shows-main-thread-p): New helper
6813         routines.
6814         (gdb-get-buffer-create): Send buffers update signal when they are
6815         created.
6816         (gdb-invalidate-locals, gdb-invalidate-registers)
6817         (gdb-invalidate-breakpoints)
6818         (gdb-invalidate-threads, gdb-invalidate-disassembly)
6819         (gdb-invalidate-memory): Accept update signal.
6820         (gdb-current-context-command): Use --frame option.
6821         (gdb-update-gud-running, gdb-running, gdb-setq-thread-number):
6822         Implement `gdb-frame-number' selection logic.
6823         (gdb-show-run-p, gdb-show-stop-p): Helper functions which decide
6824         whether to show GUD toolbar buttons.
6825         (gdb-thread-exited): Unselect current thread when it exits.
6826         (gdb-stopped): Typo fixed (now really runs `gdb-stopped-hooks').
6827         (gdb-mark-line): Routine which sets overlay arrow or inverses
6828         video on fringeless displays.
6829         (gdb-table, gdb-table-add-row, gdb-table-string): Structure used
6830         to build aligned columns of data in GDB buffers and set text
6831         properties line-by-line.
6832         (gdb-invalidate-breakpoints)
6833         (gdb-breakpoints-list-handler-custom)
6834         (gdb-thread-list-handler-custom, gdb-disassembly-handler-custom)
6835         (gdb-stack-list-frames-custom, gdb-locals-handler-custom)
6836         (gdb-registers-handler-custom): Align data columns.
6837         (gdb-locals-handler-custom): Now prints data like in variable
6838         declarations.
6839         (gdb-jump-to, gdb-file-button, gdb-insert-file-location-button):
6840         Removed confusing buttons.
6841         (gdb-invalidate-threads): Append --frame.
6842         (gdb-threads-mode-map, gdb-breakpoints-mode-map): TAB to switch
6843         between breakpoints/threads buffers.
6844         (gdb-set-window-buffer): Now can ignore dedicated windows.
6845         (gdb-propertize-header): Use `gdb-set-window-buffer'.
6846         (def-gdb-thread-buffer-simple-command): Numerous typos fixed.
6847         (def-gdb-thread-buffer-gud-command): Replaces
6848         `def-gdb-thread-buffer-gdb-command' and uses standard GUD commands
6849         for fine thread control.
6850         (gdb-preempt-existing-or-display-buffer): New function used to
6851         display bound buffers without breaking window layout.
6852         (gdb-frame-location): Replaces `gdb-insert-frame-location'.
6853         (gdb-select-frame): New version of `gdb-frames-select' which now
6854         sets `gdb-frame-number' so commands may use --frame option instead
6855         of inner debugger state.
6856         (gdb-frame-handler): Do not set `gdb-frame-number'.
6857         (gdb-threads-mode-map): Select threads with mouse.
6859         * progmodes/gud.el (gdb-gud-context-call): Declare function to
6860         avoid compilation warning.
6861         (gud-menu-map, gud-minor-mode-map): Use `gdb-show-run-p` and
6862         `gdb-show-stop-p`.
6864         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create):
6865         Argument `key' renamed to `buffer-type'.
6866         (gdb-current-context-buffer-name): Do not add thread info to
6867         buffer name when no thread is selected.
6868         (gdbmi-record-list, gdb-shell): Try to handle GDB `shell'
6869         command (bug 3794).
6870         (gdb-thread-selected): Handle `=thread-selected' notification.
6871         (gdb-wait-for-pending): New macro to deal with congestion problems.
6872         (gdb-breakpoints-list-handler-custom): Don't fail on pending
6873         breakpoints.
6874         (gdb-invalidate-disassembly): Use 'fullname instead of 'file.
6875         This fixes problem similar to one described in bug 3947.
6876         (gud-menu-map): More menu items.
6877         (gdb-init-1): Reset `gdb-thread-number' to nil.
6879         * progmodes/gud.el (gud-stop-subjob, gud-menu-map): Respect GDB
6880         non-stop settings.
6882         * progmodes/gdb-mi.el (gdb-thread-number): Initialize with nil.
6883         (gdb-current-context-command): Do not append --thread if
6884         `gdb-thread-number' is nil.
6885         (gdb-running-threads-count, gdb-stopped-threads-count): New
6886         variables.
6887         (gdb-non-stop, gdb-gud-control-all-threads, gdb-switch-reasons)
6888         (gdb-stopped-hooks, gdb-switch-when-another-stopped): New
6889         customization options.
6890         (gdb-gud-context-command, gdb-gud-context-call): New wrappers for
6891         GUD commands.
6892         (gdb): `gud-def' definitions changed to use `gdb-gud-context-call'.
6893         (gdb-init-1): Activate non-stop mode if `gdb-non-stop' is enabled.
6894         (gdb-setq-thread-number, gdb-update-gud-running): New functions to
6895         set `gdb-thread-number' and update `gud-running' properly.
6896         (gdb-running): Update threads list when new threads appear.
6897         (gdb-stopped): Support non-stop operation and new thread switching
6898         logic.
6899         (gdb-jsonify-buffer, gdb-json-read-buffer, gdb-json-string)
6900         (gdb-json-partial-output): New set of JSON routines.
6901         (def-gdb-auto-update-trigger): New `signal-list' optional
6902         argument.
6903         (gdb-thread-list-handler-custom): Update `gud-running',
6904         `gdb-stopped-threads-count' and `gdb-running-threads-count'.
6905         (def-gdb-thread-buffer-gdb-command, gdb-interrupt-thread)
6906         (gdb-continue-thread, gdb-step-thread): New commands for fine
6907         thread execution control.
6908         (gud-menu-map): New menu items to switch non-stop options.
6909         (gdb-reset): Cleanup `gdb-thread-position' overlay arrow marker.
6910         (gdb-send): Mimic RET properly (bug 3794).
6912         * progmodes/gdb-mi.el (gdb-rules-name-maker)
6913         (gdb-rules-buffer-mode, gdb-rules-update-trigger): Accessors for
6914         gdb-buffer-rules.
6915         (def-gdb-auto-update-handler): New nopreserve optional argument.
6916         (gdb-stack-list-frames-custom): Print stack from top to bottom.
6918         * progmodes/gdb-mi.el (gdb-pc-address): Removed unused variable.
6919         (gdb-threads-list, gdb-breakpoints-list): New assoc lists.
6920         (gdb-parent-mode): New mode to derive other GDB modes from.
6921         (gdb-display-disassembly-for-thread)
6922         (gdb-frame-disassembly-for-thread): New commands for threads
6923         buffer.
6925         * progmodes/gdb-mi.el (gdb-get-buffer, gdb-get-buffer-create)
6926         (gdb-init-1, gdb-bind-function-to-buffer, gdb-add-subscriber)
6927         (gdb-get-subscribers, gdb-emit-signal, gdb-buf-publisher)
6928         (gdb-update): We now store all GDB buffers in a list so that they
6929         can be updated by traversing a list instead of calling invalidate
6930         triggers explicitly.
6931         (def-gdb-trigger-and-handler): New macro to define trigger-handler
6932         pair for GDB buffer.
6933         (gdb-stack-buffer-name): Add thread information.
6934         (gdb-add-pending, gdb-pending-p, gdb-delete-pending): Macros to
6935         handle pending triggers.
6936         (gdb-threads-mode-map, def-gdb-thread-buffer-command)
6937         (def-gdb-thread-buffer-simple-command)
6938         (gdb-display-stack-for-thread, gdb-display-locals-for-thread)
6939         (gdb-display-registers-for-thread, gdb-frame-stack-for-thread)
6940         (gdb-frame-locals-for-thread, gdb-frame-registers-for-thread):
6941         New commands which show buffers bound to thread.
6942         (gdb-stack-list-locals-regexp): Removed unused regexp.
6944         * progmodes/gdb-mi.el (gdb-breakpoints-buffer-name)
6945         (gdb-locals-buffer-name, gdb-registers-buffer-name)
6946         (gdb-memory-buffer-name, gdb-stack-buffer-name): Do not switch
6947         to (gud-comint-buffer) in *-buffer-name functions
6948         because (gdb-get-target-string) already does that.
6949         (gdb-locals-handler-custom, gdb-registers-handler-custom)
6950         (gdb-changed-registers-handler): Rewritten without regexps.
6952         * progmodes/gdb-mi.el: Basic thread selection support.
6953         (gdb-thread-number): New variable.
6954         (gdb-current-context-command): New macro which adds --thread
6955         option to command.
6956         (gdb-threads-mode-map): Select thread with SPC.
6957         (gdb-thread-list-handler-custom): Mark current thread with overlay
6958         arrow.  Synchronize GDB thread and Emacs thread.
6959         (gdb-select-thread): New command which selects current thread.
6960         (gdb-invalidate-frames, gdb-invalidate-locals)
6961         (gdb-invalidate-registers): Use --thread option.
6963 2009-08-04  Michael Albinus  <michael.albinus@gmx.de>
6965         * net/tramp.el (top): Make check for tramp-gvfs loading more
6966         robust.  (Bug#3977)
6967         (tramp-handle-insert-file-contents): `unwind-protect' must be
6968         inside `with-parsed-tramp-file-name'.
6970         * net/tramp-gvfs.el (top): Remove superfluous message when loading
6971         fails.
6973 2009-08-03  Nick Roberts  <nickrob@snap.net.nz>
6975         * progmodes/gud.el (jdb): Set gud-jdb-classpath-string to current
6976         directory if CLASSPATH is not set.
6978 2009-08-03  Michael Albinus  <michael.albinus@gmx.de>
6980         * net/tramp.el (tramp-rfn-eshadow-update-overlay-regexp):
6981         New defconst.
6982         (tramp-rfn-eshadow-update-overlay): Use it.  (Bug#4004)
6984 2009-08-02  Kevin Ryde  <user42@zip.com.au>
6986         * net/newst-backend.el (newsticker--raw-url-list-defaults):
6987         Update freshmeat link.  Delete newsforge.com as it seems gone.
6989 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
6991         * select.el (x-set-selection): Doc fix (Bug#4021).
6993         * w32-fns.el (x-set-selection): Doc fix (Bug#4021).
6995         * help-fns.el (describe-variable): Treat list return values from
6996         dir-locals-find-file properly (Bug#4005).
6998 2009-08-02  Julian Scheid  <julians37@googlemail.com>  (tiny change)
7000         * net/tramp.el (tramp-debug-message): Print also microseconds.
7002 2009-08-02  Michael Albinus  <michael.albinus@gmx.de>
7004         * net/tramp.el (tramp-handle-insert-file-contents): Optimize, when BEG
7005         or END is non-nil.
7006         (tramp-handle-vc-registered): Use `tramp-cache-inhibit-cache'.
7007         (tramp-get-debug-buffer): Change `outline-regexp' according to new
7008         format.
7010         * net/tramp-cache.el (tramp-cache-inhibit-cache ): New defvar.
7011         (tramp-get-file-property): Use it.
7013         * autorevert.el (auto-revert-handler): Allow
7014         `auto-revert-tail-mode' for remote files.
7016 2009-08-02  Jason Rumney  <jasonr@gnu.org>
7018         * minibuffer.el (read-file-name): Treat confirm options to
7019         MUSTMATCH as nil when invoking x-file-dialog.  (Bug#3969)
7021 2009-08-02  Chong Yidong  <cyd@stupidchicken.com>
7023         * font-lock.el (font-lock-string-face, font-lock-builtin-face)
7024         (font-lock-variable-name-face, font-lock-constant-face): Darken
7025         the colors for light backgrounds.
7027 2009-08-01  Eli Zaretskii  <eliz@gnu.org>
7029         * mail/rmailsum.el (rmail-header-summary): Ignore letter-case of
7030         month names.  (Bug#3987)
7032 2009-07-31  Chong Yidong  <cyd@stupidchicken.com>
7034         * simple.el (line-move-finish): Pass whole number to
7035         line-move-to-column.
7036         (line-move-visual): Perform hscroll to the recorded position.
7038 2009-07-30  Jay Belanger  <jay.p.belanger@gmail.com>
7040         * calc/calc-mode.el (calc-matrix-brackets): Remove "P" from prompt.
7042 2009-07-29  Alan Mackenzie  <acm@muc.de>
7044         * progmodes/cc-defs.el (c-version): Bump to 5.31.7.
7046 2009-07-29  Dmitry Dzhus  <dima@sphinx.net.ru>
7048         * progmodes/gdb-mi.el (gdb-goto-breakpoint)
7049         (gdb-place-breakpoints): Use full path when setting breakpoints.
7051 2009-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
7053         * calc/calc.el (calc-mode-map): Add keybinding for
7054         `calc-transpose-lines'.
7056 2009-07-29  Vincent Belaïche  <vincent.belaiche@gmail.com>
7058         * calc/calc-misc.el (calc-transpose-lines): New function.
7060 2009-07-28  Michael Albinus  <michael.albinus@gmx.de>
7062         * net/tramp.el (tramp-do-copy-or-rename-file): Add messages.
7063         Simplify check for out-of-band methods.
7064         (tramp-do-copy-or-rename-file-out-of-band): Allow both files to be
7065         remote.  Remove messages which are in `tramp-do-copy-or-rename-file'.
7067 2009-07-28  Dan Nicolaescu  <dann@ics.uci.edu>
7069         * vc-git.el (vc-git-checkin): Fix typo.
7071 2009-07-28  Steve Yegge  <steve.yegge@gmail.com>
7073         * progmodes/js2-mode.el: New file.
7075 2009-07-28  Nick Roberts  <nickrob@snap.net.nz>
7077         * progmodes/gud.el (jdb): Add gud-pstar to dump object information.
7078         (gud-menu-map): Adjust tooltip accordingly.
7080 2009-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
7082         * vc-bzr.el (vc-bzr-print-log): Pass multiple arguments to bzr log.
7083         (vc-bzr-log-view-mode): Adjust log-view-file-re.
7085         * add-log.el (change-log-mode-map): Add a menu.
7087 2009-07-27  Michael Albinus  <michael.albinus@gmx.de>
7089         * net/dbus.el (dbus-call-method-non-blocking): Handle the case the
7090         function returns nil.
7091         (dbus-handle-event): Handle special return value :ignore.
7092         Reported by Jan Moringen <jan.moringen@uni-bielefeld.de>.
7094 2009-07-26  Chong Yidong  <cyd@stupidchicken.com>
7096         * view.el (view-mode-enable): Don't define Helper-return-blurb if
7097         it's not needed.
7099 2009-07-25  Eli Zaretskii  <eliz@gnu.org>
7101         Fix Bug#3888:
7103         * w32-vars.el (x-select-enable-clipboard): Doc fix.
7105         * term/pc-win.el (x-display-name, x-colors)
7106         (x-select-enable-clipboard, x-select-text): Doc fix.
7108         * term/common-win.el (x-display-name, x-colors): Doc fix.
7110         * term/ns-win.el (x-select-text, x-setup-function-keys, x-colors)
7111         (xw-defined-colors): Doc fix.
7113         * w32-fns.el (x-select-text, x-setup-function-keys)
7114         (x-get-selection, x-set-selection): Doc fix.
7116         * term/x-win.el (x-select-text, x-setup-function-keys)
7117         (x-select-enable-clipboard, xw-defined-colors): Doc fix.
7119         * select.el (x-set-selection): Doc fix.
7121 2009-07-25  Michael Albinus  <michael.albinus@gmx.de>
7123         * net/zeroconf.el (zeroconf-init): Check for "GetVersionString"
7124         instead of "IsNSSSupportAvailable".  Avahi ought to work also when
7125         "IsNSSSupportAvailable" method is not available.  Reported by
7126         Steve Youngs <steve@sxemacs.org>.
7128 2009-07-24  Kenichi Handa  <handa@m17n.org>
7130         * international/characters.el: Fix setting of category ?C, ?|, ?K,
7131         and ?H.  Fix setting of case for Latin Extended and Greek Extended.
7132         (build-unicode-category-table): Fix range checks.
7134 2009-07-24  Dan Nicolaescu  <dann@ics.uci.edu>
7136         * vc-dispatcher.el (vc-resynch-buffers-in-directory): Make sure
7137         the buffer we try to sync is current when calling
7138         vc-resynch-buffer.
7140         * vc-dir.el (vc-dir-resynch-file): Make sure vc-dir-update does
7141         not show up to date files.
7143 2009-07-24  Glenn Morris  <rgm@gnu.org>
7145         * emacs-lisp/elint.el (elint-current-buffer, elint-defun):
7146         Add autoload cookies.  If necessary, initialize.
7147         (elint-log): Handle non-file buffers.
7148         (elint-initialize): Add optional argument to reinitialize.
7149         (elint-find-builtin-variables): Save excursion.
7151 2009-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
7153         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries
7154         for Lint.
7156 2009-07-22  Dan Nicolaescu  <dann@ics.uci.edu>
7158         * vc.el (vc-print-log-internal): New function, split out from ...
7159         (vc-print-log): ... here.
7160         (vc-dir-move-to-goal-column): Declare.
7162         * vc-git.el (vc-git-add-signoff): New variable.
7163         (vc-git-checkin): Use it.
7164         (vc-git-toggle-signoff): New function.
7165         (vc-git-extra-menu-map): Bind it to menu.
7166         (vc-git--run-command-string): Accept a nil FILE argument.
7167         (vc-git-stash-list): New function.
7168         (vc-git-dir-extra-headers): Use it.
7170 2009-07-23  Glenn Morris  <rgm@gnu.org>
7172         * help-fns.el (describe-variable): Describe ignored and risky local
7173         variables in a similar way to that in which we describe safe ones.
7175         * emacs-lisp/bytecomp.el (byte-compile-from-buffer)
7176         (byte-compile-output-file-form, byte-compile-output-docform)
7177         (byte-compile-file-form-defmumble, byte-compile-output-as-comment):
7178         Give some more local variables with common names a "bytecomp-" prefix,
7179         so as not to shadow things during compilation.
7180         * emacs-lisp/cl-macs.el (load-time-value)
7181         * emacs-lisp/cl.el (cl-compiling-file): Update for the name-change
7182         `outbuffer' to `bytecomp-outbuffer'.
7184         * emacs-lisp/elint.el (elint-standard-variables): Remove most members,
7185         since the next two variables cover them automatically now.
7186         (elint-builtin-variables, elint-autoloaded-variables): New.
7187         (elint-unknown-builtin-args): Remove all members, since they can be
7188         parsed automatically now.
7189         (elint-extra-errors): New.
7190         (elint-env-add-env, elint-env-add-macro): Use cadr.
7191         (elint-current-buffer): Use or.  Change final message.
7192         (elint-get-top-forms): Use line-end-position.
7193         (elint-init-env): Use cadr.  Handle autoload, declare-function,
7194         and defalias.
7195         (elint-add-required-env): Doc fix.  Use or.  Standardize error.
7196         (regexp-assoc): Remove unused function.
7197         (elint-top-form): Set elint-current-pos, to record the start of the
7198         top-level form, for compilation-mode.
7199         (elint-form): Trap errors in macro expansion.  Use dolist.
7200         (elint-unbound-variable): Use elint-builtin-variables and
7201         elint-autoloaded-variables.
7202         (elint-get-args): Use cadr, or.
7203         (elint-check-cond-form): Use dolist, cadr.
7204         (elint-check-condition-case-form): Doc fix.  Use cadr.
7205         Use elint-extra-errors.
7206         (elint-log): New function.
7207         (elint-error, elint-warning): Use elint-log for a bytecomp-style format.
7208         Distinguish errors and warnings.
7209         (elint-log-message): Use with-current-buffer.  Inhibit read-only.
7210         Use a bytecomp-style format.
7211         (elint-clear-log): Preserve default-directory.  Inhibit read-only.
7212         (elint-get-log-buffer): Use compilation mode.  Disable undo.
7213         Don't truncate lines.
7214         (elint-initialize): Set builtin and autoloaded variable lists.
7215         Only process elint-unknown-builtin-args if non-nil.
7216         (elint-find-builtin-variables, elint-find-autoloaded-variables):
7217         New functions.
7218         (elint-find-builtin-args): Doc fix.  Handle "BODY...)".
7220 2009-07-22  Kevin Ryde  <user42@zip.com.au>
7222         * net/newst-backend.el (newsticker--parse-atom-1.0)
7223         (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
7224         (newsticker--parse-rss-1.0):
7225         * progmodes/idlwave.el (idlwave-mode):
7226         * progmodes/idlw-shell.el (idlwave-shell-mode):
7227         * progmodes/vera-mode.el (vera-mode):
7228         * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
7229         * progmodes/vhdl-mode.el (vhdl-mode):
7230         * textmodes/table.el (table-generate-source)
7231         (table--warn-incompatibility):
7232         Hyperlink urls in docstrings with URL `...'.
7234 2009-07-22  Glenn Morris  <rgm@gnu.org>
7236         * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
7237         * emacs-lisp/debug.el, emacs-lisp/elp.el, emacs-lisp/gulp.el:
7238         * emacs-lisp/lisp.el, emacs-lisp/pp.el, emacs-lisp/trace.el:
7239         Remove leading * from defcustom docs.
7241         * simple.el (blink-matching-paren-distance): Bump to 100k.  (Bug#3889)
7243         * emacs-lisp/shadow.el (shadows-compare-text-p): Remove leading * from
7244         defcustom doc.
7245         (list-load-path-shadows): Optionally, just return shadows as a string.
7247         * mail/emacsbug.el (report-emacs-bug): Include any load-path shadows.
7249 2009-07-21  Chong Yidong  <cyd@stupidchicken.com>
7251         * mail/rmailedit.el (rmail-edit-mode): Use
7252         auto-save-include-big-deletions.
7254         * mail/rmail.el (rmail-variables): Use
7255         auto-save-include-big-deletions.
7257         * files.el (auto-save-mode): Revert 2009-07-21 and 2009-07-16
7258         changes.
7260 2009-07-21  Jay Belanger  <jay.p.belanger@gmail.com>
7262         * calc/calc.el (calc-undo-length): New variable.
7263         (calc-quit): Truncate rather than eliminate `calc-undo-list'.
7265 2009-07-21  Richard Stallman  <rms@gnu.org>
7267         * files.el (auto-save-mode): Handle buffer-save-size = -2
7268         for toggling mode.
7270 2009-07-21  Glenn Morris  <rgm@gnu.org>
7272         * textmodes/ispell.el (ispell-looking-back): Update declaration.
7274         * calendar/todo-mode.el (calendar-current-date): Update declaration.
7276         * ps-print.el (ps-jitify, ps-lazify): Remove aliases only used to
7277         silence compiler.  Instead...
7278         (jit-lock-fontify-now, lazy-lock-fontify-region): ...Declare.
7279         (ps-print-ensure-fontified): Update for above function name changes.
7281         * printing.el (pr-mh-get-msg-num, pr-mh-show)
7282         (pr-mh-start-of-uncleaned-message): Remove aliases only used to
7283         silence compiler.  Instead...
7284         (mh-get-msg-num, mh-show, mh-start-of-uncleaned-message): ...Declare.
7285         (mh-show-buffer): Only define for compiler.
7286         (pr-mh-current-message): Update for above function name changes.
7288         * files.el (abort-if-file-too-large): Explicitly pass `filename'
7289         as an argument.
7290         (find-file-noselect, insert-file-1): Update for above change.
7292         * mail/rmail.el (rmail-retry-ignored-headers): Bump :version.
7294         * mail/mailclient.el (mailclient-send-it): Fix message.
7296         * emacs-lisp/edebug.el (cl-debug-env): Only define for compiler.
7297         (edebug-eval): Check cl-debug-env is bound.
7298         (print-level, print-circle): Don't redefine built-in variables.
7300         * emacs-lisp/cust-print.el: Remove leading * from defcustom docs.
7301         (custom-print-vectors): Remove old comments from doc.
7303         * emerge.el (menu-bar-emerge-menu): Remove unused variable.
7304         (emerge-version): Make the variable an obsolete alias for the
7305         emacs-version variable.  Make the function obsolete.
7306         (emerge-fast-keymap, emerge-edit-keymap): Make a separate menu for
7307         Emerge options, rather than merging in into the main Options menu.
7308         (emerge-options-menu): Adjust menu text.  Use buttons for skip prefers
7309         and auto advance modes.  Disable edit/fast items when not relevant.
7311 2009-07-20  Dan Nicolaescu  <dann@ics.uci.edu>
7313         * term/vt420.el (terminal-init-vt420): Fix typo.
7315 2009-07-20  Sam Steingold  <sds@gnu.org>
7317         * progmodes/ada-mode.el (compile-auto-highlight): Remove the
7318         variable (removed from compile.el on 2004-03-11).
7320 2009-07-20  Chong Yidong  <cyd@stupidchicken.com>
7322         * files.el (hack-local-variables-filter): Fix last change.
7324 2009-07-19  Juri Linkov  <juri@jurta.org>
7326         * files.el (ignored-local-variables): Add `dir-local-variables-alist'.
7327         (dir-local-variables-alist): New buffer-local variable.
7328         (hack-local-variables-filter): If variable is not dir-local,
7329         i.e. `dir-name' is nil, then remove it from `dir-local-variables-alist',
7330         because file-local overrides dir-local.
7331         (c-postprocess-file-styles)<declare-function>:
7332         Remove obsolete declaration.
7333         (hack-dir-local-variables): Add dir-local variable/value pair to
7334         `dir-local-variables-alist' and remove duplicates.  Doc fix.
7336         * help-fns.el (describe-variable): Add information about
7337         file-local and dir-local variables.
7339 2009-07-19  Chong Yidong  <cyd@stupidchicken.com>
7341         * files.el (hack-local-variables-filter): Rewrite.
7343 2009-07-19  Glenn Morris  <rgm@gnu.org>
7345         * progmodes/verilog-mode.el (verilog-error-regexp-add-xemacs):
7346         Silence compiler by only defining on XEmacs.
7348         * international/mule.el (auto-coding-regexp-alist): Only match
7349         BABYL... at the start of buffer, not of lines.  (Bug#3790)
7351         * calendar/cal-menu.el (cal-menu-set-date-title): Handle calls from
7352         non-calendar buffers (Bug#3862).  Restore "not on a date" message.
7353         (cal-menu-context-mouse-menu): Doc fix.
7355         * desktop.el (desktop-buffers-not-to-save): Set :version tag.
7357         * simple.el (mail-user-agent): Doc fix.  Set :version tag.
7359 2009-07-18  Juri Linkov  <juri@jurta.org>
7361         * info.el: Virtual Info keyword finder.
7362         (add-to-list)<Info-virtual-files>: Add "\\`\\*Finder.*\\*\\'".
7363         (Info-finder-file): New variable.
7364         (Info-finder-find-file): New function.
7365         (finder-known-keywords, finder-package-info)
7366         (find-library-name, lm-commentary): Use defvar and
7367         declare-function to silence compiler warnings.
7368         (Info-finder-find-node): New function.
7369         (info-finder): New command.
7371         * subr.el (process-kill-buffer-query-function): New function.
7372         (add-hook)<kill-buffer-query-functions>: Add hook
7373         `process-kill-buffer-query-function'.
7375 2009-07-18  Alan Mackenzie  <acm@muc.de>
7377         * progmodes/cc-mode.el (c-before-hack-hook)
7378         (c-postprocess-file-styles): Give invocation of `c-set-style'
7379         DONT-OVERRIDE parameter of t.  Already set style variables will
7380         thus not be overridden by style settings given by `c-file-syle'.
7382         * files.el (hack-local-variables-filter): Remove entries with
7383         duplicate keys from `file-local-variables-alist'.
7385 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
7387         * simple.el (deactivate-mark, activate-mark, set-mark): Don't call
7388         x-set-selection if display-selections-p returns nil for the
7389         current frame.
7391 2009-07-18  Chong Yidong  <cyd@stupidchicken.com>
7393         * simple.el (region-active-p, use-region-p): Doc fix (Bug#3873).
7395 2009-07-18  Eli Zaretskii  <eliz@gnu.org>
7397         * desktop.el (desktop-buffers-not-to-save): Default value is nil.
7398         Accept nil in addition to a regexp.
7399         (desktop-files-not-to-save): Add "(ftp)$" to the default regexp.
7400         Accept nil in addition to a regexp.
7401         (desktop-save-buffer-p): Don't use desktop-buffers-not-to-save for
7402         buffers that have an associated file.  Handle nil values of
7403         desktop-buffers-not-to-save and desktop-files-not-to-save.
7404         (Bug#3833)
7406         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
7407         (x-disown-selection-internal): New functions.
7409 2009-07-18  Nick Roberts  <nickrob@snap.net.nz>
7411         * progmodes/gdb-mi.el (speedbar-frame): Declare to avoid compiler
7412         warning.
7413         (gdb-breakpoints-header): Move forward to avoid compiler warning.
7414         (gdb-make-header-line-mouse-map): Remove duplicate definition.
7416 2009-07-18  David De La Harpe Golden  <david@harpegolden.net>
7418         * simple.el (set-mark): Revert last change.
7420 2009-07-17  Tassilo Horn  <tassilo@member.fsf.org>
7422         * doc-view.el (doc-view-initiate-display): Add yes-or-no-p if
7423         rendering of pngs is not possible instead of messaging a long
7424         description.
7426 2009-07-17  David De La Harpe Golden  <david@harpegolden.net>
7428         * w32-fns.el (x-selection-owner-p): New function.
7430         * mouse.el (mouse-drag-track): Call deactivate-mark earlier.
7431         (mouse-yank-at-click, mouse-yank-primary): If
7432         select-active-regions is non-nil, deactivate the mark before
7433         insertion.
7435         * simple.el (deactivate-mark, set-mark): Only save selection if we
7436         own it.
7438 2009-07-17  Kenichi Handa  <handa@m17n.org>
7440         * case-table.el (describe-buffer-case-table): Fix for the case
7441         that KEY is a cons.
7443 2009-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
7445         * vc-rcs.el (vc-rcs-find-file-hook):
7446         * vc-sccs.el (vc-sccs-find-file-hook): Fix cut and paste error.
7448 2009-07-16  Michael Albinus  <michael.albinus@gmx.de>
7450         * net/tramp.el (tramp-wait-for-output): Handle the case when
7451         commands do not return a newline but a null byte before the shell
7452         prompt.  (Bug#3858)
7454 2009-07-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
7456         * term/ns-win.el (ns-set-alpha): Don't declare.
7457         (ns-set-background-alpha): Remove function.
7459 2009-07-16  Kevin Ryde  <user42@zip.com.au>
7461         * emacs-lisp/copyright.el (copyright-update): Save match-data across
7462         y-or-n-p, for safety.
7464 2009-07-16  Richard Stallman  <rms@gnu.org>
7466         * files.el (auto-save-mode): If buffer-saved-size is -2,
7467         don't clobber it.
7469         * mail/rmail.el (rmail-variables): Set buffer-saved-size to -2.
7470         (rmail-retry-ignored-headers): Add more uninteresting fields.
7472 2009-07-15  Jari Aalto  <jari.aalto@cante.net>
7474         * net/rcirc.el (rcirc): Use history variables.
7475         (rcirc-server-name-history, rcirc-nick-name-history)
7476         (rcirc-server-port-history): New variables.
7478 2009-07-15  Kenichi Handa  <handa@m17n.org>
7480         * international/mule-cmds.el (set-language-environment-charset):
7481         If coding-system-charset-list returns `iso-2022' or `emacs-mule',
7482         ignore them.
7484         * language/misc-lang.el ("IPA"): Change coding systems to utf-8.
7485         Delete unibyte-display.
7487 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
7489         * simple.el (kill-visual-line): Obey kill-whole-line (Bug#3695).
7491 2009-07-15  Chong Yidong  <cyd@stupidchicken.com>
7493         * simple.el (deactivate-mark): Optional argument FORCE.
7494         (set-mark): Use deactivate-mark.
7496         * info.el (Info-search): No need to check transient-mark-mode
7497         before calling deactivate-mark.
7499         * select.el (x-set-selection): Doc fix.
7500         (x-valid-simple-selection-p): Allow buffer values.
7501         (xselect--selection-bounds): Handle buffer values.  Suggested by
7502         David De La Harpe Golden.
7504         * mouse.el (mouse-set-region, mouse-drag-track): Call
7505         copy-region-as-kill before setting the mark, to let
7506         select-active-regions work.
7508 2009-07-15  David De La Harpe Golden  <david@harpegolden.net>
7510         * simple.el (deactivate-mark): If select-active-regions is
7511         non-nil, copy the selection data into a string.
7512         (activate-mark): If select-active-regions is non-nil, set the
7513         selection to the current buffer.
7514         (set-mark): Update selection if select-active-regions is non-nil.
7516         * select.el (x-valid-simple-selection-p): Allow buffer values.
7518 2009-07-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7520         * simple.el (mail-user-agent): Default to the upwardly-UI-compatible
7521         and more featureful message-mode.
7523 2009-07-14  Chong Yidong  <cyd@stupidchicken.com>
7525         * select.el (x-set-selection): Doc fix.
7526         (x-valid-simple-selection-p): Disallow selection data consisting
7527         of a list or cons of integers, since that is not used.
7528         (xselect--selection-bounds, xselect--int-to-cons): New functions.
7529         (xselect-convert-to-string, xselect-convert-to-length)
7530         (xselect-convert-to-filename, xselect-convert-to-charpos)
7531         (xselect-convert-to-lineno, xselect-convert-to-colno): Use them.
7533 2009-07-14  Dmitry Dzhus  <dima@sphinx.net.ru>
7535         * progmodes/gdb-mi.el (json-partial-output): Fix broken GDB/MI
7536         output in -break-info command (Emacs bug #3794).
7538 2009-07-14  Glenn Morris  <rgm@gnu.org>
7540         * emacs-lisp/edebug.el (edebug-setup-hook, edebug-all-forms)
7541         (edebug-eval-macro-args, edebug-save-displayed-buffer-points)
7542         (edebug-print-length, edebug-print-level, edebug-print-circle)
7543         (edebug-sit-for-seconds, edebug-view-outside)
7544         (edebug-bounce-point, edebug-set-global-break-condition)
7545         (edebug-Go-nonstop-mode, edebug-trace-mode)
7546         (edebug-Trace-fast-mode, edebug-continue-mode)
7547         (edebug-Continue-fast-mode, edebug-forward-sexp, edebug-help)
7548         (edebug-visit-eval-list): Doc fixes.
7550         * subr.el (def-edebug-spec): Doc fix.
7552 2009-07-14  Kenichi Handa  <handa@m17n.org>
7554         * international/characters.el: Fix setting of category ?C.
7556 2009-07-13  Jan Djärv  <jan.h.d@swipnet.se>
7558         * term/ns-win.el (x-select-font): defalias x-select-font to
7559         ns-popup-font-panel instead of generate-fontset-menu.
7561 2009-07-12  Eli Zaretskii  <eliz@gnu.org>
7563         * desktop.el (desktop-buffers-not-to-save): Remove ".log".  (Bug#3833)
7565 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
7567         * arc-mode.el (archive-find-type): Allow for a PK00 string before
7568         the PK\003\004 header (Bug#3770).
7570 2009-07-12  Guanpeng Xu  <herberteuler@hotmail.com>
7572         * pcomplete.el (pcomplete-comint-setup): Check for
7573         shell-dynamic-complete-filename too.
7575 2009-07-11  Chong Yidong  <cyd@stupidchicken.com>
7577         * simple.el (temporary-goal-column): Change the value for
7578         line-move-visual to a cons cell.
7579         (line-move-visual): Record or set the window hscroll, if
7580         necessary (Bug#3494).
7581         (line-move-1): Handle cons value of temporary-goal-column.
7583 2009-07-11  Kenichi Handa  <handa@m17n.org>
7585         * international/mule-diag.el (describe-character-set): Don't show
7586         width.
7588 2009-07-10  Sam Steingold  <sds@gnu.org>
7590         * progmodes/compile.el (compilation-mode-font-lock-keywords):
7591         Omake sometimes indents the errors it prints, so allow all
7592         regexps to start with spaces.
7594 2009-07-10  Eli Zaretskii  <eliz@gnu.org>
7596         * cus-edit.el (customize-changed-options-previous-release):
7597         Bump value to 22.1.  (Bug#3804)
7599 2009-07-08  Sam Steingold  <sds@gnu.org>
7601         * progmodes/grep.el (rgrep): Allow grep-find-ignored-directories
7602         to be a cons cell (test . ignored-directory) to selectively ignore
7603         some directories depending on the location of the search.
7605 2009-07-08  Michael Albinus  <michael.albinus@gmx.de>
7607         * net/tramp.el (tramp-set-file-uid-gid): Handle the case the
7608         remote user is root, on the local host.
7609         (tramp-local-host-p): Either the local user or the remote user
7610         must be root.  (Bug#3771)
7612 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
7614         * progmodes/gdb-mi.el (gdb): Remove description of
7615         gdb-use-separate-io-buffer.
7616         (menu): Don't allow toggling of or enable
7617         gdb-use-separate-io-buffer from menubar.
7619 2009-07-08  E. Jay Berkenbilt  <ejb@ql.org>  (tiny change)
7621         * mail/unrmail.el (unrmail): Make sure the message ends with two
7622         newlines (Bug#3769).
7624 2009-07-08  Glenn Morris  <rgm@gnu.org>
7626         * calendar/calendar.el (calendar-current-date): Rework previous change.
7628 2009-07-08  Ed Reingold  <reingold@emr.cs.iit.edu>
7630         * calendar/calendar.el (calendar-current-date):
7631         Add an optional argument giving an offset from today.
7633 2009-07-08  Glenn Morris  <rgm@gnu.org>
7635         * tutorial.el (tutorial--describe-nonstandard-key):
7636         Adjust the message for when a key has been unbound.
7637         (help-with-tutorial): Hide the arch-tag.
7639 2009-07-08  Kenichi Handa  <handa@m17n.org>
7641         * international/fontset.el (setup-default-fontset): For each
7642         script, append (not set) font-specs.
7644         * language/japanese.el (japanese-shift-jis-2004): Fix typo in the
7645         docstring.
7647 2009-07-08  Nick Roberts  <nickrob@snap.net.nz>
7649         * progmodes/gdb-mi.el (gdb-init-1): Move sending
7650         -data-list-register-names to ...
7651         (gdb-starting): ... here because GDB 7.0 requires execution to
7652         have started when using this MI command.
7653         (gdb-set-header): New function to distinguish select and
7654         unselected tabs in gdb buffers.
7655         (gdb-propertize-header): New macro that uses gdb-set-header.
7656         (gdb-breakpoints-header, gdb-locals-header): Use it.
7657         (gdb-disassembly-mode-map): Add keybinding to kill buffer.
7659 2009-07-07  Chong Yidong  <cyd@stupidchicken.com>
7661         * Makefile.in (ELCFILES): Remove fadr.elc.
7663 2009-07-07  Dmitry Dzhus  <dima@sphinx.net.ru>
7665         * progmodes/gdb-mi.el (gdb-init-1): Disassembly buffer mode name
7666         may contain frame information, so `string-match' should be used.
7667         (gdb-update): Disassembly is invalidated through
7668         `gdb-get-selected-frame'.
7669         (gdb-pad-string): New function to pad string with spaces.
7670         (gdb-invalidate-disassembly): Invalidate only if the buffer
7671         exists.
7672         (gdb-disassembly-handler-custom): Column alignment.
7673         (gdb-disassembly-place-breakpoints): Clear old breakpoints before
7674         placing new ones.
7675         (gdb-toggle-breakpoint, gdb-delete-breakpoint): Now work from the
7676         end of line, too.
7677         (gdb-frame-handler): Match convention to for disassembly buffer
7678         mode name.
7679         (gdb-stack-list-frames-handler): Rewritten without regexps.
7680         (gdb-breakpoints-list-handler-custom): y/n instead of on/off; do
7681         not highlight breakpoints without line information.
7682         (gdb-input): Add trailing newline to command.
7684         * progmodes/gdb-mi.el (gdb-init-1): Set mode name for disassembly
7685         buffer properly.
7686         (gdb-breakpoints-list-handler-custom): Replacement for
7687         `gdb-break-list-handler'.  Using real parser instead of regexps
7688         now.
7689         (gdb-place-breakpoints): Replacement for `gdb-break-list-custom'.
7690         Use `gdb-breakpoints-list' instead of parsing breakpoints buffer
7691         to place breakpoints.
7692         (def-gdb-memory-unit): A new macro to define gdb-memory-unit-..
7693         functions.
7694         (gdb-disassembly-handler-custom): Show overlay arrow.
7695         (gdb-disassembly-place-breakpoints): Show breakpoints in
7696         disassembly buffer.
7697         (gdb-toggle-breakpoint, gdb-delete-breakpoint)
7698         (gdb-goto-breakpoint): Using `gdb-breakpoint' text properties
7699         instead of parsing breakpoints buffer.  Fixed old menu references
7700         in `gud-menu-map'.
7702         * fadr.el: Remove.
7704         * progmodes/gdb-mi.el: Port memory buffer from gdb-ui.el.
7705         (gdb-memory-address): New variable which holds top address of
7706         memory page shown in memory buffer.
7707         (gdb-memory-repeat-count, gdb-memory-format, gdb-memory-unit): New
7708         customization variables.
7709         New functions:
7710         (gdb-display-memory-buffer, gdb-frame-memory-buffer): Functions to
7711         display the memory buffer.
7712         (gdb-memory-set-address, gdb-memory-set-repeat-count): Set memory
7713         buffer display parameters.
7714         (def-gdb-memory-format, gdb-memory-format-binary)
7715         (gdb-memory-format-octal, gdb-memory-format-unsigned)
7716         (gdb-memory-format-signed, gdb-memory-format-hexadecimal):
7717         Functions for setting memory buffer format.
7718         (gdb-memory-unit-word, gdb-memory-unit-halfword)
7719         (gdb-memory-unit-giant, gdb-memory-unit-byte): Functions to set
7720         unit size used in memory buffer.
7721         (gdb-memory-show-next-page, gdb-memory-show-previous-page): Switch
7722         to next/previous page of memory buffer.
7723         Now using (bindat-get-field) instead of fadr functions.
7725 2009-07-07  Sam Steingold  <sds@gnu.org>
7727         * vc-cvs.el (vc-cvs-merge-news): Fix message parsing for
7728         non-top-level files.
7730 2009-07-07  Kenichi Handa  <handa@m17n.org>
7732         * international/mule-cmds.el (reset-language-environment): Put
7733         the highset priority to the charset iso-8859-1.
7735 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
7737         * progmodes/hideshow.el (hs-hide-block-at-point): Don't move point
7738         to the end of the line when locating the block (Bug#700).
7740 2009-07-06  Michael Albinus  <michael.albinus@gmx.de>
7742         * net/tramp.el (tramp-handle-write-region): Flush file properties
7743         in case of short track.
7745 2009-07-06  Michael McNamara  <mac@mail.brushroad.com>
7747         * verilog-mode.el (verilog-error-regexp-emacs-alist): Coded custom
7748         representation of verilog error regular expressions to work with
7749         Emacs-22's new format.
7750         (verilog-error-regexp-xemacs-alist): Coded custom representation
7751         of verilog error regular expressions to work with XEmacs format.
7752         (verilog-error-regexp-add-xemacs): Hook routine to install verilog
7753         error recognition into XEmacs.
7754         (verilog-error-regexp-add-emacs): Hook routine to install verilog
7755         error recognition into Emacs-22.
7757 2009-07-06  Chong Yidong  <cyd@stupidchicken.com>
7759         * woman.el: Remove stand-alone closing parentheses.
7760         (woman-file-name, woman2-format-paragraphs)
7761         (woman-leave-blank-lines): Code cleanup.
7762         (woman-use-own-frame): Change default to nil.
7763         (woman-italic, woman-bold, woman-unknown, woman-addition): Change
7764         defaults to inherit from default faces.
7765         (woman2-process-escapes): Consume the newline after a stand-alone
7766         filler character (Bug#3651).
7768 2009-07-06  Glenn Morris  <rgm@gnu.org>
7770         * ffap.el (ffap-version): Make it an obsolete alias for emacs-version.
7771         (top-level): Move provide to the end.
7772         (ffap): Remove defunct URL from custom group.
7774         * subr.el (eval-after-load): Doc fix.
7776 2009-07-06  Vincent Belaïche  <vincent.belaiche@gmail.com>
7778         * calc/calc-embed.el (calc-embedded-make-info): Don't force when
7779         `calc-embedded-word' is called twice.
7781 2009-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7783         * files.el (find-alternate-file-other-window, find-alternate-file):
7784         Obey confirm-nonexistent-file-or-buffer.
7786 2009-07-05  Michael Albinus  <michael.albinus@gmx.de>
7788         * dired-aux.el (dired-show-file-type): Handle remote files.
7790 2009-07-05  Jari Aalto  <jari.aalto@cante.net>
7792         * desktop.el (desktop-globals-to-save):
7793         Add file-name-history (Bug#2750).
7795 2009-07-05  Chong Yidong  <cyd@stupidchicken.com>
7797         * add-log.el (add-log-current-defun-header-regexp): Doc fix (Bug#2217).
7799 2009-07-04  Johan Bockgård  <bojohan@gnu.org>
7801         * eshell/esh-arg.el (eshell-parse-argument-hook): Put `number'
7802         property on entire argument since this is what eshell-lisp-command
7803         expects.
7805 2009-07-03  Michael Albinus  <michael.albinus@gmx.de>
7807         * net/tramp-gvfs.el (tramp-gvfs-methods)
7808         (tramp-gvfs-zeroconf-domain)
7809         (tramp-bluez-discover-devices-timeout): Add version flag.
7810         (tramp-gvfs-handler-mounted-unmounted)
7811         (tramp-gvfs-connection-mounted-p): Polish handling of
7812         incompatibilities between GVFS 0.2 and 1.0.
7814 2009-07-03  Jan Djärv  <jan.h.d@swipnet.se>
7816         * cus-start.el (all): Add make-pointer-invisible.
7818 2009-07-03  Jay Belanger  <jay.p.belanger@gmail.com>
7820         * calc-math.el (math-use-emacs-fn): Make sure that the number is
7821         formatted correctly.
7823 2009-07-02  Juri Linkov  <juri@jurta.org>
7825         * info.el: Virtual Info files and nodes.
7826         (Info-virtual-files, Info-virtual-nodes): New variables.
7827         (Info-current-node-virtual): New variable.
7828         (Info-virtual-file-p, Info-virtual-fun, Info-virtual-call):
7829         New functions.
7830         (Info-file-supports-index-cookies): Use Info-virtual-file-p
7831         to check for a virtual file instead of checking a fixed list
7832         of node names.
7833         (Info-find-file): Use Info-virtual-fun and Info-virtual-call
7834         instead of ad-hoc processing of "dir" and (apropos history toc).
7835         (Info-find-node-2): Use Info-virtual-fun and Info-virtual-call
7836         instead of ad-hoc processing of "dir" and (apropos history toc).
7837         Reread a file when moving from a virtual node.
7838         (add-to-list)<Info-virtual-files>: Add "\\`dir\\'".
7839         (Info-directory-toc-nodes, Info-directory-find-file)
7840         (Info-directory-find-node): New functions.
7841         (add-to-list)<Info-virtual-files>: Add "\\`\\*History\\*\\'".
7842         (Info-history): Move part of code to
7843         `Info-history-find-node'.
7844         (Info-history-toc-nodes, Info-history-find-file)
7845         (Info-history-find-node): New functions.
7846         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*TOC\\*\\'".
7847         (Info-toc): Move part of code to `Info-toc-find-node'.
7848         (Info-toc-find-node): New function.
7849         (Info-toc-insert): Rename from `Info-insert-toc'.  Don't insert
7850         the current Info file name to references because now the node
7851         "*TOC*" belongs to the same Info manual.
7852         (Info-toc-build): Rename from `Info-build-toc'.
7853         (Info-toc-nodes): Rename input argument `file' to `filename'.
7854         Use Info-virtual-fun, Info-virtual-call and Info-virtual-file-p
7855         instead of ad-hoc processing of ("dir" apropos history toc).
7856         (Info-index-nodes): Use Info-virtual-file-p
7857         to check for a virtual file instead of checking a fixed list
7858         of node names.
7859         (Info-index-node): Add check for `Info-current-node-virtual'.
7860         Raise `save-match-data' higher up the tree to contain
7861         `search-forward' too (bug fix).
7862         (add-to-list)<Info-virtual-nodes>: Add "\\`\\*Index.*\\*\\'".
7863         (Info-virtual-index-nodes): New variable.
7864         (Info-virtual-index-find-node, Info-virtual-index): New functions.
7865         (add-to-list)<Info-virtual-files>: Add "\\`\\*Apropos\\*\\'".
7866         (Info-apropos-file, Info-apropos-nodes): New variables.
7867         (Info-apropos-toc-nodes, Info-apropos-find-file)
7868         (Info-apropos-find-node, Info-apropos-matches): New functions.
7869         (info-apropos): Move part of code to `Info-apropos-find-node' and
7870         `Info-apropos-matches'.
7871         (Info-mode-map): Bind "I" to `Info-virtual-index'.
7872         (Info-desktop-buffer-misc-data): Use Info-virtual-file-p to check
7873         for a virtual file instead of checking a fixed list of node names.
7875         * simple.el (async-shell-command): New command.
7877         * bindings.el (esc-map): Bind "&" to `async-shell-command'.
7879         * net/tramp-gvfs.el (tramp-gvfs-connection-mounted-p): Use `elt'
7880         instead of `mount-info'.
7882 2009-07-02  Michael Albinus  <michael.albinus@gmx.de>
7884         * net/tramp-gvfs.el (tramp-gvfs-handler-mounted-unmounted)
7885         (tramp-gvfs-connection-mounted-p): Handle changed mount-info interface.
7887 2009-07-02  Kenichi Handa  <handa@m17n.org>
7889         * international/mule.el (set-keyboard-coding-system): Force *-unix
7890         coding-system to avoid eol conversion.
7892 2009-07-01  Michael Albinus  <michael.albinus@gmx.de>
7894         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
7895         Add handler for `process-file', `shell-command' and
7896         `start-file-process'.
7897         (tramp-gvfs-handle-shell-command)
7898         (tramp-gvfs-handle-start-file-process)
7899         (tramp-gvfs-handle-process-file): New defuns.
7900         (tramp-synce-list-devices): Simplify check for existence of property.
7902 2009-07-01  Jan Djärv  <jan.h.d@swipnet.se>
7904         * startup.el (command-line-x-option-alist): Add -mm and --maximized.
7906 2009-07-01  Eduard Wiebe  <usenet@pusto.de>  (tiny change)
7908         * language/korean.el (set-language-info-alist): Add korean-cp949,
7909         cp949 to spec.
7911 2009-07-01  Kenichi Handa  <handa@m17n.org>
7913         * Makefile.in (ELCFILES): Delete encoded-kb.elc.
7915         * international/encoded-kb.el: Deleted.
7917         * international/mule.el (set-keyboard-coding-system): Perform the
7918         necessary setup here instead of calling encoded-kbd-setup-display.
7920 2009-07-01  Glenn Morris  <rgm@gnu.org>
7922         * progmodes/f90.el (f90-break-delimiters, f90-no-break-re): Doc fixes.
7924 2009-07-01  Evangelos Evangelou  <vangelis@email.unc.edu>  (tiny change)
7926         * progmodes/f90.el (f90-no-break-re): Add "(/" and "/)".  (Bug#3730)
7928 2009-06-30  Michael Albinus  <michael.albinus@gmx.de>
7930         * net/tramp.el (tramp-do-copy-or-rename-file-directly):
7931         Handle also the 'rename case, when setting file modes.  (Bug#3712)
7932         (tramp-default-file-modes) Remove execute permissions.
7934         * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
7935         (top): Add a default for "synce" in `tramp-default-user-alist'.
7936         Add completion function for "synce" method.
7937         (tramp-hal-service, tramp-hal-path-manager)
7938         (tramp-hal-interface-manager, tramp-hal-interface-device):
7939         New defconst.
7940         (tramp-gvfs-connection-mounted-p): Handle empty user name for synce.
7941         (tramp-synce-list-devices, tramp-synce-parse-device-names):
7942         New defuns.
7944         * net/trampver.el: Update release number.
7946 2009-06-30  Kenichi Handa  <handa@m17n.org>
7948         * international/fontset.el (setup-default-fontset): Add CJK fonts
7949         for symbols and the other miscellaneous characters.
7951         * language/korea-util.el (setup-korean-environment-internal):
7952         Make char-width-table suitable for Korean environments.
7953         (exit-korean-environment): Cancel above.
7955         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
7956         ("Chinese-CNS", "Chinese-EUC-TW", "Chinese-GBK"): Add a
7957         setup-funcion to make char-widht-table suitable for respective
7958         environments, and an exit-function to cancel that.
7960         * language/japan-util.el (setup-japanese-environment-internal):
7961         Call use-cjk-char-width-table with arg `ja_JP'.
7963         * international/characters.el (cjk-char-width-table): Delete it.
7964         (cjk-char-width-table-list): New variable.
7965         (use-cjk-char-width-table): New arg local-name.
7966         (use-default-char-width-table): Fix for the case that Emacs is
7967         already using the default char-width-table.
7969 2009-06-29  Michael Albinus  <michael.albinus@gmx.de>
7971         * net/tramp.el (tramp-do-copy-or-rename-file-directly): Set file
7972         modes mandatory.  (Bug#3712)
7974 2009-06-29  Alan Mackenzie  <acm@muc.de>
7976         * progmodes/cc-cmds.el (c-mask-paragraph): Remove a spurious
7977         correction between the visible width of TABs and their number of bytes.
7979 2009-06-29  Chong Yidong  <cyd@stupidchicken.com>
7981         * server.el (server-buffer-done): Prevent kill-buffer from
7982         prompting by clearing the buffer modification flag (Bug#3696).
7984 2009-06-28  Michael McNamara  <mac@mail.brushroad.com>
7986         * verilog-mode.el (verilog-beg-of-statement)
7987         (verilog-endcomment-reason-re): Support unique case and priority case.
7988         (verilog-basic-complete-re): Support localparam lineup.
7989         (verilog-beg-of-statement-1): Fix for robustness, unique case.
7990         (verilog-set-auto-endcomments): Fix for unique case, always_comb
7991         commenting.
7992         (verilog-leap-to-case-head): Now support *nested* unique &
7993         priority case statements.
7994         (verilog-auto-lineup): Make just declarations the default (as it
7995         had been).
7996         (verilog-leap-to-case-head): Support priority/unique case statements.
7997         (verilog-auto-lineup): Rework to give users radio buttons to
7998         select the various styles of automatic lineup.
7999         (verilog-error-regexp-alist): Rework to support the XEmacs style
8000         of error regular expressions from compilers, lint tools &
8001         simulators.  Note that GNU Emacs has made it impossible for a mode
8002         to load such things.
8003         (electric-verilog-terminate-line, verilog-indent-declaration)
8004         (verilog-auto-wiure): Rework for radio button selection of
8005         auto-lineup selection of specification of auto lineup.
8006         (verilog-beg-of-statement-1): Redesign to support proper operation
8007         in additional code, based on testing with auto-lineup.
8008         (verilog-calculate-indent, assignments & declarations)
8009         (verilog-backward-token): Enhance to support auto-lineup of
8010         assignments & declarations.
8011         (verilog-in-directive-p, verilog-at-struct-p): New function for
8012         easy test of whether we are.
8013         (verilog-pretty-declarations, verilog-pretty-expr): Massive rework
8014         to support safe execution at almost anyline.
8015         (verilog-calc-1): Properly support indenting deep inside generate
8016         blocks.
8017         (verilog-init-font) Remove definition & use of verilog-init-font,
8018         as it is redundant with font-lock-defaults.
8019         (verilog-mode): Alter the definition of verilog-font-lock-defaults
8020         to avoid circular calls if syntax-ppss is a function (as is the
8021         case now in 22.x GNU Emacs) as that function would sometimes call
8022         itself, leading to (nearly) infinite recursion.
8023         (verilog-ovm-begin-re, verilog-ovm-end-re)
8024         (verilog-ovm-statement-re, verilog-leap-to-head)
8025         (verilog-backward-token): Add support for OVM macros.  Some are
8026         complete statements, and others open and close scopes like begin
8027         and end.
8028         (verilog-defun-level-not-generate-re, verilog-defun-level-re)
8029         (verilog-defun-level-generate-only-re): Really fix the defun-list
8030         compilation issue.
8031         (verilog-calc-1) (verilog-beg-of-statement): Enhance support for
8032         coverpoint, constraint and cross statements.
8033         (verilog-defun-level-list, verilog-generate-defun-level-list)
8034         (verilog-all-defun-level-list): Redo these specifications - it is
8035         too hard to support eval-when compile aggregation of lists also
8036         built at when-compile time.
8037         (verilog-defun-level-list): Place defconsts of variables used in
8038         building regular expressions which are built in eval-when-compile
8039         bodies in the same eval-when-compile body to facilitate compile
8040         without load.
8041         (verilog-beg-block-re-ordered): Support indenting
8042         virtual/protected tasks and functions.
8043         (verilog-defun-level-list, verilog-in-generate-region-p)
8044         (verilog-backward-ws&directives, verilog-calc-1): Speed up
8045         indentation of some module items (generate items).
8046         (verilog-forward-sexp, verilog-leap-to-head): Support stepping
8047         across virtual/protected tasks and functions.
8049 2009-06-28  Wilson Snyder  <wsnyder@wsnyder.org>
8051         * verilog-mode.el (verilog-auto-arg, verilog-auto-arg-sort):
8052         Allow sorting AUTOARG lists.  Suggested by Andrea Fedeli.
8053         (verilog-read-sub-decls-line): Fix AUTOWIRE signals getting lost
8054         in concatenations.  Reported by Yishay Belkind.
8055         (verilog-auto-ascii-enum): Support one-hot state machines in
8056         AUTOASCIIENUM.  Suggested by Lloyd Gomez.
8057         (verilog-auto-inst, verilog-auto-inst-port): Include interface
8058         modport in AUTOINST and add vl-modport for users.  Reported by
8059         David Rogoff.
8060         (verilog-auto-inout-module, verilog-auto-inst)
8061         (verilog-decls-get-interfaces, verilog-insert-definition)
8062         (verilog-insert-one-definition, verilog-read-decls)
8063         (verilog-read-sub-decls, verilog-read-sub-decls-sig)
8064         (verilog-sig-modport, verilog-signals-combine-bus)
8065         (verilog-subdecls-get-interfaces): Fix expansion of SystemVerilog
8066         interfaces in AUTOINOUTMODULE, AUTOINOUTCOMP, and AUTOINST.
8067         Suggested by David Rogoff.
8068         (verilog-repair-open-comma): Fix non-insertion of comma when
8069         `DEFINE occurs in V2K argument list.  Reported by Lane Brooks.
8070         (verilog-make-width-expression): Simplify [A-1:0] expression
8071         widths to just {A{1'b0}}.
8072         (verilog-mode): Cleanup checkdoc warnings.
8073         (verilog-auto-inout-module, verilog-signals-matching-dir-re):
8074         Add third optional regexp to AUTOINOUTMODULE to allow selecting only
8075         inputs/outputs or data type.  Suggested by Vasu Kandadi.
8076         (next-error-last-buffer): Fix byte-compiler warning.
8077         (verilog-auto, verilog-auto-insert-lisp, verilog-auto-inst)
8078         (verilog-delete-auto): Add AUTOINSERTLISP to insert arbitrary lisp
8079         or shell command text during AUTO expansion.  Suggested by Tad Truex.
8080         (verilog-read-sub-decls-expr, verilog-read-sub-decls-line)
8081         (verilog-read-sub-decls-sig, verilog-symbol-detick-text):
8082         Fix dotted nets {a.b,c.d} and excaped identifiers being mis-included
8083         in AUTOINOUT.  Reported by Matthew Lovell.
8084         (verilog-read-always-signals-recurse): Fix AUTORESET "if (a<=b)"
8085         causing use of <= assignments.  Reported by Alex Reed.
8086         (verilog-read-decls): Fix triand, trior, wand, wor to be
8087         recognized by AUTOWIRE.  Reported by Spencer Isaacson.
8088         (verilog-extended-complete-re): Support import "DPI-C" functions.
8089         (verilog-read-always-signals-recurse): Fix AUTORESET of "x <=
8090         y[a+1:a+1]" to not include a in reset list.  Reported by Dan Dever.
8091         (verilog-insert-date, verilog-insert-year)
8092         (verilog-sk-header-tmpl): Fix verilog-header inserting error on
8093         Windows systems.  Reported by Michael Potts.
8094         (verilog-read-module-name): Fix AUTOINST when the child module
8095         declaration's name is a tick define.  Reported by Elliot Mednick.
8096         (verilog-read-decls): Fix V2K parameter bit subscripts getting
8097         passed to next parameter's definition.  Reported by Bruce T.
8098         (verilog-read-decls): Fix detecting "parameter int" when using
8099         AUTOINSTPARAM.  Reported by Bruce T.
8100         (verilog-goto-defun): Fix goto not finding modules unless first
8101         perform a verilog-auto expansion.  Suggested by Lawrence Butcher.
8102         (verilog-mode): Expand -f flag arguments on entry to mode so
8103         verilog-goto-defun will work.  Reported by Lawrence Butcher.
8104         (verilog-getopt): Expand environment variables in -f file
8105         arguments.  Suggested by Lawrence Butcher.
8106         (verilog-set-define): Fix "Symbol's value as variable is void"
8107         when reading enumerations.
8108         (verilog-auto-ascii-enum): Fix duplicate labels in AUTOASCIIENUM.
8109         Suggested by Stephen Peltan.
8110         (verilog-read-defines): Fix reading of enumerations in include
8111         files.  Reported by Steve Peltan.
8113 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
8115         * files.el (trash-directory): Fix defcustom type.
8117 2009-06-28  Juri Linkov  <juri@jurta.org>
8119         * help-fns.el (describe-function-1): Correctly locate adviced
8120         functions in hyperlink (Bug#2438).
8122 2009-06-28  Chong Yidong  <cyd@stupidchicken.com>
8124         * files.el (trash-directory): Change default to nil.
8125         (move-file-to-trash): If trash-directory is nil and
8126         system-move-file-to-trash is unbound, perform freedesktop-style
8127         trashing.
8129 2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
8131         * files.el (move-file-to-trash): Add freedesktop trash
8132         support (Bug#973).
8134 2009-06-28  Glenn Morris  <rgm@gnu.org>
8136         * autorevert.el (global-auto-revert-non-file-buffers)
8137         (global-auto-revert-mode): Doc fixes.
8139 2009-06-27  Johan Bockgård  <bojohan@gnu.org>
8141         * emacs-lisp/cl-specs.el (defstruct): Fix :conc-name spec.
8143 2009-06-27  Chong Yidong  <cyd@stupidchicken.com>
8145         * faces.el (x-handle-named-frame-geometry): Ensure that we have
8146         opened an X connection before calling x-get-resource (Bug#3194).
8148         * play/doctor.el: Remove reference to obsolete website.
8149         (make-doctor-variables): Correct grammar mistake (Bug#2633).
8151 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
8153         Remove find-file-not-found-hook VC method.  (Bug#2757)
8154         * vc-hooks.el (vc-file-not-found-hook)
8155         (vc-default-find-file-not-found-hook): Remove functions.
8156         (find-file-not-found-functions): Do not add vc-file-not-found-hook.
8157         * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function.
8158         * vc.el:
8159         * vc-hg.el:
8160         * vc-git.el: Do not mention find-file-not-found-hook VC method.
8162 2009-06-25  Agustín Martín  <agustin.martin@hispalinux.es>
8164         * textmodes/ispell.el: Add `ispell-looking-back' XEmacs
8165           compatibility function for `looking-back'.
8167         * textmodes/flyspell.el (sgml-mode-flyspell-verify):
8168         Use `ispell-looking-back'.
8170 2009-06-24  Michael Albinus  <michael.albinus@gmx.de>
8172         * net/tramp-gvfs.el (tramp-gvfs-handle-make-directory): Use `dir'
8173         rather than `filename'.
8175 2009-06-23  Miles Bader  <miles@gnu.org>
8177         * face-remap.el (text-scale-set): New function.
8179 2009-06-23  Glenn Morris  <rgm@gnu.org>
8181         * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
8183         * bindings.el (mode-line-modified): Fix case of "Buffer is modified".
8185         * textmodes/ispell.el (ispell-local-dictionary): Doc fix.
8187         * progmodes/gdb-mi.el (gud-remove, gud-break): Update declarations.
8189         * calendar/cal-dst.el (calendar-time-zone-daylight-rules):
8190         Simplify Persian conditionals.
8192         * calc/calc-graph.el (calc-graph-plot): Avoid assignment to free
8193         variable `filename'.
8195         * comint.el (comint-insert-input): Doc fix.
8197         * Makefile.in (ELCFILES): Fix typo in previous change.
8199 2009-06-23  Miles Bader  <miles@gnu.org>
8201         * cus-start.el: Add entry for `recenter-redisplay'.
8203 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
8205         * vc-hooks.el (vc-stay-local-p, vc-state, vc-working-revision):
8206         Add an optional argument for the backend, use it instead of
8207         calling vc-backend.
8208         (vc-mode-line): Add an optional argument for the backend.
8209         Pass the backend to vc-state and vc-working-revision.  Move code for
8210         special handling for vc-state being a buffer to ...
8212         * vc-rcs.el (vc-rcs-find-file-hook):
8213         * vc-sccs.el (vc-sccs-find-file-hook): ... here.  New functions.
8215         * vc-svn.el (vc-svn-state, vc-svn-dir-status, vc-svn-checkout)
8216         (vc-svn-print-log, vc-svn-diff): Pass 'SVN to vc-state,
8217         vc-stay-local-p and vc-mode-line calls.
8219         * vc-cvs.el (vc-cvs-state, vc-cvs-checkout, vc-cvs-print-log)
8220         (vc-cvs-diff, vc-cvs-annotate-command)
8221         (vc-cvs-make-version-backups-p, vc-cvs-stay-local-p)
8222         (vc-cvs-dir-status): Pass 'CVS to vc-state, vc-stay-local-p and
8223         vc-mode-line calls.
8225         * vc.el (vc-deduce-fileset): Use vc-deduce-fileset instead of
8226         direct comparison.
8227         (vc-next-action, vc-transfer-file, vc-rename-file): Also pass the
8228         backend when calling vc-mode-line.
8229         (vc-register): Do not create a closure for calling the vc register
8230         function, call it directly.
8232 2009-06-23  Dan Nicolaescu  <dann@ics.uci.edu>
8234         * emacs-lisp/elp.el (elp-output-insert-symname): Add a link face
8235         to make it obvious item can be clicked.
8237         * vc-mtn.el (vc-mtn-after-dir-status, vc-mtn-dir-status): New functions.
8239 2009-06-23  Kenichi Handa  <handa@m17n.org>
8241         * language/korea-util.el (korean-key-bindings): Change the binding
8242         of F9 to hangul-to-hanja-conversion.  Bind Hangul_Hanja to the
8243         same command.
8245 2009-06-22  Michael Albinus  <michael.albinus@gmx.de>
8247         Sync with Tramp 2.1.16.
8249         * Makefile.in (ELCFILES): Add net/tramp-gvfs.elc.
8251         * net/tramp.el (top): Require tramp-gvfs.  Catch `tramp-loading',
8252         when a loading of a package fails.  Completion function for rsync
8253         is `tramp-completion-function-alist-ssh'.
8254         (all): Replace all calls of `split-string' and
8255         `tramp-split-string' by `tramp-compat-split-string'.
8256         (tramp-default-method): Use `tramp-compat-process-running-p'.
8257         (tramp-default-proxies-alist): Allow also Lisp forms.
8258         (tramp-remote-path): Add choice "Private Directories".
8259         (tramp-wrong-passwd-regexp): Remove "Tramp connection closed" option.
8260         (tramp-domain-regexp): Allow also "-", "_" and ".".
8261         (tramp-end-of-output): Remove newlines, and add "$" at the end.
8262         (tramp-file-name-handler-alist): Add handler for `dired-uncache'.
8263         (tramp-debug-message): Insert header line in debug buffer.
8264         (tramp-handle-directory-files-and-attributes-with-stat):
8265         Care about filenames with spaces, or starting with "-".
8266         (tramp-handle-dired-uncache): New defun.
8267         (tramp-handle-insert-directory): Don't flush the directory from
8268         cache, this is handled by `dired-uncache' now.
8269         (tramp-handle-insert-file-contents): Improve error handling.
8270         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
8271         Quote `tramp-end-of-output'.
8272         (tramp-action-password): Improve trace message.
8273         (tramp-check-for-regexp): Both echoes must be present, before removing.
8274         (tramp-open-connection-setup-interactive-shell): Trace coding system.
8275         (tramp-compute-multi-hops): Eval cons cells of
8276         `tramp-default-proxies-alist'.
8277         (tramp-maybe-open-connection): Use the same command pattern for
8278         first hop and further hops.
8279         (tramp-wait-for-output): Remove handling of newlines.
8280         (tramp-get-remote-path): Handle also `tramp-own-remote-path'.
8281         (tramp-split-string): Remove function.  It is handled in
8282         tramp-compat now.
8284         * net/tramp-cmds.el (tramp-bug):
8285         Recommend `tramp-cleanup-all-connections' in the bug mail.
8287         * net/tramp-compat.el (tramp-compat-split-string)
8288         (tramp-compat-process-running-p): New defuns.
8290         * net/tramp-fish.el (tramp-fish-file-name-handler-alist): Add handler
8291         for `dired-uncache'.
8293         * net/tramp-gvfs.el: New package.
8295         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
8296         Add handler for `dired-uncache'.
8297         (tramp-smb-handle-file-local-copy): Cleanup in case of error.
8299         * net/trampver.el: Update release number.  Make version check fit
8300         for SXEmacs 22.
8302 2009-06-22  Jim Meyering  <meyering@redhat.com>
8304         Automatically handle .xz suffix (XZ-compressed files), too.
8305         * jka-cmpr-hook.el (jka-compr-compression-info-list): Add xz.
8306         XZ is the successor to LZMA: <http://tukaani.org/xz/>
8308 2009-06-22  Dmitry Dzhus  <dima@sphinx.net.ru>
8309             Nick Roberts  <nickrob@snap.net.nz>
8311         * progmodes/gdb-mi.el: Pull further modified changes from Dmitry's
8312         repository (http://sphinx.net.ru/hg/gdb-mi/).
8314 2009-06-22  Glenn Morris  <rgm@gnu.org>
8316         * files.el (dir-locals-collect-mode-variables): Allow for any number of
8317         `mode' and `eval' entries.  (Bug#3430)
8319         * Makefile.in (ELCFILES): Add fadr.elc.
8321         * calendar/appt.el (appt-make-list): Fix off-by-one error caused by
8322         differing behavior of \n and ^ in strings.  (Bug#3385)
8324         * emacs-lisp/cl-indent.el: Remove leading "*" from defcustom docs.
8326         * emacs-lisp/lisp-mode.el (lisp-indent-offset): Fix safe-local-variable
8327         property.
8328         (lisp-indent-function): Make it a defcustom.
8330 2009-06-21  Nick Roberts  <nickrob@snap.net.nz>
8332         * progmodes/gdb-ui.el: Replace with ...
8333         * progmodes/gdb-mi.el: ... this file.
8334         * progmodes/gud.el: Modify for gdb-mi.el.
8336 2009-06-21  Dmitry Dzhus  <dima@sphinx.net.ru>
8338         * fadr.el: New file.
8340 See ChangeLog.14 for earlier changes.
8342 ;; Local Variables:
8343 ;; coding: utf-8
8344 ;; End:
8346     Copyright (C) 2009  Free Software Foundation, Inc.
8348   This file is part of GNU Emacs.
8350   GNU Emacs is free software: you can redistribute it and/or modify
8351   it under the terms of the GNU General Public License as published by
8352   the Free Software Foundation, either version 3 of the License, or
8353   (at your option) any later version.
8355   GNU Emacs is distributed in the hope that it will be useful,
8356   but WITHOUT ANY WARRANTY; without even the implied warranty of
8357   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8358   GNU General Public License for more details.
8360   You should have received a copy of the GNU General Public License
8361   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
8363 ;; arch-tag: d3e45e38-19e2-49b6-8dc2-7cb26adcc5a1